@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.
- package/LICENSE +62 -0
- package/README.txt +3143 -0
- package/bin/dxclient +3 -0
- package/dist/LICENSE +62 -0
- package/dist/configuration/config.json +52 -0
- package/dist/configuration/versionConfigMap.json +34 -0
- package/dist/package.json +149 -0
- package/dist/packages/admintasks/package-lock.json +21843 -0
- package/dist/packages/admintasks/package.json +56 -0
- package/dist/packages/admintasks/src/commands/createCredentialVault.d.ts +5 -0
- package/dist/packages/admintasks/src/commands/createCredentialVault.js +100 -0
- package/dist/packages/admintasks/src/commands/createCredentialVault.js.map +1 -0
- package/dist/packages/admintasks/src/commands/createSyndicationRelation.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/createSyndicationRelation.js +70 -0
- package/dist/packages/admintasks/src/commands/createSyndicationRelation.js.map +1 -0
- package/dist/packages/admintasks/src/commands/createVirtualPortal.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/createVirtualPortal.js +63 -0
- package/dist/packages/admintasks/src/commands/createVirtualPortal.js.map +1 -0
- package/dist/packages/admintasks/src/commands/differentialReport.d.ts +6 -0
- package/dist/packages/admintasks/src/commands/differentialReport.js +149 -0
- package/dist/packages/admintasks/src/commands/differentialReport.js.map +1 -0
- package/dist/packages/admintasks/src/commands/exportVirtualPortal.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/exportVirtualPortal.js +66 -0
- package/dist/packages/admintasks/src/commands/exportVirtualPortal.js.map +1 -0
- package/dist/packages/admintasks/src/commands/exportWCMLibrary.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/exportWCMLibrary.js +141 -0
- package/dist/packages/admintasks/src/commands/exportWCMLibrary.js.map +1 -0
- package/dist/packages/admintasks/src/commands/importVirtualPortal.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/importVirtualPortal.js +67 -0
- package/dist/packages/admintasks/src/commands/importVirtualPortal.js.map +1 -0
- package/dist/packages/admintasks/src/commands/importWCMLibrary.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/importWCMLibrary.js +112 -0
- package/dist/packages/admintasks/src/commands/importWCMLibrary.js.map +1 -0
- package/dist/packages/admintasks/src/commands/listVirtualPortals.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/listVirtualPortals.js +57 -0
- package/dist/packages/admintasks/src/commands/listVirtualPortals.js.map +1 -0
- package/dist/packages/admintasks/src/commands/pznRulesExport.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/pznRulesExport.js +85 -0
- package/dist/packages/admintasks/src/commands/pznRulesExport.js.map +1 -0
- package/dist/packages/admintasks/src/commands/pznRulesImport.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/pznRulesImport.js +130 -0
- package/dist/packages/admintasks/src/commands/pznRulesImport.js.map +1 -0
- package/dist/packages/admintasks/src/commands/resEnvProviderActions.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/resEnvProviderActions.js +179 -0
- package/dist/packages/admintasks/src/commands/resEnvProviderActions.js.map +1 -0
- package/dist/packages/admintasks/src/commands/restartCorePods.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/restartCorePods.js +45 -0
- package/dist/packages/admintasks/src/commands/restartCorePods.js.map +1 -0
- package/dist/packages/admintasks/src/commands/restartDXCore.d.ts +4 -0
- package/dist/packages/admintasks/src/commands/restartDXCore.js +68 -0
- package/dist/packages/admintasks/src/commands/restartDXCore.js.map +1 -0
- package/dist/packages/admintasks/src/errors/CommandLineMessages_en.json +62 -0
- package/dist/packages/admintasks/src/messages/messages_en.json +34 -0
- package/dist/packages/admintasks/src/services/createSyndicationRelationServices.d.ts +4 -0
- package/dist/packages/admintasks/src/services/createSyndicationRelationServices.js +53 -0
- package/dist/packages/admintasks/src/services/createSyndicationRelationServices.js.map +1 -0
- package/dist/packages/admintasks/src/services/differentialReportService.d.ts +5 -0
- package/dist/packages/admintasks/src/services/differentialReportService.js +59 -0
- package/dist/packages/admintasks/src/services/differentialReportService.js.map +1 -0
- package/dist/packages/admintasks/src/services/resEnvProviderService.d.ts +9 -0
- package/dist/packages/admintasks/src/services/resEnvProviderService.js +238 -0
- package/dist/packages/admintasks/src/services/resEnvProviderService.js.map +1 -0
- package/dist/packages/admintasks/src/services/restartCorePodsService.d.ts +4 -0
- package/dist/packages/admintasks/src/services/restartCorePodsService.js +45 -0
- package/dist/packages/admintasks/src/services/restartCorePodsService.js.map +1 -0
- package/dist/packages/admintasks/src/services/restartDXCoreService.d.ts +4 -0
- package/dist/packages/admintasks/src/services/restartDXCoreService.js +82 -0
- package/dist/packages/admintasks/src/services/restartDXCoreService.js.map +1 -0
- package/dist/packages/admintasks/src/services/virtualPortalServices.d.ts +33 -0
- package/dist/packages/admintasks/src/services/virtualPortalServices.js +169 -0
- package/dist/packages/admintasks/src/services/virtualPortalServices.js.map +1 -0
- package/dist/packages/admintasks/src/utils/createCredentialVault.xml +14 -0
- package/dist/packages/admintasks/src/utils/differential-report-utils.d.ts +11 -0
- package/dist/packages/admintasks/src/utils/differential-report-utils.js +1564 -0
- package/dist/packages/admintasks/src/utils/differential-report-utils.js.map +1 -0
- package/dist/packages/admintasks/src/utils/differential-report-utils.ts +1651 -0
- package/dist/packages/admintasks/src/utils/reportAttributes.properties +179 -0
- package/dist/packages/dam/package-lock.json +14605 -0
- package/dist/packages/dam/package.json +57 -0
- package/dist/packages/dam/src/commands/createSecrets.d.ts +4 -0
- package/dist/packages/dam/src/commands/createSecrets.js +61 -0
- package/dist/packages/dam/src/commands/createSecrets.js.map +1 -0
- package/dist/packages/dam/src/commands/deleteDAMStagingMismatch.d.ts +7 -0
- package/dist/packages/dam/src/commands/deleteDAMStagingMismatch.js +50 -0
- package/dist/packages/dam/src/commands/deleteDAMStagingMismatch.js.map +1 -0
- package/dist/packages/dam/src/commands/deleteSchema.d.ts +4 -0
- package/dist/packages/dam/src/commands/deleteSchema.js +80 -0
- package/dist/packages/dam/src/commands/deleteSchema.js.map +1 -0
- package/dist/packages/dam/src/commands/exportAssets.d.ts +5 -0
- package/dist/packages/dam/src/commands/exportAssets.js +106 -0
- package/dist/packages/dam/src/commands/exportAssets.js.map +1 -0
- package/dist/packages/dam/src/commands/findDAMStagingMismatch.d.ts +7 -0
- package/dist/packages/dam/src/commands/findDAMStagingMismatch.js +53 -0
- package/dist/packages/dam/src/commands/findDAMStagingMismatch.js.map +1 -0
- package/dist/packages/dam/src/commands/importAssets.d.ts +4 -0
- package/dist/packages/dam/src/commands/importAssets.js +78 -0
- package/dist/packages/dam/src/commands/importAssets.js.map +1 -0
- package/dist/packages/dam/src/commands/listSchema.d.ts +4 -0
- package/dist/packages/dam/src/commands/listSchema.js +44 -0
- package/dist/packages/dam/src/commands/listSchema.js.map +1 -0
- package/dist/packages/dam/src/commands/stagingMismatchReport.d.ts +15 -0
- package/dist/packages/dam/src/commands/stagingMismatchReport.js +168 -0
- package/dist/packages/dam/src/commands/stagingMismatchReport.js.map +1 -0
- package/dist/packages/dam/src/commands/stagingResync.d.ts +7 -0
- package/dist/packages/dam/src/commands/stagingResync.js +53 -0
- package/dist/packages/dam/src/commands/stagingResync.js.map +1 -0
- package/dist/packages/dam/src/commands/subscriberDeRegistration.d.ts +4 -0
- package/dist/packages/dam/src/commands/subscriberDeRegistration.js +45 -0
- package/dist/packages/dam/src/commands/subscriberDeRegistration.js.map +1 -0
- package/dist/packages/dam/src/commands/subscriberDetails.d.ts +9 -0
- package/dist/packages/dam/src/commands/subscriberDetails.js +50 -0
- package/dist/packages/dam/src/commands/subscriberDetails.js.map +1 -0
- package/dist/packages/dam/src/commands/subscriberRegistration.d.ts +9 -0
- package/dist/packages/dam/src/commands/subscriberRegistration.js +62 -0
- package/dist/packages/dam/src/commands/subscriberRegistration.js.map +1 -0
- package/dist/packages/dam/src/commands/triggerDAMStaging.d.ts +4 -0
- package/dist/packages/dam/src/commands/triggerDAMStaging.js +45 -0
- package/dist/packages/dam/src/commands/triggerDAMStaging.js.map +1 -0
- package/dist/packages/dam/src/commands/triggerDamReindexing.d.ts +4 -0
- package/dist/packages/dam/src/commands/triggerDamReindexing.js +54 -0
- package/dist/packages/dam/src/commands/triggerDamReindexing.js.map +1 -0
- package/dist/packages/dam/src/commands/updateSecrets.d.ts +4 -0
- package/dist/packages/dam/src/commands/updateSecrets.js +61 -0
- package/dist/packages/dam/src/commands/updateSecrets.js.map +1 -0
- package/dist/packages/dam/src/commands/validateAssets.d.ts +4 -0
- package/dist/packages/dam/src/commands/validateAssets.js +64 -0
- package/dist/packages/dam/src/commands/validateAssets.js.map +1 -0
- package/dist/packages/dam/src/errors/CommandLineMessages_en.json +80 -0
- package/dist/packages/dam/src/export/collection.d.ts +10 -0
- package/dist/packages/dam/src/export/collection.js +291 -0
- package/dist/packages/dam/src/export/collection.js.map +1 -0
- package/dist/packages/dam/src/export/favorite.d.ts +2 -0
- package/dist/packages/dam/src/export/favorite.js +61 -0
- package/dist/packages/dam/src/export/favorite.js.map +1 -0
- package/dist/packages/dam/src/export/media-item.d.ts +6 -0
- package/dist/packages/dam/src/export/media-item.js +193 -0
- package/dist/packages/dam/src/export/media-item.js.map +1 -0
- package/dist/packages/dam/src/export/media-type-group.d.ts +2 -0
- package/dist/packages/dam/src/export/media-type-group.js +43 -0
- package/dist/packages/dam/src/export/media-type-group.js.map +1 -0
- package/dist/packages/dam/src/export/media-type.d.ts +2 -0
- package/dist/packages/dam/src/export/media-type.js +43 -0
- package/dist/packages/dam/src/export/media-type.js.map +1 -0
- package/dist/packages/dam/src/export/renditions.d.ts +8 -0
- package/dist/packages/dam/src/export/renditions.js +255 -0
- package/dist/packages/dam/src/export/renditions.js.map +1 -0
- package/dist/packages/dam/src/import/collection.d.ts +5 -0
- package/dist/packages/dam/src/import/collection.js +148 -0
- package/dist/packages/dam/src/import/collection.js.map +1 -0
- package/dist/packages/dam/src/import/favorite.d.ts +2 -0
- package/dist/packages/dam/src/import/favorite.js +65 -0
- package/dist/packages/dam/src/import/favorite.js.map +1 -0
- package/dist/packages/dam/src/import/media-items.d.ts +5 -0
- package/dist/packages/dam/src/import/media-items.js +182 -0
- package/dist/packages/dam/src/import/media-items.js.map +1 -0
- package/dist/packages/dam/src/import/media-type-group.d.ts +2 -0
- package/dist/packages/dam/src/import/media-type-group.js +68 -0
- package/dist/packages/dam/src/import/media-type-group.js.map +1 -0
- package/dist/packages/dam/src/import/media-type.d.ts +2 -0
- package/dist/packages/dam/src/import/media-type.js +71 -0
- package/dist/packages/dam/src/import/media-type.js.map +1 -0
- package/dist/packages/dam/src/import/permission.d.ts +5 -0
- package/dist/packages/dam/src/import/permission.js +96 -0
- package/dist/packages/dam/src/import/permission.js.map +1 -0
- package/dist/packages/dam/src/import/renditions.d.ts +9 -0
- package/dist/packages/dam/src/import/renditions.js +326 -0
- package/dist/packages/dam/src/import/renditions.js.map +1 -0
- package/dist/packages/dam/src/messages/messages_en.json +19 -0
- package/dist/packages/dam/src/services/authService.d.ts +5 -0
- package/dist/packages/dam/src/services/authService.js +55 -0
- package/dist/packages/dam/src/services/authService.js.map +1 -0
- package/dist/packages/dam/src/services/stagingService.d.ts +37 -0
- package/dist/packages/dam/src/services/stagingService.js +440 -0
- package/dist/packages/dam/src/services/stagingService.js.map +1 -0
- package/dist/packages/dam/src/services/tokenCache.d.ts +8 -0
- package/dist/packages/dam/src/services/tokenCache.js +68 -0
- package/dist/packages/dam/src/services/tokenCache.js.map +1 -0
- package/dist/packages/dam/src/utils/constants.d.ts +70 -0
- package/dist/packages/dam/src/utils/constants.js +76 -0
- package/dist/packages/dam/src/utils/constants.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/collection.d.ts +46 -0
- package/dist/packages/dam/src/utils/interfaces/collection.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/collection.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/favorite-request.d.ts +6 -0
- package/dist/packages/dam/src/utils/interfaces/favorite-request.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/favorite-request.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/media-request.d.ts +54 -0
- package/dist/packages/dam/src/utils/interfaces/media-request.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/media-request.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/media-type-group.d.ts +8 -0
- package/dist/packages/dam/src/utils/interfaces/media-type-group.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/media-type-group.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/media-type.d.ts +11 -0
- package/dist/packages/dam/src/utils/interfaces/media-type.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/media-type.js.map +1 -0
- package/dist/packages/dam/src/utils/interfaces/media.d.ts +118 -0
- package/dist/packages/dam/src/utils/interfaces/media.js +3 -0
- package/dist/packages/dam/src/utils/interfaces/media.js.map +1 -0
- package/dist/packages/dam/src/utils/service.d.ts +8 -0
- package/dist/packages/dam/src/utils/service.js +126 -0
- package/dist/packages/dam/src/utils/service.js.map +1 -0
- package/dist/packages/dam/src/validation/collection-list-validate.d.ts +2 -0
- package/dist/packages/dam/src/validation/collection-list-validate.js +81 -0
- package/dist/packages/dam/src/validation/collection-list-validate.js.map +1 -0
- package/dist/packages/dam/src/validation/media-list-validate.d.ts +2 -0
- package/dist/packages/dam/src/validation/media-list-validate.js +91 -0
- package/dist/packages/dam/src/validation/media-list-validate.js.map +1 -0
- package/dist/packages/dam/src/validation/media-type-group-validate.d.ts +1 -0
- package/dist/packages/dam/src/validation/media-type-group-validate.js +28 -0
- package/dist/packages/dam/src/validation/media-type-group-validate.js.map +1 -0
- package/dist/packages/dam/src/validation/media-type-validate.d.ts +1 -0
- package/dist/packages/dam/src/validation/media-type-validate.js +28 -0
- package/dist/packages/dam/src/validation/media-type-validate.js.map +1 -0
- package/dist/packages/dam/src/validation/root-validate.d.ts +1 -0
- package/dist/packages/dam/src/validation/root-validate.js +42 -0
- package/dist/packages/dam/src/validation/root-validate.js.map +1 -0
- package/dist/packages/dam/src/validation/validate.rendition.d.ts +1 -0
- package/dist/packages/dam/src/validation/validate.rendition.js +69 -0
- package/dist/packages/dam/src/validation/validate.rendition.js.map +1 -0
- package/dist/packages/dam/src/validation/validate.versions.d.ts +1 -0
- package/dist/packages/dam/src/validation/validate.versions.js +67 -0
- package/dist/packages/dam/src/validation/validate.versions.js.map +1 -0
- package/dist/packages/deployportlet/package-lock.json +20575 -0
- package/dist/packages/deployportlet/package.json +51 -0
- package/dist/packages/deployportlet/src/commands/deployPortlet.d.ts +4 -0
- package/dist/packages/deployportlet/src/commands/deployPortlet.js +99 -0
- package/dist/packages/deployportlet/src/commands/deployPortlet.js.map +1 -0
- package/dist/packages/deployportlet/src/commands/undeployPortlet.d.ts +4 -0
- package/dist/packages/deployportlet/src/commands/undeployPortlet.js +118 -0
- package/dist/packages/deployportlet/src/commands/undeployPortlet.js.map +1 -0
- package/dist/packages/deployportlet/src/commands/xmlaccess.d.ts +4 -0
- package/dist/packages/deployportlet/src/commands/xmlaccess.js +37 -0
- package/dist/packages/deployportlet/src/commands/xmlaccess.js.map +1 -0
- package/dist/packages/deployportlet/src/errors/CommandLineMessages_en.json +5 -0
- package/dist/packages/deployportlet/src/messages/messages_en.json +10 -0
- package/dist/packages/deployportlet/src/services/undeployPortletServices.d.ts +4 -0
- package/dist/packages/deployportlet/src/services/undeployPortletServices.js +92 -0
- package/dist/packages/deployportlet/src/services/undeployPortletServices.js.map +1 -0
- package/dist/packages/deployscriptapplication/package-lock.json +20758 -0
- package/dist/packages/deployscriptapplication/package.json +48 -0
- package/dist/packages/deployscriptapplication/src/commands/list.js +109 -0
- package/dist/packages/deployscriptapplication/src/commands/pull.d.ts +6 -0
- package/dist/packages/deployscriptapplication/src/commands/pull.js +195 -0
- package/dist/packages/deployscriptapplication/src/commands/pull.js.map +1 -0
- package/dist/packages/deployscriptapplication/src/commands/push.d.ts +9 -0
- package/dist/packages/deployscriptapplication/src/commands/push.js +282 -0
- package/dist/packages/deployscriptapplication/src/commands/push.js.map +1 -0
- package/dist/packages/deployscriptapplication/src/commands/restoreScriptApplication.d.ts +5 -0
- package/dist/packages/deployscriptapplication/src/commands/restoreScriptApplication.js +125 -0
- package/dist/packages/deployscriptapplication/src/commands/restoreScriptApplication.js.map +1 -0
- package/dist/packages/deployscriptapplication/src/commands/undeployScriptApplication.d.ts +5 -0
- package/dist/packages/deployscriptapplication/src/commands/undeployScriptApplication.js +162 -0
- package/dist/packages/deployscriptapplication/src/commands/undeployScriptApplication.js.map +1 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ar.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ca.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_cs.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_da.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_de.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_el.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_en.json +129 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_en.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_es.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_fi.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_fr.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_hr.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_hu.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_it.properties +212 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_iw.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ja.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_kk.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ko.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_nl.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_no.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_pl.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_pt.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_pt_BR.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ro.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_ru.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_sk.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_sl.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_sv.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_th.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_tr.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_uk.properties +211 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_zh.properties +210 -0
- package/dist/packages/deployscriptapplication/src/errors/CommandLineMessages_zh_TW.properties +211 -0
- package/dist/packages/deployscriptapplication/src/messages/messages.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ar.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ca.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_cs.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_da.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_de.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_el.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_en.json +61 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_en.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_es.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_fi.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_fr.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_hr.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_hu.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_it.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_iw.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ja.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_kk.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ko.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_nl.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_no.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_pl.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_pt.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_pt_BR.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ro.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_ru.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_sk.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_sl.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_sv.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_th.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_tr.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_uk.properties +63 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_zh.properties +67 -0
- package/dist/packages/deployscriptapplication/src/messages/messages_zh_TW.properties +67 -0
- package/dist/packages/deployscriptapplication/src/util/constants.d.ts +74 -0
- package/dist/packages/deployscriptapplication/src/util/constants.js +98 -0
- package/dist/packages/deployscriptapplication/src/util/constants.js.map +1 -0
- package/dist/packages/deployscriptapplication/src/util/generic.d.ts +2 -0
- package/dist/packages/deployscriptapplication/src/util/generic.js +29 -0
- package/dist/packages/deployscriptapplication/src/util/generic.js.map +1 -0
- package/dist/packages/deploytheme/package-lock.json +21204 -0
- package/dist/packages/deploytheme/package.json +56 -0
- package/dist/packages/deploytheme/src/commands/deployApplication.d.ts +4 -0
- package/dist/packages/deploytheme/src/commands/deployApplication.js +115 -0
- package/dist/packages/deploytheme/src/commands/deployApplication.js.map +1 -0
- package/dist/packages/deploytheme/src/commands/deployTheme.d.ts +7 -0
- package/dist/packages/deploytheme/src/commands/deployTheme.js +286 -0
- package/dist/packages/deploytheme/src/commands/deployTheme.js.map +1 -0
- package/dist/packages/deploytheme/src/commands/undeployApplication.d.ts +4 -0
- package/dist/packages/deploytheme/src/commands/undeployApplication.js +46 -0
- package/dist/packages/deploytheme/src/commands/undeployApplication.js.map +1 -0
- package/dist/packages/deploytheme/src/commands/undeployTheme.d.ts +10 -0
- package/dist/packages/deploytheme/src/commands/undeployTheme.js +288 -0
- package/dist/packages/deploytheme/src/commands/undeployTheme.js.map +1 -0
- package/dist/packages/deploytheme/src/errors/CommandLineMessages_en.json +28 -0
- package/dist/packages/deploytheme/src/messages/messages_en.json +30 -0
- package/dist/packages/deploytheme/src/services/themeServices.d.ts +15 -0
- package/dist/packages/deploytheme/src/services/themeServices.js +413 -0
- package/dist/packages/deploytheme/src/services/themeServices.js.map +1 -0
- package/dist/packages/deploytheme/src/utils/Export.xml +28 -0
- package/dist/packages/livesync/package-lock.json +9737 -0
- package/dist/packages/livesync/package.json +49 -0
- package/dist/packages/livesync/src/commands/pullTheme.d.ts +5 -0
- package/dist/packages/livesync/src/commands/pullTheme.js +104 -0
- package/dist/packages/livesync/src/commands/pullTheme.js.map +1 -0
- package/dist/packages/livesync/src/commands/pullWcmDesignLibrary.d.ts +18 -0
- package/dist/packages/livesync/src/commands/pullWcmDesignLibrary.js +193 -0
- package/dist/packages/livesync/src/commands/pullWcmDesignLibrary.js.map +1 -0
- package/dist/packages/livesync/src/commands/pushTheme.d.ts +12 -0
- package/dist/packages/livesync/src/commands/pushTheme.js +233 -0
- package/dist/packages/livesync/src/commands/pushTheme.js.map +1 -0
- package/dist/packages/livesync/src/commands/pushWcmDesignLibrary.d.ts +4 -0
- package/dist/packages/livesync/src/commands/pushWcmDesignLibrary.js +23 -0
- package/dist/packages/livesync/src/commands/pushWcmDesignLibrary.js.map +1 -0
- package/dist/packages/livesync/src/errors/CommandLineMessages_en.json +52 -0
- package/dist/packages/livesync/src/messages/messages_en.json +33 -0
- package/dist/packages/livesync/src/services/EventsQueue.d.ts +12 -0
- package/dist/packages/livesync/src/services/EventsQueue.js +66 -0
- package/dist/packages/livesync/src/services/EventsQueue.js.map +1 -0
- package/dist/packages/livesync/src/services/foldersWcmServices.d.ts +7 -0
- package/dist/packages/livesync/src/services/foldersWcmServices.js +120 -0
- package/dist/packages/livesync/src/services/foldersWcmServices.js.map +1 -0
- package/dist/packages/livesync/src/services/htmlComponentWcmServices.d.ts +6 -0
- package/dist/packages/livesync/src/services/htmlComponentWcmServices.js +108 -0
- package/dist/packages/livesync/src/services/htmlComponentWcmServices.js.map +1 -0
- package/dist/packages/livesync/src/services/initialSyncServices.d.ts +3 -0
- package/dist/packages/livesync/src/services/initialSyncServices.js +94 -0
- package/dist/packages/livesync/src/services/initialSyncServices.js.map +1 -0
- package/dist/packages/livesync/src/services/livesyncUtils.d.ts +2 -0
- package/dist/packages/livesync/src/services/livesyncUtils.js +59 -0
- package/dist/packages/livesync/src/services/livesyncUtils.js.map +1 -0
- package/dist/packages/livesync/src/services/metadataServices.d.ts +16 -0
- package/dist/packages/livesync/src/services/metadataServices.js +117 -0
- package/dist/packages/livesync/src/services/metadataServices.js.map +1 -0
- package/dist/packages/livesync/src/services/ongoingSyncServices.d.ts +10 -0
- package/dist/packages/livesync/src/services/ongoingSyncServices.js +266 -0
- package/dist/packages/livesync/src/services/ongoingSyncServices.js.map +1 -0
- package/dist/packages/livesync/src/services/wcmRestV2Services.d.ts +5 -0
- package/dist/packages/livesync/src/services/wcmRestV2Services.js +92 -0
- package/dist/packages/livesync/src/services/wcmRestV2Services.js.map +1 -0
- package/dist/packages/livesync/src/types/EventHandler.type.d.ts +5 -0
- package/dist/packages/livesync/src/types/EventHandler.type.js +3 -0
- package/dist/packages/livesync/src/types/EventHandler.type.js.map +1 -0
- package/dist/packages/livesync/src/types/EventQueueItem.type.d.ts +7 -0
- package/dist/packages/livesync/src/types/EventQueueItem.type.js +3 -0
- package/dist/packages/livesync/src/types/EventQueueItem.type.js.map +1 -0
- package/dist/packages/livesync/src/types/OngoingSyncHooks.type.d.ts +4 -0
- package/dist/packages/livesync/src/types/OngoingSyncHooks.type.js +3 -0
- package/dist/packages/livesync/src/types/OngoingSyncHooks.type.js.map +1 -0
- package/dist/packages/livesync/src/types/WcmRestApiV2.type.d.ts +99 -0
- package/dist/packages/livesync/src/types/WcmRestApiV2.type.js +3 -0
- package/dist/packages/livesync/src/types/WcmRestApiV2.type.js.map +1 -0
- package/dist/packages/livesync/src/types/index.d.ts +4 -0
- package/dist/packages/livesync/src/types/index.js +17 -0
- package/dist/packages/livesync/src/types/index.js.map +1 -0
- package/dist/packages/mls_exim/package-lock.json +13855 -0
- package/dist/packages/mls_exim/package.json +51 -0
- package/dist/packages/mls_exim/src/errors/CommandLineMessages_en.json +19 -0
- package/dist/packages/mls_exim/src/export/mlsExport.d.ts +7 -0
- package/dist/packages/mls_exim/src/export/mlsExport.js +292 -0
- package/dist/packages/mls_exim/src/export/mlsExport.js.map +1 -0
- package/dist/packages/mls_exim/src/export/mlsExport.ts +371 -0
- package/dist/packages/mls_exim/src/import/mlsImport.d.ts +8 -0
- package/dist/packages/mls_exim/src/import/mlsImport.js +104 -0
- package/dist/packages/mls_exim/src/import/mlsImport.js.map +1 -0
- package/dist/packages/mls_exim/src/import/mlsImport.ts +138 -0
- package/dist/packages/mls_exim/src/messages/messages_en.json +14 -0
- package/dist/packages/mls_exim/src/utils/interfaces/export.d.ts +133 -0
- package/dist/packages/mls_exim/src/utils/interfaces/export.js +3 -0
- package/dist/packages/mls_exim/src/utils/interfaces/export.js.map +1 -0
- package/dist/packages/mls_exim/src/utils/interfaces/export.ts +165 -0
- package/dist/packages/mls_exim/src/utils/interfaces/import.d.ts +52 -0
- package/dist/packages/mls_exim/src/utils/interfaces/import.js +3 -0
- package/dist/packages/mls_exim/src/utils/interfaces/import.js.map +1 -0
- package/dist/packages/mls_exim/src/utils/interfaces/import.ts +76 -0
- package/dist/packages/sharedlibrary/package-lock.json +20575 -0
- package/dist/packages/sharedlibrary/package.json +51 -0
- package/dist/packages/sharedlibrary/src/commands/delete.d.ts +4 -0
- package/dist/packages/sharedlibrary/src/commands/delete.js +64 -0
- package/dist/packages/sharedlibrary/src/commands/delete.js.map +1 -0
- package/dist/packages/sharedlibrary/src/commands/upload.d.ts +4 -0
- package/dist/packages/sharedlibrary/src/commands/upload.js +105 -0
- package/dist/packages/sharedlibrary/src/commands/upload.js.map +1 -0
- package/dist/packages/sharedlibrary/src/errors/CommandLineMessages_en.json +10 -0
- package/dist/packages/sharedlibrary/src/messages/messages_en.json +7 -0
- package/dist/packages/sharedlibrary/src/services/sharedLibraryServices.d.ts +5 -0
- package/dist/packages/sharedlibrary/src/services/sharedLibraryServices.js +100 -0
- package/dist/packages/sharedlibrary/src/services/sharedLibraryServices.js.map +1 -0
- package/dist/packages/syndication/package-lock.json +20575 -0
- package/dist/packages/syndication/package.json +51 -0
- package/dist/packages/syndication/src/commands/subscriber.d.ts +4 -0
- package/dist/packages/syndication/src/commands/subscriber.js +62 -0
- package/dist/packages/syndication/src/commands/subscriber.js.map +1 -0
- package/dist/packages/syndication/src/commands/syndicationReport.d.ts +2 -0
- package/dist/packages/syndication/src/commands/syndicationReport.js +99 -0
- package/dist/packages/syndication/src/commands/syndicationReport.js.map +1 -0
- package/dist/packages/syndication/src/commands/syndicator.d.ts +4 -0
- package/dist/packages/syndication/src/commands/syndicator.js +62 -0
- package/dist/packages/syndication/src/commands/syndicator.js.map +1 -0
- package/dist/packages/syndication/src/commands/syndicatorFailedItem.d.ts +4 -0
- package/dist/packages/syndication/src/commands/syndicatorFailedItem.js +104 -0
- package/dist/packages/syndication/src/commands/syndicatorFailedItem.js.map +1 -0
- package/dist/packages/syndication/src/errors/CommandLineMessages_en.json +12 -0
- package/dist/packages/syndication/src/messages/messages_en.json +9 -0
- package/dist/packages/syndication/src/services/syndicationService.d.ts +108 -0
- package/dist/packages/syndication/src/services/syndicationService.js +167 -0
- package/dist/packages/syndication/src/services/syndicationService.js.map +1 -0
- package/dist/src/errors/CommandLineMessages_en.json +53 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +2207 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/services/apiServices.d.ts +32 -0
- package/dist/src/services/apiServices.js +932 -0
- package/dist/src/services/apiServices.js.map +1 -0
- package/dist/src/services/filesServices.d.ts +9 -0
- package/dist/src/services/filesServices.js +134 -0
- package/dist/src/services/filesServices.js.map +1 -0
- package/dist/src/services/requestService.d.ts +4 -0
- package/dist/src/services/requestService.js +55 -0
- package/dist/src/services/requestService.js.map +1 -0
- package/dist/src/utils/commands.d.ts +2 -0
- package/dist/src/utils/commands.js +13 -0
- package/dist/src/utils/commands.js.map +1 -0
- package/dist/src/utils/constants.d.ts +389 -0
- package/dist/src/utils/constants.js +464 -0
- package/dist/src/utils/constants.js.map +1 -0
- package/dist/src/utils/interfaces.d.ts +19 -0
- package/dist/src/utils/interfaces.js +3 -0
- package/dist/src/utils/interfaces.js.map +1 -0
- package/dist/src/utils/logger.d.ts +3 -0
- package/dist/src/utils/logger.js +126 -0
- package/dist/src/utils/logger.js.map +1 -0
- package/dist/src/utils/utils.d.ts +31 -0
- package/dist/src/utils/utils.js +791 -0
- package/dist/src/utils/utils.js.map +1 -0
- package/dist/src/utils/validateOptions.d.ts +4 -0
- package/dist/src/utils/validateOptions.js +730 -0
- package/dist/src/utils/validateOptions.js.map +1 -0
- package/package.json +149 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
LICENSE AGREEMENT FOR NON-WARRANTED PROGRAMS:
|
|
2
|
+
DXCLIENT ("DXClient" or "Tool")
|
|
3
|
+
|
|
4
|
+
DXClient is a command line tool that presents an interface to automation and continuous integration and deployment (CI/CD) tasks for HCL Digital Experience Programs.
|
|
5
|
+
|
|
6
|
+
BY DOWNLOADING, INSTALLING, COPYING, ACCESSING, CLICKING ON AN "ACCEPT" BUTTON, OR OTHERWISE USING THE TOOL, LICENSEE AGREES TO THE TERMS OF THIS LICENSE AGREEMENT. IF YOU ARE ACCEPTING THESE TERMS ON BEHALF OF LICENSEE, YOU REPRESENT AND WARRANT THAT YOU HAVE FULL AUTHORITY TO BIND LICENSEE TO THESE TERMS.
|
|
7
|
+
|
|
8
|
+
IF YOU DO NOT AGREE TO THESE TERMS:
|
|
9
|
+
|
|
10
|
+
* DO NOT DOWNLOAD, INSTALL, COPY, ACCESS, CLICK ON AN "ACCEPT" BUTTON, OR USE THE TOOL;
|
|
11
|
+
* PROMPTLY RETURN THE UNUSED MEDIA AND DOCUMENTATION TO THE PARTY FROM WHOM IT WAS OBTAINED; AND
|
|
12
|
+
* IF THE TOOL WAS DOWNLOADED, DESTROY ALL COPIES OF THE PROGRAM.
|
|
13
|
+
|
|
14
|
+
This License Agreement ("Agreement") is by and between HCL Technologies Limited, a company duly organized and existing under the laws of India and having its registered offices at 806 Siddharth, 96 Nehru Place, New Delhi-110019 ("Licensor" or "HCLSoftware"), and You ("Licensee" or "Licensee"). Licensor and Licensee hereinafter referred to individually or collectively, respectively, as "Party" or "Parties."
|
|
15
|
+
|
|
16
|
+
1.0 DEFINITIONS AND INTERPRETATIONS. 1.1 Definitions "Affiliate" is an entity that controls, is controlled by or shares common control with HCLSoftware or Licensee, where such control arises from either (a) a direct or indirect ownership interest of more than 50%, or (b) the power to direct or cause the direction of the management and policies, whether through the ownership of voting stock, by contract, or otherwise, equal to that provided by a direct or indirect ownership of more than 50%. "Documentation" means the user guide, help information and/or other technical documentation generally provided by Licensor to licensees of the Tool. "HCL Digital Experience Program(s)" is the object code of the software and all accompanying Documentation delivered to Licensee, including all items delivered by HCLSoftware to Licensee under Support which incorporates HCL Digital Experience Program(s). "Support" is the support services available for the Tool if and when specified by HCLSoftware. 1.2 Interpretations In this Agreement, unless the context otherwise requires: (i) References to parties, sections, paragraphs or attachments are references to parties, sections, paragraphs or attachments of this Agreement; (ii) Words denoting persons only shall include corporations, partnerships and unincorporated associations; (iii) References to any Party shall, where relevant, be deemed to be references to or to include, as appropriate, their respective successors or permitted assigns; (iv) Headings have been included for convenience only and shall not be used in construing any provision herein; and (v) References to any enactment shall be deemed to include references to such enactment as re-enacted, amended, or extended from time to time.
|
|
17
|
+
|
|
18
|
+
2.0 LICENSE GRANT. Subject to the terms, conditions, and other restrictions set forth in this Agreement, HCLSoftware grants Licensee a non-exclusive, non-transferable, non- sublicensable license to install, access, and use the Tool (i) for Licensee and its Affiliates' internal business use; and (ii) in accordance with the Documentation (collectively, a "License"). Licensee's Affiliates may use and access the Tool and Support (if any) under the terms of this Agreement, and Licensee is fully responsible for its Affiliates compliance with the terms of this Agreement.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
3.0 LICENSE RESTRICTIONS. The License grant under Section 2.0 above is subject to Licensee's agreement and compliance with each of the following: (i) The Tool is licensed and not sold, and HCL SOFTWARE does not pass any title to the Tool to Licensee; (ii) Licensee may not and will not copy, operate, or otherwise use the Tool other than as set forth in the License above nor prepare any derivative work thereof, or otherwise use, copy, modify, distribute, assign, sublicense, lease, rent, or otherwise transfer the Tool or any third party software contained in the Tool except as expressly permitted in this Agreement or except to the extent required by law; (iii) Licensee will not use the Tool in an outsourcing or service bureau environment on its behalf and/or on behalf of non-affiliated third parties or allow the Tool to be used by an outsourcing or service bureau provider on behalf of the Licensee; (iv) Licensee will not distribute the Tool or any third party software contained in the Tool, to end- users as on-premises distributions and the Licensee will not offer the Tool or such third party software as a cloud service or software-as-a-service to any end-users; (vi) Licensee is prohibited from reverse engineering, reverse assembling, reverse compiling, translating, or otherwise trying to discover the source code form of any software provided in object code form of the Tool or any third party software contained in the Tool, except as permitted by the national or regional law of the places where the Licensee does business (without the opportunity for contractual waiver), and then only with respect to the particular copy of object code incorporated into that particular Tool or third party software; (vii) Licensee will not use any of the Tool's components, files, modules, audio-visual content, or related licensed materials separately from that Tool; (viii) Licensee will not attempt to disable or circumvent any of the licensing mechanisms within the Tool; (ix) Licensee will reproduce all copyright notices and other legends of ownership on each copy, or partial copy, of the Tool and will ensures that anyone who uses the Tool (accessed either locally or remotely) does so only on Licensee's behalf and complies with the terms of this Agreement; (x) if the Tool is replaced by an update, Licensee agrees to promptly discontinue use of the replaced Tool; (xiii) The restrictions in this Section 3 applies to each copy of the Tool that Licensee makes. (xiv) Part of the software integrated with the Tool is open source software whereby the source code thereof is available to the public for inspection and use by others, and the terms and conditions of the applicable license agreement permit recipients of such open source software freely (and without the payment of any fee or royalty) to copy, modify and distribute the open source software's source code. The Tool is subject to the applicable open source license.
|
|
23
|
+
|
|
24
|
+
4.0 NO WARRANTIES SUBJECT TO ANY STATUTORY WARRANTIES THAT CANNOT BE EXCLUDED, HCL SOFTWARE MAKES NO WARRANTIES OR CONDITIONS, EXPRESS OR IMPLIED, REGARDING THE PROGRAM OR SUPPORT, IF ANY, INCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND TITLE, AND ANY WARRANTY OR CONDITION OF NON-INFRINGEMENT. SOME STATES OR JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF EXPRESS OR IMPLIED WARRANTIES, SO THE ABOVE EXCLUSION MAY NOT APPLY TO LICENSEE. IN THAT EVENT, SUCH WARRANTIES ARE
|
|
25
|
+
LIMITED IN DURATION TO THE MINIMUM PERIOD REQUIRED BY LAW. NO WARRANTIES APPLY AFTER THAT PERIOD. SOME STATES OR JURISDICTIONS DO NOT ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY LASTS, SO THE ABOVE LIMITATION MAY NOT APPLY TO LICENSEE. LICENSEE MAY HAVE OTHER RIGHTS THAT VARY FROM STATE TO STATE OR JURISDICTION TO JURISDICTION. THE DISCLAIMERS AND EXCLUSIONS IN THIS SECTION 4.0 ALSO APPLY TO ANY OF HCL SOFTWARE'S PROGRAM DEVELOPERS AND SUPPLIERS. MANUFACTURERS, SUPPLIERS, OR PUBLISHERS OF NON-HCL SOFTWARE PROGRAMS MAY PROVIDE THEIR OWN WARRANTIES. HCL SOFTWARE DOES NOT PROVIDE SUPPORT OF ANY KIND, UNLESS HCL SOFTWARE SPECIFIES OTHERWISE AND AT ITS DISCRETION. IN SUCH EVENT, ANY SUPPORT PROVIDED BY HCL SOFTWARE IS SUBJECT TO THE DISCLAIMERS AND EXCLUSIONS IN THIS SECTION 4.0. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY LICENSOR OR A LICENSOR AUTHORIZED REPRESENTATIVE WILL CREATE A WARRANTY.IN THE EVENT THAT ANY WARRANTIES ARE REQUIRED BY LAW AS OUTLINED ABOVE, ANY SUCH WARRANTIES ARE PROVIDED SOLELY BY THE HCL SOFTWARE ENTITY LICENSING THE TOOL AND NOT BY A THIRD PARTY OR ANY OTHER HCLSOFTWARE ENTITY. THE DISCLAIMERS IN THIS SECTION 4 HOWEVER, ALSO APPLY TO ALL HCLSOFTWARE ENTITIES AND THEIR SUPPLIERS OF THIRD PARTY SOFTWARE. THOSE SUPPLIERS PROVIDE SUCH SOFTWARE WITHOUT WARRANTIES OR CONDITION OF ANY KIND.
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
5.0 INTELLECTUAL PROPERTY RIGHTS. Notwithstanding the use of the terms "purchase", "sale", or any similar terminology in connection with the transaction contemplated by this Agreement, as between Licensee and HCLSoftware, except for the nonexclusive licenses expressly granted to Licensee under Section 2.0, HCLSoftware and its licensors and suppliers retain all right, title, and interest in and to the Tool and all related intellectual property and proprietary rights subsisting therein, as well as materials relating thereto, and any modifications, enhancements, customizations, updates, revisions or derivative works thereof. Licensor shall have the sole right to obtain, hold, and renew, in its own name and/or for its own benefit, patents, copyrights, and/or other appropriate protection in the Tool or other such materials. There are no implied licenses under this Agreement, and all rights not expressly granted hereunder or thereunder are reserved to HCLSoftware and its Affiliates and licensors.
|
|
29
|
+
|
|
30
|
+
6.0 LICENSEE DATA AND DATABASES. To assist Licensee in isolating the cause of a problem with the Tool, HCLSoftware may request that Licensee 1) allow HCLSoftware to remotely or physically access Licensee's system or 2) send Licensee information or system data to HCLSoftware. However, HCLSoftware is not obligated to provide such assistance unless HCLSoftware and Licensee enter a separate written agreement under which HCLSoftware agrees to provide to Licensee that type of support, which are also provided by HCLSoftware without any warranty, in this Agreement. In any event, HCLSoftware uses information about errors and problems to improve its products and services, and assist with its provision of related support offerings. For these purposes, HCLSoftware may use HCLSoftware entities and subcontractors (including in one or more countries other than the one in which Licensee is located), and Licensee authorizes HCLSoftware to do so. Licensee remains responsible for 1) any data and the content of any database Licensee makes available to HCLSoftware; 2) the selection and implementation of procedures and controls regarding access, security, encryption, use, and transmission of data (including any personally-identifiable data); and 3) backup and recovery of any database and any stored data. Licensee will not send or provide HCLSoftware access to any personally-identifiable information, whether in data or any other form, and will be responsible for reasonable costs and other amounts that HCLSoftware may incur relating to any such information mistakenly provided to HCLSoftware or the loss or disclosure of such information by HCLSoftware, including those arising out of any third party claims.
|
|
31
|
+
|
|
32
|
+
7.0 AUDIT. Licensee agrees that HCLSoftware may annually audit relevant books and records (including electronic records), devices, computers, servers, and systems of Licensee, its Affiliates, consultants, service providers and contractors (collectively, "Licensee Entity(ies)"), relating to the Tool in order to verify the use of the Tool in compliance with this Agreement and the purpose for which the Tool has been deployed. HCLSoftware may make copies of any such books and records to the extent necessary to verify Licensee's compliance with the terms hereof. HCLSoftware may conduct the audit itself or at its option engage an independent third party to do such audit. The audit may be conducted at any sites of Licensee Entities, where the Tool is installed, used or accessed from, including remotely. HCLSoftware will provide fifteen (15) calendar days' notice prior to an audit, except where there is a reasonable cause to suspect that there is an infringement of intellectual property rights, in which case only two (2) business days' notice will be required. Any such audit will be performed during Licensee Entity's normal business hours and in a manner that minimizes the disruption to its business. Licensee Entities shall provide all assistance reasonably necessary for HCLSoftware to carry out such audit. HCLSoftware's rights and remedies in this subsections shall be without prejudice to other rights and remedies HCLSoftware may have under this Agreement or another relevant agreement, at law or in equity. HCLSoftware' s rights under this provision shall survive any termination or expiry of this Agreement for two years.
|
|
33
|
+
|
|
34
|
+
8.0 TERMINATION. 8.1 HCL may withdraw the Tool at its discretion and without notice. Upon such withdrawal, both the license grant and this Agreement shall terminate subject to section 12.9 (Survival). 8.2 HCL may also terminate Licenses to the Tool, and/or this Agreement, without notice or cure period, if Licensee violates the intellectual property rights of HCLSoftware, its Affiliates or its licensors, or uses the Tool outside the scope of this Agreement. Upon termination of a License, (a) Licensee will immediately uninstall and discontinue use of the relevant Tool, (b) upon HCLSoftware's request,
|
|
35
|
+
|
|
36
|
+
Licensee will immediately return such Tool to HCLSoftware, together with all related Documentation and copies or certify its destruction in writing and (c) all Support obligations of HCLSoftware under the Agreement, if any, will come to an end.
|
|
37
|
+
|
|
38
|
+
9.0 LIMITATION OF LIABILITY. 9.1 EXCLUSION OF INCIDENTAL, CONSEQUENTIAL AND CERTAIN OTHER DAMAGES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL LICENSOR AND ANY OF ITS AFFILIATES BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS, DATA OR CONFIDENTIAL OR OTHER INFORMATION, FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY, FOR FAILURE TO MEET ANY DUTY INCLUDING OF GOOD FAITH OR OF REASONABLE CARE, FOR NEGLIGENCE, AND FOR ANY OTHER PECUNIARY OR OTHER LOSS WHATSOEVER) ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY TO USE THE TOOL, THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES, OR OTHERWISE UNDER OR IN CONNECTION WITH ANY PROVISION OF THIS AGREEMENT, EVEN IN THE EVENT OF THE FAULT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, BREACH
|
|
39
|
+
OF CONTRACT, AND EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 9.2 LIMITATION OF LIABILITY AND REMEDIES. NOTWITHSTANDING ANY DAMAGES THAT LICENSEE MIGHT INCUR FOR ANY REASON WHATSOEVER (INCLUDING, WITHOUT LIMITATION, ALL DAMAGES REFERENCED IN SECTION 9.1 ABOVE AND ALL DIRECT OR GENERAL DAMAGES), THE ENTIRE LIABILITY OF LICENSOR AND ANY OF ITS AFFILIATES UNDER ANY PROVISION OF THIS AGREEMENT AND LICENSEE'S EXCLUSIVE REMEDY FOR ALL OF THE FOREGOING SHALL BE LIMITED TO THE FEE AMOUNT ACTUALLY PAID BY LICENSEE UNDER THIS AGREEMENT FOR THE LICENSE OF THE APPLICABLE PROGRAM GIVING RISE TO SUCH DAMAGES. THE FOREGOING LIMITATIONS, EXCLUSIONS, AND DISCLAIMERS (INCLUDING DISCLAIMER UNDER SECTION 4.0) SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EVEN IF ANY REMEDY FAILS ITS ESSENTIAL PURPOSE. THE LIMITATION OF LIABILITIES DESCRIBED IN THIS AGREEMENT ALSO APPLY TO ANY THIRD PARTY SUPPLIER OF PROGRAM OR ANY PART THEREOF. SUCH THIRD PARTY SUPPLIER IS AN INTENDED BENEFICIARY OF THIS AGREEMENT.
|
|
40
|
+
|
|
41
|
+
10.0 EXPORT RESTRICTIONS. Licensee will comply with all applicable export and import laws and associated embargo and economic sanction regulations, including those of the United States, that prohibit or restrict the export, re-export, or transfer of products, technology, services, or data, directly or indirectly, to certain countries, or for certain end uses or end users. Licensee acknowledges that the Tool is subject to U.S. export laws and regulations. Licensee agrees that, unless authorized by the U.S. export license or regulation, it will not export or re- export the Tool provided by HCLSoftware under this Agreement to (i) those countries (or nationals of countries) considered embargoed/terrorist countries under U.S. export laws and regulations or (ii) prohibited end users or end uses, including but not limited to: nuclear, space or missiles, and weapons systems (including chemical and biological). At the time of this Agreement, those countries considered embargoed/terrorist are: Cuba, the Crimea Region of Ukraine, Iran, North Korea, and Syria.
|
|
42
|
+
|
|
43
|
+
11.0 CONFIDENTIALITY. Except as otherwise expressly permitted in this Agreement, Licensee will hold in confidence the Tool and all other information received hereunder from Licensor. Licensee agrees that the Tool and Documentation furnished by HCLSoftware will be treated as proprietary trade secrets of Licensor, and Licensee will not make the Tool or the Documentation available in any form to any person other than to its employees and to contractors located on its premises with a need to know, subject to restrictions no less stringent than those contained herein. Licensee represents to Licensor that it maintains a system of confidentiality to protect its own confidential business information, including written agreements with employees, and that the Licensed Tool and Documentation will be protected by such a system to the same extent. If Licensee at any time becomes aware of any unauthorized use or disclosure, Licensee
|
|
44
|
+
|
|
45
|
+
will promptly and fully notify the Licensor of all facts known to it concerning such unauthorized use or disclosure and reasonably cooperate with Licensor in seeking a protective order or other appropriate remedy to limit such disclosure.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
12.0 GENERAL. 12.1 Third-Party Beneficiary. Licensee understands that portions of the Tool and related documentation may have been licensed to Licensor from third parties and that such third parties are intended third-party beneficiaries
|
|
50
|
+
|
|
51
|
+
of the provisions of this Agreement. 12.2 Severability. If any provision of this Agreement is held to be invalid or unenforceable, the remaining provisions of this Agreement remain in full force and effect. Each provision of this Agreement, which provides for a limitation of liability, disclaimer of warranties or exclusion
|
|
52
|
+
of remedies is severable from and independent of any other provision. Further, in the event that any remedy hereunder is determined to have failed of its essential purpose, all limitations of liabilities and exclusions of damages shall remain in effect. 12.3 Business Contacts. Licensee authorizes HCLSoftware and its contractors and business partners to store and use Licensee's business contact information wherever they do business, in connection with HCLSoftware products and services in scope of this Agreement, or in furtherance of HCLSoftware's business relationship with Licensee. 12.4 Force Majeure. Neither Party will be liable for any failure or delay in the performance of its obligations under this Agreement if such failure or delay is due to acts of God, including but not limited to fire, flood, natural catastrophe, acts of any government or of any civil or military authority, national emergencies, acts of terrorism, riots, war, insurrection, strikes, or any occurrence beyond the reasonable control of such Party. 12.5 Non reliance. In entering into this Agreement, neither party is relying on any representation not specified in this Agreement, including but not limited to any representation concerning: 1) the performance or function of the Tool; 2) the experiences or recommendations of other parties; or 3) any results or savings that Licensee may achieve. Licensee acknowledges that it has not relied on any promises, inducements, representations, or other statements made by Licensor regarding the Tool and that Licensee's decision to enter into this Agreement is made independently. 12.6 Assignment and Transfers. Licensee will not assign or transfer this Agreement or the Tool and any attempted assignment or transfer by Licensee of this Agreement or Tool is null and void. Licensee12.7 Governing Law. Both Parties agree to the application of the laws of the country in which Licensee obtained the Tool license to govern, interpret, and enforce all of Licensee's and HCLSoftware's respective rights, duties, and obligations arising from, or relating in any manner to, the subject matter of this Agreement, without regard to conflict of law principles. All rights, duties, and obligations are subject to the courts of the country in which Licensee obtained the Tool license. 15.8 Entire Agreement. This Agreement is the entire agreement between Licensee and HCLSoftware concerning Licensee's use of the Tool. 12.9 Survival. Such provisions of this Agreement, which generally can survive after termination or expiration of any similar agreement, shall also survive any termination or other expiration of this Agreement, particularly the provisions of Sections 3.0, 4.0, 7.0, 9.0, 10.0 and 11.0.
|
|
53
|
+
|
|
54
|
+
Version Date: May 27 2024
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
HCLSoftware is a division of HCL Technologies Limited
|
|
59
|
+
With registered address at 806 Siddharth 96 Nehru Place New Delhi 110019
|
|
60
|
+
www.hcltechsw.com
|
|
61
|
+
|
|
62
|
+
|