@hcl-software/dxclient 221.0.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 (486) hide show
  1. package/LICENSE +62 -0
  2. package/README.txt +3143 -0
  3. package/bin/dxclient +3 -0
  4. package/dist/LICENSE +62 -0
  5. package/dist/configuration/config.json +52 -0
  6. package/dist/configuration/versionConfigMap.json +34 -0
  7. package/dist/package.json +149 -0
  8. package/dist/packages/admintasks/package-lock.json +21843 -0
  9. package/dist/packages/admintasks/package.json +56 -0
  10. package/dist/packages/admintasks/src/commands/createCredentialVault.d.ts +5 -0
  11. package/dist/packages/admintasks/src/commands/createCredentialVault.js +100 -0
  12. package/dist/packages/admintasks/src/commands/createCredentialVault.js.map +1 -0
  13. package/dist/packages/admintasks/src/commands/createSyndicationRelation.d.ts +4 -0
  14. package/dist/packages/admintasks/src/commands/createSyndicationRelation.js +70 -0
  15. package/dist/packages/admintasks/src/commands/createSyndicationRelation.js.map +1 -0
  16. package/dist/packages/admintasks/src/commands/createVirtualPortal.d.ts +4 -0
  17. package/dist/packages/admintasks/src/commands/createVirtualPortal.js +63 -0
  18. package/dist/packages/admintasks/src/commands/createVirtualPortal.js.map +1 -0
  19. package/dist/packages/admintasks/src/commands/differentialReport.d.ts +6 -0
  20. package/dist/packages/admintasks/src/commands/differentialReport.js +149 -0
  21. package/dist/packages/admintasks/src/commands/differentialReport.js.map +1 -0
  22. package/dist/packages/admintasks/src/commands/exportVirtualPortal.d.ts +4 -0
  23. package/dist/packages/admintasks/src/commands/exportVirtualPortal.js +66 -0
  24. package/dist/packages/admintasks/src/commands/exportVirtualPortal.js.map +1 -0
  25. package/dist/packages/admintasks/src/commands/exportWCMLibrary.d.ts +4 -0
  26. package/dist/packages/admintasks/src/commands/exportWCMLibrary.js +141 -0
  27. package/dist/packages/admintasks/src/commands/exportWCMLibrary.js.map +1 -0
  28. package/dist/packages/admintasks/src/commands/importVirtualPortal.d.ts +4 -0
  29. package/dist/packages/admintasks/src/commands/importVirtualPortal.js +67 -0
  30. package/dist/packages/admintasks/src/commands/importVirtualPortal.js.map +1 -0
  31. package/dist/packages/admintasks/src/commands/importWCMLibrary.d.ts +4 -0
  32. package/dist/packages/admintasks/src/commands/importWCMLibrary.js +112 -0
  33. package/dist/packages/admintasks/src/commands/importWCMLibrary.js.map +1 -0
  34. package/dist/packages/admintasks/src/commands/listVirtualPortals.d.ts +4 -0
  35. package/dist/packages/admintasks/src/commands/listVirtualPortals.js +57 -0
  36. package/dist/packages/admintasks/src/commands/listVirtualPortals.js.map +1 -0
  37. package/dist/packages/admintasks/src/commands/pznRulesExport.d.ts +4 -0
  38. package/dist/packages/admintasks/src/commands/pznRulesExport.js +85 -0
  39. package/dist/packages/admintasks/src/commands/pznRulesExport.js.map +1 -0
  40. package/dist/packages/admintasks/src/commands/pznRulesImport.d.ts +4 -0
  41. package/dist/packages/admintasks/src/commands/pznRulesImport.js +130 -0
  42. package/dist/packages/admintasks/src/commands/pznRulesImport.js.map +1 -0
  43. package/dist/packages/admintasks/src/commands/resEnvProviderActions.d.ts +4 -0
  44. package/dist/packages/admintasks/src/commands/resEnvProviderActions.js +179 -0
  45. package/dist/packages/admintasks/src/commands/resEnvProviderActions.js.map +1 -0
  46. package/dist/packages/admintasks/src/commands/restartCorePods.d.ts +4 -0
  47. package/dist/packages/admintasks/src/commands/restartCorePods.js +45 -0
  48. package/dist/packages/admintasks/src/commands/restartCorePods.js.map +1 -0
  49. package/dist/packages/admintasks/src/commands/restartDXCore.d.ts +4 -0
  50. package/dist/packages/admintasks/src/commands/restartDXCore.js +68 -0
  51. package/dist/packages/admintasks/src/commands/restartDXCore.js.map +1 -0
  52. package/dist/packages/admintasks/src/errors/CommandLineMessages_en.json +62 -0
  53. package/dist/packages/admintasks/src/messages/messages_en.json +34 -0
  54. package/dist/packages/admintasks/src/services/createSyndicationRelationServices.d.ts +4 -0
  55. package/dist/packages/admintasks/src/services/createSyndicationRelationServices.js +53 -0
  56. package/dist/packages/admintasks/src/services/createSyndicationRelationServices.js.map +1 -0
  57. package/dist/packages/admintasks/src/services/differentialReportService.d.ts +5 -0
  58. package/dist/packages/admintasks/src/services/differentialReportService.js +59 -0
  59. package/dist/packages/admintasks/src/services/differentialReportService.js.map +1 -0
  60. package/dist/packages/admintasks/src/services/resEnvProviderService.d.ts +9 -0
  61. package/dist/packages/admintasks/src/services/resEnvProviderService.js +238 -0
  62. package/dist/packages/admintasks/src/services/resEnvProviderService.js.map +1 -0
  63. package/dist/packages/admintasks/src/services/restartCorePodsService.d.ts +4 -0
  64. package/dist/packages/admintasks/src/services/restartCorePodsService.js +45 -0
  65. package/dist/packages/admintasks/src/services/restartCorePodsService.js.map +1 -0
  66. package/dist/packages/admintasks/src/services/restartDXCoreService.d.ts +4 -0
  67. package/dist/packages/admintasks/src/services/restartDXCoreService.js +82 -0
  68. package/dist/packages/admintasks/src/services/restartDXCoreService.js.map +1 -0
  69. package/dist/packages/admintasks/src/services/virtualPortalServices.d.ts +33 -0
  70. package/dist/packages/admintasks/src/services/virtualPortalServices.js +169 -0
  71. package/dist/packages/admintasks/src/services/virtualPortalServices.js.map +1 -0
  72. package/dist/packages/admintasks/src/utils/createCredentialVault.xml +14 -0
  73. package/dist/packages/admintasks/src/utils/differential-report-utils.d.ts +11 -0
  74. package/dist/packages/admintasks/src/utils/differential-report-utils.js +1564 -0
  75. package/dist/packages/admintasks/src/utils/differential-report-utils.js.map +1 -0
  76. package/dist/packages/admintasks/src/utils/differential-report-utils.ts +1651 -0
  77. package/dist/packages/admintasks/src/utils/reportAttributes.properties +179 -0
  78. package/dist/packages/dam/package-lock.json +14605 -0
  79. package/dist/packages/dam/package.json +57 -0
  80. package/dist/packages/dam/src/commands/createSecrets.d.ts +4 -0
  81. package/dist/packages/dam/src/commands/createSecrets.js +61 -0
  82. package/dist/packages/dam/src/commands/createSecrets.js.map +1 -0
  83. package/dist/packages/dam/src/commands/deleteDAMStagingMismatch.d.ts +7 -0
  84. package/dist/packages/dam/src/commands/deleteDAMStagingMismatch.js +50 -0
  85. package/dist/packages/dam/src/commands/deleteDAMStagingMismatch.js.map +1 -0
  86. package/dist/packages/dam/src/commands/deleteSchema.d.ts +4 -0
  87. package/dist/packages/dam/src/commands/deleteSchema.js +80 -0
  88. package/dist/packages/dam/src/commands/deleteSchema.js.map +1 -0
  89. package/dist/packages/dam/src/commands/exportAssets.d.ts +5 -0
  90. package/dist/packages/dam/src/commands/exportAssets.js +106 -0
  91. package/dist/packages/dam/src/commands/exportAssets.js.map +1 -0
  92. package/dist/packages/dam/src/commands/findDAMStagingMismatch.d.ts +7 -0
  93. package/dist/packages/dam/src/commands/findDAMStagingMismatch.js +53 -0
  94. package/dist/packages/dam/src/commands/findDAMStagingMismatch.js.map +1 -0
  95. package/dist/packages/dam/src/commands/importAssets.d.ts +4 -0
  96. package/dist/packages/dam/src/commands/importAssets.js +78 -0
  97. package/dist/packages/dam/src/commands/importAssets.js.map +1 -0
  98. package/dist/packages/dam/src/commands/listSchema.d.ts +4 -0
  99. package/dist/packages/dam/src/commands/listSchema.js +44 -0
  100. package/dist/packages/dam/src/commands/listSchema.js.map +1 -0
  101. package/dist/packages/dam/src/commands/stagingMismatchReport.d.ts +15 -0
  102. package/dist/packages/dam/src/commands/stagingMismatchReport.js +168 -0
  103. package/dist/packages/dam/src/commands/stagingMismatchReport.js.map +1 -0
  104. package/dist/packages/dam/src/commands/stagingResync.d.ts +7 -0
  105. package/dist/packages/dam/src/commands/stagingResync.js +53 -0
  106. package/dist/packages/dam/src/commands/stagingResync.js.map +1 -0
  107. package/dist/packages/dam/src/commands/subscriberDeRegistration.d.ts +4 -0
  108. package/dist/packages/dam/src/commands/subscriberDeRegistration.js +45 -0
  109. package/dist/packages/dam/src/commands/subscriberDeRegistration.js.map +1 -0
  110. package/dist/packages/dam/src/commands/subscriberDetails.d.ts +9 -0
  111. package/dist/packages/dam/src/commands/subscriberDetails.js +50 -0
  112. package/dist/packages/dam/src/commands/subscriberDetails.js.map +1 -0
  113. package/dist/packages/dam/src/commands/subscriberRegistration.d.ts +9 -0
  114. package/dist/packages/dam/src/commands/subscriberRegistration.js +62 -0
  115. package/dist/packages/dam/src/commands/subscriberRegistration.js.map +1 -0
  116. package/dist/packages/dam/src/commands/triggerDAMStaging.d.ts +4 -0
  117. package/dist/packages/dam/src/commands/triggerDAMStaging.js +45 -0
  118. package/dist/packages/dam/src/commands/triggerDAMStaging.js.map +1 -0
  119. package/dist/packages/dam/src/commands/triggerDamReindexing.d.ts +4 -0
  120. package/dist/packages/dam/src/commands/triggerDamReindexing.js +54 -0
  121. package/dist/packages/dam/src/commands/triggerDamReindexing.js.map +1 -0
  122. package/dist/packages/dam/src/commands/updateSecrets.d.ts +4 -0
  123. package/dist/packages/dam/src/commands/updateSecrets.js +61 -0
  124. package/dist/packages/dam/src/commands/updateSecrets.js.map +1 -0
  125. package/dist/packages/dam/src/commands/validateAssets.d.ts +4 -0
  126. package/dist/packages/dam/src/commands/validateAssets.js +64 -0
  127. package/dist/packages/dam/src/commands/validateAssets.js.map +1 -0
  128. package/dist/packages/dam/src/errors/CommandLineMessages_en.json +80 -0
  129. package/dist/packages/dam/src/export/collection.d.ts +10 -0
  130. package/dist/packages/dam/src/export/collection.js +291 -0
  131. package/dist/packages/dam/src/export/collection.js.map +1 -0
  132. package/dist/packages/dam/src/export/favorite.d.ts +2 -0
  133. package/dist/packages/dam/src/export/favorite.js +61 -0
  134. package/dist/packages/dam/src/export/favorite.js.map +1 -0
  135. package/dist/packages/dam/src/export/media-item.d.ts +6 -0
  136. package/dist/packages/dam/src/export/media-item.js +193 -0
  137. package/dist/packages/dam/src/export/media-item.js.map +1 -0
  138. package/dist/packages/dam/src/export/media-type-group.d.ts +2 -0
  139. package/dist/packages/dam/src/export/media-type-group.js +43 -0
  140. package/dist/packages/dam/src/export/media-type-group.js.map +1 -0
  141. package/dist/packages/dam/src/export/media-type.d.ts +2 -0
  142. package/dist/packages/dam/src/export/media-type.js +43 -0
  143. package/dist/packages/dam/src/export/media-type.js.map +1 -0
  144. package/dist/packages/dam/src/export/renditions.d.ts +8 -0
  145. package/dist/packages/dam/src/export/renditions.js +255 -0
  146. package/dist/packages/dam/src/export/renditions.js.map +1 -0
  147. package/dist/packages/dam/src/import/collection.d.ts +5 -0
  148. package/dist/packages/dam/src/import/collection.js +148 -0
  149. package/dist/packages/dam/src/import/collection.js.map +1 -0
  150. package/dist/packages/dam/src/import/favorite.d.ts +2 -0
  151. package/dist/packages/dam/src/import/favorite.js +65 -0
  152. package/dist/packages/dam/src/import/favorite.js.map +1 -0
  153. package/dist/packages/dam/src/import/media-items.d.ts +5 -0
  154. package/dist/packages/dam/src/import/media-items.js +182 -0
  155. package/dist/packages/dam/src/import/media-items.js.map +1 -0
  156. package/dist/packages/dam/src/import/media-type-group.d.ts +2 -0
  157. package/dist/packages/dam/src/import/media-type-group.js +68 -0
  158. package/dist/packages/dam/src/import/media-type-group.js.map +1 -0
  159. package/dist/packages/dam/src/import/media-type.d.ts +2 -0
  160. package/dist/packages/dam/src/import/media-type.js +71 -0
  161. package/dist/packages/dam/src/import/media-type.js.map +1 -0
  162. package/dist/packages/dam/src/import/permission.d.ts +5 -0
  163. package/dist/packages/dam/src/import/permission.js +96 -0
  164. package/dist/packages/dam/src/import/permission.js.map +1 -0
  165. package/dist/packages/dam/src/import/renditions.d.ts +9 -0
  166. package/dist/packages/dam/src/import/renditions.js +326 -0
  167. package/dist/packages/dam/src/import/renditions.js.map +1 -0
  168. package/dist/packages/dam/src/messages/messages_en.json +19 -0
  169. package/dist/packages/dam/src/services/authService.d.ts +5 -0
  170. package/dist/packages/dam/src/services/authService.js +55 -0
  171. package/dist/packages/dam/src/services/authService.js.map +1 -0
  172. package/dist/packages/dam/src/services/stagingService.d.ts +37 -0
  173. package/dist/packages/dam/src/services/stagingService.js +440 -0
  174. package/dist/packages/dam/src/services/stagingService.js.map +1 -0
  175. package/dist/packages/dam/src/services/tokenCache.d.ts +8 -0
  176. package/dist/packages/dam/src/services/tokenCache.js +68 -0
  177. package/dist/packages/dam/src/services/tokenCache.js.map +1 -0
  178. package/dist/packages/dam/src/utils/constants.d.ts +70 -0
  179. package/dist/packages/dam/src/utils/constants.js +76 -0
  180. package/dist/packages/dam/src/utils/constants.js.map +1 -0
  181. package/dist/packages/dam/src/utils/interfaces/collection.d.ts +46 -0
  182. package/dist/packages/dam/src/utils/interfaces/collection.js +3 -0
  183. package/dist/packages/dam/src/utils/interfaces/collection.js.map +1 -0
  184. package/dist/packages/dam/src/utils/interfaces/favorite-request.d.ts +6 -0
  185. package/dist/packages/dam/src/utils/interfaces/favorite-request.js +3 -0
  186. package/dist/packages/dam/src/utils/interfaces/favorite-request.js.map +1 -0
  187. package/dist/packages/dam/src/utils/interfaces/media-request.d.ts +54 -0
  188. package/dist/packages/dam/src/utils/interfaces/media-request.js +3 -0
  189. package/dist/packages/dam/src/utils/interfaces/media-request.js.map +1 -0
  190. package/dist/packages/dam/src/utils/interfaces/media-type-group.d.ts +8 -0
  191. package/dist/packages/dam/src/utils/interfaces/media-type-group.js +3 -0
  192. package/dist/packages/dam/src/utils/interfaces/media-type-group.js.map +1 -0
  193. package/dist/packages/dam/src/utils/interfaces/media-type.d.ts +11 -0
  194. package/dist/packages/dam/src/utils/interfaces/media-type.js +3 -0
  195. package/dist/packages/dam/src/utils/interfaces/media-type.js.map +1 -0
  196. package/dist/packages/dam/src/utils/interfaces/media.d.ts +118 -0
  197. package/dist/packages/dam/src/utils/interfaces/media.js +3 -0
  198. package/dist/packages/dam/src/utils/interfaces/media.js.map +1 -0
  199. package/dist/packages/dam/src/utils/service.d.ts +8 -0
  200. package/dist/packages/dam/src/utils/service.js +126 -0
  201. package/dist/packages/dam/src/utils/service.js.map +1 -0
  202. package/dist/packages/dam/src/validation/collection-list-validate.d.ts +2 -0
  203. package/dist/packages/dam/src/validation/collection-list-validate.js +81 -0
  204. package/dist/packages/dam/src/validation/collection-list-validate.js.map +1 -0
  205. package/dist/packages/dam/src/validation/media-list-validate.d.ts +2 -0
  206. package/dist/packages/dam/src/validation/media-list-validate.js +91 -0
  207. package/dist/packages/dam/src/validation/media-list-validate.js.map +1 -0
  208. package/dist/packages/dam/src/validation/media-type-group-validate.d.ts +1 -0
  209. package/dist/packages/dam/src/validation/media-type-group-validate.js +28 -0
  210. package/dist/packages/dam/src/validation/media-type-group-validate.js.map +1 -0
  211. package/dist/packages/dam/src/validation/media-type-validate.d.ts +1 -0
  212. package/dist/packages/dam/src/validation/media-type-validate.js +28 -0
  213. package/dist/packages/dam/src/validation/media-type-validate.js.map +1 -0
  214. package/dist/packages/dam/src/validation/root-validate.d.ts +1 -0
  215. package/dist/packages/dam/src/validation/root-validate.js +42 -0
  216. package/dist/packages/dam/src/validation/root-validate.js.map +1 -0
  217. package/dist/packages/dam/src/validation/validate.rendition.d.ts +1 -0
  218. package/dist/packages/dam/src/validation/validate.rendition.js +69 -0
  219. package/dist/packages/dam/src/validation/validate.rendition.js.map +1 -0
  220. package/dist/packages/dam/src/validation/validate.versions.d.ts +1 -0
  221. package/dist/packages/dam/src/validation/validate.versions.js +67 -0
  222. package/dist/packages/dam/src/validation/validate.versions.js.map +1 -0
  223. package/dist/packages/deployportlet/package-lock.json +20575 -0
  224. package/dist/packages/deployportlet/package.json +51 -0
  225. package/dist/packages/deployportlet/src/commands/deployPortlet.d.ts +4 -0
  226. package/dist/packages/deployportlet/src/commands/deployPortlet.js +99 -0
  227. package/dist/packages/deployportlet/src/commands/deployPortlet.js.map +1 -0
  228. package/dist/packages/deployportlet/src/commands/undeployPortlet.d.ts +4 -0
  229. package/dist/packages/deployportlet/src/commands/undeployPortlet.js +118 -0
  230. package/dist/packages/deployportlet/src/commands/undeployPortlet.js.map +1 -0
  231. package/dist/packages/deployportlet/src/commands/xmlaccess.d.ts +4 -0
  232. package/dist/packages/deployportlet/src/commands/xmlaccess.js +37 -0
  233. package/dist/packages/deployportlet/src/commands/xmlaccess.js.map +1 -0
  234. package/dist/packages/deployportlet/src/errors/CommandLineMessages_en.json +5 -0
  235. package/dist/packages/deployportlet/src/messages/messages_en.json +10 -0
  236. package/dist/packages/deployportlet/src/services/undeployPortletServices.d.ts +4 -0
  237. package/dist/packages/deployportlet/src/services/undeployPortletServices.js +92 -0
  238. package/dist/packages/deployportlet/src/services/undeployPortletServices.js.map +1 -0
  239. package/dist/packages/deployscriptapplication/package-lock.json +20758 -0
  240. package/dist/packages/deployscriptapplication/package.json +48 -0
  241. package/dist/packages/deployscriptapplication/src/commands/list.js +109 -0
  242. package/dist/packages/deployscriptapplication/src/commands/pull.d.ts +6 -0
  243. package/dist/packages/deployscriptapplication/src/commands/pull.js +195 -0
  244. package/dist/packages/deployscriptapplication/src/commands/pull.js.map +1 -0
  245. package/dist/packages/deployscriptapplication/src/commands/push.d.ts +9 -0
  246. package/dist/packages/deployscriptapplication/src/commands/push.js +282 -0
  247. package/dist/packages/deployscriptapplication/src/commands/push.js.map +1 -0
  248. package/dist/packages/deployscriptapplication/src/commands/restoreScriptApplication.d.ts +5 -0
  249. package/dist/packages/deployscriptapplication/src/commands/restoreScriptApplication.js +125 -0
  250. package/dist/packages/deployscriptapplication/src/commands/restoreScriptApplication.js.map +1 -0
  251. package/dist/packages/deployscriptapplication/src/commands/undeployScriptApplication.d.ts +5 -0
  252. package/dist/packages/deployscriptapplication/src/commands/undeployScriptApplication.js +162 -0
  253. package/dist/packages/deployscriptapplication/src/commands/undeployScriptApplication.js.map +1 -0
  254. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages.properties +211 -0
  255. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ar.properties +211 -0
  256. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ca.properties +211 -0
  257. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_cs.properties +211 -0
  258. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_da.properties +211 -0
  259. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_de.properties +211 -0
  260. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_el.properties +211 -0
  261. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_en.json +129 -0
  262. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_en.properties +211 -0
  263. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_es.properties +211 -0
  264. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_fi.properties +211 -0
  265. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_fr.properties +211 -0
  266. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_hr.properties +211 -0
  267. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_hu.properties +211 -0
  268. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_it.properties +212 -0
  269. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_iw.properties +211 -0
  270. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ja.properties +211 -0
  271. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_kk.properties +211 -0
  272. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ko.properties +211 -0
  273. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_nl.properties +211 -0
  274. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_no.properties +211 -0
  275. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_pl.properties +211 -0
  276. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_pt.properties +211 -0
  277. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_pt_BR.properties +211 -0
  278. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ro.properties +211 -0
  279. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ru.properties +211 -0
  280. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_sk.properties +211 -0
  281. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_sl.properties +211 -0
  282. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_sv.properties +211 -0
  283. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_th.properties +211 -0
  284. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_tr.properties +211 -0
  285. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_uk.properties +211 -0
  286. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_zh.properties +210 -0
  287. package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_zh_TW.properties +211 -0
  288. package/dist/packages/deployscriptapplication/src/messages/messages.properties +63 -0
  289. package/dist/packages/deployscriptapplication/src/messages/messages_ar.properties +63 -0
  290. package/dist/packages/deployscriptapplication/src/messages/messages_ca.properties +63 -0
  291. package/dist/packages/deployscriptapplication/src/messages/messages_cs.properties +63 -0
  292. package/dist/packages/deployscriptapplication/src/messages/messages_da.properties +63 -0
  293. package/dist/packages/deployscriptapplication/src/messages/messages_de.properties +63 -0
  294. package/dist/packages/deployscriptapplication/src/messages/messages_el.properties +63 -0
  295. package/dist/packages/deployscriptapplication/src/messages/messages_en.json +61 -0
  296. package/dist/packages/deployscriptapplication/src/messages/messages_en.properties +63 -0
  297. package/dist/packages/deployscriptapplication/src/messages/messages_es.properties +63 -0
  298. package/dist/packages/deployscriptapplication/src/messages/messages_fi.properties +63 -0
  299. package/dist/packages/deployscriptapplication/src/messages/messages_fr.properties +63 -0
  300. package/dist/packages/deployscriptapplication/src/messages/messages_hr.properties +63 -0
  301. package/dist/packages/deployscriptapplication/src/messages/messages_hu.properties +63 -0
  302. package/dist/packages/deployscriptapplication/src/messages/messages_it.properties +63 -0
  303. package/dist/packages/deployscriptapplication/src/messages/messages_iw.properties +63 -0
  304. package/dist/packages/deployscriptapplication/src/messages/messages_ja.properties +63 -0
  305. package/dist/packages/deployscriptapplication/src/messages/messages_kk.properties +63 -0
  306. package/dist/packages/deployscriptapplication/src/messages/messages_ko.properties +63 -0
  307. package/dist/packages/deployscriptapplication/src/messages/messages_nl.properties +63 -0
  308. package/dist/packages/deployscriptapplication/src/messages/messages_no.properties +63 -0
  309. package/dist/packages/deployscriptapplication/src/messages/messages_pl.properties +63 -0
  310. package/dist/packages/deployscriptapplication/src/messages/messages_pt.properties +63 -0
  311. package/dist/packages/deployscriptapplication/src/messages/messages_pt_BR.properties +63 -0
  312. package/dist/packages/deployscriptapplication/src/messages/messages_ro.properties +63 -0
  313. package/dist/packages/deployscriptapplication/src/messages/messages_ru.properties +63 -0
  314. package/dist/packages/deployscriptapplication/src/messages/messages_sk.properties +63 -0
  315. package/dist/packages/deployscriptapplication/src/messages/messages_sl.properties +63 -0
  316. package/dist/packages/deployscriptapplication/src/messages/messages_sv.properties +63 -0
  317. package/dist/packages/deployscriptapplication/src/messages/messages_th.properties +63 -0
  318. package/dist/packages/deployscriptapplication/src/messages/messages_tr.properties +63 -0
  319. package/dist/packages/deployscriptapplication/src/messages/messages_uk.properties +63 -0
  320. package/dist/packages/deployscriptapplication/src/messages/messages_zh.properties +67 -0
  321. package/dist/packages/deployscriptapplication/src/messages/messages_zh_TW.properties +67 -0
  322. package/dist/packages/deployscriptapplication/src/util/constants.d.ts +74 -0
  323. package/dist/packages/deployscriptapplication/src/util/constants.js +98 -0
  324. package/dist/packages/deployscriptapplication/src/util/constants.js.map +1 -0
  325. package/dist/packages/deployscriptapplication/src/util/generic.d.ts +2 -0
  326. package/dist/packages/deployscriptapplication/src/util/generic.js +29 -0
  327. package/dist/packages/deployscriptapplication/src/util/generic.js.map +1 -0
  328. package/dist/packages/deploytheme/package-lock.json +21204 -0
  329. package/dist/packages/deploytheme/package.json +56 -0
  330. package/dist/packages/deploytheme/src/commands/deployApplication.d.ts +4 -0
  331. package/dist/packages/deploytheme/src/commands/deployApplication.js +115 -0
  332. package/dist/packages/deploytheme/src/commands/deployApplication.js.map +1 -0
  333. package/dist/packages/deploytheme/src/commands/deployTheme.d.ts +7 -0
  334. package/dist/packages/deploytheme/src/commands/deployTheme.js +286 -0
  335. package/dist/packages/deploytheme/src/commands/deployTheme.js.map +1 -0
  336. package/dist/packages/deploytheme/src/commands/undeployApplication.d.ts +4 -0
  337. package/dist/packages/deploytheme/src/commands/undeployApplication.js +46 -0
  338. package/dist/packages/deploytheme/src/commands/undeployApplication.js.map +1 -0
  339. package/dist/packages/deploytheme/src/commands/undeployTheme.d.ts +10 -0
  340. package/dist/packages/deploytheme/src/commands/undeployTheme.js +288 -0
  341. package/dist/packages/deploytheme/src/commands/undeployTheme.js.map +1 -0
  342. package/dist/packages/deploytheme/src/errors/CommandLineMessages_en.json +28 -0
  343. package/dist/packages/deploytheme/src/messages/messages_en.json +30 -0
  344. package/dist/packages/deploytheme/src/services/themeServices.d.ts +15 -0
  345. package/dist/packages/deploytheme/src/services/themeServices.js +413 -0
  346. package/dist/packages/deploytheme/src/services/themeServices.js.map +1 -0
  347. package/dist/packages/deploytheme/src/utils/Export.xml +28 -0
  348. package/dist/packages/livesync/package-lock.json +9737 -0
  349. package/dist/packages/livesync/package.json +49 -0
  350. package/dist/packages/livesync/src/commands/pullTheme.d.ts +5 -0
  351. package/dist/packages/livesync/src/commands/pullTheme.js +104 -0
  352. package/dist/packages/livesync/src/commands/pullTheme.js.map +1 -0
  353. package/dist/packages/livesync/src/commands/pullWcmDesignLibrary.d.ts +18 -0
  354. package/dist/packages/livesync/src/commands/pullWcmDesignLibrary.js +193 -0
  355. package/dist/packages/livesync/src/commands/pullWcmDesignLibrary.js.map +1 -0
  356. package/dist/packages/livesync/src/commands/pushTheme.d.ts +12 -0
  357. package/dist/packages/livesync/src/commands/pushTheme.js +233 -0
  358. package/dist/packages/livesync/src/commands/pushTheme.js.map +1 -0
  359. package/dist/packages/livesync/src/commands/pushWcmDesignLibrary.d.ts +4 -0
  360. package/dist/packages/livesync/src/commands/pushWcmDesignLibrary.js +23 -0
  361. package/dist/packages/livesync/src/commands/pushWcmDesignLibrary.js.map +1 -0
  362. package/dist/packages/livesync/src/errors/CommandLineMessages_en.json +52 -0
  363. package/dist/packages/livesync/src/messages/messages_en.json +33 -0
  364. package/dist/packages/livesync/src/services/EventsQueue.d.ts +12 -0
  365. package/dist/packages/livesync/src/services/EventsQueue.js +66 -0
  366. package/dist/packages/livesync/src/services/EventsQueue.js.map +1 -0
  367. package/dist/packages/livesync/src/services/foldersWcmServices.d.ts +7 -0
  368. package/dist/packages/livesync/src/services/foldersWcmServices.js +120 -0
  369. package/dist/packages/livesync/src/services/foldersWcmServices.js.map +1 -0
  370. package/dist/packages/livesync/src/services/htmlComponentWcmServices.d.ts +6 -0
  371. package/dist/packages/livesync/src/services/htmlComponentWcmServices.js +108 -0
  372. package/dist/packages/livesync/src/services/htmlComponentWcmServices.js.map +1 -0
  373. package/dist/packages/livesync/src/services/initialSyncServices.d.ts +3 -0
  374. package/dist/packages/livesync/src/services/initialSyncServices.js +94 -0
  375. package/dist/packages/livesync/src/services/initialSyncServices.js.map +1 -0
  376. package/dist/packages/livesync/src/services/livesyncUtils.d.ts +2 -0
  377. package/dist/packages/livesync/src/services/livesyncUtils.js +59 -0
  378. package/dist/packages/livesync/src/services/livesyncUtils.js.map +1 -0
  379. package/dist/packages/livesync/src/services/metadataServices.d.ts +16 -0
  380. package/dist/packages/livesync/src/services/metadataServices.js +117 -0
  381. package/dist/packages/livesync/src/services/metadataServices.js.map +1 -0
  382. package/dist/packages/livesync/src/services/ongoingSyncServices.d.ts +10 -0
  383. package/dist/packages/livesync/src/services/ongoingSyncServices.js +266 -0
  384. package/dist/packages/livesync/src/services/ongoingSyncServices.js.map +1 -0
  385. package/dist/packages/livesync/src/services/wcmRestV2Services.d.ts +5 -0
  386. package/dist/packages/livesync/src/services/wcmRestV2Services.js +92 -0
  387. package/dist/packages/livesync/src/services/wcmRestV2Services.js.map +1 -0
  388. package/dist/packages/livesync/src/types/EventHandler.type.d.ts +5 -0
  389. package/dist/packages/livesync/src/types/EventHandler.type.js +3 -0
  390. package/dist/packages/livesync/src/types/EventHandler.type.js.map +1 -0
  391. package/dist/packages/livesync/src/types/EventQueueItem.type.d.ts +7 -0
  392. package/dist/packages/livesync/src/types/EventQueueItem.type.js +3 -0
  393. package/dist/packages/livesync/src/types/EventQueueItem.type.js.map +1 -0
  394. package/dist/packages/livesync/src/types/OngoingSyncHooks.type.d.ts +4 -0
  395. package/dist/packages/livesync/src/types/OngoingSyncHooks.type.js +3 -0
  396. package/dist/packages/livesync/src/types/OngoingSyncHooks.type.js.map +1 -0
  397. package/dist/packages/livesync/src/types/WcmRestApiV2.type.d.ts +99 -0
  398. package/dist/packages/livesync/src/types/WcmRestApiV2.type.js +3 -0
  399. package/dist/packages/livesync/src/types/WcmRestApiV2.type.js.map +1 -0
  400. package/dist/packages/livesync/src/types/index.d.ts +4 -0
  401. package/dist/packages/livesync/src/types/index.js +17 -0
  402. package/dist/packages/livesync/src/types/index.js.map +1 -0
  403. package/dist/packages/mls_exim/package-lock.json +13855 -0
  404. package/dist/packages/mls_exim/package.json +51 -0
  405. package/dist/packages/mls_exim/src/errors/CommandLineMessages_en.json +19 -0
  406. package/dist/packages/mls_exim/src/export/mlsExport.d.ts +7 -0
  407. package/dist/packages/mls_exim/src/export/mlsExport.js +292 -0
  408. package/dist/packages/mls_exim/src/export/mlsExport.js.map +1 -0
  409. package/dist/packages/mls_exim/src/export/mlsExport.ts +371 -0
  410. package/dist/packages/mls_exim/src/import/mlsImport.d.ts +8 -0
  411. package/dist/packages/mls_exim/src/import/mlsImport.js +104 -0
  412. package/dist/packages/mls_exim/src/import/mlsImport.js.map +1 -0
  413. package/dist/packages/mls_exim/src/import/mlsImport.ts +138 -0
  414. package/dist/packages/mls_exim/src/messages/messages_en.json +14 -0
  415. package/dist/packages/mls_exim/src/utils/interfaces/export.d.ts +133 -0
  416. package/dist/packages/mls_exim/src/utils/interfaces/export.js +3 -0
  417. package/dist/packages/mls_exim/src/utils/interfaces/export.js.map +1 -0
  418. package/dist/packages/mls_exim/src/utils/interfaces/export.ts +165 -0
  419. package/dist/packages/mls_exim/src/utils/interfaces/import.d.ts +52 -0
  420. package/dist/packages/mls_exim/src/utils/interfaces/import.js +3 -0
  421. package/dist/packages/mls_exim/src/utils/interfaces/import.js.map +1 -0
  422. package/dist/packages/mls_exim/src/utils/interfaces/import.ts +76 -0
  423. package/dist/packages/sharedlibrary/package-lock.json +20575 -0
  424. package/dist/packages/sharedlibrary/package.json +51 -0
  425. package/dist/packages/sharedlibrary/src/commands/delete.d.ts +4 -0
  426. package/dist/packages/sharedlibrary/src/commands/delete.js +64 -0
  427. package/dist/packages/sharedlibrary/src/commands/delete.js.map +1 -0
  428. package/dist/packages/sharedlibrary/src/commands/upload.d.ts +4 -0
  429. package/dist/packages/sharedlibrary/src/commands/upload.js +105 -0
  430. package/dist/packages/sharedlibrary/src/commands/upload.js.map +1 -0
  431. package/dist/packages/sharedlibrary/src/errors/CommandLineMessages_en.json +10 -0
  432. package/dist/packages/sharedlibrary/src/messages/messages_en.json +7 -0
  433. package/dist/packages/sharedlibrary/src/services/sharedLibraryServices.d.ts +5 -0
  434. package/dist/packages/sharedlibrary/src/services/sharedLibraryServices.js +100 -0
  435. package/dist/packages/sharedlibrary/src/services/sharedLibraryServices.js.map +1 -0
  436. package/dist/packages/syndication/package-lock.json +20575 -0
  437. package/dist/packages/syndication/package.json +51 -0
  438. package/dist/packages/syndication/src/commands/subscriber.d.ts +4 -0
  439. package/dist/packages/syndication/src/commands/subscriber.js +62 -0
  440. package/dist/packages/syndication/src/commands/subscriber.js.map +1 -0
  441. package/dist/packages/syndication/src/commands/syndicationReport.d.ts +2 -0
  442. package/dist/packages/syndication/src/commands/syndicationReport.js +99 -0
  443. package/dist/packages/syndication/src/commands/syndicationReport.js.map +1 -0
  444. package/dist/packages/syndication/src/commands/syndicator.d.ts +4 -0
  445. package/dist/packages/syndication/src/commands/syndicator.js +62 -0
  446. package/dist/packages/syndication/src/commands/syndicator.js.map +1 -0
  447. package/dist/packages/syndication/src/commands/syndicatorFailedItem.d.ts +4 -0
  448. package/dist/packages/syndication/src/commands/syndicatorFailedItem.js +104 -0
  449. package/dist/packages/syndication/src/commands/syndicatorFailedItem.js.map +1 -0
  450. package/dist/packages/syndication/src/errors/CommandLineMessages_en.json +12 -0
  451. package/dist/packages/syndication/src/messages/messages_en.json +9 -0
  452. package/dist/packages/syndication/src/services/syndicationService.d.ts +108 -0
  453. package/dist/packages/syndication/src/services/syndicationService.js +167 -0
  454. package/dist/packages/syndication/src/services/syndicationService.js.map +1 -0
  455. package/dist/src/errors/CommandLineMessages_en.json +53 -0
  456. package/dist/src/index.d.ts +1 -0
  457. package/dist/src/index.js +2207 -0
  458. package/dist/src/index.js.map +1 -0
  459. package/dist/src/services/apiServices.d.ts +32 -0
  460. package/dist/src/services/apiServices.js +932 -0
  461. package/dist/src/services/apiServices.js.map +1 -0
  462. package/dist/src/services/filesServices.d.ts +9 -0
  463. package/dist/src/services/filesServices.js +134 -0
  464. package/dist/src/services/filesServices.js.map +1 -0
  465. package/dist/src/services/requestService.d.ts +4 -0
  466. package/dist/src/services/requestService.js +55 -0
  467. package/dist/src/services/requestService.js.map +1 -0
  468. package/dist/src/utils/commands.d.ts +2 -0
  469. package/dist/src/utils/commands.js +13 -0
  470. package/dist/src/utils/commands.js.map +1 -0
  471. package/dist/src/utils/constants.d.ts +389 -0
  472. package/dist/src/utils/constants.js +464 -0
  473. package/dist/src/utils/constants.js.map +1 -0
  474. package/dist/src/utils/interfaces.d.ts +19 -0
  475. package/dist/src/utils/interfaces.js +3 -0
  476. package/dist/src/utils/interfaces.js.map +1 -0
  477. package/dist/src/utils/logger.d.ts +3 -0
  478. package/dist/src/utils/logger.js +126 -0
  479. package/dist/src/utils/logger.js.map +1 -0
  480. package/dist/src/utils/utils.d.ts +31 -0
  481. package/dist/src/utils/utils.js +791 -0
  482. package/dist/src/utils/utils.js.map +1 -0
  483. package/dist/src/utils/validateOptions.d.ts +4 -0
  484. package/dist/src/utils/validateOptions.js +730 -0
  485. package/dist/src/utils/validateOptions.js.map +1 -0
  486. package/package.json +149 -0
@@ -0,0 +1,389 @@
1
+ export interface IConstantsType {
2
+ [key: string]: string;
3
+ }
4
+ export declare const LOGGER_CONSTANTS: IConstantsType;
5
+ export declare const COMMANDS: {
6
+ DXCLIENT: string;
7
+ DEPLOY_PORTLET: string;
8
+ UNDEPLOY_PORTLET: string;
9
+ SCRIPT_APPLICATION: string;
10
+ XMLACCESS: string;
11
+ SCRIPT_APPLICATION_PUSH: string;
12
+ SCRIPT_APPLICATION_PULL: string;
13
+ UNDEPLOY_SCRIPTAPPLICATION: string;
14
+ DEPLOY_THEME: string;
15
+ UNDEPLOY_THEME: string;
16
+ LIVESYNC: string;
17
+ RESTORE_SCRIPTAPPLICATION: string;
18
+ RESTART_DXCORE: string;
19
+ RESTART_CORE_PODS: string;
20
+ MLS_EXPORT: string;
21
+ MLS_IMPORT: string;
22
+ DEPLOY_APPLICATION: string;
23
+ UNDEPLOY_APPLICATION: string;
24
+ MANAGE_SYNDICATOR: string;
25
+ MANAGE_SUBSCRIBER: string;
26
+ HELP: string;
27
+ H: string;
28
+ GET_SYNDICATION_REPORT: string;
29
+ SHARED_LIBRARY: string;
30
+ PZN_EXPORT: string;
31
+ PZN_IMPORT: string;
32
+ DELETE_DAM_SCHEMA: string;
33
+ MANAGE_DAM_STAGING: string;
34
+ DAM_TRIGGER_REINDEXING: string;
35
+ RESOURCE_ENVIRONMENT_PROVIDER: string;
36
+ LIST_DAM_SCHEMA: string;
37
+ MANAGE_VIRTUAL_PORTAL: string;
38
+ CREATE_CREDENTIAL_VAULT: string;
39
+ CREATE_SYNDICATION_RELATION: string;
40
+ WCM_LIBRARY_EXPORT: string;
41
+ DIFFERENTIAL_REPORT: string;
42
+ WCM_LIBRARY_IMPORT: string;
43
+ MANAGE_DAM_ASSETS: string;
44
+ VERSION_COMPAT: string;
45
+ ACCEPT_LICENSE: string;
46
+ };
47
+ export declare const SUB_COMMANDS: {
48
+ SCRIPT_APPLICATION_PUSH: string;
49
+ SCRIPT_APPLICATION_PULL: string;
50
+ LIVESYNC_PUSH_THEME: string;
51
+ LIVESYNC_PULL_THEME: string;
52
+ LIVESYNC_PULL_WCM_DESIGN_LIBRARY: string;
53
+ LIVESYNC_PUSH_WCM_DESIGN_LIBRARY: string;
54
+ FORCE: string;
55
+ F: string;
56
+ GET_SYNDICATION_REPORT: string;
57
+ SHARED_LIBRARY_UPLOAD: string;
58
+ SHARED_LIBRARY_DELETE: string;
59
+ DAM_REGISTER_SUBSCRIBER: string;
60
+ DAM_DEREGISTER_SUBSCRIBER: string;
61
+ DAM_TRIGGER_STAGING: string;
62
+ DAM_GET_ALL_SUBSCRIBERS: string;
63
+ UPDATE_SECRETS: string;
64
+ CREATE_PROPERTY: string;
65
+ UPDATE_PROPERTY: string;
66
+ DELETE_PROPERTY: string;
67
+ EXPORT_PROPERTIES: string;
68
+ IMPORT_PROPERTIES: string;
69
+ LIST_VIRTUAL_PORTALS: string;
70
+ CREATE_VIRTUAL_PORTAL: string;
71
+ EXPORT_VIRTUAL_PORTAL: string;
72
+ IMPORT_VIRTUAL_PORTAL: string;
73
+ SUMMARY_REPORT: string;
74
+ RESOURCE_REPORT: string;
75
+ RETRIEVE_PROPERTY: string;
76
+ DAM_ASSETS_EXPORT: string;
77
+ DAM_ASSETS_IMPORT: string;
78
+ DAM_EXPORT_VALIDATE: string;
79
+ DAM_GET_STAGING_MISMATCH_REPORT: string;
80
+ DAM_FIND_STAGING_MISMATCH: string;
81
+ DAM_START_STAGING_RESYNC: string;
82
+ DAM_DELETE_STAGING_MISMATCH: string;
83
+ };
84
+ export declare const LIVESYNC_SUB_CMDS: string[];
85
+ export declare const LIVESYNC_THEME_SUB_CMDS: string[];
86
+ export declare const LIVESYNC_WCM_DESIGN_LIBRARY_SUB_CMDS: string[];
87
+ export declare const COMMAND_ARGUMENTS: {
88
+ DX_PROTOCOL: string;
89
+ HOSTNAME: string;
90
+ DX_PORT: string;
91
+ DX_SOAP_PORT: string;
92
+ XML_CONFIG_PATH: string;
93
+ DX_USER_NAME: string;
94
+ DX_PASSWORD: string;
95
+ DX_CONNECT_USERNAME: string;
96
+ DX_CONNECT_PASSWORD: string;
97
+ DX_CONNECT_PORT: string;
98
+ XML_FILE: string;
99
+ WAR_FILE: string;
100
+ APPLICATION_FILE: string;
101
+ APPLICATION_NAME: string;
102
+ DX_CORE_PROFILE_NAME: string;
103
+ DX_CORE_PROFILE_PATH: string;
104
+ WCM_SITE_AREA: string;
105
+ WCM_CONTENT_PATH: string;
106
+ WCM_CONTENT_NAME: string;
107
+ PREBUILT_ZIP: string;
108
+ CONTENT_HANDLER_PATH: string;
109
+ MAIN_HTML_FILE: string;
110
+ WCM_CONTENT_TITLE: string;
111
+ CONTENT_ROOT: string;
112
+ WCM_CONTENT_ID: string;
113
+ VIRTUAL_PORTAL_CONTEXT: string;
114
+ VERSION_NAME: string;
115
+ THEME_NAME: string;
116
+ THEME_PATH: string;
117
+ UUID: string;
118
+ ENABLE: string;
119
+ STATE: string;
120
+ RINGAPI_PORT: string;
121
+ RINGAPI_VERSION: string;
122
+ EXPORT_PATH: string;
123
+ LTPA_TOKEN_REFRESH_TIME: string;
124
+ WCM_LIBRARY_ID: string;
125
+ ENABLE_BACKUP: string;
126
+ IMPORT_PATH: string;
127
+ LIB_FILE_PATH: string;
128
+ LIB_FILE_NAMES: string;
129
+ HELP: string;
130
+ DX_WAS_USER_NAME: string;
131
+ DX_WAS_PASSWORD: string;
132
+ VP_TITLE: string;
133
+ VP_REALM: string;
134
+ VP_ADMIN_GROUP: string;
135
+ VP_HOSTNAME: string;
136
+ VP_CONTEXT: string;
137
+ PROVIDER_NAME: string;
138
+ PROPERTY_NAME: string;
139
+ PROPERTY_VALUE: string;
140
+ PROPERTY_DESC: string;
141
+ RULES_FILE_PATH: string;
142
+ FILEPATH: string;
143
+ DX_CONTEXT_ROOT: string;
144
+ LIBRARIES_NAME: string;
145
+ };
146
+ export declare const COMMANDS_MESSAGES_PATHS: {
147
+ DEPLOY_PORTLET: string;
148
+ UNDEPLOY_PORTLET: string;
149
+ SCRIPT_APPLICATION_PUSH: string;
150
+ SCRIPT_APPLICATION_PULL: string;
151
+ UNDEPLOY_SCRIPT_APPLICATION: string;
152
+ DEPLOY_THEME: string;
153
+ LIVESYNC: string;
154
+ RESTART_DXCORE: string;
155
+ RESTORE_SCRIPT_APPLICATION: string;
156
+ XMLACCESS: string;
157
+ MLS_EXPORT_IMPORT: string;
158
+ UNDEPLOY_THEME: string;
159
+ DEPLOY_APPLICATION: string;
160
+ UNDEPLOY_APPLICATION: string;
161
+ MANAGE_SYNDICATOR: string;
162
+ MANAGE_SUBSCRIBER: string;
163
+ GET_SYNDICATION_REPORT: string;
164
+ SHARED_LIBRARY: string;
165
+ PZN_EXPORT: string;
166
+ PZN_IMPORT: string;
167
+ DAM_SCHEMA: string;
168
+ EXPORT_VIRTUAL_PORTAL: string;
169
+ RESOURCE_ENVIRONMENT_PROVIDER: string;
170
+ LIST_VIRTUAL_PORTALS: string;
171
+ CREATE_VIRTUAL_PORTAL: string;
172
+ IMPORT_VIRTUAL_PORTAL: string;
173
+ CREATE_CREDENTIAL_VAULT: string;
174
+ CREATE_SYNDICATION_RELATION: string;
175
+ WCM_LIBRARY_EXPORT: string;
176
+ DIFFERENTIAL_REPORT: string;
177
+ WCM_LIBRARY_IMPORT: string;
178
+ SUMMARY_REPORT: string;
179
+ RESOURCE_REPORT: string;
180
+ GENERIC: string;
181
+ };
182
+ export declare const CONSTANTS_FILE_NAMES: {
183
+ MESSAGES_FILE_NAME: string;
184
+ ERROR_MESSAGES_FILE_NAME: string;
185
+ LICENSE_FILE_NAME: string;
186
+ CONFIG_FILE_NAME: string;
187
+ };
188
+ export declare const CONSTANTS_FOLDER_NAME: {
189
+ MESSAGES_FOLDER_NAME: string;
190
+ ERROR_MESSAGES_FOLDER_NAME: string;
191
+ };
192
+ export declare const ResponseStatus: {
193
+ SUCCESS: string;
194
+ };
195
+ export declare const ENCODE_TYPE = "base64";
196
+ export declare const URL_PATH: {
197
+ defaultContentHandler: string;
198
+ fsType1: string;
199
+ liveSyncTempFolderName: string;
200
+ webDavTheme: string;
201
+ dxConnectBaseUrl: string;
202
+ runtimeControllerBaseURL: string;
203
+ syndicator: string;
204
+ syndication: string;
205
+ subscriber: string;
206
+ status: string;
207
+ failedItemes: string;
208
+ publishServletUrl: string;
209
+ ringAPIURL: string;
210
+ damAPIURL: string;
211
+ publishPznImportURL: string;
212
+ wcmContext: string;
213
+ wcmV2Libraries: string;
214
+ wcmV2Search: string;
215
+ wcmV2Folders: string;
216
+ syndicationcreatorUrl: string;
217
+ wcmV2LibrariesHTMLComponent: string;
218
+ };
219
+ export declare const URL_PARAMS: {
220
+ version: string;
221
+ upload: string;
222
+ delete: string;
223
+ restartDXCore: string;
224
+ deployApplication: string;
225
+ undeployApplication: string;
226
+ exportApplication: string;
227
+ uploadToSharedLibraries: string;
228
+ deleteFromSharedLibraries: string;
229
+ soapPort: string;
230
+ applicationName: string;
231
+ pznContent: string;
232
+ pznContentWorkSpace: string;
233
+ listVirtualPortals: string;
234
+ wcmV2Limit: string;
235
+ dxProfileName: string;
236
+ dxProfilePath: string;
237
+ createProperty: string;
238
+ updateProperty: string;
239
+ deleteProperty: string;
240
+ exportProperty: string;
241
+ importProperty: string;
242
+ pznImport: string;
243
+ createVirtualPortal: string;
244
+ startApplication: string;
245
+ assignVPToAdminGroup: string;
246
+ exportWCMLibrary: string;
247
+ downloadPath: string;
248
+ sourcePath: string;
249
+ getFullConfigExport: string;
250
+ importWCMLibrary: string;
251
+ retrieveProperties: string;
252
+ libraryid: string;
253
+ };
254
+ export declare enum HttpStatus {
255
+ SUCCESS = 200,
256
+ CREATED = 201,
257
+ ACCEPTED = 202,
258
+ BAD_REQUEST = 400,
259
+ UNAUTHORIZED = 401,
260
+ FORBIDDEN = 403,
261
+ NOT_FOUND = 404,
262
+ INTERNAL_SERVER_ERROR = 500,
263
+ CONFLICT = 409,
264
+ NO_CONTENT = 204,
265
+ MULTI_STATUS = 207,
266
+ UPDATE = 205,
267
+ SERVICE_UNAVAILABLE = 503,
268
+ IM_A_TEAPOT = 418
269
+ }
270
+ export declare const CONTENT_TYPE: {
271
+ applicationZip: string;
272
+ applicationUrl: string;
273
+ applicationJson: string;
274
+ textXml: string;
275
+ userAgent: string;
276
+ contentType: string;
277
+ accept: string;
278
+ multipart_formdata: string;
279
+ };
280
+ export declare const ACCEPT_TYPE: {
281
+ textOrXml: string;
282
+ applicationJson: string;
283
+ };
284
+ export declare enum FileType {
285
+ ZIP = "zip",
286
+ EAR = "ear",
287
+ WAR = "war",
288
+ JAR = "jar",
289
+ XML = "xml",
290
+ CSV = "csv",
291
+ JSON = "json",
292
+ DS_STORE = ".DS_Store",
293
+ HTML = "html",
294
+ NODES = "nodes",
295
+ CFG = "cfg",
296
+ TARGZ = "tar.gz",
297
+ GZ = "gz"
298
+ }
299
+ export declare const CONSTANT_VALUES: IConstantsType;
300
+ export declare const RESPONSE_TYPE = "stream";
301
+ export declare const ENABLE_BACKUP_TRUE = "true";
302
+ export declare const HTTPS = "https";
303
+ export declare const HTTP = "http";
304
+ export declare const RING_API_LOGIN_PATH = "/auth/login";
305
+ export declare const RING_API_WEB_CONTENTS_SEARCH = "/dxmyrest/webcontent/search";
306
+ export declare const RING_API_MLS_TRANSLATION = "/dxmyrest/multilingual-config/translation";
307
+ export declare const POST = "POST";
308
+ export declare const GET = "GET";
309
+ export declare const PUT = "PUT";
310
+ export declare const DELETE = "DELETE";
311
+ export declare const PATCH = "PATCH";
312
+ export declare const SEARCH_PAGESIZE = 150;
313
+ export declare const WCMElementTypes: {
314
+ SHORT_TEXT_COMPONENT: string;
315
+ TEXT_COMPONENT: string;
316
+ HTML_COMPONENT: string;
317
+ RICH_TEXT_COMPONENT: string;
318
+ };
319
+ export declare const CONTENT_ELEMENT_TYPE = "Element";
320
+ export declare const WCM_TYPE = "Content";
321
+ export declare const CONTENT_INFORMATION_TYPE = "Information";
322
+ export declare const CONTENT_TITLE_TYPE = "Title";
323
+ export declare const CONTENT_DESCRIPTION_TYPE = "Description";
324
+ export interface ICreateZipType {
325
+ zipFilePaths: string[];
326
+ zipContents: string[];
327
+ }
328
+ export declare const zipContent: ICreateZipType;
329
+ export declare const RESULT_TEXT: {
330
+ OK: string;
331
+ FAILED: string;
332
+ WARNING: string;
333
+ };
334
+ export declare const DX_LOGIN_PATH = "/!ut/p/um/currentuser/profile";
335
+ export declare const DX_GET_QUERY_URI_PATH = "/!ut/p/wcmrest/query";
336
+ export declare const DX_GET_TRANSLATIONS_URI_PATH = "/!ut/p/wcmrest/translations";
337
+ export declare enum WCMDataType {
338
+ TEXT = "text/plain",
339
+ HTML = "text/html"
340
+ }
341
+ export declare const defaultExportPath: string;
342
+ export declare const MAX_DATA_LENGTH_CONTENT = 250;
343
+ export declare const LAST_MODIFIED_AFTER_FORMAT = "YYYY-MM-DDTHH:mm";
344
+ export declare const WHITELIST_LOCALE: string[];
345
+ export declare const DEFAULT_LOCALE = "en";
346
+ export declare const SCHEMA_TYPE: {
347
+ ACTIVE: string;
348
+ INACTIVE: string;
349
+ };
350
+ export declare const TARGETWORKSPACE = "ROOTWORKSPACE";
351
+ export declare const DEFAULT_TARGETPATH = "/";
352
+ export declare const EXCLUDES: {
353
+ excludes: string[];
354
+ };
355
+ export declare const TYPES: {
356
+ FALSE: boolean;
357
+ TRUE: boolean;
358
+ };
359
+ export declare const REQUEST_BUFFER: number;
360
+ export declare const REQUEST_MAXFILE_SIZE: number;
361
+ export declare const MAX_CONTENT_LENGTH = "256 MB";
362
+ export declare const CLIENT_SECRET = "gVkYp3s6v9y$B&E)H@MbQeThWmZq4t7w";
363
+ declare type IListType<TValue> = {
364
+ [id in FeaturesEnum]: TValue;
365
+ };
366
+ export declare enum FeaturesEnum {
367
+ LIVESYNC = "LIVESYNC",
368
+ DAM_GET_STAGING_MISMATCH_REPORT = "DAM_GET_STAGING_MISMATCH_REPORT",
369
+ DAM_REINDEXING = "DAM_REINDEXING",
370
+ LIVESYNC_WCM = "LIVESYNC_WCM"
371
+ }
372
+ export declare const featureListConfig: IListType<boolean>;
373
+ export declare const ERROR_MAX_BODY_LENGTH = "ERR_FR_MAX_BODY_LENGTH_EXCEEDED";
374
+ export declare const ERROR_BAD_REQUEST = "ERR_BAD_REQUEST";
375
+ export declare enum ChokidarEvent {
376
+ ADD = "add",
377
+ ADD_DIR = "addDir",
378
+ CHANGE = "change",
379
+ UNLINK = "unlink",
380
+ UNLINK_DIR = "unlinkDir",
381
+ ERROR = "error",
382
+ READY = "ready",
383
+ RAW = "raw"
384
+ }
385
+ export declare const LIVESYNC_WCM_LIBRARY_META_FOLDER = ".library";
386
+ export declare const LIVESYNC_WCM_LIBRARY_META_FILENAME = "index.json";
387
+ export declare const mandatoryDAMArguments: string[];
388
+ export declare const COMPONENTS = "components";
389
+ export {};