@alfresco/js-api 7.3.0-1529 → 7.3.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/alfrescoApi.d.ts +130 -0
- package/alfrescoApiClient.d.ts +117 -0
- package/api/activiti-rest-api/README.md +55 -0
- package/api/activiti-rest-api/api/about.api.d.ts +31 -0
- package/api/activiti-rest-api/api/accountIntegration.api.d.ts +30 -0
- package/api/activiti-rest-api/api/adminEndpoints.api.d.ts +99 -0
- package/api/activiti-rest-api/api/adminGroups.api.d.ts +156 -0
- package/api/activiti-rest-api/api/adminTenants.api.d.ts +82 -0
- package/api/activiti-rest-api/api/adminUsers.api.d.ts +75 -0
- package/api/activiti-rest-api/api/appDefinitions.api.d.ts +89 -0
- package/api/activiti-rest-api/api/checklists.api.d.ts +48 -0
- package/api/activiti-rest-api/api/comments.api.d.ts +60 -0
- package/api/activiti-rest-api/api/content.api.d.ts +117 -0
- package/api/activiti-rest-api/api/dataSources.api.d.ts +32 -0
- package/api/activiti-rest-api/api/decisionAudits.api.d.ts +39 -0
- package/api/activiti-rest-api/api/decisionTables.api.d.ts +54 -0
- package/api/activiti-rest-api/api/endpoints.api.d.ts +36 -0
- package/api/activiti-rest-api/api/formModels.api.d.ts +79 -0
- package/api/activiti-rest-api/api/groups.api.d.ts +44 -0
- package/api/activiti-rest-api/api/iDMSync.api.d.ts +46 -0
- package/api/activiti-rest-api/api/index.d.ts +61 -0
- package/api/activiti-rest-api/api/integrationAlfrescoCloud.api.d.ts +74 -0
- package/api/activiti-rest-api/api/integrationAlfrescoOnPremise.api.d.ts +70 -0
- package/api/activiti-rest-api/api/integrationBox.api.d.ts +78 -0
- package/api/activiti-rest-api/api/integrationDrive.api.d.ts +44 -0
- package/api/activiti-rest-api/api/modelJsonBpmn.api.d.ts +44 -0
- package/api/activiti-rest-api/api/models.api.d.ts +140 -0
- package/api/activiti-rest-api/api/modelsBpmn.api.d.ts +37 -0
- package/api/activiti-rest-api/api/modelsHistory.api.d.ts +43 -0
- package/api/activiti-rest-api/api/processDefinitions.api.d.ts +115 -0
- package/api/activiti-rest-api/api/processInstanceVariables.api.d.ts +63 -0
- package/api/activiti-rest-api/api/processInstances.api.d.ts +177 -0
- package/api/activiti-rest-api/api/processScopes.api.d.ts +30 -0
- package/api/activiti-rest-api/api/report.api.d.ts +53 -0
- package/api/activiti-rest-api/api/runtimeAppDefinitions.api.d.ts +47 -0
- package/api/activiti-rest-api/api/runtimeAppDeployments.api.d.ts +71 -0
- package/api/activiti-rest-api/api/scriptFiles.api.d.ts +34 -0
- package/api/activiti-rest-api/api/submittedForms.api.d.ts +57 -0
- package/api/activiti-rest-api/api/systemProperties.api.d.ts +52 -0
- package/api/activiti-rest-api/api/taskActions.api.d.ts +114 -0
- package/api/activiti-rest-api/api/taskForms.api.d.ts +78 -0
- package/api/activiti-rest-api/api/taskVariables.api.d.ts +74 -0
- package/api/activiti-rest-api/api/tasks.api.d.ts +134 -0
- package/api/activiti-rest-api/api/temporary.api.d.ts +44 -0
- package/api/activiti-rest-api/api/types.d.ts +22 -0
- package/api/activiti-rest-api/api/userFilters.api.d.ts +114 -0
- package/api/activiti-rest-api/api/userProfile.api.d.ts +67 -0
- package/api/activiti-rest-api/api/users.api.d.ts +84 -0
- package/api/activiti-rest-api/model/abstractGroupRepresentation.d.ts +22 -0
- package/api/activiti-rest-api/model/abstractUserRepresentation.d.ts +25 -0
- package/api/activiti-rest-api/model/accountRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/addGroupCapabilitiesRepresentation.d.ts +19 -0
- package/api/activiti-rest-api/model/alfrescoContentRepresentation.d.ts +22 -0
- package/api/activiti-rest-api/model/alfrescoNetworkRepresenation.d.ts +19 -0
- package/api/activiti-rest-api/model/alfrescoSiteRepresenation.d.ts +20 -0
- package/api/activiti-rest-api/model/appDefinitionPublishRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/appDefinitionRepresentation.d.ts +27 -0
- package/api/activiti-rest-api/model/appDefinitionSaveRepresentation.d.ts +22 -0
- package/api/activiti-rest-api/model/appDefinitionUpdateResultRepresentation.d.ts +26 -0
- package/api/activiti-rest-api/model/assigneeIdentifierRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/auditCalculatedValueRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/auditDecisionExpressionInfoRepresentation.d.ts +21 -0
- package/api/activiti-rest-api/model/auditDecisionInfoRepresentation.d.ts +22 -0
- package/api/activiti-rest-api/model/auditDecisionRuleInfoRepresentation.d.ts +21 -0
- package/api/activiti-rest-api/model/auditLogEntryRepresentation.d.ts +31 -0
- package/api/activiti-rest-api/model/auditLogFormDataRepresentation.d.ts +21 -0
- package/api/activiti-rest-api/model/boxContent.d.ts +23 -0
- package/api/activiti-rest-api/model/bulkUserUpdateRepresentation.d.ts +25 -0
- package/api/activiti-rest-api/model/changePasswordRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/checklistOrderRepresentation.d.ts +19 -0
- package/api/activiti-rest-api/model/commentAuditInfo.d.ts +20 -0
- package/api/activiti-rest-api/model/completeFormRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/conditionRepresentation.d.ts +27 -0
- package/api/activiti-rest-api/model/createEndpointBasicAuthRepresentation.d.ts +22 -0
- package/api/activiti-rest-api/model/createProcessInstanceRepresentation.d.ts +26 -0
- package/api/activiti-rest-api/model/createTenantRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/dataSourceConfigRepresentation.d.ts +22 -0
- package/api/activiti-rest-api/model/dataSourceRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/endpointConfigurationRepresentation.d.ts +29 -0
- package/api/activiti-rest-api/model/endpointRequestHeaderRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/entityAttributeScopeRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/entityVariableScopeRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/fieldValueInfo.d.ts +20 -0
- package/api/activiti-rest-api/model/file.d.ts +33 -0
- package/api/activiti-rest-api/model/formDefinitionRepresentation.d.ts +52 -0
- package/api/activiti-rest-api/model/formFieldRepresentation.d.ts +56 -0
- package/api/activiti-rest-api/model/formIdentifierRepresentation.d.ts +19 -0
- package/api/activiti-rest-api/model/formJavascriptEventRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/formOutcomeRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/formScopeRepresentation.d.ts +26 -0
- package/api/activiti-rest-api/model/formTabRepresentation.d.ts +22 -0
- package/api/activiti-rest-api/model/formValueRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/formVariableRepresentation.d.ts +21 -0
- package/api/activiti-rest-api/model/globalDateFormatRepresentation.d.ts +19 -0
- package/api/activiti-rest-api/model/googleDriveContent.d.ts +23 -0
- package/api/activiti-rest-api/model/groupCapabilityRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/identityLinkRepresentation.d.ts +21 -0
- package/api/activiti-rest-api/model/jsonNode.d.ts +39 -0
- package/api/activiti-rest-api/model/layoutRepresentation.d.ts +21 -0
- package/api/activiti-rest-api/model/lightAppRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/lightGroupRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/lightTenantRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/lightUserRepresentation.d.ts +25 -0
- package/api/activiti-rest-api/model/namedObject.d.ts +20 -0
- package/api/activiti-rest-api/model/objectNode.d.ts +39 -0
- package/api/activiti-rest-api/model/optionRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/passwordValidationConstraints.d.ts +21 -0
- package/api/activiti-rest-api/model/processDefinitionMetaDataRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/processDefinitionRepresentation.d.ts +29 -0
- package/api/activiti-rest-api/model/processInstanceAuditInfoRepresentation.d.ts +30 -0
- package/api/activiti-rest-api/model/processInstanceFilterRepresentation.d.ts +24 -0
- package/api/activiti-rest-api/model/processInstanceFilterRequestRepresentation.d.ts +24 -0
- package/api/activiti-rest-api/model/processInstanceQueryRepresentation.d.ts +26 -0
- package/api/activiti-rest-api/model/processInstanceVariableRepresentation.d.ts +21 -0
- package/api/activiti-rest-api/model/processScopeIdentifierRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/processScopeRepresentation.d.ts +62 -0
- package/api/activiti-rest-api/model/processScopesRequestRepresentation.d.ts +21 -0
- package/api/activiti-rest-api/model/publishIdentityInfoRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/queryVariable.d.ts +23 -0
- package/api/activiti-rest-api/model/relatedProcessTask.d.ts +20 -0
- package/api/activiti-rest-api/model/resetPasswordRepresentation.d.ts +19 -0
- package/api/activiti-rest-api/model/restVariable.d.ts +22 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationAbstractUserRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationAccountRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoContentRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoNetworkRepresenation.d.ts +23 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoSiteRepresenation.d.ts +23 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationAppDefinitionRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationBoxContent.d.ts +23 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationDataSourceRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationGoogleDriveContent.d.ts +23 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationLightGroupRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationLightUserRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationProcessDefinitionRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationRelatedProcessTask.d.ts +23 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationRuntimeDecisionTableRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationRuntimeFormRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/resultListDataRepresentationUserProcessInstanceFilterRepresentation.d.ts +23 -0
- package/api/activiti-rest-api/model/runtimeAppDefinitionSaveRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/runtimeDecisionTableRepresentation.d.ts +27 -0
- package/api/activiti-rest-api/model/runtimeFormRepresentation.d.ts +25 -0
- package/api/activiti-rest-api/model/saveFormRepresentation.d.ts +19 -0
- package/api/activiti-rest-api/model/systemPropertiesRepresentation.d.ts +27 -0
- package/api/activiti-rest-api/model/taskAuditInfoRepresentation.d.ts +31 -0
- package/api/activiti-rest-api/model/taskFilterRepresentation.d.ts +28 -0
- package/api/activiti-rest-api/model/taskQueryRepresentation.d.ts +33 -0
- package/api/activiti-rest-api/model/userAccountCredentialsRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/userActionRepresentation.d.ts +21 -0
- package/api/activiti-rest-api/model/userFilterOrderRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/userIdentifierRepresentation.d.ts +20 -0
- package/api/activiti-rest-api/model/userProcessInstanceFilterRepresentation.d.ts +26 -0
- package/api/activiti-rest-api/model/validationErrorRepresentation.d.ts +25 -0
- package/api/activiti-rest-api/model/variableMappingRepresentation.d.ts +24 -0
- package/api/activiti-rest-api/model/variableScopeRepresentation.d.ts +25 -0
- package/api/auth-rest-api/README.md +29 -0
- package/api/auth-rest-api/api/authentication.api.d.ts +61 -0
- package/api/content-custom-api/api/classes.api.d.ts +31 -0
- package/api/content-custom-api/api/customModel.api.d.ts +172 -0
- package/api/content-custom-api/api/webscript.api.d.ts +37 -0
- package/api/content-custom-api/model/dateAlfresco.d.ts +39 -0
- package/api/content-rest-api/README.md +32 -0
- package/api/content-rest-api/api/actions.api.d.ts +92 -0
- package/api/content-rest-api/api/activities.api.d.ts +40 -0
- package/api/content-rest-api/api/audit.api.d.ts +184 -0
- package/api/content-rest-api/api/categories.api.d.ts +109 -0
- package/api/content-rest-api/api/comments.api.d.ts +63 -0
- package/api/content-rest-api/api/downloads.api.d.ts +75 -0
- package/api/content-rest-api/api/favorites.api.d.ts +154 -0
- package/api/content-rest-api/api/groups.api.d.ts +208 -0
- package/api/content-rest-api/api/networks.api.d.ts +55 -0
- package/api/content-rest-api/api/nodes.api.d.ts +487 -0
- package/api/content-rest-api/api/people.api.d.ts +179 -0
- package/api/content-rest-api/api/preferences.api.d.ts +49 -0
- package/api/content-rest-api/api/probes.api.d.ts +39 -0
- package/api/content-rest-api/api/queries.api.d.ts +128 -0
- package/api/content-rest-api/api/ratings.api.d.ts +73 -0
- package/api/content-rest-api/api/renditions.api.d.ts +99 -0
- package/api/content-rest-api/api/sharedlinks.api.d.ts +168 -0
- package/api/content-rest-api/api/sites.api.d.ts +458 -0
- package/api/content-rest-api/api/tags.api.d.ts +110 -0
- package/api/content-rest-api/api/trashcan.api.d.ts +193 -0
- package/api/content-rest-api/api/types.d.ts +48 -0
- package/api/content-rest-api/api/versions.api.d.ts +198 -0
- package/api/content-rest-api/model/actionBodyExec.d.ts +24 -0
- package/api/content-rest-api/model/actionDefinition.d.ts +44 -0
- package/api/content-rest-api/model/actionDefinitionEntry.d.ts +20 -0
- package/api/content-rest-api/model/actionExecResult.d.ts +22 -0
- package/api/content-rest-api/model/actionExecResultEntry.d.ts +20 -0
- package/api/content-rest-api/model/actionParameterDefinition.d.ts +23 -0
- package/api/content-rest-api/model/activity.d.ts +54 -0
- package/api/content-rest-api/model/association.d.ts +20 -0
- package/api/content-rest-api/model/associationEntry.d.ts +20 -0
- package/api/content-rest-api/model/associationInfo.d.ts +19 -0
- package/api/content-rest-api/model/auditApp.d.ts +23 -0
- package/api/content-rest-api/model/auditAppEntry.d.ts +20 -0
- package/api/content-rest-api/model/auditBodyUpdate.d.ts +19 -0
- package/api/content-rest-api/model/capabilities.d.ts +21 -0
- package/api/content-rest-api/model/categoryBody.d.ts +19 -0
- package/api/content-rest-api/model/categoryEntry.d.ts +21 -0
- package/api/content-rest-api/model/categoryPaging.d.ts +21 -0
- package/api/content-rest-api/model/commentBody.d.ts +19 -0
- package/api/content-rest-api/model/company.d.ts +26 -0
- package/api/content-rest-api/model/constraint.d.ts +34 -0
- package/api/content-rest-api/model/definition.d.ts +23 -0
- package/api/content-rest-api/model/deletedNode.d.ts +50 -0
- package/api/content-rest-api/model/deletedNodeBodyRestore.d.ts +20 -0
- package/api/content-rest-api/model/download.d.ts +42 -0
- package/api/content-rest-api/model/downloadBodyCreate.d.ts +19 -0
- package/api/content-rest-api/model/downloadEntry.d.ts +20 -0
- package/api/content-rest-api/model/errorError.d.ts +24 -0
- package/api/content-rest-api/model/favorite.d.ts +36 -0
- package/api/content-rest-api/model/favoriteBodyCreate.d.ts +19 -0
- package/api/content-rest-api/model/favoriteSite.d.ts +19 -0
- package/api/content-rest-api/model/favoriteSiteBodyCreate.d.ts +19 -0
- package/api/content-rest-api/model/favoriteSiteEntry.d.ts +20 -0
- package/api/content-rest-api/model/group.d.ts +23 -0
- package/api/content-rest-api/model/groupBodyCreate.d.ts +21 -0
- package/api/content-rest-api/model/groupBodyUpdate.d.ts +19 -0
- package/api/content-rest-api/model/groupEntry.d.ts +20 -0
- package/api/content-rest-api/model/groupMember.d.ts +21 -0
- package/api/content-rest-api/model/groupMemberEntry.d.ts +20 -0
- package/api/content-rest-api/model/modelError.d.ts +20 -0
- package/api/content-rest-api/model/networkQuota.d.ts +26 -0
- package/api/content-rest-api/model/node.d.ts +48 -0
- package/api/content-rest-api/model/nodeAssociation.d.ts +50 -0
- package/api/content-rest-api/model/nodeBodyCopy.d.ts +24 -0
- package/api/content-rest-api/model/nodeBodyCreate.d.ts +38 -0
- package/api/content-rest-api/model/nodeBodyCreateAssociation.d.ts +19 -0
- package/api/content-rest-api/model/nodeBodyLock.d.ts +21 -0
- package/api/content-rest-api/model/nodeBodyMove.d.ts +24 -0
- package/api/content-rest-api/model/nodeBodyUpdate.d.ts +31 -0
- package/api/content-rest-api/model/nodeChildAssociation.d.ts +50 -0
- package/api/content-rest-api/model/pagination.d.ts +46 -0
- package/api/content-rest-api/model/passwordResetBody.d.ts +30 -0
- package/api/content-rest-api/model/pathElement.d.ts +22 -0
- package/api/content-rest-api/model/permissionElement.d.ts +22 -0
- package/api/content-rest-api/model/personBodyCreate.d.ts +38 -0
- package/api/content-rest-api/model/personBodyUpdate.d.ts +38 -0
- package/api/content-rest-api/model/personNetwork.d.ts +38 -0
- package/api/content-rest-api/model/preference.d.ts +29 -0
- package/api/content-rest-api/model/preferenceEntry.d.ts +20 -0
- package/api/content-rest-api/model/probeEntry.d.ts +20 -0
- package/api/content-rest-api/model/probeEntryEntry.d.ts +19 -0
- package/api/content-rest-api/model/property.d.ts +56 -0
- package/api/content-rest-api/model/rating.d.ts +32 -0
- package/api/content-rest-api/model/ratingAggregate.d.ts +20 -0
- package/api/content-rest-api/model/ratingBody.d.ts +26 -0
- package/api/content-rest-api/model/renditionBodyCreate.d.ts +19 -0
- package/api/content-rest-api/model/revertBody.d.ts +20 -0
- package/api/content-rest-api/model/sharedLink.d.ts +50 -0
- package/api/content-rest-api/model/sharedLinkBodyEmail.d.ts +22 -0
- package/api/content-rest-api/model/siteContainer.d.ts +20 -0
- package/api/content-rest-api/model/siteContainerEntry.d.ts +20 -0
- package/api/content-rest-api/model/siteMembershipApprovalBody.d.ts +19 -0
- package/api/content-rest-api/model/siteMembershipRequestBodyCreate.d.ts +27 -0
- package/api/content-rest-api/model/siteMembershipRequestBodyUpdate.d.ts +19 -0
- package/api/content-rest-api/model/version.d.ts +36 -0
- package/api/discovery-rest-api/README.md +30 -0
- package/api/discovery-rest-api/api/discovery.api.d.ts +31 -0
- package/api/gs-classification-rest-api/README.md +88 -0
- package/api/gs-classification-rest-api/api/authorityClearance.api.d.ts +40 -0
- package/api/gs-classification-rest-api/api/classificationGuides.api.d.ts +169 -0
- package/api/gs-classification-rest-api/api/classificationReasons.api.d.ts +65 -0
- package/api/gs-classification-rest-api/api/declassificationExemptions.api.d.ts +61 -0
- package/api/gs-classification-rest-api/api/defaultClassificationValues.api.d.ts +30 -0
- package/api/gs-classification-rest-api/api/nodeSecurityMarks.api.d.ts +41 -0
- package/api/gs-classification-rest-api/api/securityControlSettings.api.d.ts +42 -0
- package/api/gs-classification-rest-api/api/securityGroups.api.d.ts +65 -0
- package/api/gs-classification-rest-api/api/securityMarks.api.d.ts +67 -0
- package/api/gs-classification-rest-api/api/types.d.ts +55 -0
- package/api/gs-classification-rest-api/model/authorityClearanceGroup.d.ts +24 -0
- package/api/gs-classification-rest-api/model/authorityClearanceGroupEntry.d.ts +20 -0
- package/api/gs-classification-rest-api/model/authorityClearanceGroupPaging.d.ts +20 -0
- package/api/gs-classification-rest-api/model/authorityClearanceGroupPagingList.d.ts +22 -0
- package/api/gs-classification-rest-api/model/authorityClearanceMark.d.ts +22 -0
- package/api/gs-classification-rest-api/model/classificationGuide.d.ts +25 -0
- package/api/gs-classification-rest-api/model/classificationGuideBody.d.ts +22 -0
- package/api/gs-classification-rest-api/model/classificationGuideEntry.d.ts +20 -0
- package/api/gs-classification-rest-api/model/classificationGuideInTopic.d.ts +25 -0
- package/api/gs-classification-rest-api/model/classificationGuidePaging.d.ts +20 -0
- package/api/gs-classification-rest-api/model/classificationGuidePagingList.d.ts +22 -0
- package/api/gs-classification-rest-api/model/classificationGuides.d.ts +26 -0
- package/api/gs-classification-rest-api/model/classificationGuidesBody.d.ts +23 -0
- package/api/gs-classification-rest-api/model/classificationGuidesEntry.d.ts +20 -0
- package/api/gs-classification-rest-api/model/classificationGuidesInTopic.d.ts +26 -0
- package/api/gs-classification-rest-api/model/classificationInformation.d.ts +27 -0
- package/api/gs-classification-rest-api/model/classificationReason.d.ts +21 -0
- package/api/gs-classification-rest-api/model/classificationReasonBody.d.ts +20 -0
- package/api/gs-classification-rest-api/model/classificationReasonEntry.d.ts +20 -0
- package/api/gs-classification-rest-api/model/classificationReasonsPaging.d.ts +20 -0
- package/api/gs-classification-rest-api/model/classificationReasonsPagingList.d.ts +22 -0
- package/api/gs-classification-rest-api/model/combinedInstructionBody.d.ts +22 -0
- package/api/gs-classification-rest-api/model/declassificationDate.d.ts +18 -0
- package/api/gs-classification-rest-api/model/declassificationExemption.d.ts +21 -0
- package/api/gs-classification-rest-api/model/declassificationExemptionBody.d.ts +20 -0
- package/api/gs-classification-rest-api/model/declassificationExemptionEntry.d.ts +20 -0
- package/api/gs-classification-rest-api/model/declassificationExemptionsPaging.d.ts +20 -0
- package/api/gs-classification-rest-api/model/declassificationExemptionsPagingList.d.ts +22 -0
- package/api/gs-classification-rest-api/model/index.d.ts +72 -0
- package/api/gs-classification-rest-api/model/instruction.d.ts +25 -0
- package/api/gs-classification-rest-api/model/instructionBody.d.ts +22 -0
- package/api/gs-classification-rest-api/model/instructionEntry.d.ts +20 -0
- package/api/gs-classification-rest-api/model/nodeSecurityMarkBody.d.ts +21 -0
- package/api/gs-classification-rest-api/model/path.d.ts +23 -0
- package/api/gs-classification-rest-api/model/securityControlSetting.d.ts +20 -0
- package/api/gs-classification-rest-api/model/securityControlSettingBody.d.ts +19 -0
- package/api/gs-classification-rest-api/model/securityControlSettingEntry.d.ts +20 -0
- package/api/gs-classification-rest-api/model/securityGroup.d.ts +23 -0
- package/api/gs-classification-rest-api/model/securityGroupBody.d.ts +20 -0
- package/api/gs-classification-rest-api/model/securityGroupEntry.d.ts +20 -0
- package/api/gs-classification-rest-api/model/securityGroupPaging.d.ts +20 -0
- package/api/gs-classification-rest-api/model/securityGroupPagingList.d.ts +22 -0
- package/api/gs-classification-rest-api/model/securityMark.d.ts +21 -0
- package/api/gs-classification-rest-api/model/securityMarkBody.d.ts +19 -0
- package/api/gs-classification-rest-api/model/securityMarkEntry.d.ts +20 -0
- package/api/gs-classification-rest-api/model/securityMarkInformation.d.ts +20 -0
- package/api/gs-classification-rest-api/model/securityMarkInformationBody.d.ts +20 -0
- package/api/gs-classification-rest-api/model/securityMarkPaging.d.ts +20 -0
- package/api/gs-classification-rest-api/model/securityMarkPagingList.d.ts +22 -0
- package/api/gs-classification-rest-api/model/securityMarks.d.ts +19 -0
- package/api/gs-classification-rest-api/model/securityMarksBody.d.ts +19 -0
- package/api/gs-classification-rest-api/model/topicBody.d.ts +22 -0
- package/api/gs-classification-rest-api/model/topicPagingList.d.ts +23 -0
- package/api/gs-core-rest-api/README.md +125 -0
- package/api/gs-core-rest-api/api/filePlans.api.d.ts +73 -0
- package/api/gs-core-rest-api/api/files.api.d.ts +40 -0
- package/api/gs-core-rest-api/api/gsSites.api.d.ts +62 -0
- package/api/gs-core-rest-api/api/recordCategories.api.d.ts +90 -0
- package/api/gs-core-rest-api/api/recordFolders.api.d.ts +85 -0
- package/api/gs-core-rest-api/api/records.api.d.ts +116 -0
- package/api/gs-core-rest-api/api/transferContainers.api.d.ts +57 -0
- package/api/gs-core-rest-api/api/transfers.api.d.ts +49 -0
- package/api/gs-core-rest-api/api/types.d.ts +54 -0
- package/api/gs-core-rest-api/api/unfiledContainers.api.d.ts +82 -0
- package/api/gs-core-rest-api/api/unfiledRecordFolders.api.d.ts +91 -0
- package/api/gs-core-rest-api/model/filePlan.d.ts +36 -0
- package/api/gs-core-rest-api/model/filePlanBodyUpdate.d.ts +21 -0
- package/api/gs-core-rest-api/model/filePlanComponentBodyUpdate.d.ts +27 -0
- package/api/gs-core-rest-api/model/rMNodeBodyCreate.d.ts +28 -0
- package/api/gs-core-rest-api/model/rMNodeBodyCreateWithRelativePath.d.ts +29 -0
- package/api/gs-core-rest-api/model/rMSite.d.ts +25 -0
- package/api/gs-core-rest-api/model/rMSiteBodyCreate.d.ts +21 -0
- package/api/gs-core-rest-api/model/rMSiteBodyUpdate.d.ts +20 -0
- package/api/gs-core-rest-api/model/rMSiteEntry.d.ts +20 -0
- package/api/gs-core-rest-api/model/record.d.ts +41 -0
- package/api/gs-core-rest-api/model/recordCategory.d.ts +40 -0
- package/api/gs-core-rest-api/model/recordCategoryChild.d.ts +46 -0
- package/api/gs-core-rest-api/model/recordCategoryChildPagingList.d.ts +25 -0
- package/api/gs-core-rest-api/model/recordCategoryPagingList.d.ts +25 -0
- package/api/gs-core-rest-api/model/recordFolder.d.ts +41 -0
- package/api/gs-core-rest-api/model/recordFolderAssociationPagingList.d.ts +25 -0
- package/api/gs-core-rest-api/model/recordFolderChildAssociation.d.ts +42 -0
- package/api/gs-core-rest-api/model/requestBodyFile.d.ts +19 -0
- package/api/gs-core-rest-api/model/rootCategoryBodyCreate.d.ts +28 -0
- package/api/gs-core-rest-api/model/transfer.d.ts +45 -0
- package/api/gs-core-rest-api/model/transferChild.d.ts +42 -0
- package/api/gs-core-rest-api/model/transferChildAssociation.d.ts +43 -0
- package/api/gs-core-rest-api/model/transferContainer.d.ts +35 -0
- package/api/gs-core-rest-api/model/transferContainerAssociationPagingList.d.ts +25 -0
- package/api/gs-core-rest-api/model/transferContainerBodyUpdate.d.ts +26 -0
- package/api/gs-core-rest-api/model/transferContainerChild.d.ts +45 -0
- package/api/gs-core-rest-api/model/transferContainerChildAssociation.d.ts +46 -0
- package/api/gs-core-rest-api/model/unfiledContainer.d.ts +36 -0
- package/api/gs-core-rest-api/model/unfiledContainerAssociationPagingList.d.ts +25 -0
- package/api/gs-core-rest-api/model/unfiledContainerChild.d.ts +38 -0
- package/api/gs-core-rest-api/model/unfiledContainerChildAssociation.d.ts +39 -0
- package/api/gs-core-rest-api/model/unfiledRecordContainerBodyUpdate.d.ts +26 -0
- package/api/gs-core-rest-api/model/unfiledRecordFolder.d.ts +38 -0
- package/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPagingList.d.ts +25 -0
- package/api/gs-core-rest-api/model/unfiledRecordFolderBodyUpdate.d.ts +26 -0
- package/api/gs-core-rest-api/model/unfiledRecordFolderChild.d.ts +38 -0
- package/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociation.d.ts +39 -0
- package/api/model-rest-api/README.md +32 -0
- package/api/model-rest-api/api/aspects.api.d.ts +76 -0
- package/api/model-rest-api/api/types.api.d.ts +73 -0
- package/api/model-rest-api/model/abstractClass.d.ts +33 -0
- package/api/model-rest-api/model/abstractClassAssociation.d.ts +26 -0
- package/api/model-rest-api/model/abstractClassAssociationSource.d.ts +23 -0
- package/api/model-rest-api/model/aspectPagingList.d.ts +23 -0
- package/api/model-rest-api/model/model.d.ts +23 -0
- package/api/search-rest-api/README.md +72 -0
- package/api/search-rest-api/api/search.api.d.ts +37 -0
- package/api/search-rest-api/model/genericBucket.d.ts +44 -0
- package/api/search-rest-api/model/genericBucketBucketInfo.d.ts +37 -0
- package/api/search-rest-api/model/genericFacetResponse.d.ts +31 -0
- package/api/search-rest-api/model/genericMetric.d.ts +29 -0
- package/api/search-rest-api/model/requestDefaults.d.ts +44 -0
- package/api/search-rest-api/model/requestFacetField.d.ts +51 -0
- package/api/search-rest-api/model/requestFacetFields.d.ts +28 -0
- package/api/search-rest-api/model/requestFacetIntervals.d.ts +31 -0
- package/api/search-rest-api/model/requestFacetIntervalsIntervals.d.ts +31 -0
- package/api/search-rest-api/model/requestFacetQueries.d.ts +22 -0
- package/api/search-rest-api/model/requestFacetQueriesInner.d.ts +26 -0
- package/api/search-rest-api/model/requestFacetSet.d.ts +41 -0
- package/api/search-rest-api/model/requestFields.d.ts +24 -0
- package/api/search-rest-api/model/requestFilterQueries.d.ts +22 -0
- package/api/search-rest-api/model/requestFilterQueriesInner.d.ts +27 -0
- package/api/search-rest-api/model/requestHighlight.d.ts +55 -0
- package/api/search-rest-api/model/requestHighlightFields.d.ts +27 -0
- package/api/search-rest-api/model/requestInclude.d.ts +27 -0
- package/api/search-rest-api/model/requestLimits.d.ts +29 -0
- package/api/search-rest-api/model/requestLocalization.d.ts +29 -0
- package/api/search-rest-api/model/requestPagination.d.ts +26 -0
- package/api/search-rest-api/model/requestPivot.d.ts +26 -0
- package/api/search-rest-api/model/requestQuery.d.ts +33 -0
- package/api/search-rest-api/model/requestRange.d.ts +57 -0
- package/api/search-rest-api/model/requestScope.d.ts +25 -0
- package/api/search-rest-api/model/requestSortDefinition.d.ts +22 -0
- package/api/search-rest-api/model/requestSortDefinitionInner.d.ts +30 -0
- package/api/search-rest-api/model/requestSpellcheck.d.ts +23 -0
- package/api/search-rest-api/model/requestStats.d.ts +85 -0
- package/api/search-rest-api/model/requestTemplates.d.ts +26 -0
- package/api/search-rest-api/model/requestTemplatesInner.d.ts +26 -0
- package/api/search-rest-api/model/responseConsistency.d.ts +25 -0
- package/api/search-rest-api/model/resultBuckets.d.ts +27 -0
- package/api/search-rest-api/model/resultBucketsBuckets.d.ts +34 -0
- package/api/search-rest-api/model/resultNode.d.ts +47 -0
- package/api/search-rest-api/model/resultSetContext.d.ts +48 -0
- package/api/search-rest-api/model/resultSetContextFacetQueries.d.ts +24 -0
- package/api/search-rest-api/model/resultSetContextSpellcheck.d.ts +23 -0
- package/api/search-rest-api/model/resultSetPagingList.d.ts +25 -0
- package/api/search-rest-api/model/searchEntry.d.ts +27 -0
- package/api/search-rest-api/model/searchEntryHighlight.d.ts +26 -0
- package/api/search-rest-api/model/searchRequest.d.ts +60 -0
- package/assert.d.ts +23 -0
- package/authentication/contentAuth.d.ts +74 -0
- package/authentication/oauth2Auth.d.ts +132 -0
- package/authentication/processAuth.d.ts +68 -0
- package/contentClient.d.ts +33 -0
- package/esm2020/alfresco-js-api.mjs +5 -0
- package/esm2020/alfrescoApi.mjs +477 -0
- package/esm2020/alfrescoApiClient.mjs +297 -0
- package/esm2020/alfrescoApiConfig.mjs +44 -0
- package/esm2020/api/activiti-rest-api/api/about.api.mjs +34 -0
- package/esm2020/api/activiti-rest-api/api/accountIntegration.api.mjs +34 -0
- package/esm2020/api/activiti-rest-api/api/adminEndpoints.api.mjs +213 -0
- package/esm2020/api/activiti-rest-api/api/adminGroups.api.mjs +307 -0
- package/esm2020/api/activiti-rest-api/api/adminTenants.api.mjs +160 -0
- package/esm2020/api/activiti-rest-api/api/adminUsers.api.mjs +101 -0
- package/esm2020/api/activiti-rest-api/api/appDefinitions.api.mjs +178 -0
- package/esm2020/api/activiti-rest-api/api/base.api.mjs +23 -0
- package/esm2020/api/activiti-rest-api/api/checklists.api.mjs +82 -0
- package/esm2020/api/activiti-rest-api/api/comments.api.mjs +104 -0
- package/esm2020/api/activiti-rest-api/api/content.api.mjs +267 -0
- package/esm2020/api/activiti-rest-api/api/dataSources.api.mjs +35 -0
- package/esm2020/api/activiti-rest-api/api/decisionAudits.api.mjs +63 -0
- package/esm2020/api/activiti-rest-api/api/decisionTables.api.mjs +68 -0
- package/esm2020/api/activiti-rest-api/api/endpoints.api.mjs +50 -0
- package/esm2020/api/activiti-rest-api/api/formModels.api.mjs +150 -0
- package/esm2020/api/activiti-rest-api/api/groups.api.mjs +52 -0
- package/esm2020/api/activiti-rest-api/api/iDMSync.api.mjs +58 -0
- package/esm2020/api/activiti-rest-api/api/index.mjs +62 -0
- package/esm2020/api/activiti-rest-api/api/integrationAlfrescoCloud.api.mjs +127 -0
- package/esm2020/api/activiti-rest-api/api/integrationAlfrescoOnPremise.api.mjs +119 -0
- package/esm2020/api/activiti-rest-api/api/integrationBox.api.mjs +137 -0
- package/esm2020/api/activiti-rest-api/api/integrationDrive.api.mjs +50 -0
- package/esm2020/api/activiti-rest-api/api/modelJsonBpmn.api.mjs +84 -0
- package/esm2020/api/activiti-rest-api/api/models.api.mjs +269 -0
- package/esm2020/api/activiti-rest-api/api/modelsBpmn.api.mjs +63 -0
- package/esm2020/api/activiti-rest-api/api/modelsHistory.api.mjs +69 -0
- package/esm2020/api/activiti-rest-api/api/processDefinitions.api.mjs +219 -0
- package/esm2020/api/activiti-rest-api/api/processInstanceVariables.api.mjs +119 -0
- package/esm2020/api/activiti-rest-api/api/processInstances.api.mjs +376 -0
- package/esm2020/api/activiti-rest-api/api/processScopes.api.mjs +37 -0
- package/esm2020/api/activiti-rest-api/api/report.api.mjs +146 -0
- package/esm2020/api/activiti-rest-api/api/runtimeAppDefinitions.api.mjs +67 -0
- package/esm2020/api/activiti-rest-api/api/runtimeAppDeployments.api.mjs +104 -0
- package/esm2020/api/activiti-rest-api/api/scriptFiles.api.mjs +47 -0
- package/esm2020/api/activiti-rest-api/api/submittedForms.api.mjs +96 -0
- package/esm2020/api/activiti-rest-api/api/systemProperties.api.mjs +84 -0
- package/esm2020/api/activiti-rest-api/api/taskActions.api.mjs +237 -0
- package/esm2020/api/activiti-rest-api/api/taskForms.api.mjs +164 -0
- package/esm2020/api/activiti-rest-api/api/taskVariables.api.mjs +141 -0
- package/esm2020/api/activiti-rest-api/api/tasks.api.mjs +276 -0
- package/esm2020/api/activiti-rest-api/api/temporary.api.mjs +87 -0
- package/esm2020/api/activiti-rest-api/api/types.mjs +18 -0
- package/esm2020/api/activiti-rest-api/api/userFilters.api.mjs +211 -0
- package/esm2020/api/activiti-rest-api/api/userProfile.api.mjs +103 -0
- package/esm2020/api/activiti-rest-api/api/users.api.mjs +130 -0
- package/esm2020/api/activiti-rest-api/index.mjs +19 -0
- package/esm2020/api/activiti-rest-api/model/abstractGroupRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/abstractUserRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/accountRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/addGroupCapabilitiesRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/alfrescoContentRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/alfrescoEndpointRepresentation.mjs +27 -0
- package/esm2020/api/activiti-rest-api/model/alfrescoNetworkRepresenation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/alfrescoSiteRepresenation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/appDefinition.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/appDefinitionPublishRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/appDefinitionRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/appDefinitionSaveRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/appDefinitionUpdateResultRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/appDeploymentRepresentation.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/appModelDefinition.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/assigneeIdentifierRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/auditCalculatedValueRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/auditDecisionExpressionInfoRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/auditDecisionInfoRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/auditDecisionRuleInfoRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/auditLogEntryRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/auditLogFormDataRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/boxContent.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/boxUserAccountCredentialsRepresentation.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/bulkUserUpdateRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/changePasswordRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/checklistOrderRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/commentAuditInfo.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/commentRepresentation.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/completeFormRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/conditionRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/createEndpointBasicAuthRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/createProcessInstanceRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/createTenantRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/dataSourceConfigRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/dataSourceRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/decisionAuditRepresentation.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/decisionTaskRepresentation.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/endpointBasicAuthRepresentation.mjs +27 -0
- package/esm2020/api/activiti-rest-api/model/endpointConfigurationRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/endpointRequestHeaderRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/entityAttributeScopeRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/entityVariableScopeRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/fieldValueInfo.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/file.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/formDefinitionRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/formFieldRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/formIdentifierRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/formJavascriptEventRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/formOutcomeRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/formRepresentation.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/formSaveRepresentation.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/formScopeRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/formTabRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/formValueRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/formVariableRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/globalDateFormatRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/googleDriveContent.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/groupCapabilityRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/groupRepresentation.mjs +34 -0
- package/esm2020/api/activiti-rest-api/model/historicProcessInstanceQueryRepresentation.mjs +29 -0
- package/esm2020/api/activiti-rest-api/model/historicTaskInstanceQueryRepresentation.mjs +34 -0
- package/esm2020/api/activiti-rest-api/model/identityLinkRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/imageUploadRepresentation.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/index.mjs +164 -0
- package/esm2020/api/activiti-rest-api/model/jsonNode.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/layoutRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/lightAppRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/lightGroupRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/lightTenantRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/lightUserRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/modelRepresentation.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/namedObject.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/objectNode.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/optionRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/passwordValidationConstraints.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/processContentRepresentation.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/processDefinitionMetaDataRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/processDefinitionRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/processInstanceAuditInfoRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/processInstanceFilterRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/processInstanceFilterRequestRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/processInstanceQueryRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/processInstanceRepresentation.mjs +27 -0
- package/esm2020/api/activiti-rest-api/model/processInstanceVariableRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/processScopeIdentifierRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/processScopeRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/processScopesRequestRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/publishIdentityInfoRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/queryVariable.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/relatedContentRepresentation.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/relatedProcessTask.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resetPasswordRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/restVariable.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationAbstractUserRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationAccountRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoContentRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoEndpointRepresentation.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoNetworkRepresenation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoSiteRepresenation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationAppDefinitionRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationAppDeploymentRepresentation.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationBoxContent.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationCommentRepresentation.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationDataSourceRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationDecisionAuditRepresentation.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationDecisionTaskRepresentation.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationFormRepresentation.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationGoogleDriveContent.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationLightGroupRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationLightUserRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationModelRepresentation.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationProcessContentRepresentation.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationProcessDefinitionRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationProcessInstanceRepresentation.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationRelatedContentRepresentation.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationRelatedProcessTask.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationRuntimeDecisionTableRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationRuntimeFormRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationSubmittedFormRepresentation.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationTaskRepresentation.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationUserProcessInstanceFilterRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/resultListDataRepresentationUserTaskFilterRepresentation.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/runtimeAppDefinitionSaveRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/runtimeDecisionTableRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/runtimeFormRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/saveFormRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/submittedFormRepresentation.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/syncLogEntryRepresentation.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/systemPropertiesRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/taskAuditInfoRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/taskFilterRepresentation.mjs +27 -0
- package/esm2020/api/activiti-rest-api/model/taskFilterRequestRepresentation.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/taskQueryRepresentation.mjs +27 -0
- package/esm2020/api/activiti-rest-api/model/taskRepresentation.mjs +40 -0
- package/esm2020/api/activiti-rest-api/model/taskUpdateRepresentation.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/tenantEvent.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/tenantRepresentation.mjs +27 -0
- package/esm2020/api/activiti-rest-api/model/userAccountCredentialsRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/userActionRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/userFilterOrderRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/userIdentifierRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/userProcessInstanceFilterRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/userRepresentation.mjs +33 -0
- package/esm2020/api/activiti-rest-api/model/userRepresentationGroup.mjs +28 -0
- package/esm2020/api/activiti-rest-api/model/userTaskFilterRepresentation.mjs +26 -0
- package/esm2020/api/activiti-rest-api/model/validationErrorRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/variableMappingRepresentation.mjs +18 -0
- package/esm2020/api/activiti-rest-api/model/variableScopeRepresentation.mjs +18 -0
- package/esm2020/api/auth-rest-api/api/authentication.api.mjs +83 -0
- package/esm2020/api/auth-rest-api/api/base.api.mjs +23 -0
- package/esm2020/api/auth-rest-api/api/index.mjs +18 -0
- package/esm2020/api/auth-rest-api/index.mjs +19 -0
- package/esm2020/api/auth-rest-api/model/index.mjs +22 -0
- package/esm2020/api/auth-rest-api/model/ticket.mjs +24 -0
- package/esm2020/api/auth-rest-api/model/ticketBody.mjs +24 -0
- package/esm2020/api/auth-rest-api/model/ticketEntry.mjs +26 -0
- package/esm2020/api/auth-rest-api/model/validTicket.mjs +24 -0
- package/esm2020/api/auth-rest-api/model/validTicketEntry.mjs +26 -0
- package/esm2020/api/content-custom-api/api/base.api.mjs +42 -0
- package/esm2020/api/content-custom-api/api/classes.api.mjs +54 -0
- package/esm2020/api/content-custom-api/api/content.api.mjs +133 -0
- package/esm2020/api/content-custom-api/api/customModel.api.mjs +446 -0
- package/esm2020/api/content-custom-api/api/index.mjs +22 -0
- package/esm2020/api/content-custom-api/api/upload.api.mjs +38 -0
- package/esm2020/api/content-custom-api/api/webscript.api.mjs +54 -0
- package/esm2020/api/content-custom-api/index.mjs +19 -0
- package/esm2020/api/content-custom-api/model/classDescription.mjs +24 -0
- package/esm2020/api/content-custom-api/model/classPropertyDescription.mjs +24 -0
- package/esm2020/api/content-custom-api/model/dateAlfresco.mjs +71 -0
- package/esm2020/api/content-custom-api/model/index.mjs +21 -0
- package/esm2020/api/content-custom-api/model/pagination.mjs +18 -0
- package/esm2020/api/content-rest-api/api/actions.api.mjs +136 -0
- package/esm2020/api/content-rest-api/api/activities.api.mjs +55 -0
- package/esm2020/api/content-rest-api/api/audit.api.mjs +301 -0
- package/esm2020/api/content-rest-api/api/base.api.mjs +23 -0
- package/esm2020/api/content-rest-api/api/categories.api.mjs +230 -0
- package/esm2020/api/content-rest-api/api/comments.api.mjs +125 -0
- package/esm2020/api/content-rest-api/api/downloads.api.mjs +105 -0
- package/esm2020/api/content-rest-api/api/favorites.api.mjs +268 -0
- package/esm2020/api/content-rest-api/api/groups.api.mjs +308 -0
- package/esm2020/api/content-rest-api/api/index.mjs +39 -0
- package/esm2020/api/content-rest-api/api/networks.api.mjs +103 -0
- package/esm2020/api/content-rest-api/api/nodes.api.mjs +780 -0
- package/esm2020/api/content-rest-api/api/people.api.mjs +294 -0
- package/esm2020/api/content-rest-api/api/preferences.api.mjs +79 -0
- package/esm2020/api/content-rest-api/api/probes.api.mjs +49 -0
- package/esm2020/api/content-rest-api/api/queries.api.mjs +149 -0
- package/esm2020/api/content-rest-api/api/ratings.api.mjs +133 -0
- package/esm2020/api/content-rest-api/api/renditions.api.mjs +164 -0
- package/esm2020/api/content-rest-api/api/sharedlinks.api.mjs +281 -0
- package/esm2020/api/content-rest-api/api/sites.api.mjs +852 -0
- package/esm2020/api/content-rest-api/api/tags.api.mjs +230 -0
- package/esm2020/api/content-rest-api/api/trashcan.api.mjs +319 -0
- package/esm2020/api/content-rest-api/api/types.mjs +18 -0
- package/esm2020/api/content-rest-api/api/versions.api.mjs +349 -0
- package/esm2020/api/content-rest-api/index.mjs +19 -0
- package/esm2020/api/content-rest-api/model/CategoryLinkBody.mjs +24 -0
- package/esm2020/api/content-rest-api/model/actionBodyExec.mjs +18 -0
- package/esm2020/api/content-rest-api/model/actionDefinition.mjs +18 -0
- package/esm2020/api/content-rest-api/model/actionDefinitionEntry.mjs +18 -0
- package/esm2020/api/content-rest-api/model/actionDefinitionList.mjs +26 -0
- package/esm2020/api/content-rest-api/model/actionDefinitionListList.mjs +26 -0
- package/esm2020/api/content-rest-api/model/actionExecResult.mjs +18 -0
- package/esm2020/api/content-rest-api/model/actionExecResultEntry.mjs +18 -0
- package/esm2020/api/content-rest-api/model/actionParameterDefinition.mjs +18 -0
- package/esm2020/api/content-rest-api/model/activity.mjs +31 -0
- package/esm2020/api/content-rest-api/model/activityEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/activityPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/activityPagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/association.mjs +18 -0
- package/esm2020/api/content-rest-api/model/associationBody.mjs +24 -0
- package/esm2020/api/content-rest-api/model/associationEntry.mjs +18 -0
- package/esm2020/api/content-rest-api/model/associationInfo.mjs +18 -0
- package/esm2020/api/content-rest-api/model/auditApp.mjs +18 -0
- package/esm2020/api/content-rest-api/model/auditAppEntry.mjs +18 -0
- package/esm2020/api/content-rest-api/model/auditAppPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/auditAppPagingList.mjs +26 -0
- package/esm2020/api/content-rest-api/model/auditBodyUpdate.mjs +18 -0
- package/esm2020/api/content-rest-api/model/auditEntry.mjs +28 -0
- package/esm2020/api/content-rest-api/model/auditEntryEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/auditEntryPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/auditEntryPagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/capabilities.mjs +18 -0
- package/esm2020/api/content-rest-api/model/category.mjs +24 -0
- package/esm2020/api/content-rest-api/model/categoryBody.mjs +18 -0
- package/esm2020/api/content-rest-api/model/categoryEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/categoryPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/categoryPagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/childAssociation.mjs +24 -0
- package/esm2020/api/content-rest-api/model/childAssociationBody.mjs +24 -0
- package/esm2020/api/content-rest-api/model/childAssociationEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/childAssociationInfo.mjs +24 -0
- package/esm2020/api/content-rest-api/model/clientBody.mjs +24 -0
- package/esm2020/api/content-rest-api/model/comment.mjs +30 -0
- package/esm2020/api/content-rest-api/model/commentBody.mjs +18 -0
- package/esm2020/api/content-rest-api/model/commentEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/commentPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/commentPagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/company.mjs +18 -0
- package/esm2020/api/content-rest-api/model/constraint.mjs +18 -0
- package/esm2020/api/content-rest-api/model/contentInfo.mjs +24 -0
- package/esm2020/api/content-rest-api/model/definition.mjs +18 -0
- package/esm2020/api/content-rest-api/model/deletedNode.mjs +38 -0
- package/esm2020/api/content-rest-api/model/deletedNodeBodyRestore.mjs +18 -0
- package/esm2020/api/content-rest-api/model/deletedNodeEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/deletedNodesPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/deletedNodesPagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/directAccessUrl.mjs +26 -0
- package/esm2020/api/content-rest-api/model/directAccessUrlEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/download.mjs +18 -0
- package/esm2020/api/content-rest-api/model/downloadBodyCreate.mjs +18 -0
- package/esm2020/api/content-rest-api/model/downloadEntry.mjs +18 -0
- package/esm2020/api/content-rest-api/model/errorError.mjs +18 -0
- package/esm2020/api/content-rest-api/model/favorite.mjs +30 -0
- package/esm2020/api/content-rest-api/model/favoriteBodyCreate.mjs +18 -0
- package/esm2020/api/content-rest-api/model/favoriteEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/favoritePaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/favoritePagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/favoriteSite.mjs +18 -0
- package/esm2020/api/content-rest-api/model/favoriteSiteBodyCreate.mjs +18 -0
- package/esm2020/api/content-rest-api/model/favoriteSiteEntry.mjs +18 -0
- package/esm2020/api/content-rest-api/model/group.mjs +18 -0
- package/esm2020/api/content-rest-api/model/groupBodyCreate.mjs +18 -0
- package/esm2020/api/content-rest-api/model/groupBodyUpdate.mjs +18 -0
- package/esm2020/api/content-rest-api/model/groupEntry.mjs +18 -0
- package/esm2020/api/content-rest-api/model/groupMember.mjs +18 -0
- package/esm2020/api/content-rest-api/model/groupMemberEntry.mjs +18 -0
- package/esm2020/api/content-rest-api/model/groupMemberPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/groupMemberPagingList.mjs +26 -0
- package/esm2020/api/content-rest-api/model/groupMembershipBodyCreate.mjs +30 -0
- package/esm2020/api/content-rest-api/model/groupPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/groupPagingList.mjs +26 -0
- package/esm2020/api/content-rest-api/model/index.mjs +201 -0
- package/esm2020/api/content-rest-api/model/modelError.mjs +18 -0
- package/esm2020/api/content-rest-api/model/networkQuota.mjs +18 -0
- package/esm2020/api/content-rest-api/model/node.mjs +36 -0
- package/esm2020/api/content-rest-api/model/nodeAssociation.mjs +36 -0
- package/esm2020/api/content-rest-api/model/nodeAssociationEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/nodeAssociationPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/nodeAssociationPagingList.mjs +32 -0
- package/esm2020/api/content-rest-api/model/nodeBodyCopy.mjs +18 -0
- package/esm2020/api/content-rest-api/model/nodeBodyCreate.mjs +34 -0
- package/esm2020/api/content-rest-api/model/nodeBodyCreateAssociation.mjs +18 -0
- package/esm2020/api/content-rest-api/model/nodeBodyLock.mjs +18 -0
- package/esm2020/api/content-rest-api/model/nodeBodyMove.mjs +18 -0
- package/esm2020/api/content-rest-api/model/nodeBodyUpdate.mjs +26 -0
- package/esm2020/api/content-rest-api/model/nodeChildAssociation.mjs +38 -0
- package/esm2020/api/content-rest-api/model/nodeChildAssociationEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/nodeChildAssociationPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/nodeChildAssociationPagingList.mjs +32 -0
- package/esm2020/api/content-rest-api/model/nodeEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/nodePaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/nodePagingList.mjs +32 -0
- package/esm2020/api/content-rest-api/model/pagination.mjs +24 -0
- package/esm2020/api/content-rest-api/model/passwordResetBody.mjs +18 -0
- package/esm2020/api/content-rest-api/model/pathElement.mjs +18 -0
- package/esm2020/api/content-rest-api/model/pathInfo.mjs +24 -0
- package/esm2020/api/content-rest-api/model/permissionElement.mjs +24 -0
- package/esm2020/api/content-rest-api/model/permissionsBody.mjs +28 -0
- package/esm2020/api/content-rest-api/model/permissionsInfo.mjs +31 -0
- package/esm2020/api/content-rest-api/model/person.mjs +26 -0
- package/esm2020/api/content-rest-api/model/personBodyCreate.mjs +18 -0
- package/esm2020/api/content-rest-api/model/personBodyUpdate.mjs +18 -0
- package/esm2020/api/content-rest-api/model/personEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/personNetwork.mjs +31 -0
- package/esm2020/api/content-rest-api/model/personNetworkEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/personNetworkPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/personNetworkPagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/personPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/personPagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/preference.mjs +18 -0
- package/esm2020/api/content-rest-api/model/preferenceEntry.mjs +18 -0
- package/esm2020/api/content-rest-api/model/preferencePaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/preferencePagingList.mjs +26 -0
- package/esm2020/api/content-rest-api/model/probeEntry.mjs +18 -0
- package/esm2020/api/content-rest-api/model/probeEntryEntry.mjs +18 -0
- package/esm2020/api/content-rest-api/model/property.mjs +18 -0
- package/esm2020/api/content-rest-api/model/rating.mjs +31 -0
- package/esm2020/api/content-rest-api/model/ratingAggregate.mjs +18 -0
- package/esm2020/api/content-rest-api/model/ratingBody.mjs +18 -0
- package/esm2020/api/content-rest-api/model/ratingEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/ratingPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/ratingPagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/rendition.mjs +32 -0
- package/esm2020/api/content-rest-api/model/renditionBodyCreate.mjs +18 -0
- package/esm2020/api/content-rest-api/model/renditionEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/renditionPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/renditionPagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/revertBody.mjs +18 -0
- package/esm2020/api/content-rest-api/model/sharedLink.mjs +32 -0
- package/esm2020/api/content-rest-api/model/sharedLinkBodyCreate.mjs +26 -0
- package/esm2020/api/content-rest-api/model/sharedLinkBodyEmail.mjs +18 -0
- package/esm2020/api/content-rest-api/model/sharedLinkEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/sharedLinkPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/sharedLinkPagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/site.mjs +37 -0
- package/esm2020/api/content-rest-api/model/siteBodyCreate.mjs +31 -0
- package/esm2020/api/content-rest-api/model/siteBodyUpdate.mjs +31 -0
- package/esm2020/api/content-rest-api/model/siteContainer.mjs +18 -0
- package/esm2020/api/content-rest-api/model/siteContainerEntry.mjs +18 -0
- package/esm2020/api/content-rest-api/model/siteContainerPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/siteContainerPagingList.mjs +26 -0
- package/esm2020/api/content-rest-api/model/siteEntry.mjs +28 -0
- package/esm2020/api/content-rest-api/model/siteEntryRelations.mjs +26 -0
- package/esm2020/api/content-rest-api/model/siteGroup.mjs +32 -0
- package/esm2020/api/content-rest-api/model/siteGroupEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/siteGroupPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/siteGroupPagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/siteMember.mjs +34 -0
- package/esm2020/api/content-rest-api/model/siteMemberEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/siteMemberPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/siteMemberPagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/siteMembershipApprovalBody.mjs +18 -0
- package/esm2020/api/content-rest-api/model/siteMembershipBodyCreate.mjs +32 -0
- package/esm2020/api/content-rest-api/model/siteMembershipBodyUpdate.mjs +32 -0
- package/esm2020/api/content-rest-api/model/siteMembershipRejectionBody.mjs +24 -0
- package/esm2020/api/content-rest-api/model/siteMembershipRequest.mjs +28 -0
- package/esm2020/api/content-rest-api/model/siteMembershipRequestBodyCreate.mjs +18 -0
- package/esm2020/api/content-rest-api/model/siteMembershipRequestBodyUpdate.mjs +18 -0
- package/esm2020/api/content-rest-api/model/siteMembershipRequestEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/siteMembershipRequestPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/siteMembershipRequestPagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/siteMembershipRequestWithPerson.mjs +30 -0
- package/esm2020/api/content-rest-api/model/siteMembershipRequestWithPersonEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/siteMembershipRequestWithPersonPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/siteMembershipRequestWithPersonPagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/sitePaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/sitePagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/siteRole.mjs +34 -0
- package/esm2020/api/content-rest-api/model/siteRoleEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/siteRolePaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/siteRolePagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/tag.mjs +24 -0
- package/esm2020/api/content-rest-api/model/tagBody.mjs +24 -0
- package/esm2020/api/content-rest-api/model/tagEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/tagPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/tagPagingList.mjs +30 -0
- package/esm2020/api/content-rest-api/model/userInfo.mjs +24 -0
- package/esm2020/api/content-rest-api/model/version.mjs +30 -0
- package/esm2020/api/content-rest-api/model/versionEntry.mjs +26 -0
- package/esm2020/api/content-rest-api/model/versionPaging.mjs +26 -0
- package/esm2020/api/content-rest-api/model/versionPagingList.mjs +30 -0
- package/esm2020/api/discovery-rest-api/api/base.api.mjs +23 -0
- package/esm2020/api/discovery-rest-api/api/discovery.api.mjs +37 -0
- package/esm2020/api/discovery-rest-api/api/index.mjs +18 -0
- package/esm2020/api/discovery-rest-api/index.mjs +19 -0
- package/esm2020/api/discovery-rest-api/model/discoveryEntry.mjs +26 -0
- package/esm2020/api/discovery-rest-api/model/entitlementsInfo.mjs +24 -0
- package/esm2020/api/discovery-rest-api/model/index.mjs +25 -0
- package/esm2020/api/discovery-rest-api/model/licenseInfo.mjs +29 -0
- package/esm2020/api/discovery-rest-api/model/moduleInfo.mjs +26 -0
- package/esm2020/api/discovery-rest-api/model/repositoryEntry.mjs +26 -0
- package/esm2020/api/discovery-rest-api/model/repositoryInfo.mjs +34 -0
- package/esm2020/api/discovery-rest-api/model/statusInfo.mjs +24 -0
- package/esm2020/api/discovery-rest-api/model/versionInfo.mjs +24 -0
- package/esm2020/api/gs-classification-rest-api/api/authorityClearance.api.mjs +57 -0
- package/esm2020/api/gs-classification-rest-api/api/base.api.mjs +23 -0
- package/esm2020/api/gs-classification-rest-api/api/classificationGuides.api.mjs +321 -0
- package/esm2020/api/gs-classification-rest-api/api/classificationReasons.api.mjs +111 -0
- package/esm2020/api/gs-classification-rest-api/api/declassificationExemptions.api.mjs +101 -0
- package/esm2020/api/gs-classification-rest-api/api/defaultClassificationValues.api.mjs +42 -0
- package/esm2020/api/gs-classification-rest-api/api/index.mjs +27 -0
- package/esm2020/api/gs-classification-rest-api/api/nodeSecurityMarks.api.mjs +61 -0
- package/esm2020/api/gs-classification-rest-api/api/securityControlSettings.api.mjs +63 -0
- package/esm2020/api/gs-classification-rest-api/api/securityGroups.api.mjs +100 -0
- package/esm2020/api/gs-classification-rest-api/api/securityMarks.api.mjs +121 -0
- package/esm2020/api/gs-classification-rest-api/api/types.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/index.mjs +19 -0
- package/esm2020/api/gs-classification-rest-api/model/authorityClearanceGroup.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/authorityClearanceGroupEntry.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/authorityClearanceGroupPaging.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/authorityClearanceGroupPagingList.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/authorityClearanceMark.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationGuide.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationGuideBody.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationGuideEntry.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationGuideInTopic.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationGuidePaging.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationGuidePagingList.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationGuides.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationGuidesBody.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationGuidesEntry.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationGuidesInTopic.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationInformation.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationReason.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationReasonBody.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationReasonEntry.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationReasonsPaging.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/classificationReasonsPagingList.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/combinedInstructionBody.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/declassificationDate.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/declassificationExemption.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/declassificationExemptionBody.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/declassificationExemptionEntry.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/declassificationExemptionsPaging.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/declassificationExemptionsPagingList.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/index.mjs +73 -0
- package/esm2020/api/gs-classification-rest-api/model/instruction.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/instructionBody.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/instructionEntry.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/nodeSecurityMarkBody.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/path.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityControlSetting.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityControlSettingBody.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityControlSettingEntry.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityGroup.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityGroupBody.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityGroupEntry.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityGroupPaging.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityGroupPagingList.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityMark.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityMarkBody.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityMarkEntry.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityMarkInformation.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityMarkInformationBody.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityMarkPaging.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityMarkPagingList.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityMarks.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/securityMarksBody.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/subtopicPaging.mjs +26 -0
- package/esm2020/api/gs-classification-rest-api/model/topic.mjs +26 -0
- package/esm2020/api/gs-classification-rest-api/model/topicBody.mjs +18 -0
- package/esm2020/api/gs-classification-rest-api/model/topicEntry.mjs +26 -0
- package/esm2020/api/gs-classification-rest-api/model/topicPaging.mjs +26 -0
- package/esm2020/api/gs-classification-rest-api/model/topicPagingList.mjs +30 -0
- package/esm2020/api/gs-core-rest-api/api/base.api.mjs +23 -0
- package/esm2020/api/gs-core-rest-api/api/filePlans.api.mjs +140 -0
- package/esm2020/api/gs-core-rest-api/api/files.api.mjs +56 -0
- package/esm2020/api/gs-core-rest-api/api/gsSites.api.mjs +90 -0
- package/esm2020/api/gs-core-rest-api/api/index.mjs +28 -0
- package/esm2020/api/gs-core-rest-api/api/recordCategories.api.mjs +165 -0
- package/esm2020/api/gs-core-rest-api/api/recordFolders.api.mjs +162 -0
- package/esm2020/api/gs-core-rest-api/api/records.api.mjs +203 -0
- package/esm2020/api/gs-core-rest-api/api/transferContainers.api.mjs +110 -0
- package/esm2020/api/gs-core-rest-api/api/transfers.api.mjs +84 -0
- package/esm2020/api/gs-core-rest-api/api/types.mjs +18 -0
- package/esm2020/api/gs-core-rest-api/api/unfiledContainers.api.mjs +151 -0
- package/esm2020/api/gs-core-rest-api/api/unfiledRecordFolders.api.mjs +167 -0
- package/esm2020/api/gs-core-rest-api/index.mjs +19 -0
- package/esm2020/api/gs-core-rest-api/model/filePlan.mjs +31 -0
- package/esm2020/api/gs-core-rest-api/model/filePlanBodyUpdate.mjs +18 -0
- package/esm2020/api/gs-core-rest-api/model/filePlanComponentBodyUpdate.mjs +18 -0
- package/esm2020/api/gs-core-rest-api/model/filePlanEntry.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/index.mjs +76 -0
- package/esm2020/api/gs-core-rest-api/model/rMNodeBodyCreate.mjs +18 -0
- package/esm2020/api/gs-core-rest-api/model/rMNodeBodyCreateWithRelativePath.mjs +18 -0
- package/esm2020/api/gs-core-rest-api/model/rMSite.mjs +18 -0
- package/esm2020/api/gs-core-rest-api/model/rMSiteBodyCreate.mjs +18 -0
- package/esm2020/api/gs-core-rest-api/model/rMSiteBodyUpdate.mjs +18 -0
- package/esm2020/api/gs-core-rest-api/model/rMSiteEntry.mjs +18 -0
- package/esm2020/api/gs-core-rest-api/model/record.mjs +32 -0
- package/esm2020/api/gs-core-rest-api/model/recordCategory.mjs +31 -0
- package/esm2020/api/gs-core-rest-api/model/recordCategoryChild.mjs +31 -0
- package/esm2020/api/gs-core-rest-api/model/recordCategoryChildEntry.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/recordCategoryChildPaging.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/recordCategoryChildPagingList.mjs +32 -0
- package/esm2020/api/gs-core-rest-api/model/recordCategoryEntry.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/recordCategoryPaging.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/recordCategoryPagingList.mjs +32 -0
- package/esm2020/api/gs-core-rest-api/model/recordEntry.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/recordFolder.mjs +32 -0
- package/esm2020/api/gs-core-rest-api/model/recordFolderAssociationPaging.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/recordFolderAssociationPagingList.mjs +32 -0
- package/esm2020/api/gs-core-rest-api/model/recordFolderChildAssociation.mjs +33 -0
- package/esm2020/api/gs-core-rest-api/model/recordFolderChildAssociationEntry.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/recordFolderEntry.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/requestBodyFile.mjs +18 -0
- package/esm2020/api/gs-core-rest-api/model/rootCategoryBodyCreate.mjs +18 -0
- package/esm2020/api/gs-core-rest-api/model/transfer.mjs +28 -0
- package/esm2020/api/gs-core-rest-api/model/transferAssociationPaging.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/transferAssociationPagingList.mjs +32 -0
- package/esm2020/api/gs-core-rest-api/model/transferChild.mjs +31 -0
- package/esm2020/api/gs-core-rest-api/model/transferChildAssociation.mjs +32 -0
- package/esm2020/api/gs-core-rest-api/model/transferChildAssociationEntry.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/transferContainer.mjs +30 -0
- package/esm2020/api/gs-core-rest-api/model/transferContainerAssociationPaging.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/transferContainerAssociationPagingList.mjs +32 -0
- package/esm2020/api/gs-core-rest-api/model/transferContainerBodyUpdate.mjs +18 -0
- package/esm2020/api/gs-core-rest-api/model/transferContainerChild.mjs +28 -0
- package/esm2020/api/gs-core-rest-api/model/transferContainerChildAssociation.mjs +29 -0
- package/esm2020/api/gs-core-rest-api/model/transferContainerChildAssociationEntry.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/transferContainerEntry.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/transferEntry.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledContainer.mjs +31 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledContainerAssociationPaging.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledContainerAssociationPagingList.mjs +32 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledContainerChild.mjs +31 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledContainerChildAssociation.mjs +32 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledContainerChildAssociationEntry.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledContainerEntry.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledRecordContainerBodyUpdate.mjs +18 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledRecordFolder.mjs +31 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPaging.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPagingList.mjs +32 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledRecordFolderBodyUpdate.mjs +18 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledRecordFolderChild.mjs +31 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociation.mjs +32 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociationEntry.mjs +26 -0
- package/esm2020/api/gs-core-rest-api/model/unfiledRecordFolderEntry.mjs +26 -0
- package/esm2020/api/model-rest-api/api/aspects.api.mjs +69 -0
- package/esm2020/api/model-rest-api/api/base.api.mjs +23 -0
- package/esm2020/api/model-rest-api/api/index.mjs +19 -0
- package/esm2020/api/model-rest-api/api/types.api.mjs +67 -0
- package/esm2020/api/model-rest-api/index.mjs +19 -0
- package/esm2020/api/model-rest-api/model/abstractClass.mjs +24 -0
- package/esm2020/api/model-rest-api/model/abstractClassAssociation.mjs +18 -0
- package/esm2020/api/model-rest-api/model/abstractClassAssociationSource.mjs +18 -0
- package/esm2020/api/model-rest-api/model/aspect.mjs +20 -0
- package/esm2020/api/model-rest-api/model/aspectEntry.mjs +26 -0
- package/esm2020/api/model-rest-api/model/aspectPaging.mjs +26 -0
- package/esm2020/api/model-rest-api/model/aspectPagingList.mjs +30 -0
- package/esm2020/api/model-rest-api/model/index.mjs +28 -0
- package/esm2020/api/model-rest-api/model/model.mjs +18 -0
- package/esm2020/api/model-rest-api/model/type.mjs +20 -0
- package/esm2020/api/model-rest-api/model/typeEntry.mjs +26 -0
- package/esm2020/api/model-rest-api/model/typePaging.mjs +26 -0
- package/esm2020/api/model-rest-api/model/typePagingList.mjs +30 -0
- package/esm2020/api/search-rest-api/api/index.mjs +18 -0
- package/esm2020/api/search-rest-api/api/search.api.mjs +46 -0
- package/esm2020/api/search-rest-api/index.mjs +19 -0
- package/esm2020/api/search-rest-api/model/genericBucket.mjs +18 -0
- package/esm2020/api/search-rest-api/model/genericBucketBucketInfo.mjs +18 -0
- package/esm2020/api/search-rest-api/model/genericFacetResponse.mjs +18 -0
- package/esm2020/api/search-rest-api/model/genericMetric.mjs +18 -0
- package/esm2020/api/search-rest-api/model/index.mjs +61 -0
- package/esm2020/api/search-rest-api/model/requestDefaults.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestFacetField.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestFacetFields.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestFacetIntervals.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestFacetIntervalsIntervals.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestFacetQueries.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestFacetQueriesInner.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestFacetSet.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestFields.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestFilterQueries.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestFilterQueriesInner.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestHighlight.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestHighlightFields.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestInclude.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestLimits.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestLocalization.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestPagination.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestPivot.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestQuery.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestRange.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestScope.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestSortDefinition.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestSortDefinitionInner.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestSpellcheck.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestStats.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestTemplates.mjs +18 -0
- package/esm2020/api/search-rest-api/model/requestTemplatesInner.mjs +18 -0
- package/esm2020/api/search-rest-api/model/responseConsistency.mjs +18 -0
- package/esm2020/api/search-rest-api/model/resultBuckets.mjs +18 -0
- package/esm2020/api/search-rest-api/model/resultBucketsBuckets.mjs +18 -0
- package/esm2020/api/search-rest-api/model/resultNode.mjs +34 -0
- package/esm2020/api/search-rest-api/model/resultSetContext.mjs +18 -0
- package/esm2020/api/search-rest-api/model/resultSetContextFacetQueries.mjs +18 -0
- package/esm2020/api/search-rest-api/model/resultSetContextSpellcheck.mjs +18 -0
- package/esm2020/api/search-rest-api/model/resultSetPaging.mjs +29 -0
- package/esm2020/api/search-rest-api/model/resultSetPagingList.mjs +30 -0
- package/esm2020/api/search-rest-api/model/resultSetRowEntry.mjs +29 -0
- package/esm2020/api/search-rest-api/model/searchEntry.mjs +18 -0
- package/esm2020/api/search-rest-api/model/searchEntryHighlight.mjs +18 -0
- package/esm2020/api/search-rest-api/model/searchRequest.mjs +18 -0
- package/esm2020/api-clients/api-client.mjs +46 -0
- package/esm2020/api-clients/http-client.interface.mjs +18 -0
- package/esm2020/assert.mjs +28 -0
- package/esm2020/authentication/authentication.mjs +18 -0
- package/esm2020/authentication/basicAuth.mjs +18 -0
- package/esm2020/authentication/contentAuth.mjs +180 -0
- package/esm2020/authentication/oauth2.mjs +18 -0
- package/esm2020/authentication/oauth2Auth.mjs +607 -0
- package/esm2020/authentication/oauth2Config.mjs +18 -0
- package/esm2020/authentication/processAuth.mjs +178 -0
- package/esm2020/contentClient.mjs +42 -0
- package/esm2020/index.mjs +40 -0
- package/esm2020/processClient.mjs +41 -0
- package/esm2020/storage.mjs +59 -0
- package/esm2020/superagentHttpClient.mjs +317 -0
- package/esm2020/to-deprecate/alfresco-api-type.mjs +18 -0
- package/esm2020/utils/index.mjs +19 -0
- package/esm2020/utils/is-browser.mjs +18 -0
- package/esm2020/utils/param-to-string.mjs +32 -0
- package/esm2020/utils/path-matcher.mjs +25 -0
- package/fesm2015/alfresco-js-api.mjs +23621 -0
- package/fesm2015/alfresco-js-api.mjs.map +1 -0
- package/fesm2020/alfresco-js-api.mjs +28306 -0
- package/fesm2020/alfresco-js-api.mjs.map +1 -0
- package/index.d.ts +39 -0
- package/package.json +25 -10
- package/processClient.d.ts +32 -0
- package/superagentHttpClient.d.ts +73 -0
- package/utils/param-to-string.d.ts +23 -0
- package/utils/path-matcher.d.ts +19 -0
- package/esm2015/index.js +0 -40
- package/esm2015/index.js.map +0 -1
- package/esm2015/src/alfrescoApi.js +0 -441
- package/esm2015/src/alfrescoApi.js.map +0 -1
- package/esm2015/src/alfrescoApiClient.js +0 -246
- package/esm2015/src/alfrescoApiClient.js.map +0 -1
- package/esm2015/src/alfrescoApiConfig.js +0 -44
- package/esm2015/src/alfrescoApiConfig.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/about.api.js +0 -25
- package/esm2015/src/api/activiti-rest-api/api/about.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/accountIntegration.api.js +0 -27
- package/esm2015/src/api/activiti-rest-api/api/accountIntegration.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/adminEndpoints.api.js +0 -149
- package/esm2015/src/api/activiti-rest-api/api/adminEndpoints.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/adminGroups.api.js +0 -205
- package/esm2015/src/api/activiti-rest-api/api/adminGroups.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/adminTenants.api.js +0 -111
- package/esm2015/src/api/activiti-rest-api/api/adminTenants.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/adminUsers.api.js +0 -70
- package/esm2015/src/api/activiti-rest-api/api/adminUsers.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/appDefinitions.api.js +0 -126
- package/esm2015/src/api/activiti-rest-api/api/appDefinitions.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/base.api.js +0 -24
- package/esm2015/src/api/activiti-rest-api/api/base.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/checklists.api.js +0 -59
- package/esm2015/src/api/activiti-rest-api/api/checklists.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/comments.api.js +0 -73
- package/esm2015/src/api/activiti-rest-api/api/comments.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/content.api.js +0 -192
- package/esm2015/src/api/activiti-rest-api/api/content.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/dataSources.api.js +0 -28
- package/esm2015/src/api/activiti-rest-api/api/dataSources.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/decisionAudits.api.js +0 -47
- package/esm2015/src/api/activiti-rest-api/api/decisionAudits.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/decisionTables.api.js +0 -53
- package/esm2015/src/api/activiti-rest-api/api/decisionTables.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/endpoints.api.js +0 -39
- package/esm2015/src/api/activiti-rest-api/api/endpoints.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/formModels.api.js +0 -113
- package/esm2015/src/api/activiti-rest-api/api/formModels.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/groups.api.js +0 -41
- package/esm2015/src/api/activiti-rest-api/api/groups.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/iDMSync.api.js +0 -39
- package/esm2015/src/api/activiti-rest-api/api/iDMSync.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/index.js +0 -61
- package/esm2015/src/api/activiti-rest-api/api/index.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/integrationAlfrescoCloud.api.js +0 -90
- package/esm2015/src/api/activiti-rest-api/api/integrationAlfrescoCloud.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/integrationAlfrescoOnPremise.api.js +0 -83
- package/esm2015/src/api/activiti-rest-api/api/integrationAlfrescoOnPremise.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/integrationBox.api.js +0 -91
- package/esm2015/src/api/activiti-rest-api/api/integrationBox.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/integrationDrive.api.js +0 -34
- package/esm2015/src/api/activiti-rest-api/api/integrationDrive.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/modelJsonBpmn.api.js +0 -63
- package/esm2015/src/api/activiti-rest-api/api/modelJsonBpmn.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/models.api.js +0 -180
- package/esm2015/src/api/activiti-rest-api/api/models.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/modelsBpmn.api.js +0 -47
- package/esm2015/src/api/activiti-rest-api/api/modelsBpmn.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/modelsHistory.api.js +0 -51
- package/esm2015/src/api/activiti-rest-api/api/modelsHistory.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/processDefinitions.api.js +0 -155
- package/esm2015/src/api/activiti-rest-api/api/processDefinitions.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/processInstanceVariables.api.js +0 -84
- package/esm2015/src/api/activiti-rest-api/api/processInstanceVariables.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/processInstances.api.js +0 -253
- package/esm2015/src/api/activiti-rest-api/api/processInstances.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/processScopes.api.js +0 -28
- package/esm2015/src/api/activiti-rest-api/api/processScopes.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/report.api.js +0 -126
- package/esm2015/src/api/activiti-rest-api/api/report.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/runtimeAppDefinitions.api.js +0 -47
- package/esm2015/src/api/activiti-rest-api/api/runtimeAppDefinitions.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/runtimeAppDeployments.api.js +0 -70
- package/esm2015/src/api/activiti-rest-api/api/runtimeAppDeployments.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/scriptFiles.api.js +0 -34
- package/esm2015/src/api/activiti-rest-api/api/scriptFiles.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/submittedForms.api.js +0 -68
- package/esm2015/src/api/activiti-rest-api/api/submittedForms.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/systemProperties.api.js +0 -62
- package/esm2015/src/api/activiti-rest-api/api/systemProperties.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/taskActions.api.js +0 -154
- package/esm2015/src/api/activiti-rest-api/api/taskActions.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/taskForms.api.js +0 -115
- package/esm2015/src/api/activiti-rest-api/api/taskForms.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/taskVariables.api.js +0 -99
- package/esm2015/src/api/activiti-rest-api/api/taskVariables.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/tasks.api.js +0 -183
- package/esm2015/src/api/activiti-rest-api/api/tasks.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/temporary.api.js +0 -62
- package/esm2015/src/api/activiti-rest-api/api/temporary.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/userFilters.api.js +0 -137
- package/esm2015/src/api/activiti-rest-api/api/userFilters.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/userProfile.api.js +0 -64
- package/esm2015/src/api/activiti-rest-api/api/userProfile.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/api/users.api.js +0 -87
- package/esm2015/src/api/activiti-rest-api/api/users.api.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/index.js +0 -19
- package/esm2015/src/api/activiti-rest-api/index.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/abstractGroupRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/abstractGroupRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/abstractUserRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/abstractUserRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/accountRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/accountRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/addGroupCapabilitiesRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/addGroupCapabilitiesRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/alfrescoContentRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/alfrescoContentRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/alfrescoEndpointRepresentation.js +0 -27
- package/esm2015/src/api/activiti-rest-api/model/alfrescoEndpointRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/alfrescoNetworkRepresenation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/alfrescoNetworkRepresenation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/alfrescoSiteRepresenation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/alfrescoSiteRepresenation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/appDefinition.js +0 -36
- package/esm2015/src/api/activiti-rest-api/model/appDefinition.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/appDefinitionPublishRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/appDefinitionPublishRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/appDefinitionRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/appDefinitionRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/appDefinitionSaveRepresentation.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/appDefinitionSaveRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/appDefinitionUpdateResultRepresentation.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/appDefinitionUpdateResultRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/appDeploymentRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/appDeploymentRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/appModelDefinition.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/appModelDefinition.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/assigneeIdentifierRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/assigneeIdentifierRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/auditCalculatedValueRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/auditCalculatedValueRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/auditDecisionExpressionInfoRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/auditDecisionExpressionInfoRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/auditDecisionInfoRepresentation.js +0 -36
- package/esm2015/src/api/activiti-rest-api/model/auditDecisionInfoRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/auditDecisionRuleInfoRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/auditDecisionRuleInfoRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/auditLogEntryRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/auditLogEntryRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/auditLogFormDataRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/auditLogFormDataRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/boxContent.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/boxContent.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/boxUserAccountCredentialsRepresentation.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/boxUserAccountCredentialsRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/bulkUserUpdateRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/bulkUserUpdateRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/changePasswordRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/changePasswordRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/checklistOrderRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/checklistOrderRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/commentAuditInfo.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/commentAuditInfo.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/commentRepresentation.js +0 -28
- package/esm2015/src/api/activiti-rest-api/model/commentRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/completeFormRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/completeFormRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/conditionRepresentation.js +0 -25
- package/esm2015/src/api/activiti-rest-api/model/conditionRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/createEndpointBasicAuthRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/createEndpointBasicAuthRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/createProcessInstanceRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/createProcessInstanceRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/createTenantRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/createTenantRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/dataSourceConfigRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/dataSourceConfigRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/dataSourceRepresentation.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/dataSourceRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/decisionAuditRepresentation.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/decisionAuditRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/decisionTaskRepresentation.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/decisionTaskRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/endpointBasicAuthRepresentation.js +0 -27
- package/esm2015/src/api/activiti-rest-api/model/endpointBasicAuthRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/endpointConfigurationRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/endpointConfigurationRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/endpointRequestHeaderRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/endpointRequestHeaderRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/entityAttributeScopeRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/entityAttributeScopeRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/entityVariableScopeRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/entityVariableScopeRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/fieldValueInfo.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/fieldValueInfo.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/file.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/file.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/formDefinitionRepresentation.js +0 -54
- package/esm2015/src/api/activiti-rest-api/model/formDefinitionRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/formFieldRepresentation.js +0 -32
- package/esm2015/src/api/activiti-rest-api/model/formFieldRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/formIdentifierRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/formIdentifierRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/formJavascriptEventRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/formJavascriptEventRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/formOutcomeRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/formOutcomeRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/formRepresentation.js +0 -28
- package/esm2015/src/api/activiti-rest-api/model/formRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/formSaveRepresentation.js +0 -32
- package/esm2015/src/api/activiti-rest-api/model/formSaveRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/formScopeRepresentation.js +0 -41
- package/esm2015/src/api/activiti-rest-api/model/formScopeRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/formTabRepresentation.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/formTabRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/formValueRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/formValueRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/formVariableRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/formVariableRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/globalDateFormatRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/globalDateFormatRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/googleDriveContent.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/googleDriveContent.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/groupCapabilityRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/groupCapabilityRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/groupRepresentation.js +0 -44
- package/esm2015/src/api/activiti-rest-api/model/groupRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/historicProcessInstanceQueryRepresentation.js +0 -35
- package/esm2015/src/api/activiti-rest-api/model/historicProcessInstanceQueryRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/historicTaskInstanceQueryRepresentation.js +0 -45
- package/esm2015/src/api/activiti-rest-api/model/historicTaskInstanceQueryRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/identityLinkRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/identityLinkRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/imageUploadRepresentation.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/imageUploadRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/index.js +0 -164
- package/esm2015/src/api/activiti-rest-api/model/index.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/jsonNode.js +0 -37
- package/esm2015/src/api/activiti-rest-api/model/jsonNode.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/layoutRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/layoutRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/lightAppRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/lightAppRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/lightGroupRepresentation.js +0 -29
- package/esm2015/src/api/activiti-rest-api/model/lightGroupRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/lightTenantRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/lightTenantRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/lightUserRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/lightUserRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/modelRepresentation.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/modelRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/namedObject.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/namedObject.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/objectNode.js +0 -37
- package/esm2015/src/api/activiti-rest-api/model/objectNode.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/optionRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/optionRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/passwordValidationConstraints.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/passwordValidationConstraints.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/processContentRepresentation.js +0 -32
- package/esm2015/src/api/activiti-rest-api/model/processContentRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/processDefinitionMetaDataRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/processDefinitionMetaDataRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/processDefinitionRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/processDefinitionRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/processInstanceAuditInfoRepresentation.js +0 -32
- package/esm2015/src/api/activiti-rest-api/model/processInstanceAuditInfoRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/processInstanceFilterRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/processInstanceFilterRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/processInstanceFilterRequestRepresentation.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/processInstanceFilterRequestRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/processInstanceQueryRepresentation.js +0 -37
- package/esm2015/src/api/activiti-rest-api/model/processInstanceQueryRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/processInstanceRepresentation.js +0 -35
- package/esm2015/src/api/activiti-rest-api/model/processInstanceRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/processInstanceVariableRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/processInstanceVariableRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/processScopeIdentifierRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/processScopeIdentifierRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/processScopeRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/processScopeRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/processScopesRequestRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/processScopesRequestRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/publishIdentityInfoRepresentation.js +0 -28
- package/esm2015/src/api/activiti-rest-api/model/publishIdentityInfoRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/queryVariable.js +0 -38
- package/esm2015/src/api/activiti-rest-api/model/queryVariable.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/relatedContentRepresentation.js +0 -28
- package/esm2015/src/api/activiti-rest-api/model/relatedContentRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/relatedProcessTask.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/relatedProcessTask.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resetPasswordRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/resetPasswordRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/restVariable.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/restVariable.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAbstractUserRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAbstractUserRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAccountRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAccountRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoContentRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoContentRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoEndpointRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoEndpointRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoNetworkRepresenation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoNetworkRepresenation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoSiteRepresenation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoSiteRepresenation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAppDefinitionRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAppDefinitionRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAppDeploymentRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationAppDeploymentRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationBoxContent.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationBoxContent.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationCommentRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationCommentRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationDataSourceRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationDataSourceRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationDecisionAuditRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationDecisionAuditRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationDecisionTaskRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationDecisionTaskRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationFormRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationFormRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationGoogleDriveContent.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationGoogleDriveContent.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationLightGroupRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationLightGroupRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationLightUserRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationLightUserRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationModelRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationModelRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationProcessContentRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationProcessContentRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationProcessDefinitionRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationProcessDefinitionRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationProcessInstanceRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationProcessInstanceRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationRelatedContentRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationRelatedContentRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationRelatedProcessTask.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationRelatedProcessTask.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationRuntimeDecisionTableRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationRuntimeDecisionTableRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationRuntimeFormRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationRuntimeFormRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationSubmittedFormRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationSubmittedFormRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationTaskRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationTaskRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationUserProcessInstanceFilterRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationUserProcessInstanceFilterRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationUserTaskFilterRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/resultListDataRepresentationUserTaskFilterRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/runtimeAppDefinitionSaveRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/runtimeAppDefinitionSaveRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/runtimeDecisionTableRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/runtimeDecisionTableRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/runtimeFormRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/runtimeFormRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/saveFormRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/saveFormRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/submittedFormRepresentation.js +0 -30
- package/esm2015/src/api/activiti-rest-api/model/submittedFormRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/syncLogEntryRepresentation.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/syncLogEntryRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/systemPropertiesRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/systemPropertiesRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/taskAuditInfoRepresentation.js +0 -36
- package/esm2015/src/api/activiti-rest-api/model/taskAuditInfoRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/taskFilterRepresentation.js +0 -34
- package/esm2015/src/api/activiti-rest-api/model/taskFilterRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/taskFilterRequestRepresentation.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/taskFilterRequestRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/taskQueryRepresentation.js +0 -40
- package/esm2015/src/api/activiti-rest-api/model/taskQueryRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/taskRepresentation.js +0 -59
- package/esm2015/src/api/activiti-rest-api/model/taskRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/taskUpdateRepresentation.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/taskUpdateRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/tenantEvent.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/tenantEvent.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/tenantRepresentation.js +0 -27
- package/esm2015/src/api/activiti-rest-api/model/tenantRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/userAccountCredentialsRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/userAccountCredentialsRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/userActionRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/userActionRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/userFilterOrderRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/userFilterOrderRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/userIdentifierRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/userIdentifierRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/userProcessInstanceFilterRepresentation.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/userProcessInstanceFilterRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/userRepresentation.js +0 -41
- package/esm2015/src/api/activiti-rest-api/model/userRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/userRepresentationGroup.js +0 -34
- package/esm2015/src/api/activiti-rest-api/model/userRepresentationGroup.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/userTaskFilterRepresentation.js +0 -26
- package/esm2015/src/api/activiti-rest-api/model/userTaskFilterRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/validationErrorRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/validationErrorRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/variableMappingRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/variableMappingRepresentation.js.map +0 -1
- package/esm2015/src/api/activiti-rest-api/model/variableScopeRepresentation.js +0 -24
- package/esm2015/src/api/activiti-rest-api/model/variableScopeRepresentation.js.map +0 -1
- package/esm2015/src/api/auth-rest-api/api/authentication.api.js +0 -48
- package/esm2015/src/api/auth-rest-api/api/authentication.api.js.map +0 -1
- package/esm2015/src/api/auth-rest-api/api/base.api.js +0 -24
- package/esm2015/src/api/auth-rest-api/api/base.api.js.map +0 -1
- package/esm2015/src/api/auth-rest-api/api/index.js +0 -18
- package/esm2015/src/api/auth-rest-api/api/index.js.map +0 -1
- package/esm2015/src/api/auth-rest-api/index.js +0 -19
- package/esm2015/src/api/auth-rest-api/index.js.map +0 -1
- package/esm2015/src/api/auth-rest-api/model/index.js +0 -22
- package/esm2015/src/api/auth-rest-api/model/index.js.map +0 -1
- package/esm2015/src/api/auth-rest-api/model/ticket.js +0 -24
- package/esm2015/src/api/auth-rest-api/model/ticket.js.map +0 -1
- package/esm2015/src/api/auth-rest-api/model/ticketBody.js +0 -24
- package/esm2015/src/api/auth-rest-api/model/ticketBody.js.map +0 -1
- package/esm2015/src/api/auth-rest-api/model/ticketEntry.js +0 -26
- package/esm2015/src/api/auth-rest-api/model/ticketEntry.js.map +0 -1
- package/esm2015/src/api/auth-rest-api/model/validTicket.js +0 -24
- package/esm2015/src/api/auth-rest-api/model/validTicket.js.map +0 -1
- package/esm2015/src/api/auth-rest-api/model/validTicketEntry.js +0 -26
- package/esm2015/src/api/auth-rest-api/model/validTicketEntry.js.map +0 -1
- package/esm2015/src/api/content-custom-api/api/base.api.js +0 -43
- package/esm2015/src/api/content-custom-api/api/base.api.js.map +0 -1
- package/esm2015/src/api/content-custom-api/api/classes.api.js +0 -43
- package/esm2015/src/api/content-custom-api/api/classes.api.js.map +0 -1
- package/esm2015/src/api/content-custom-api/api/content.api.js +0 -66
- package/esm2015/src/api/content-custom-api/api/content.api.js.map +0 -1
- package/esm2015/src/api/content-custom-api/api/customModel.api.js +0 -380
- package/esm2015/src/api/content-custom-api/api/customModel.api.js.map +0 -1
- package/esm2015/src/api/content-custom-api/api/index.js +0 -22
- package/esm2015/src/api/content-custom-api/api/index.js.map +0 -1
- package/esm2015/src/api/content-custom-api/api/upload.api.js +0 -38
- package/esm2015/src/api/content-custom-api/api/upload.api.js.map +0 -1
- package/esm2015/src/api/content-custom-api/api/webscript.api.js +0 -38
- package/esm2015/src/api/content-custom-api/api/webscript.api.js.map +0 -1
- package/esm2015/src/api/content-custom-api/index.js +0 -19
- package/esm2015/src/api/content-custom-api/index.js.map +0 -1
- package/esm2015/src/api/content-custom-api/model/classDescription.js +0 -24
- package/esm2015/src/api/content-custom-api/model/classDescription.js.map +0 -1
- package/esm2015/src/api/content-custom-api/model/classPropertyDescription.js +0 -24
- package/esm2015/src/api/content-custom-api/model/classPropertyDescription.js.map +0 -1
- package/esm2015/src/api/content-custom-api/model/dateAlfresco.js +0 -50
- package/esm2015/src/api/content-custom-api/model/dateAlfresco.js.map +0 -1
- package/esm2015/src/api/content-custom-api/model/index.js +0 -21
- package/esm2015/src/api/content-custom-api/model/index.js.map +0 -1
- package/esm2015/src/api/content-custom-api/model/pagination.js +0 -18
- package/esm2015/src/api/content-custom-api/model/pagination.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/actions.api.js +0 -77
- package/esm2015/src/api/content-rest-api/api/actions.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/activities.api.js +0 -37
- package/esm2015/src/api/content-rest-api/api/activities.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/audit.api.js +0 -157
- package/esm2015/src/api/content-rest-api/api/audit.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/base.api.js +0 -24
- package/esm2015/src/api/content-rest-api/api/base.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/categories.api.js +0 -152
- package/esm2015/src/api/content-rest-api/api/categories.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/comments.api.js +0 -89
- package/esm2015/src/api/content-rest-api/api/comments.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/downloads.api.js +0 -60
- package/esm2015/src/api/content-rest-api/api/downloads.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/favorites.api.js +0 -159
- package/esm2015/src/api/content-rest-api/api/favorites.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/groups.api.js +0 -169
- package/esm2015/src/api/content-rest-api/api/groups.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/index.js +0 -39
- package/esm2015/src/api/content-rest-api/api/index.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/networks.api.js +0 -73
- package/esm2015/src/api/content-rest-api/api/networks.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/nodes.api.js +0 -414
- package/esm2015/src/api/content-rest-api/api/nodes.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/people.api.js +0 -152
- package/esm2015/src/api/content-rest-api/api/people.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/preferences.api.js +0 -52
- package/esm2015/src/api/content-rest-api/api/preferences.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/probes.api.js +0 -33
- package/esm2015/src/api/content-rest-api/api/probes.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/queries.api.js +0 -74
- package/esm2015/src/api/content-rest-api/api/queries.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/ratings.api.js +0 -87
- package/esm2015/src/api/content-rest-api/api/ratings.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/renditions.api.js +0 -99
- package/esm2015/src/api/content-rest-api/api/renditions.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/sharedlinks.api.js +0 -158
- package/esm2015/src/api/content-rest-api/api/sharedlinks.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/sites.api.js +0 -482
- package/esm2015/src/api/content-rest-api/api/sites.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/tags.api.js +0 -156
- package/esm2015/src/api/content-rest-api/api/tags.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/trashcan.api.js +0 -175
- package/esm2015/src/api/content-rest-api/api/trashcan.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/types.js +0 -18
- package/esm2015/src/api/content-rest-api/api/types.js.map +0 -1
- package/esm2015/src/api/content-rest-api/api/versions.api.js +0 -197
- package/esm2015/src/api/content-rest-api/api/versions.api.js.map +0 -1
- package/esm2015/src/api/content-rest-api/index.js +0 -19
- package/esm2015/src/api/content-rest-api/index.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/CategoryLinkBody.js +0 -24
- package/esm2015/src/api/content-rest-api/model/CategoryLinkBody.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/actionBodyExec.js +0 -24
- package/esm2015/src/api/content-rest-api/model/actionBodyExec.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/actionDefinition.js +0 -30
- package/esm2015/src/api/content-rest-api/model/actionDefinition.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/actionDefinitionEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/actionDefinitionEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/actionDefinitionList.js +0 -26
- package/esm2015/src/api/content-rest-api/model/actionDefinitionList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/actionDefinitionListList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/actionDefinitionListList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/actionExecResult.js +0 -24
- package/esm2015/src/api/content-rest-api/model/actionExecResult.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/actionExecResultEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/actionExecResultEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/actionParameterDefinition.js +0 -24
- package/esm2015/src/api/content-rest-api/model/actionParameterDefinition.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/activity.js +0 -26
- package/esm2015/src/api/content-rest-api/model/activity.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/activityEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/activityEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/activityPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/activityPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/activityPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/activityPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/association.js +0 -24
- package/esm2015/src/api/content-rest-api/model/association.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/associationBody.js +0 -24
- package/esm2015/src/api/content-rest-api/model/associationBody.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/associationEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/associationEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/associationInfo.js +0 -24
- package/esm2015/src/api/content-rest-api/model/associationInfo.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/auditApp.js +0 -24
- package/esm2015/src/api/content-rest-api/model/auditApp.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/auditAppEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/auditAppEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/auditAppPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/auditAppPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/auditAppPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/auditAppPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/auditBodyUpdate.js +0 -24
- package/esm2015/src/api/content-rest-api/model/auditBodyUpdate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/auditEntry.js +0 -28
- package/esm2015/src/api/content-rest-api/model/auditEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/auditEntryEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/auditEntryEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/auditEntryPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/auditEntryPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/auditEntryPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/auditEntryPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/capabilities.js +0 -24
- package/esm2015/src/api/content-rest-api/model/capabilities.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/category.js +0 -24
- package/esm2015/src/api/content-rest-api/model/category.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/categoryBody.js +0 -24
- package/esm2015/src/api/content-rest-api/model/categoryBody.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/categoryEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/categoryEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/categoryPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/categoryPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/categoryPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/categoryPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/childAssociation.js +0 -24
- package/esm2015/src/api/content-rest-api/model/childAssociation.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/childAssociationBody.js +0 -24
- package/esm2015/src/api/content-rest-api/model/childAssociationBody.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/childAssociationEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/childAssociationEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/childAssociationInfo.js +0 -24
- package/esm2015/src/api/content-rest-api/model/childAssociationInfo.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/clientBody.js +0 -24
- package/esm2015/src/api/content-rest-api/model/clientBody.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/comment.js +0 -30
- package/esm2015/src/api/content-rest-api/model/comment.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/commentBody.js +0 -24
- package/esm2015/src/api/content-rest-api/model/commentBody.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/commentEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/commentEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/commentPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/commentPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/commentPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/commentPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/company.js +0 -24
- package/esm2015/src/api/content-rest-api/model/company.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/constraint.js +0 -24
- package/esm2015/src/api/content-rest-api/model/constraint.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/contentInfo.js +0 -24
- package/esm2015/src/api/content-rest-api/model/contentInfo.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/definition.js +0 -30
- package/esm2015/src/api/content-rest-api/model/definition.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/deletedNode.js +0 -40
- package/esm2015/src/api/content-rest-api/model/deletedNode.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/deletedNodeBodyRestore.js +0 -24
- package/esm2015/src/api/content-rest-api/model/deletedNodeBodyRestore.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/deletedNodeEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/deletedNodeEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/deletedNodesPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/deletedNodesPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/deletedNodesPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/deletedNodesPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/directAccessUrl.js +0 -26
- package/esm2015/src/api/content-rest-api/model/directAccessUrl.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/directAccessUrlEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/directAccessUrlEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/download.js +0 -33
- package/esm2015/src/api/content-rest-api/model/download.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/downloadBodyCreate.js +0 -24
- package/esm2015/src/api/content-rest-api/model/downloadBodyCreate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/downloadEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/downloadEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/errorError.js +0 -24
- package/esm2015/src/api/content-rest-api/model/errorError.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/favorite.js +0 -26
- package/esm2015/src/api/content-rest-api/model/favorite.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/favoriteBodyCreate.js +0 -24
- package/esm2015/src/api/content-rest-api/model/favoriteBodyCreate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/favoriteEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/favoriteEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/favoritePaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/favoritePaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/favoritePagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/favoritePagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/favoriteSite.js +0 -24
- package/esm2015/src/api/content-rest-api/model/favoriteSite.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/favoriteSiteBodyCreate.js +0 -24
- package/esm2015/src/api/content-rest-api/model/favoriteSiteBodyCreate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/favoriteSiteEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/favoriteSiteEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/group.js +0 -24
- package/esm2015/src/api/content-rest-api/model/group.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/groupBodyCreate.js +0 -24
- package/esm2015/src/api/content-rest-api/model/groupBodyCreate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/groupBodyUpdate.js +0 -24
- package/esm2015/src/api/content-rest-api/model/groupBodyUpdate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/groupEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/groupEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/groupMember.js +0 -30
- package/esm2015/src/api/content-rest-api/model/groupMember.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/groupMemberEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/groupMemberEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/groupMemberPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/groupMemberPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/groupMemberPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/groupMemberPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/groupMembershipBodyCreate.js +0 -30
- package/esm2015/src/api/content-rest-api/model/groupMembershipBodyCreate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/groupPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/groupPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/groupPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/groupPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/index.js +0 -201
- package/esm2015/src/api/content-rest-api/model/index.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/modelError.js +0 -26
- package/esm2015/src/api/content-rest-api/model/modelError.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/networkQuota.js +0 -24
- package/esm2015/src/api/content-rest-api/model/networkQuota.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/node.js +0 -38
- package/esm2015/src/api/content-rest-api/model/node.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodeAssociation.js +0 -40
- package/esm2015/src/api/content-rest-api/model/nodeAssociation.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodeAssociationEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/nodeAssociationEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodeAssociationPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/nodeAssociationPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodeAssociationPagingList.js +0 -34
- package/esm2015/src/api/content-rest-api/model/nodeAssociationPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodeBodyCopy.js +0 -24
- package/esm2015/src/api/content-rest-api/model/nodeBodyCopy.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodeBodyCreate.js +0 -42
- package/esm2015/src/api/content-rest-api/model/nodeBodyCreate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodeBodyCreateAssociation.js +0 -24
- package/esm2015/src/api/content-rest-api/model/nodeBodyCreateAssociation.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodeBodyLock.js +0 -34
- package/esm2015/src/api/content-rest-api/model/nodeBodyLock.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodeBodyMove.js +0 -24
- package/esm2015/src/api/content-rest-api/model/nodeBodyMove.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodeBodyUpdate.js +0 -26
- package/esm2015/src/api/content-rest-api/model/nodeBodyUpdate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodeChildAssociation.js +0 -40
- package/esm2015/src/api/content-rest-api/model/nodeChildAssociation.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodeChildAssociationEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/nodeChildAssociationEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodeChildAssociationPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/nodeChildAssociationPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodeChildAssociationPagingList.js +0 -34
- package/esm2015/src/api/content-rest-api/model/nodeChildAssociationPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodeEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/nodeEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodePaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/nodePaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/nodePagingList.js +0 -34
- package/esm2015/src/api/content-rest-api/model/nodePagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/pagination.js +0 -24
- package/esm2015/src/api/content-rest-api/model/pagination.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/passwordResetBody.js +0 -24
- package/esm2015/src/api/content-rest-api/model/passwordResetBody.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/pathElement.js +0 -24
- package/esm2015/src/api/content-rest-api/model/pathElement.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/pathInfo.js +0 -30
- package/esm2015/src/api/content-rest-api/model/pathInfo.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/permissionElement.js +0 -30
- package/esm2015/src/api/content-rest-api/model/permissionElement.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/permissionsBody.js +0 -30
- package/esm2015/src/api/content-rest-api/model/permissionsBody.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/permissionsInfo.js +0 -35
- package/esm2015/src/api/content-rest-api/model/permissionsInfo.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/person.js +0 -30
- package/esm2015/src/api/content-rest-api/model/person.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/personBodyCreate.js +0 -26
- package/esm2015/src/api/content-rest-api/model/personBodyCreate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/personBodyUpdate.js +0 -26
- package/esm2015/src/api/content-rest-api/model/personBodyUpdate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/personEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/personEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/personNetwork.js +0 -39
- package/esm2015/src/api/content-rest-api/model/personNetwork.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/personNetworkEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/personNetworkEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/personNetworkPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/personNetworkPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/personNetworkPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/personNetworkPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/personPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/personPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/personPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/personPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/preference.js +0 -24
- package/esm2015/src/api/content-rest-api/model/preference.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/preferenceEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/preferenceEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/preferencePaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/preferencePaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/preferencePagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/preferencePagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/probeEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/probeEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/probeEntryEntry.js +0 -24
- package/esm2015/src/api/content-rest-api/model/probeEntryEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/property.js +0 -30
- package/esm2015/src/api/content-rest-api/model/property.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/rating.js +0 -28
- package/esm2015/src/api/content-rest-api/model/rating.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/ratingAggregate.js +0 -24
- package/esm2015/src/api/content-rest-api/model/ratingAggregate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/ratingBody.js +0 -30
- package/esm2015/src/api/content-rest-api/model/ratingBody.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/ratingEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/ratingEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/ratingPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/ratingPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/ratingPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/ratingPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/rendition.js +0 -32
- package/esm2015/src/api/content-rest-api/model/rendition.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/renditionBodyCreate.js +0 -24
- package/esm2015/src/api/content-rest-api/model/renditionBodyCreate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/renditionEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/renditionEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/renditionPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/renditionPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/renditionPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/renditionPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/revertBody.js +0 -24
- package/esm2015/src/api/content-rest-api/model/revertBody.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/sharedLink.js +0 -32
- package/esm2015/src/api/content-rest-api/model/sharedLink.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/sharedLinkBodyCreate.js +0 -26
- package/esm2015/src/api/content-rest-api/model/sharedLinkBodyCreate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/sharedLinkBodyEmail.js +0 -24
- package/esm2015/src/api/content-rest-api/model/sharedLinkBodyEmail.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/sharedLinkEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/sharedLinkEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/sharedLinkPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/sharedLinkPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/sharedLinkPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/sharedLinkPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/site.js +0 -37
- package/esm2015/src/api/content-rest-api/model/site.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteBodyCreate.js +0 -31
- package/esm2015/src/api/content-rest-api/model/siteBodyCreate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteBodyUpdate.js +0 -31
- package/esm2015/src/api/content-rest-api/model/siteBodyUpdate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteContainer.js +0 -24
- package/esm2015/src/api/content-rest-api/model/siteContainer.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteContainerEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/siteContainerEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteContainerPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/siteContainerPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteContainerPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/siteContainerPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteEntry.js +0 -28
- package/esm2015/src/api/content-rest-api/model/siteEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteEntryRelations.js +0 -26
- package/esm2015/src/api/content-rest-api/model/siteEntryRelations.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteGroup.js +0 -34
- package/esm2015/src/api/content-rest-api/model/siteGroup.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteGroupEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/siteGroupEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteGroupPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/siteGroupPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteGroupPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/siteGroupPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMember.js +0 -34
- package/esm2015/src/api/content-rest-api/model/siteMember.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMemberEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/siteMemberEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMemberPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/siteMemberPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMemberPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/siteMemberPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMembershipApprovalBody.js +0 -24
- package/esm2015/src/api/content-rest-api/model/siteMembershipApprovalBody.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMembershipBodyCreate.js +0 -32
- package/esm2015/src/api/content-rest-api/model/siteMembershipBodyCreate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMembershipBodyUpdate.js +0 -32
- package/esm2015/src/api/content-rest-api/model/siteMembershipBodyUpdate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMembershipRejectionBody.js +0 -24
- package/esm2015/src/api/content-rest-api/model/siteMembershipRejectionBody.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequest.js +0 -28
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequest.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestBodyCreate.js +0 -24
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestBodyCreate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestBodyUpdate.js +0 -24
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestBodyUpdate.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestWithPerson.js +0 -30
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestWithPerson.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestWithPersonEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestWithPersonEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestWithPersonPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestWithPersonPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestWithPersonPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/siteMembershipRequestWithPersonPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/sitePaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/sitePaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/sitePagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/sitePagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteRole.js +0 -34
- package/esm2015/src/api/content-rest-api/model/siteRole.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteRoleEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/siteRoleEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteRolePaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/siteRolePaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/siteRolePagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/siteRolePagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/tag.js +0 -24
- package/esm2015/src/api/content-rest-api/model/tag.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/tagBody.js +0 -24
- package/esm2015/src/api/content-rest-api/model/tagBody.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/tagEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/tagEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/tagPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/tagPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/tagPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/tagPagingList.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/userInfo.js +0 -24
- package/esm2015/src/api/content-rest-api/model/userInfo.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/version.js +0 -30
- package/esm2015/src/api/content-rest-api/model/version.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/versionEntry.js +0 -26
- package/esm2015/src/api/content-rest-api/model/versionEntry.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/versionPaging.js +0 -26
- package/esm2015/src/api/content-rest-api/model/versionPaging.js.map +0 -1
- package/esm2015/src/api/content-rest-api/model/versionPagingList.js +0 -32
- package/esm2015/src/api/content-rest-api/model/versionPagingList.js.map +0 -1
- package/esm2015/src/api/discovery-rest-api/api/base.api.js +0 -24
- package/esm2015/src/api/discovery-rest-api/api/base.api.js.map +0 -1
- package/esm2015/src/api/discovery-rest-api/api/discovery.api.js +0 -27
- package/esm2015/src/api/discovery-rest-api/api/discovery.api.js.map +0 -1
- package/esm2015/src/api/discovery-rest-api/api/index.js +0 -18
- package/esm2015/src/api/discovery-rest-api/api/index.js.map +0 -1
- package/esm2015/src/api/discovery-rest-api/index.js +0 -19
- package/esm2015/src/api/discovery-rest-api/index.js.map +0 -1
- package/esm2015/src/api/discovery-rest-api/model/discoveryEntry.js +0 -26
- package/esm2015/src/api/discovery-rest-api/model/discoveryEntry.js.map +0 -1
- package/esm2015/src/api/discovery-rest-api/model/entitlementsInfo.js +0 -24
- package/esm2015/src/api/discovery-rest-api/model/entitlementsInfo.js.map +0 -1
- package/esm2015/src/api/discovery-rest-api/model/index.js +0 -25
- package/esm2015/src/api/discovery-rest-api/model/index.js.map +0 -1
- package/esm2015/src/api/discovery-rest-api/model/licenseInfo.js +0 -29
- package/esm2015/src/api/discovery-rest-api/model/licenseInfo.js.map +0 -1
- package/esm2015/src/api/discovery-rest-api/model/moduleInfo.js +0 -26
- package/esm2015/src/api/discovery-rest-api/model/moduleInfo.js.map +0 -1
- package/esm2015/src/api/discovery-rest-api/model/repositoryEntry.js +0 -26
- package/esm2015/src/api/discovery-rest-api/model/repositoryEntry.js.map +0 -1
- package/esm2015/src/api/discovery-rest-api/model/repositoryInfo.js +0 -36
- package/esm2015/src/api/discovery-rest-api/model/repositoryInfo.js.map +0 -1
- package/esm2015/src/api/discovery-rest-api/model/statusInfo.js +0 -24
- package/esm2015/src/api/discovery-rest-api/model/statusInfo.js.map +0 -1
- package/esm2015/src/api/discovery-rest-api/model/versionInfo.js +0 -24
- package/esm2015/src/api/discovery-rest-api/model/versionInfo.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/api/authorityClearance.api.js +0 -44
- package/esm2015/src/api/gs-classification-rest-api/api/authorityClearance.api.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/api/base.api.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/api/base.api.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/api/classificationGuides.api.js +0 -210
- package/esm2015/src/api/gs-classification-rest-api/api/classificationGuides.api.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/api/classificationReasons.api.js +0 -78
- package/esm2015/src/api/gs-classification-rest-api/api/classificationReasons.api.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/api/declassificationExemptions.api.js +0 -72
- package/esm2015/src/api/gs-classification-rest-api/api/declassificationExemptions.api.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/api/defaultClassificationValues.api.js +0 -33
- package/esm2015/src/api/gs-classification-rest-api/api/defaultClassificationValues.api.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/api/index.js +0 -27
- package/esm2015/src/api/gs-classification-rest-api/api/index.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/api/nodeSecurityMarks.api.js +0 -47
- package/esm2015/src/api/gs-classification-rest-api/api/nodeSecurityMarks.api.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/api/securityControlSettings.api.js +0 -46
- package/esm2015/src/api/gs-classification-rest-api/api/securityControlSettings.api.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/api/securityGroups.api.js +0 -67
- package/esm2015/src/api/gs-classification-rest-api/api/securityGroups.api.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/api/securityMarks.api.js +0 -87
- package/esm2015/src/api/gs-classification-rest-api/api/securityMarks.api.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/api/types.js +0 -18
- package/esm2015/src/api/gs-classification-rest-api/api/types.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/index.js +0 -19
- package/esm2015/src/api/gs-classification-rest-api/index.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/authorityClearanceGroup.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/authorityClearanceGroup.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/authorityClearanceGroupEntry.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/authorityClearanceGroupEntry.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/authorityClearanceGroupPaging.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/authorityClearanceGroupPaging.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/authorityClearanceGroupPagingList.js +0 -32
- package/esm2015/src/api/gs-classification-rest-api/model/authorityClearanceGroupPagingList.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/authorityClearanceMark.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/authorityClearanceMark.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuide.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuide.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuideBody.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuideBody.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuideEntry.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuideEntry.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuideInTopic.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuideInTopic.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuidePaging.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuidePaging.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuidePagingList.js +0 -32
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuidePagingList.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuides.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuides.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuidesBody.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuidesBody.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuidesEntry.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuidesEntry.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuidesInTopic.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/classificationGuidesInTopic.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationInformation.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/classificationInformation.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationReason.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/classificationReason.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationReasonBody.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/classificationReasonBody.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationReasonEntry.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/classificationReasonEntry.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationReasonsPaging.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/classificationReasonsPaging.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/classificationReasonsPagingList.js +0 -32
- package/esm2015/src/api/gs-classification-rest-api/model/classificationReasonsPagingList.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/combinedInstructionBody.js +0 -28
- package/esm2015/src/api/gs-classification-rest-api/model/combinedInstructionBody.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/declassificationDate.js +0 -18
- package/esm2015/src/api/gs-classification-rest-api/model/declassificationDate.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/declassificationExemption.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/declassificationExemption.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/declassificationExemptionBody.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/declassificationExemptionBody.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/declassificationExemptionEntry.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/declassificationExemptionEntry.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/declassificationExemptionsPaging.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/declassificationExemptionsPaging.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/declassificationExemptionsPagingList.js +0 -32
- package/esm2015/src/api/gs-classification-rest-api/model/declassificationExemptionsPagingList.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/index.js +0 -72
- package/esm2015/src/api/gs-classification-rest-api/model/index.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/instruction.js +0 -28
- package/esm2015/src/api/gs-classification-rest-api/model/instruction.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/instructionBody.js +0 -28
- package/esm2015/src/api/gs-classification-rest-api/model/instructionBody.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/instructionEntry.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/instructionEntry.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/nodeSecurityMarkBody.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/nodeSecurityMarkBody.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/path.js +0 -25
- package/esm2015/src/api/gs-classification-rest-api/model/path.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityControlSetting.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/securityControlSetting.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityControlSettingBody.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/securityControlSettingBody.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityControlSettingEntry.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/securityControlSettingEntry.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityGroup.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/securityGroup.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityGroupBody.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/securityGroupBody.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityGroupEntry.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/securityGroupEntry.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityGroupPaging.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/securityGroupPaging.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityGroupPagingList.js +0 -32
- package/esm2015/src/api/gs-classification-rest-api/model/securityGroupPagingList.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityMark.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/securityMark.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarkBody.js +0 -24
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarkBody.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarkEntry.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarkEntry.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarkInformation.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarkInformation.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarkInformationBody.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarkInformationBody.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarkPaging.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarkPaging.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarkPagingList.js +0 -32
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarkPagingList.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarks.js +0 -25
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarks.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarksBody.js +0 -25
- package/esm2015/src/api/gs-classification-rest-api/model/securityMarksBody.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/subtopicPaging.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/subtopicPaging.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/topic.js +0 -32
- package/esm2015/src/api/gs-classification-rest-api/model/topic.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/topicBody.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/topicBody.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/topicEntry.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/topicEntry.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/topicPaging.js +0 -26
- package/esm2015/src/api/gs-classification-rest-api/model/topicPaging.js.map +0 -1
- package/esm2015/src/api/gs-classification-rest-api/model/topicPagingList.js +0 -32
- package/esm2015/src/api/gs-classification-rest-api/model/topicPagingList.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/api/base.api.js +0 -24
- package/esm2015/src/api/gs-core-rest-api/api/base.api.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/api/filePlans.api.js +0 -98
- package/esm2015/src/api/gs-core-rest-api/api/filePlans.api.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/api/files.api.js +0 -41
- package/esm2015/src/api/gs-core-rest-api/api/files.api.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/api/gsSites.api.js +0 -59
- package/esm2015/src/api/gs-core-rest-api/api/gsSites.api.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/api/index.js +0 -28
- package/esm2015/src/api/gs-core-rest-api/api/index.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/api/recordCategories.api.js +0 -110
- package/esm2015/src/api/gs-core-rest-api/api/recordCategories.api.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/api/recordFolders.api.js +0 -107
- package/esm2015/src/api/gs-core-rest-api/api/recordFolders.api.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/api/records.api.js +0 -119
- package/esm2015/src/api/gs-core-rest-api/api/records.api.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/api/transferContainers.api.js +0 -79
- package/esm2015/src/api/gs-core-rest-api/api/transferContainers.api.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/api/transfers.api.js +0 -59
- package/esm2015/src/api/gs-core-rest-api/api/transfers.api.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/api/types.js +0 -18
- package/esm2015/src/api/gs-core-rest-api/api/types.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/api/unfiledContainers.api.js +0 -99
- package/esm2015/src/api/gs-core-rest-api/api/unfiledContainers.api.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/api/unfiledRecordFolders.api.js +0 -112
- package/esm2015/src/api/gs-core-rest-api/api/unfiledRecordFolders.api.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/index.js +0 -19
- package/esm2015/src/api/gs-core-rest-api/index.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/filePlan.js +0 -32
- package/esm2015/src/api/gs-core-rest-api/model/filePlan.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/filePlanBodyUpdate.js +0 -24
- package/esm2015/src/api/gs-core-rest-api/model/filePlanBodyUpdate.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/filePlanComponentBodyUpdate.js +0 -24
- package/esm2015/src/api/gs-core-rest-api/model/filePlanComponentBodyUpdate.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/filePlanEntry.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/filePlanEntry.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/index.js +0 -76
- package/esm2015/src/api/gs-core-rest-api/model/index.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/rMNodeBodyCreate.js +0 -24
- package/esm2015/src/api/gs-core-rest-api/model/rMNodeBodyCreate.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/rMNodeBodyCreateWithRelativePath.js +0 -24
- package/esm2015/src/api/gs-core-rest-api/model/rMNodeBodyCreateWithRelativePath.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/rMSite.js +0 -41
- package/esm2015/src/api/gs-core-rest-api/model/rMSite.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/rMSiteBodyCreate.js +0 -30
- package/esm2015/src/api/gs-core-rest-api/model/rMSiteBodyCreate.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/rMSiteBodyUpdate.js +0 -24
- package/esm2015/src/api/gs-core-rest-api/model/rMSiteBodyUpdate.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/rMSiteEntry.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/rMSiteEntry.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/record.js +0 -34
- package/esm2015/src/api/gs-core-rest-api/model/record.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/recordCategory.js +0 -32
- package/esm2015/src/api/gs-core-rest-api/model/recordCategory.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/recordCategoryChild.js +0 -32
- package/esm2015/src/api/gs-core-rest-api/model/recordCategoryChild.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/recordCategoryChildEntry.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/recordCategoryChildEntry.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/recordCategoryChildPaging.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/recordCategoryChildPaging.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/recordCategoryChildPagingList.js +0 -34
- package/esm2015/src/api/gs-core-rest-api/model/recordCategoryChildPagingList.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/recordCategoryEntry.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/recordCategoryEntry.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/recordCategoryPaging.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/recordCategoryPaging.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/recordCategoryPagingList.js +0 -34
- package/esm2015/src/api/gs-core-rest-api/model/recordCategoryPagingList.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/recordEntry.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/recordEntry.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/recordFolder.js +0 -32
- package/esm2015/src/api/gs-core-rest-api/model/recordFolder.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/recordFolderAssociationPaging.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/recordFolderAssociationPaging.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/recordFolderAssociationPagingList.js +0 -34
- package/esm2015/src/api/gs-core-rest-api/model/recordFolderAssociationPagingList.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/recordFolderChildAssociation.js +0 -36
- package/esm2015/src/api/gs-core-rest-api/model/recordFolderChildAssociation.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/recordFolderChildAssociationEntry.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/recordFolderChildAssociationEntry.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/recordFolderEntry.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/recordFolderEntry.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/requestBodyFile.js +0 -24
- package/esm2015/src/api/gs-core-rest-api/model/requestBodyFile.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/rootCategoryBodyCreate.js +0 -24
- package/esm2015/src/api/gs-core-rest-api/model/rootCategoryBodyCreate.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/transfer.js +0 -28
- package/esm2015/src/api/gs-core-rest-api/model/transfer.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/transferAssociationPaging.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/transferAssociationPaging.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/transferAssociationPagingList.js +0 -34
- package/esm2015/src/api/gs-core-rest-api/model/transferAssociationPagingList.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/transferChild.js +0 -32
- package/esm2015/src/api/gs-core-rest-api/model/transferChild.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/transferChildAssociation.js +0 -34
- package/esm2015/src/api/gs-core-rest-api/model/transferChildAssociation.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/transferChildAssociationEntry.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/transferChildAssociationEntry.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/transferContainer.js +0 -30
- package/esm2015/src/api/gs-core-rest-api/model/transferContainer.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/transferContainerAssociationPaging.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/transferContainerAssociationPaging.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/transferContainerAssociationPagingList.js +0 -34
- package/esm2015/src/api/gs-core-rest-api/model/transferContainerAssociationPagingList.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/transferContainerBodyUpdate.js +0 -24
- package/esm2015/src/api/gs-core-rest-api/model/transferContainerBodyUpdate.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/transferContainerChild.js +0 -28
- package/esm2015/src/api/gs-core-rest-api/model/transferContainerChild.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/transferContainerChildAssociation.js +0 -30
- package/esm2015/src/api/gs-core-rest-api/model/transferContainerChildAssociation.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/transferContainerChildAssociationEntry.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/transferContainerChildAssociationEntry.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/transferContainerEntry.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/transferContainerEntry.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/transferEntry.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/transferEntry.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledContainer.js +0 -32
- package/esm2015/src/api/gs-core-rest-api/model/unfiledContainer.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledContainerAssociationPaging.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/unfiledContainerAssociationPaging.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledContainerAssociationPagingList.js +0 -34
- package/esm2015/src/api/gs-core-rest-api/model/unfiledContainerAssociationPagingList.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledContainerChild.js +0 -32
- package/esm2015/src/api/gs-core-rest-api/model/unfiledContainerChild.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledContainerChildAssociation.js +0 -34
- package/esm2015/src/api/gs-core-rest-api/model/unfiledContainerChildAssociation.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledContainerChildAssociationEntry.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/unfiledContainerChildAssociationEntry.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledContainerEntry.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/unfiledContainerEntry.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordContainerBodyUpdate.js +0 -24
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordContainerBodyUpdate.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolder.js +0 -32
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolder.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPaging.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPaging.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPagingList.js +0 -34
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPagingList.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolderBodyUpdate.js +0 -24
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolderBodyUpdate.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolderChild.js +0 -32
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolderChild.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociation.js +0 -34
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociation.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociationEntry.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociationEntry.js.map +0 -1
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolderEntry.js +0 -26
- package/esm2015/src/api/gs-core-rest-api/model/unfiledRecordFolderEntry.js.map +0 -1
- package/esm2015/src/api/model-rest-api/api/aspects.api.js +0 -50
- package/esm2015/src/api/model-rest-api/api/aspects.api.js.map +0 -1
- package/esm2015/src/api/model-rest-api/api/base.api.js +0 -24
- package/esm2015/src/api/model-rest-api/api/base.api.js.map +0 -1
- package/esm2015/src/api/model-rest-api/api/index.js +0 -19
- package/esm2015/src/api/model-rest-api/api/index.js.map +0 -1
- package/esm2015/src/api/model-rest-api/api/types.api.js +0 -48
- package/esm2015/src/api/model-rest-api/api/types.api.js.map +0 -1
- package/esm2015/src/api/model-rest-api/index.js +0 -19
- package/esm2015/src/api/model-rest-api/index.js.map +0 -1
- package/esm2015/src/api/model-rest-api/model/abstractClass.js +0 -38
- package/esm2015/src/api/model-rest-api/model/abstractClass.js.map +0 -1
- package/esm2015/src/api/model-rest-api/model/abstractClassAssociation.js +0 -27
- package/esm2015/src/api/model-rest-api/model/abstractClassAssociation.js.map +0 -1
- package/esm2015/src/api/model-rest-api/model/abstractClassAssociationSource.js +0 -24
- package/esm2015/src/api/model-rest-api/model/abstractClassAssociationSource.js.map +0 -1
- package/esm2015/src/api/model-rest-api/model/aspect.js +0 -20
- package/esm2015/src/api/model-rest-api/model/aspect.js.map +0 -1
- package/esm2015/src/api/model-rest-api/model/aspectEntry.js +0 -26
- package/esm2015/src/api/model-rest-api/model/aspectEntry.js.map +0 -1
- package/esm2015/src/api/model-rest-api/model/aspectPaging.js +0 -26
- package/esm2015/src/api/model-rest-api/model/aspectPaging.js.map +0 -1
- package/esm2015/src/api/model-rest-api/model/aspectPagingList.js +0 -32
- package/esm2015/src/api/model-rest-api/model/aspectPagingList.js.map +0 -1
- package/esm2015/src/api/model-rest-api/model/index.js +0 -28
- package/esm2015/src/api/model-rest-api/model/index.js.map +0 -1
- package/esm2015/src/api/model-rest-api/model/model.js +0 -24
- package/esm2015/src/api/model-rest-api/model/model.js.map +0 -1
- package/esm2015/src/api/model-rest-api/model/type.js +0 -20
- package/esm2015/src/api/model-rest-api/model/type.js.map +0 -1
- package/esm2015/src/api/model-rest-api/model/typeEntry.js +0 -26
- package/esm2015/src/api/model-rest-api/model/typeEntry.js.map +0 -1
- package/esm2015/src/api/model-rest-api/model/typePaging.js +0 -26
- package/esm2015/src/api/model-rest-api/model/typePaging.js.map +0 -1
- package/esm2015/src/api/model-rest-api/model/typePagingList.js +0 -32
- package/esm2015/src/api/model-rest-api/model/typePagingList.js.map +0 -1
- package/esm2015/src/api/search-rest-api/api/index.js +0 -18
- package/esm2015/src/api/search-rest-api/api/index.js.map +0 -1
- package/esm2015/src/api/search-rest-api/api/search.api.js +0 -34
- package/esm2015/src/api/search-rest-api/api/search.api.js.map +0 -1
- package/esm2015/src/api/search-rest-api/index.js +0 -19
- package/esm2015/src/api/search-rest-api/index.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/genericBucket.js +0 -32
- package/esm2015/src/api/search-rest-api/model/genericBucket.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/genericBucketBucketInfo.js +0 -24
- package/esm2015/src/api/search-rest-api/model/genericBucketBucketInfo.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/genericFacetResponse.js +0 -30
- package/esm2015/src/api/search-rest-api/model/genericFacetResponse.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/genericMetric.js +0 -24
- package/esm2015/src/api/search-rest-api/model/genericMetric.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/index.js +0 -61
- package/esm2015/src/api/search-rest-api/model/index.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestDefaults.js +0 -34
- package/esm2015/src/api/search-rest-api/model/requestDefaults.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestFacetField.js +0 -34
- package/esm2015/src/api/search-rest-api/model/requestFacetField.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestFacetFields.js +0 -30
- package/esm2015/src/api/search-rest-api/model/requestFacetFields.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestFacetIntervals.js +0 -36
- package/esm2015/src/api/search-rest-api/model/requestFacetIntervals.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestFacetIntervalsIntervals.js +0 -30
- package/esm2015/src/api/search-rest-api/model/requestFacetIntervalsIntervals.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestFacetQueries.js +0 -25
- package/esm2015/src/api/search-rest-api/model/requestFacetQueries.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestFacetQueriesInner.js +0 -24
- package/esm2015/src/api/search-rest-api/model/requestFacetQueriesInner.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestFacetSet.js +0 -24
- package/esm2015/src/api/search-rest-api/model/requestFacetSet.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestFields.js +0 -25
- package/esm2015/src/api/search-rest-api/model/requestFields.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestFilterQueries.js +0 -25
- package/esm2015/src/api/search-rest-api/model/requestFilterQueries.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestFilterQueriesInner.js +0 -24
- package/esm2015/src/api/search-rest-api/model/requestFilterQueriesInner.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestHighlight.js +0 -30
- package/esm2015/src/api/search-rest-api/model/requestHighlight.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestHighlightFields.js +0 -24
- package/esm2015/src/api/search-rest-api/model/requestHighlightFields.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestInclude.js +0 -25
- package/esm2015/src/api/search-rest-api/model/requestInclude.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestLimits.js +0 -24
- package/esm2015/src/api/search-rest-api/model/requestLimits.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestLocalization.js +0 -24
- package/esm2015/src/api/search-rest-api/model/requestLocalization.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestPagination.js +0 -24
- package/esm2015/src/api/search-rest-api/model/requestPagination.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestPivot.js +0 -29
- package/esm2015/src/api/search-rest-api/model/requestPivot.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestQuery.js +0 -31
- package/esm2015/src/api/search-rest-api/model/requestQuery.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestRange.js +0 -24
- package/esm2015/src/api/search-rest-api/model/requestRange.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestScope.js +0 -31
- package/esm2015/src/api/search-rest-api/model/requestScope.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestSortDefinition.js +0 -25
- package/esm2015/src/api/search-rest-api/model/requestSortDefinition.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestSortDefinitionInner.js +0 -31
- package/esm2015/src/api/search-rest-api/model/requestSortDefinitionInner.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestSpellcheck.js +0 -24
- package/esm2015/src/api/search-rest-api/model/requestSpellcheck.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestStats.js +0 -24
- package/esm2015/src/api/search-rest-api/model/requestStats.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestTemplates.js +0 -25
- package/esm2015/src/api/search-rest-api/model/requestTemplates.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/requestTemplatesInner.js +0 -24
- package/esm2015/src/api/search-rest-api/model/requestTemplatesInner.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/responseConsistency.js +0 -24
- package/esm2015/src/api/search-rest-api/model/responseConsistency.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/resultBuckets.js +0 -30
- package/esm2015/src/api/search-rest-api/model/resultBuckets.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/resultBucketsBuckets.js +0 -24
- package/esm2015/src/api/search-rest-api/model/resultBucketsBuckets.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/resultNode.js +0 -38
- package/esm2015/src/api/search-rest-api/model/resultNode.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/resultSetContext.js +0 -52
- package/esm2015/src/api/search-rest-api/model/resultSetContext.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/resultSetContextFacetQueries.js +0 -24
- package/esm2015/src/api/search-rest-api/model/resultSetContextFacetQueries.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/resultSetContextSpellcheck.js +0 -30
- package/esm2015/src/api/search-rest-api/model/resultSetContextSpellcheck.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/resultSetPaging.js +0 -26
- package/esm2015/src/api/search-rest-api/model/resultSetPaging.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/resultSetPagingList.js +0 -34
- package/esm2015/src/api/search-rest-api/model/resultSetPagingList.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/resultSetRowEntry.js +0 -26
- package/esm2015/src/api/search-rest-api/model/resultSetRowEntry.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/searchEntry.js +0 -30
- package/esm2015/src/api/search-rest-api/model/searchEntry.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/searchEntryHighlight.js +0 -24
- package/esm2015/src/api/search-rest-api/model/searchEntryHighlight.js.map +0 -1
- package/esm2015/src/api/search-rest-api/model/searchRequest.js +0 -74
- package/esm2015/src/api/search-rest-api/model/searchRequest.js.map +0 -1
- package/esm2015/src/api-clients/api-client.js +0 -45
- package/esm2015/src/api-clients/api-client.js.map +0 -1
- package/esm2015/src/api-clients/http-client.interface.js +0 -18
- package/esm2015/src/api-clients/http-client.interface.js.map +0 -1
- package/esm2015/src/assert.js +0 -22
- package/esm2015/src/assert.js.map +0 -1
- package/esm2015/src/authentication/authentication.js +0 -18
- package/esm2015/src/authentication/authentication.js.map +0 -1
- package/esm2015/src/authentication/basicAuth.js +0 -18
- package/esm2015/src/authentication/basicAuth.js.map +0 -1
- package/esm2015/src/authentication/contentAuth.js +0 -144
- package/esm2015/src/authentication/contentAuth.js.map +0 -1
- package/esm2015/src/authentication/oauth2.js +0 -18
- package/esm2015/src/authentication/oauth2.js.map +0 -1
- package/esm2015/src/authentication/oauth2Auth.js +0 -571
- package/esm2015/src/authentication/oauth2Auth.js.map +0 -1
- package/esm2015/src/authentication/oauth2Config.js +0 -18
- package/esm2015/src/authentication/oauth2Config.js.map +0 -1
- package/esm2015/src/authentication/processAuth.js +0 -146
- package/esm2015/src/authentication/processAuth.js.map +0 -1
- package/esm2015/src/contentClient.js +0 -37
- package/esm2015/src/contentClient.js.map +0 -1
- package/esm2015/src/processClient.js +0 -36
- package/esm2015/src/processClient.js.map +0 -1
- package/esm2015/src/storage.js +0 -59
- package/esm2015/src/storage.js.map +0 -1
- package/esm2015/src/superagentHttpClient.js +0 -264
- package/esm2015/src/superagentHttpClient.js.map +0 -1
- package/esm2015/src/to-deprecate/alfresco-api-type.js +0 -18
- package/esm2015/src/to-deprecate/alfresco-api-type.js.map +0 -1
- package/esm2015/src/utils/index.js +0 -19
- package/esm2015/src/utils/index.js.map +0 -1
- package/esm2015/src/utils/is-browser.js +0 -20
- package/esm2015/src/utils/is-browser.js.map +0 -1
- package/esm2015/src/utils/param-to-string.js +0 -26
- package/esm2015/src/utils/param-to-string.js.map +0 -1
- package/esm2015/src/utils/path-matcher.js +0 -25
- package/esm2015/src/utils/path-matcher.js.map +0 -1
- package/esm5/index.js +0 -40
- package/esm5/index.js.map +0 -1
- package/esm5/src/alfrescoApi.js +0 -441
- package/esm5/src/alfrescoApi.js.map +0 -1
- package/esm5/src/alfrescoApiClient.js +0 -246
- package/esm5/src/alfrescoApiClient.js.map +0 -1
- package/esm5/src/alfrescoApiConfig.js +0 -44
- package/esm5/src/alfrescoApiConfig.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/about.api.js +0 -25
- package/esm5/src/api/activiti-rest-api/api/about.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/accountIntegration.api.js +0 -27
- package/esm5/src/api/activiti-rest-api/api/accountIntegration.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/adminEndpoints.api.js +0 -149
- package/esm5/src/api/activiti-rest-api/api/adminEndpoints.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/adminGroups.api.js +0 -205
- package/esm5/src/api/activiti-rest-api/api/adminGroups.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/adminTenants.api.js +0 -111
- package/esm5/src/api/activiti-rest-api/api/adminTenants.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/adminUsers.api.js +0 -70
- package/esm5/src/api/activiti-rest-api/api/adminUsers.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/appDefinitions.api.js +0 -126
- package/esm5/src/api/activiti-rest-api/api/appDefinitions.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/base.api.js +0 -24
- package/esm5/src/api/activiti-rest-api/api/base.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/checklists.api.js +0 -59
- package/esm5/src/api/activiti-rest-api/api/checklists.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/comments.api.js +0 -73
- package/esm5/src/api/activiti-rest-api/api/comments.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/content.api.js +0 -192
- package/esm5/src/api/activiti-rest-api/api/content.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/dataSources.api.js +0 -28
- package/esm5/src/api/activiti-rest-api/api/dataSources.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/decisionAudits.api.js +0 -47
- package/esm5/src/api/activiti-rest-api/api/decisionAudits.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/decisionTables.api.js +0 -53
- package/esm5/src/api/activiti-rest-api/api/decisionTables.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/endpoints.api.js +0 -39
- package/esm5/src/api/activiti-rest-api/api/endpoints.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/formModels.api.js +0 -113
- package/esm5/src/api/activiti-rest-api/api/formModels.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/groups.api.js +0 -41
- package/esm5/src/api/activiti-rest-api/api/groups.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/iDMSync.api.js +0 -39
- package/esm5/src/api/activiti-rest-api/api/iDMSync.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/index.js +0 -61
- package/esm5/src/api/activiti-rest-api/api/index.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/integrationAlfrescoCloud.api.js +0 -90
- package/esm5/src/api/activiti-rest-api/api/integrationAlfrescoCloud.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/integrationAlfrescoOnPremise.api.js +0 -83
- package/esm5/src/api/activiti-rest-api/api/integrationAlfrescoOnPremise.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/integrationBox.api.js +0 -91
- package/esm5/src/api/activiti-rest-api/api/integrationBox.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/integrationDrive.api.js +0 -34
- package/esm5/src/api/activiti-rest-api/api/integrationDrive.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/modelJsonBpmn.api.js +0 -63
- package/esm5/src/api/activiti-rest-api/api/modelJsonBpmn.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/models.api.js +0 -180
- package/esm5/src/api/activiti-rest-api/api/models.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/modelsBpmn.api.js +0 -47
- package/esm5/src/api/activiti-rest-api/api/modelsBpmn.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/modelsHistory.api.js +0 -51
- package/esm5/src/api/activiti-rest-api/api/modelsHistory.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/processDefinitions.api.js +0 -155
- package/esm5/src/api/activiti-rest-api/api/processDefinitions.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/processInstanceVariables.api.js +0 -84
- package/esm5/src/api/activiti-rest-api/api/processInstanceVariables.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/processInstances.api.js +0 -253
- package/esm5/src/api/activiti-rest-api/api/processInstances.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/processScopes.api.js +0 -28
- package/esm5/src/api/activiti-rest-api/api/processScopes.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/report.api.js +0 -126
- package/esm5/src/api/activiti-rest-api/api/report.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/runtimeAppDefinitions.api.js +0 -47
- package/esm5/src/api/activiti-rest-api/api/runtimeAppDefinitions.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/runtimeAppDeployments.api.js +0 -70
- package/esm5/src/api/activiti-rest-api/api/runtimeAppDeployments.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/scriptFiles.api.js +0 -34
- package/esm5/src/api/activiti-rest-api/api/scriptFiles.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/submittedForms.api.js +0 -68
- package/esm5/src/api/activiti-rest-api/api/submittedForms.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/systemProperties.api.js +0 -62
- package/esm5/src/api/activiti-rest-api/api/systemProperties.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/taskActions.api.js +0 -154
- package/esm5/src/api/activiti-rest-api/api/taskActions.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/taskForms.api.js +0 -115
- package/esm5/src/api/activiti-rest-api/api/taskForms.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/taskVariables.api.js +0 -99
- package/esm5/src/api/activiti-rest-api/api/taskVariables.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/tasks.api.js +0 -183
- package/esm5/src/api/activiti-rest-api/api/tasks.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/temporary.api.js +0 -62
- package/esm5/src/api/activiti-rest-api/api/temporary.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/userFilters.api.js +0 -137
- package/esm5/src/api/activiti-rest-api/api/userFilters.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/userProfile.api.js +0 -64
- package/esm5/src/api/activiti-rest-api/api/userProfile.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/api/users.api.js +0 -87
- package/esm5/src/api/activiti-rest-api/api/users.api.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/index.js +0 -19
- package/esm5/src/api/activiti-rest-api/index.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/abstractGroupRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/abstractGroupRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/abstractUserRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/abstractUserRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/accountRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/accountRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/addGroupCapabilitiesRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/addGroupCapabilitiesRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/alfrescoContentRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/alfrescoContentRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/alfrescoEndpointRepresentation.js +0 -27
- package/esm5/src/api/activiti-rest-api/model/alfrescoEndpointRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/alfrescoNetworkRepresenation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/alfrescoNetworkRepresenation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/alfrescoSiteRepresenation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/alfrescoSiteRepresenation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/appDefinition.js +0 -36
- package/esm5/src/api/activiti-rest-api/model/appDefinition.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/appDefinitionPublishRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/appDefinitionPublishRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/appDefinitionRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/appDefinitionRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/appDefinitionSaveRepresentation.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/appDefinitionSaveRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/appDefinitionUpdateResultRepresentation.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/appDefinitionUpdateResultRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/appDeploymentRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/appDeploymentRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/appModelDefinition.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/appModelDefinition.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/assigneeIdentifierRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/assigneeIdentifierRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/auditCalculatedValueRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/auditCalculatedValueRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/auditDecisionExpressionInfoRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/auditDecisionExpressionInfoRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/auditDecisionInfoRepresentation.js +0 -36
- package/esm5/src/api/activiti-rest-api/model/auditDecisionInfoRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/auditDecisionRuleInfoRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/auditDecisionRuleInfoRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/auditLogEntryRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/auditLogEntryRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/auditLogFormDataRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/auditLogFormDataRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/boxContent.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/boxContent.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/boxUserAccountCredentialsRepresentation.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/boxUserAccountCredentialsRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/bulkUserUpdateRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/bulkUserUpdateRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/changePasswordRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/changePasswordRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/checklistOrderRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/checklistOrderRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/commentAuditInfo.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/commentAuditInfo.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/commentRepresentation.js +0 -28
- package/esm5/src/api/activiti-rest-api/model/commentRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/completeFormRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/completeFormRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/conditionRepresentation.js +0 -25
- package/esm5/src/api/activiti-rest-api/model/conditionRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/createEndpointBasicAuthRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/createEndpointBasicAuthRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/createProcessInstanceRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/createProcessInstanceRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/createTenantRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/createTenantRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/dataSourceConfigRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/dataSourceConfigRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/dataSourceRepresentation.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/dataSourceRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/decisionAuditRepresentation.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/decisionAuditRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/decisionTaskRepresentation.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/decisionTaskRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/endpointBasicAuthRepresentation.js +0 -27
- package/esm5/src/api/activiti-rest-api/model/endpointBasicAuthRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/endpointConfigurationRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/endpointConfigurationRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/endpointRequestHeaderRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/endpointRequestHeaderRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/entityAttributeScopeRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/entityAttributeScopeRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/entityVariableScopeRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/entityVariableScopeRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/fieldValueInfo.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/fieldValueInfo.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/file.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/file.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/formDefinitionRepresentation.js +0 -54
- package/esm5/src/api/activiti-rest-api/model/formDefinitionRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/formFieldRepresentation.js +0 -32
- package/esm5/src/api/activiti-rest-api/model/formFieldRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/formIdentifierRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/formIdentifierRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/formJavascriptEventRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/formJavascriptEventRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/formOutcomeRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/formOutcomeRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/formRepresentation.js +0 -28
- package/esm5/src/api/activiti-rest-api/model/formRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/formSaveRepresentation.js +0 -32
- package/esm5/src/api/activiti-rest-api/model/formSaveRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/formScopeRepresentation.js +0 -41
- package/esm5/src/api/activiti-rest-api/model/formScopeRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/formTabRepresentation.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/formTabRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/formValueRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/formValueRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/formVariableRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/formVariableRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/globalDateFormatRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/globalDateFormatRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/googleDriveContent.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/googleDriveContent.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/groupCapabilityRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/groupCapabilityRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/groupRepresentation.js +0 -44
- package/esm5/src/api/activiti-rest-api/model/groupRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/historicProcessInstanceQueryRepresentation.js +0 -35
- package/esm5/src/api/activiti-rest-api/model/historicProcessInstanceQueryRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/historicTaskInstanceQueryRepresentation.js +0 -45
- package/esm5/src/api/activiti-rest-api/model/historicTaskInstanceQueryRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/identityLinkRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/identityLinkRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/imageUploadRepresentation.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/imageUploadRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/index.js +0 -164
- package/esm5/src/api/activiti-rest-api/model/index.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/jsonNode.js +0 -37
- package/esm5/src/api/activiti-rest-api/model/jsonNode.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/layoutRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/layoutRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/lightAppRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/lightAppRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/lightGroupRepresentation.js +0 -29
- package/esm5/src/api/activiti-rest-api/model/lightGroupRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/lightTenantRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/lightTenantRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/lightUserRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/lightUserRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/modelRepresentation.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/modelRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/namedObject.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/namedObject.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/objectNode.js +0 -37
- package/esm5/src/api/activiti-rest-api/model/objectNode.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/optionRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/optionRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/passwordValidationConstraints.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/passwordValidationConstraints.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/processContentRepresentation.js +0 -32
- package/esm5/src/api/activiti-rest-api/model/processContentRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/processDefinitionMetaDataRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/processDefinitionMetaDataRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/processDefinitionRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/processDefinitionRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/processInstanceAuditInfoRepresentation.js +0 -32
- package/esm5/src/api/activiti-rest-api/model/processInstanceAuditInfoRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/processInstanceFilterRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/processInstanceFilterRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/processInstanceFilterRequestRepresentation.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/processInstanceFilterRequestRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/processInstanceQueryRepresentation.js +0 -37
- package/esm5/src/api/activiti-rest-api/model/processInstanceQueryRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/processInstanceRepresentation.js +0 -35
- package/esm5/src/api/activiti-rest-api/model/processInstanceRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/processInstanceVariableRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/processInstanceVariableRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/processScopeIdentifierRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/processScopeIdentifierRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/processScopeRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/processScopeRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/processScopesRequestRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/processScopesRequestRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/publishIdentityInfoRepresentation.js +0 -28
- package/esm5/src/api/activiti-rest-api/model/publishIdentityInfoRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/queryVariable.js +0 -38
- package/esm5/src/api/activiti-rest-api/model/queryVariable.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/relatedContentRepresentation.js +0 -28
- package/esm5/src/api/activiti-rest-api/model/relatedContentRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/relatedProcessTask.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/relatedProcessTask.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resetPasswordRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/resetPasswordRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/restVariable.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/restVariable.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAbstractUserRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAbstractUserRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAccountRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAccountRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoContentRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoContentRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoEndpointRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoEndpointRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoNetworkRepresenation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoNetworkRepresenation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoSiteRepresenation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoSiteRepresenation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAppDefinitionRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAppDefinitionRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAppDeploymentRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationAppDeploymentRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationBoxContent.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationBoxContent.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationCommentRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationCommentRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationDataSourceRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationDataSourceRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationDecisionAuditRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationDecisionAuditRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationDecisionTaskRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationDecisionTaskRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationFormRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationFormRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationGoogleDriveContent.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationGoogleDriveContent.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationLightGroupRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationLightGroupRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationLightUserRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationLightUserRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationModelRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationModelRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationProcessContentRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationProcessContentRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationProcessDefinitionRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationProcessDefinitionRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationProcessInstanceRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationProcessInstanceRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationRelatedContentRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationRelatedContentRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationRelatedProcessTask.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationRelatedProcessTask.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationRuntimeDecisionTableRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationRuntimeDecisionTableRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationRuntimeFormRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationRuntimeFormRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationSubmittedFormRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationSubmittedFormRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationTaskRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationTaskRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationUserProcessInstanceFilterRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationUserProcessInstanceFilterRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationUserTaskFilterRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/resultListDataRepresentationUserTaskFilterRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/runtimeAppDefinitionSaveRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/runtimeAppDefinitionSaveRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/runtimeDecisionTableRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/runtimeDecisionTableRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/runtimeFormRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/runtimeFormRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/saveFormRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/saveFormRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/submittedFormRepresentation.js +0 -30
- package/esm5/src/api/activiti-rest-api/model/submittedFormRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/syncLogEntryRepresentation.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/syncLogEntryRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/systemPropertiesRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/systemPropertiesRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/taskAuditInfoRepresentation.js +0 -36
- package/esm5/src/api/activiti-rest-api/model/taskAuditInfoRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/taskFilterRepresentation.js +0 -34
- package/esm5/src/api/activiti-rest-api/model/taskFilterRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/taskFilterRequestRepresentation.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/taskFilterRequestRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/taskQueryRepresentation.js +0 -40
- package/esm5/src/api/activiti-rest-api/model/taskQueryRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/taskRepresentation.js +0 -59
- package/esm5/src/api/activiti-rest-api/model/taskRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/taskUpdateRepresentation.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/taskUpdateRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/tenantEvent.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/tenantEvent.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/tenantRepresentation.js +0 -27
- package/esm5/src/api/activiti-rest-api/model/tenantRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/userAccountCredentialsRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/userAccountCredentialsRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/userActionRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/userActionRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/userFilterOrderRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/userFilterOrderRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/userIdentifierRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/userIdentifierRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/userProcessInstanceFilterRepresentation.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/userProcessInstanceFilterRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/userRepresentation.js +0 -41
- package/esm5/src/api/activiti-rest-api/model/userRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/userRepresentationGroup.js +0 -34
- package/esm5/src/api/activiti-rest-api/model/userRepresentationGroup.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/userTaskFilterRepresentation.js +0 -26
- package/esm5/src/api/activiti-rest-api/model/userTaskFilterRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/validationErrorRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/validationErrorRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/variableMappingRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/variableMappingRepresentation.js.map +0 -1
- package/esm5/src/api/activiti-rest-api/model/variableScopeRepresentation.js +0 -24
- package/esm5/src/api/activiti-rest-api/model/variableScopeRepresentation.js.map +0 -1
- package/esm5/src/api/auth-rest-api/api/authentication.api.js +0 -48
- package/esm5/src/api/auth-rest-api/api/authentication.api.js.map +0 -1
- package/esm5/src/api/auth-rest-api/api/base.api.js +0 -24
- package/esm5/src/api/auth-rest-api/api/base.api.js.map +0 -1
- package/esm5/src/api/auth-rest-api/api/index.js +0 -18
- package/esm5/src/api/auth-rest-api/api/index.js.map +0 -1
- package/esm5/src/api/auth-rest-api/index.js +0 -19
- package/esm5/src/api/auth-rest-api/index.js.map +0 -1
- package/esm5/src/api/auth-rest-api/model/index.js +0 -22
- package/esm5/src/api/auth-rest-api/model/index.js.map +0 -1
- package/esm5/src/api/auth-rest-api/model/ticket.js +0 -24
- package/esm5/src/api/auth-rest-api/model/ticket.js.map +0 -1
- package/esm5/src/api/auth-rest-api/model/ticketBody.js +0 -24
- package/esm5/src/api/auth-rest-api/model/ticketBody.js.map +0 -1
- package/esm5/src/api/auth-rest-api/model/ticketEntry.js +0 -26
- package/esm5/src/api/auth-rest-api/model/ticketEntry.js.map +0 -1
- package/esm5/src/api/auth-rest-api/model/validTicket.js +0 -24
- package/esm5/src/api/auth-rest-api/model/validTicket.js.map +0 -1
- package/esm5/src/api/auth-rest-api/model/validTicketEntry.js +0 -26
- package/esm5/src/api/auth-rest-api/model/validTicketEntry.js.map +0 -1
- package/esm5/src/api/content-custom-api/api/base.api.js +0 -43
- package/esm5/src/api/content-custom-api/api/base.api.js.map +0 -1
- package/esm5/src/api/content-custom-api/api/classes.api.js +0 -43
- package/esm5/src/api/content-custom-api/api/classes.api.js.map +0 -1
- package/esm5/src/api/content-custom-api/api/content.api.js +0 -66
- package/esm5/src/api/content-custom-api/api/content.api.js.map +0 -1
- package/esm5/src/api/content-custom-api/api/customModel.api.js +0 -380
- package/esm5/src/api/content-custom-api/api/customModel.api.js.map +0 -1
- package/esm5/src/api/content-custom-api/api/index.js +0 -22
- package/esm5/src/api/content-custom-api/api/index.js.map +0 -1
- package/esm5/src/api/content-custom-api/api/upload.api.js +0 -38
- package/esm5/src/api/content-custom-api/api/upload.api.js.map +0 -1
- package/esm5/src/api/content-custom-api/api/webscript.api.js +0 -38
- package/esm5/src/api/content-custom-api/api/webscript.api.js.map +0 -1
- package/esm5/src/api/content-custom-api/index.js +0 -19
- package/esm5/src/api/content-custom-api/index.js.map +0 -1
- package/esm5/src/api/content-custom-api/model/classDescription.js +0 -24
- package/esm5/src/api/content-custom-api/model/classDescription.js.map +0 -1
- package/esm5/src/api/content-custom-api/model/classPropertyDescription.js +0 -24
- package/esm5/src/api/content-custom-api/model/classPropertyDescription.js.map +0 -1
- package/esm5/src/api/content-custom-api/model/dateAlfresco.js +0 -50
- package/esm5/src/api/content-custom-api/model/dateAlfresco.js.map +0 -1
- package/esm5/src/api/content-custom-api/model/index.js +0 -21
- package/esm5/src/api/content-custom-api/model/index.js.map +0 -1
- package/esm5/src/api/content-custom-api/model/pagination.js +0 -18
- package/esm5/src/api/content-custom-api/model/pagination.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/actions.api.js +0 -77
- package/esm5/src/api/content-rest-api/api/actions.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/activities.api.js +0 -37
- package/esm5/src/api/content-rest-api/api/activities.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/audit.api.js +0 -157
- package/esm5/src/api/content-rest-api/api/audit.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/base.api.js +0 -24
- package/esm5/src/api/content-rest-api/api/base.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/categories.api.js +0 -152
- package/esm5/src/api/content-rest-api/api/categories.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/comments.api.js +0 -89
- package/esm5/src/api/content-rest-api/api/comments.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/downloads.api.js +0 -60
- package/esm5/src/api/content-rest-api/api/downloads.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/favorites.api.js +0 -159
- package/esm5/src/api/content-rest-api/api/favorites.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/groups.api.js +0 -169
- package/esm5/src/api/content-rest-api/api/groups.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/index.js +0 -39
- package/esm5/src/api/content-rest-api/api/index.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/networks.api.js +0 -73
- package/esm5/src/api/content-rest-api/api/networks.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/nodes.api.js +0 -414
- package/esm5/src/api/content-rest-api/api/nodes.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/people.api.js +0 -152
- package/esm5/src/api/content-rest-api/api/people.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/preferences.api.js +0 -52
- package/esm5/src/api/content-rest-api/api/preferences.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/probes.api.js +0 -33
- package/esm5/src/api/content-rest-api/api/probes.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/queries.api.js +0 -74
- package/esm5/src/api/content-rest-api/api/queries.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/ratings.api.js +0 -87
- package/esm5/src/api/content-rest-api/api/ratings.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/renditions.api.js +0 -99
- package/esm5/src/api/content-rest-api/api/renditions.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/sharedlinks.api.js +0 -158
- package/esm5/src/api/content-rest-api/api/sharedlinks.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/sites.api.js +0 -482
- package/esm5/src/api/content-rest-api/api/sites.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/tags.api.js +0 -156
- package/esm5/src/api/content-rest-api/api/tags.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/trashcan.api.js +0 -175
- package/esm5/src/api/content-rest-api/api/trashcan.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/types.js +0 -18
- package/esm5/src/api/content-rest-api/api/types.js.map +0 -1
- package/esm5/src/api/content-rest-api/api/versions.api.js +0 -197
- package/esm5/src/api/content-rest-api/api/versions.api.js.map +0 -1
- package/esm5/src/api/content-rest-api/index.js +0 -19
- package/esm5/src/api/content-rest-api/index.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/CategoryLinkBody.js +0 -24
- package/esm5/src/api/content-rest-api/model/CategoryLinkBody.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/actionBodyExec.js +0 -24
- package/esm5/src/api/content-rest-api/model/actionBodyExec.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/actionDefinition.js +0 -30
- package/esm5/src/api/content-rest-api/model/actionDefinition.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/actionDefinitionEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/actionDefinitionEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/actionDefinitionList.js +0 -26
- package/esm5/src/api/content-rest-api/model/actionDefinitionList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/actionDefinitionListList.js +0 -32
- package/esm5/src/api/content-rest-api/model/actionDefinitionListList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/actionExecResult.js +0 -24
- package/esm5/src/api/content-rest-api/model/actionExecResult.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/actionExecResultEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/actionExecResultEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/actionParameterDefinition.js +0 -24
- package/esm5/src/api/content-rest-api/model/actionParameterDefinition.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/activity.js +0 -26
- package/esm5/src/api/content-rest-api/model/activity.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/activityEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/activityEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/activityPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/activityPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/activityPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/activityPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/association.js +0 -24
- package/esm5/src/api/content-rest-api/model/association.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/associationBody.js +0 -24
- package/esm5/src/api/content-rest-api/model/associationBody.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/associationEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/associationEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/associationInfo.js +0 -24
- package/esm5/src/api/content-rest-api/model/associationInfo.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/auditApp.js +0 -24
- package/esm5/src/api/content-rest-api/model/auditApp.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/auditAppEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/auditAppEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/auditAppPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/auditAppPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/auditAppPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/auditAppPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/auditBodyUpdate.js +0 -24
- package/esm5/src/api/content-rest-api/model/auditBodyUpdate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/auditEntry.js +0 -28
- package/esm5/src/api/content-rest-api/model/auditEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/auditEntryEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/auditEntryEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/auditEntryPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/auditEntryPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/auditEntryPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/auditEntryPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/capabilities.js +0 -24
- package/esm5/src/api/content-rest-api/model/capabilities.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/category.js +0 -24
- package/esm5/src/api/content-rest-api/model/category.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/categoryBody.js +0 -24
- package/esm5/src/api/content-rest-api/model/categoryBody.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/categoryEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/categoryEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/categoryPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/categoryPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/categoryPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/categoryPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/childAssociation.js +0 -24
- package/esm5/src/api/content-rest-api/model/childAssociation.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/childAssociationBody.js +0 -24
- package/esm5/src/api/content-rest-api/model/childAssociationBody.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/childAssociationEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/childAssociationEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/childAssociationInfo.js +0 -24
- package/esm5/src/api/content-rest-api/model/childAssociationInfo.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/clientBody.js +0 -24
- package/esm5/src/api/content-rest-api/model/clientBody.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/comment.js +0 -30
- package/esm5/src/api/content-rest-api/model/comment.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/commentBody.js +0 -24
- package/esm5/src/api/content-rest-api/model/commentBody.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/commentEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/commentEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/commentPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/commentPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/commentPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/commentPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/company.js +0 -24
- package/esm5/src/api/content-rest-api/model/company.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/constraint.js +0 -24
- package/esm5/src/api/content-rest-api/model/constraint.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/contentInfo.js +0 -24
- package/esm5/src/api/content-rest-api/model/contentInfo.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/definition.js +0 -30
- package/esm5/src/api/content-rest-api/model/definition.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/deletedNode.js +0 -40
- package/esm5/src/api/content-rest-api/model/deletedNode.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/deletedNodeBodyRestore.js +0 -24
- package/esm5/src/api/content-rest-api/model/deletedNodeBodyRestore.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/deletedNodeEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/deletedNodeEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/deletedNodesPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/deletedNodesPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/deletedNodesPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/deletedNodesPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/directAccessUrl.js +0 -26
- package/esm5/src/api/content-rest-api/model/directAccessUrl.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/directAccessUrlEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/directAccessUrlEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/download.js +0 -33
- package/esm5/src/api/content-rest-api/model/download.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/downloadBodyCreate.js +0 -24
- package/esm5/src/api/content-rest-api/model/downloadBodyCreate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/downloadEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/downloadEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/errorError.js +0 -24
- package/esm5/src/api/content-rest-api/model/errorError.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/favorite.js +0 -26
- package/esm5/src/api/content-rest-api/model/favorite.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/favoriteBodyCreate.js +0 -24
- package/esm5/src/api/content-rest-api/model/favoriteBodyCreate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/favoriteEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/favoriteEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/favoritePaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/favoritePaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/favoritePagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/favoritePagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/favoriteSite.js +0 -24
- package/esm5/src/api/content-rest-api/model/favoriteSite.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/favoriteSiteBodyCreate.js +0 -24
- package/esm5/src/api/content-rest-api/model/favoriteSiteBodyCreate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/favoriteSiteEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/favoriteSiteEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/group.js +0 -24
- package/esm5/src/api/content-rest-api/model/group.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/groupBodyCreate.js +0 -24
- package/esm5/src/api/content-rest-api/model/groupBodyCreate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/groupBodyUpdate.js +0 -24
- package/esm5/src/api/content-rest-api/model/groupBodyUpdate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/groupEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/groupEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/groupMember.js +0 -30
- package/esm5/src/api/content-rest-api/model/groupMember.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/groupMemberEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/groupMemberEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/groupMemberPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/groupMemberPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/groupMemberPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/groupMemberPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/groupMembershipBodyCreate.js +0 -30
- package/esm5/src/api/content-rest-api/model/groupMembershipBodyCreate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/groupPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/groupPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/groupPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/groupPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/index.js +0 -201
- package/esm5/src/api/content-rest-api/model/index.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/modelError.js +0 -26
- package/esm5/src/api/content-rest-api/model/modelError.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/networkQuota.js +0 -24
- package/esm5/src/api/content-rest-api/model/networkQuota.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/node.js +0 -38
- package/esm5/src/api/content-rest-api/model/node.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodeAssociation.js +0 -40
- package/esm5/src/api/content-rest-api/model/nodeAssociation.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodeAssociationEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/nodeAssociationEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodeAssociationPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/nodeAssociationPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodeAssociationPagingList.js +0 -34
- package/esm5/src/api/content-rest-api/model/nodeAssociationPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodeBodyCopy.js +0 -24
- package/esm5/src/api/content-rest-api/model/nodeBodyCopy.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodeBodyCreate.js +0 -42
- package/esm5/src/api/content-rest-api/model/nodeBodyCreate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodeBodyCreateAssociation.js +0 -24
- package/esm5/src/api/content-rest-api/model/nodeBodyCreateAssociation.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodeBodyLock.js +0 -34
- package/esm5/src/api/content-rest-api/model/nodeBodyLock.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodeBodyMove.js +0 -24
- package/esm5/src/api/content-rest-api/model/nodeBodyMove.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodeBodyUpdate.js +0 -26
- package/esm5/src/api/content-rest-api/model/nodeBodyUpdate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodeChildAssociation.js +0 -40
- package/esm5/src/api/content-rest-api/model/nodeChildAssociation.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodeChildAssociationEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/nodeChildAssociationEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodeChildAssociationPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/nodeChildAssociationPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodeChildAssociationPagingList.js +0 -34
- package/esm5/src/api/content-rest-api/model/nodeChildAssociationPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodeEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/nodeEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodePaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/nodePaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/nodePagingList.js +0 -34
- package/esm5/src/api/content-rest-api/model/nodePagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/pagination.js +0 -24
- package/esm5/src/api/content-rest-api/model/pagination.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/passwordResetBody.js +0 -24
- package/esm5/src/api/content-rest-api/model/passwordResetBody.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/pathElement.js +0 -24
- package/esm5/src/api/content-rest-api/model/pathElement.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/pathInfo.js +0 -30
- package/esm5/src/api/content-rest-api/model/pathInfo.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/permissionElement.js +0 -30
- package/esm5/src/api/content-rest-api/model/permissionElement.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/permissionsBody.js +0 -30
- package/esm5/src/api/content-rest-api/model/permissionsBody.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/permissionsInfo.js +0 -35
- package/esm5/src/api/content-rest-api/model/permissionsInfo.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/person.js +0 -30
- package/esm5/src/api/content-rest-api/model/person.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/personBodyCreate.js +0 -26
- package/esm5/src/api/content-rest-api/model/personBodyCreate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/personBodyUpdate.js +0 -26
- package/esm5/src/api/content-rest-api/model/personBodyUpdate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/personEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/personEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/personNetwork.js +0 -39
- package/esm5/src/api/content-rest-api/model/personNetwork.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/personNetworkEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/personNetworkEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/personNetworkPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/personNetworkPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/personNetworkPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/personNetworkPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/personPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/personPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/personPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/personPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/preference.js +0 -24
- package/esm5/src/api/content-rest-api/model/preference.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/preferenceEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/preferenceEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/preferencePaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/preferencePaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/preferencePagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/preferencePagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/probeEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/probeEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/probeEntryEntry.js +0 -24
- package/esm5/src/api/content-rest-api/model/probeEntryEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/property.js +0 -30
- package/esm5/src/api/content-rest-api/model/property.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/rating.js +0 -28
- package/esm5/src/api/content-rest-api/model/rating.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/ratingAggregate.js +0 -24
- package/esm5/src/api/content-rest-api/model/ratingAggregate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/ratingBody.js +0 -30
- package/esm5/src/api/content-rest-api/model/ratingBody.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/ratingEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/ratingEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/ratingPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/ratingPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/ratingPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/ratingPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/rendition.js +0 -32
- package/esm5/src/api/content-rest-api/model/rendition.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/renditionBodyCreate.js +0 -24
- package/esm5/src/api/content-rest-api/model/renditionBodyCreate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/renditionEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/renditionEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/renditionPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/renditionPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/renditionPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/renditionPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/revertBody.js +0 -24
- package/esm5/src/api/content-rest-api/model/revertBody.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/sharedLink.js +0 -32
- package/esm5/src/api/content-rest-api/model/sharedLink.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/sharedLinkBodyCreate.js +0 -26
- package/esm5/src/api/content-rest-api/model/sharedLinkBodyCreate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/sharedLinkBodyEmail.js +0 -24
- package/esm5/src/api/content-rest-api/model/sharedLinkBodyEmail.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/sharedLinkEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/sharedLinkEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/sharedLinkPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/sharedLinkPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/sharedLinkPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/sharedLinkPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/site.js +0 -37
- package/esm5/src/api/content-rest-api/model/site.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteBodyCreate.js +0 -31
- package/esm5/src/api/content-rest-api/model/siteBodyCreate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteBodyUpdate.js +0 -31
- package/esm5/src/api/content-rest-api/model/siteBodyUpdate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteContainer.js +0 -24
- package/esm5/src/api/content-rest-api/model/siteContainer.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteContainerEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/siteContainerEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteContainerPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/siteContainerPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteContainerPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/siteContainerPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteEntry.js +0 -28
- package/esm5/src/api/content-rest-api/model/siteEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteEntryRelations.js +0 -26
- package/esm5/src/api/content-rest-api/model/siteEntryRelations.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteGroup.js +0 -34
- package/esm5/src/api/content-rest-api/model/siteGroup.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteGroupEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/siteGroupEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteGroupPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/siteGroupPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteGroupPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/siteGroupPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMember.js +0 -34
- package/esm5/src/api/content-rest-api/model/siteMember.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMemberEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/siteMemberEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMemberPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/siteMemberPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMemberPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/siteMemberPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMembershipApprovalBody.js +0 -24
- package/esm5/src/api/content-rest-api/model/siteMembershipApprovalBody.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMembershipBodyCreate.js +0 -32
- package/esm5/src/api/content-rest-api/model/siteMembershipBodyCreate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMembershipBodyUpdate.js +0 -32
- package/esm5/src/api/content-rest-api/model/siteMembershipBodyUpdate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMembershipRejectionBody.js +0 -24
- package/esm5/src/api/content-rest-api/model/siteMembershipRejectionBody.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMembershipRequest.js +0 -28
- package/esm5/src/api/content-rest-api/model/siteMembershipRequest.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestBodyCreate.js +0 -24
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestBodyCreate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestBodyUpdate.js +0 -24
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestBodyUpdate.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestWithPerson.js +0 -30
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestWithPerson.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestWithPersonEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestWithPersonEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestWithPersonPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestWithPersonPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestWithPersonPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/siteMembershipRequestWithPersonPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/sitePaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/sitePaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/sitePagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/sitePagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteRole.js +0 -34
- package/esm5/src/api/content-rest-api/model/siteRole.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteRoleEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/siteRoleEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteRolePaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/siteRolePaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/siteRolePagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/siteRolePagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/tag.js +0 -24
- package/esm5/src/api/content-rest-api/model/tag.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/tagBody.js +0 -24
- package/esm5/src/api/content-rest-api/model/tagBody.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/tagEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/tagEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/tagPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/tagPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/tagPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/tagPagingList.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/userInfo.js +0 -24
- package/esm5/src/api/content-rest-api/model/userInfo.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/version.js +0 -30
- package/esm5/src/api/content-rest-api/model/version.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/versionEntry.js +0 -26
- package/esm5/src/api/content-rest-api/model/versionEntry.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/versionPaging.js +0 -26
- package/esm5/src/api/content-rest-api/model/versionPaging.js.map +0 -1
- package/esm5/src/api/content-rest-api/model/versionPagingList.js +0 -32
- package/esm5/src/api/content-rest-api/model/versionPagingList.js.map +0 -1
- package/esm5/src/api/discovery-rest-api/api/base.api.js +0 -24
- package/esm5/src/api/discovery-rest-api/api/base.api.js.map +0 -1
- package/esm5/src/api/discovery-rest-api/api/discovery.api.js +0 -27
- package/esm5/src/api/discovery-rest-api/api/discovery.api.js.map +0 -1
- package/esm5/src/api/discovery-rest-api/api/index.js +0 -18
- package/esm5/src/api/discovery-rest-api/api/index.js.map +0 -1
- package/esm5/src/api/discovery-rest-api/index.js +0 -19
- package/esm5/src/api/discovery-rest-api/index.js.map +0 -1
- package/esm5/src/api/discovery-rest-api/model/discoveryEntry.js +0 -26
- package/esm5/src/api/discovery-rest-api/model/discoveryEntry.js.map +0 -1
- package/esm5/src/api/discovery-rest-api/model/entitlementsInfo.js +0 -24
- package/esm5/src/api/discovery-rest-api/model/entitlementsInfo.js.map +0 -1
- package/esm5/src/api/discovery-rest-api/model/index.js +0 -25
- package/esm5/src/api/discovery-rest-api/model/index.js.map +0 -1
- package/esm5/src/api/discovery-rest-api/model/licenseInfo.js +0 -29
- package/esm5/src/api/discovery-rest-api/model/licenseInfo.js.map +0 -1
- package/esm5/src/api/discovery-rest-api/model/moduleInfo.js +0 -26
- package/esm5/src/api/discovery-rest-api/model/moduleInfo.js.map +0 -1
- package/esm5/src/api/discovery-rest-api/model/repositoryEntry.js +0 -26
- package/esm5/src/api/discovery-rest-api/model/repositoryEntry.js.map +0 -1
- package/esm5/src/api/discovery-rest-api/model/repositoryInfo.js +0 -36
- package/esm5/src/api/discovery-rest-api/model/repositoryInfo.js.map +0 -1
- package/esm5/src/api/discovery-rest-api/model/statusInfo.js +0 -24
- package/esm5/src/api/discovery-rest-api/model/statusInfo.js.map +0 -1
- package/esm5/src/api/discovery-rest-api/model/versionInfo.js +0 -24
- package/esm5/src/api/discovery-rest-api/model/versionInfo.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/api/authorityClearance.api.js +0 -44
- package/esm5/src/api/gs-classification-rest-api/api/authorityClearance.api.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/api/base.api.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/api/base.api.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/api/classificationGuides.api.js +0 -210
- package/esm5/src/api/gs-classification-rest-api/api/classificationGuides.api.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/api/classificationReasons.api.js +0 -78
- package/esm5/src/api/gs-classification-rest-api/api/classificationReasons.api.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/api/declassificationExemptions.api.js +0 -72
- package/esm5/src/api/gs-classification-rest-api/api/declassificationExemptions.api.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/api/defaultClassificationValues.api.js +0 -33
- package/esm5/src/api/gs-classification-rest-api/api/defaultClassificationValues.api.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/api/index.js +0 -27
- package/esm5/src/api/gs-classification-rest-api/api/index.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/api/nodeSecurityMarks.api.js +0 -47
- package/esm5/src/api/gs-classification-rest-api/api/nodeSecurityMarks.api.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/api/securityControlSettings.api.js +0 -46
- package/esm5/src/api/gs-classification-rest-api/api/securityControlSettings.api.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/api/securityGroups.api.js +0 -67
- package/esm5/src/api/gs-classification-rest-api/api/securityGroups.api.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/api/securityMarks.api.js +0 -87
- package/esm5/src/api/gs-classification-rest-api/api/securityMarks.api.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/api/types.js +0 -18
- package/esm5/src/api/gs-classification-rest-api/api/types.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/index.js +0 -19
- package/esm5/src/api/gs-classification-rest-api/index.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/authorityClearanceGroup.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/authorityClearanceGroup.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/authorityClearanceGroupEntry.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/authorityClearanceGroupEntry.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/authorityClearanceGroupPaging.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/authorityClearanceGroupPaging.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/authorityClearanceGroupPagingList.js +0 -32
- package/esm5/src/api/gs-classification-rest-api/model/authorityClearanceGroupPagingList.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/authorityClearanceMark.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/authorityClearanceMark.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuide.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuide.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuideBody.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuideBody.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuideEntry.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuideEntry.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuideInTopic.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuideInTopic.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuidePaging.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuidePaging.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuidePagingList.js +0 -32
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuidePagingList.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuides.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuides.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuidesBody.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuidesBody.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuidesEntry.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuidesEntry.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuidesInTopic.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/classificationGuidesInTopic.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationInformation.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/classificationInformation.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationReason.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/classificationReason.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationReasonBody.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/classificationReasonBody.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationReasonEntry.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/classificationReasonEntry.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationReasonsPaging.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/classificationReasonsPaging.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/classificationReasonsPagingList.js +0 -32
- package/esm5/src/api/gs-classification-rest-api/model/classificationReasonsPagingList.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/combinedInstructionBody.js +0 -28
- package/esm5/src/api/gs-classification-rest-api/model/combinedInstructionBody.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/declassificationDate.js +0 -18
- package/esm5/src/api/gs-classification-rest-api/model/declassificationDate.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/declassificationExemption.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/declassificationExemption.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/declassificationExemptionBody.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/declassificationExemptionBody.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/declassificationExemptionEntry.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/declassificationExemptionEntry.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/declassificationExemptionsPaging.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/declassificationExemptionsPaging.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/declassificationExemptionsPagingList.js +0 -32
- package/esm5/src/api/gs-classification-rest-api/model/declassificationExemptionsPagingList.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/index.js +0 -72
- package/esm5/src/api/gs-classification-rest-api/model/index.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/instruction.js +0 -28
- package/esm5/src/api/gs-classification-rest-api/model/instruction.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/instructionBody.js +0 -28
- package/esm5/src/api/gs-classification-rest-api/model/instructionBody.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/instructionEntry.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/instructionEntry.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/nodeSecurityMarkBody.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/nodeSecurityMarkBody.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/path.js +0 -25
- package/esm5/src/api/gs-classification-rest-api/model/path.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityControlSetting.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/securityControlSetting.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityControlSettingBody.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/securityControlSettingBody.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityControlSettingEntry.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/securityControlSettingEntry.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityGroup.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/securityGroup.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityGroupBody.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/securityGroupBody.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityGroupEntry.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/securityGroupEntry.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityGroupPaging.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/securityGroupPaging.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityGroupPagingList.js +0 -32
- package/esm5/src/api/gs-classification-rest-api/model/securityGroupPagingList.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityMark.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/securityMark.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityMarkBody.js +0 -24
- package/esm5/src/api/gs-classification-rest-api/model/securityMarkBody.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityMarkEntry.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/securityMarkEntry.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityMarkInformation.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/securityMarkInformation.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityMarkInformationBody.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/securityMarkInformationBody.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityMarkPaging.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/securityMarkPaging.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityMarkPagingList.js +0 -32
- package/esm5/src/api/gs-classification-rest-api/model/securityMarkPagingList.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityMarks.js +0 -25
- package/esm5/src/api/gs-classification-rest-api/model/securityMarks.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/securityMarksBody.js +0 -25
- package/esm5/src/api/gs-classification-rest-api/model/securityMarksBody.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/subtopicPaging.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/subtopicPaging.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/topic.js +0 -32
- package/esm5/src/api/gs-classification-rest-api/model/topic.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/topicBody.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/topicBody.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/topicEntry.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/topicEntry.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/topicPaging.js +0 -26
- package/esm5/src/api/gs-classification-rest-api/model/topicPaging.js.map +0 -1
- package/esm5/src/api/gs-classification-rest-api/model/topicPagingList.js +0 -32
- package/esm5/src/api/gs-classification-rest-api/model/topicPagingList.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/api/base.api.js +0 -24
- package/esm5/src/api/gs-core-rest-api/api/base.api.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/api/filePlans.api.js +0 -98
- package/esm5/src/api/gs-core-rest-api/api/filePlans.api.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/api/files.api.js +0 -41
- package/esm5/src/api/gs-core-rest-api/api/files.api.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/api/gsSites.api.js +0 -59
- package/esm5/src/api/gs-core-rest-api/api/gsSites.api.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/api/index.js +0 -28
- package/esm5/src/api/gs-core-rest-api/api/index.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/api/recordCategories.api.js +0 -110
- package/esm5/src/api/gs-core-rest-api/api/recordCategories.api.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/api/recordFolders.api.js +0 -107
- package/esm5/src/api/gs-core-rest-api/api/recordFolders.api.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/api/records.api.js +0 -119
- package/esm5/src/api/gs-core-rest-api/api/records.api.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/api/transferContainers.api.js +0 -79
- package/esm5/src/api/gs-core-rest-api/api/transferContainers.api.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/api/transfers.api.js +0 -59
- package/esm5/src/api/gs-core-rest-api/api/transfers.api.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/api/types.js +0 -18
- package/esm5/src/api/gs-core-rest-api/api/types.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/api/unfiledContainers.api.js +0 -99
- package/esm5/src/api/gs-core-rest-api/api/unfiledContainers.api.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/api/unfiledRecordFolders.api.js +0 -112
- package/esm5/src/api/gs-core-rest-api/api/unfiledRecordFolders.api.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/index.js +0 -19
- package/esm5/src/api/gs-core-rest-api/index.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/filePlan.js +0 -32
- package/esm5/src/api/gs-core-rest-api/model/filePlan.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/filePlanBodyUpdate.js +0 -24
- package/esm5/src/api/gs-core-rest-api/model/filePlanBodyUpdate.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/filePlanComponentBodyUpdate.js +0 -24
- package/esm5/src/api/gs-core-rest-api/model/filePlanComponentBodyUpdate.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/filePlanEntry.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/filePlanEntry.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/index.js +0 -76
- package/esm5/src/api/gs-core-rest-api/model/index.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/rMNodeBodyCreate.js +0 -24
- package/esm5/src/api/gs-core-rest-api/model/rMNodeBodyCreate.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/rMNodeBodyCreateWithRelativePath.js +0 -24
- package/esm5/src/api/gs-core-rest-api/model/rMNodeBodyCreateWithRelativePath.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/rMSite.js +0 -41
- package/esm5/src/api/gs-core-rest-api/model/rMSite.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/rMSiteBodyCreate.js +0 -30
- package/esm5/src/api/gs-core-rest-api/model/rMSiteBodyCreate.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/rMSiteBodyUpdate.js +0 -24
- package/esm5/src/api/gs-core-rest-api/model/rMSiteBodyUpdate.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/rMSiteEntry.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/rMSiteEntry.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/record.js +0 -34
- package/esm5/src/api/gs-core-rest-api/model/record.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/recordCategory.js +0 -32
- package/esm5/src/api/gs-core-rest-api/model/recordCategory.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/recordCategoryChild.js +0 -32
- package/esm5/src/api/gs-core-rest-api/model/recordCategoryChild.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/recordCategoryChildEntry.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/recordCategoryChildEntry.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/recordCategoryChildPaging.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/recordCategoryChildPaging.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/recordCategoryChildPagingList.js +0 -34
- package/esm5/src/api/gs-core-rest-api/model/recordCategoryChildPagingList.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/recordCategoryEntry.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/recordCategoryEntry.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/recordCategoryPaging.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/recordCategoryPaging.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/recordCategoryPagingList.js +0 -34
- package/esm5/src/api/gs-core-rest-api/model/recordCategoryPagingList.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/recordEntry.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/recordEntry.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/recordFolder.js +0 -32
- package/esm5/src/api/gs-core-rest-api/model/recordFolder.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/recordFolderAssociationPaging.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/recordFolderAssociationPaging.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/recordFolderAssociationPagingList.js +0 -34
- package/esm5/src/api/gs-core-rest-api/model/recordFolderAssociationPagingList.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/recordFolderChildAssociation.js +0 -36
- package/esm5/src/api/gs-core-rest-api/model/recordFolderChildAssociation.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/recordFolderChildAssociationEntry.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/recordFolderChildAssociationEntry.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/recordFolderEntry.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/recordFolderEntry.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/requestBodyFile.js +0 -24
- package/esm5/src/api/gs-core-rest-api/model/requestBodyFile.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/rootCategoryBodyCreate.js +0 -24
- package/esm5/src/api/gs-core-rest-api/model/rootCategoryBodyCreate.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/transfer.js +0 -28
- package/esm5/src/api/gs-core-rest-api/model/transfer.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/transferAssociationPaging.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/transferAssociationPaging.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/transferAssociationPagingList.js +0 -34
- package/esm5/src/api/gs-core-rest-api/model/transferAssociationPagingList.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/transferChild.js +0 -32
- package/esm5/src/api/gs-core-rest-api/model/transferChild.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/transferChildAssociation.js +0 -34
- package/esm5/src/api/gs-core-rest-api/model/transferChildAssociation.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/transferChildAssociationEntry.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/transferChildAssociationEntry.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/transferContainer.js +0 -30
- package/esm5/src/api/gs-core-rest-api/model/transferContainer.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/transferContainerAssociationPaging.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/transferContainerAssociationPaging.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/transferContainerAssociationPagingList.js +0 -34
- package/esm5/src/api/gs-core-rest-api/model/transferContainerAssociationPagingList.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/transferContainerBodyUpdate.js +0 -24
- package/esm5/src/api/gs-core-rest-api/model/transferContainerBodyUpdate.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/transferContainerChild.js +0 -28
- package/esm5/src/api/gs-core-rest-api/model/transferContainerChild.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/transferContainerChildAssociation.js +0 -30
- package/esm5/src/api/gs-core-rest-api/model/transferContainerChildAssociation.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/transferContainerChildAssociationEntry.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/transferContainerChildAssociationEntry.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/transferContainerEntry.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/transferContainerEntry.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/transferEntry.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/transferEntry.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledContainer.js +0 -32
- package/esm5/src/api/gs-core-rest-api/model/unfiledContainer.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledContainerAssociationPaging.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/unfiledContainerAssociationPaging.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledContainerAssociationPagingList.js +0 -34
- package/esm5/src/api/gs-core-rest-api/model/unfiledContainerAssociationPagingList.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledContainerChild.js +0 -32
- package/esm5/src/api/gs-core-rest-api/model/unfiledContainerChild.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledContainerChildAssociation.js +0 -34
- package/esm5/src/api/gs-core-rest-api/model/unfiledContainerChildAssociation.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledContainerChildAssociationEntry.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/unfiledContainerChildAssociationEntry.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledContainerEntry.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/unfiledContainerEntry.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordContainerBodyUpdate.js +0 -24
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordContainerBodyUpdate.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolder.js +0 -32
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolder.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPaging.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPaging.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPagingList.js +0 -34
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPagingList.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolderBodyUpdate.js +0 -24
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolderBodyUpdate.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolderChild.js +0 -32
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolderChild.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociation.js +0 -34
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociation.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociationEntry.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociationEntry.js.map +0 -1
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolderEntry.js +0 -26
- package/esm5/src/api/gs-core-rest-api/model/unfiledRecordFolderEntry.js.map +0 -1
- package/esm5/src/api/model-rest-api/api/aspects.api.js +0 -50
- package/esm5/src/api/model-rest-api/api/aspects.api.js.map +0 -1
- package/esm5/src/api/model-rest-api/api/base.api.js +0 -24
- package/esm5/src/api/model-rest-api/api/base.api.js.map +0 -1
- package/esm5/src/api/model-rest-api/api/index.js +0 -19
- package/esm5/src/api/model-rest-api/api/index.js.map +0 -1
- package/esm5/src/api/model-rest-api/api/types.api.js +0 -48
- package/esm5/src/api/model-rest-api/api/types.api.js.map +0 -1
- package/esm5/src/api/model-rest-api/index.js +0 -19
- package/esm5/src/api/model-rest-api/index.js.map +0 -1
- package/esm5/src/api/model-rest-api/model/abstractClass.js +0 -38
- package/esm5/src/api/model-rest-api/model/abstractClass.js.map +0 -1
- package/esm5/src/api/model-rest-api/model/abstractClassAssociation.js +0 -27
- package/esm5/src/api/model-rest-api/model/abstractClassAssociation.js.map +0 -1
- package/esm5/src/api/model-rest-api/model/abstractClassAssociationSource.js +0 -24
- package/esm5/src/api/model-rest-api/model/abstractClassAssociationSource.js.map +0 -1
- package/esm5/src/api/model-rest-api/model/aspect.js +0 -20
- package/esm5/src/api/model-rest-api/model/aspect.js.map +0 -1
- package/esm5/src/api/model-rest-api/model/aspectEntry.js +0 -26
- package/esm5/src/api/model-rest-api/model/aspectEntry.js.map +0 -1
- package/esm5/src/api/model-rest-api/model/aspectPaging.js +0 -26
- package/esm5/src/api/model-rest-api/model/aspectPaging.js.map +0 -1
- package/esm5/src/api/model-rest-api/model/aspectPagingList.js +0 -32
- package/esm5/src/api/model-rest-api/model/aspectPagingList.js.map +0 -1
- package/esm5/src/api/model-rest-api/model/index.js +0 -28
- package/esm5/src/api/model-rest-api/model/index.js.map +0 -1
- package/esm5/src/api/model-rest-api/model/model.js +0 -24
- package/esm5/src/api/model-rest-api/model/model.js.map +0 -1
- package/esm5/src/api/model-rest-api/model/type.js +0 -20
- package/esm5/src/api/model-rest-api/model/type.js.map +0 -1
- package/esm5/src/api/model-rest-api/model/typeEntry.js +0 -26
- package/esm5/src/api/model-rest-api/model/typeEntry.js.map +0 -1
- package/esm5/src/api/model-rest-api/model/typePaging.js +0 -26
- package/esm5/src/api/model-rest-api/model/typePaging.js.map +0 -1
- package/esm5/src/api/model-rest-api/model/typePagingList.js +0 -32
- package/esm5/src/api/model-rest-api/model/typePagingList.js.map +0 -1
- package/esm5/src/api/search-rest-api/api/index.js +0 -18
- package/esm5/src/api/search-rest-api/api/index.js.map +0 -1
- package/esm5/src/api/search-rest-api/api/search.api.js +0 -34
- package/esm5/src/api/search-rest-api/api/search.api.js.map +0 -1
- package/esm5/src/api/search-rest-api/index.js +0 -19
- package/esm5/src/api/search-rest-api/index.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/genericBucket.js +0 -32
- package/esm5/src/api/search-rest-api/model/genericBucket.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/genericBucketBucketInfo.js +0 -24
- package/esm5/src/api/search-rest-api/model/genericBucketBucketInfo.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/genericFacetResponse.js +0 -30
- package/esm5/src/api/search-rest-api/model/genericFacetResponse.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/genericMetric.js +0 -24
- package/esm5/src/api/search-rest-api/model/genericMetric.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/index.js +0 -61
- package/esm5/src/api/search-rest-api/model/index.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestDefaults.js +0 -34
- package/esm5/src/api/search-rest-api/model/requestDefaults.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestFacetField.js +0 -34
- package/esm5/src/api/search-rest-api/model/requestFacetField.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestFacetFields.js +0 -30
- package/esm5/src/api/search-rest-api/model/requestFacetFields.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestFacetIntervals.js +0 -36
- package/esm5/src/api/search-rest-api/model/requestFacetIntervals.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestFacetIntervalsIntervals.js +0 -30
- package/esm5/src/api/search-rest-api/model/requestFacetIntervalsIntervals.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestFacetQueries.js +0 -25
- package/esm5/src/api/search-rest-api/model/requestFacetQueries.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestFacetQueriesInner.js +0 -24
- package/esm5/src/api/search-rest-api/model/requestFacetQueriesInner.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestFacetSet.js +0 -24
- package/esm5/src/api/search-rest-api/model/requestFacetSet.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestFields.js +0 -25
- package/esm5/src/api/search-rest-api/model/requestFields.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestFilterQueries.js +0 -25
- package/esm5/src/api/search-rest-api/model/requestFilterQueries.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestFilterQueriesInner.js +0 -24
- package/esm5/src/api/search-rest-api/model/requestFilterQueriesInner.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestHighlight.js +0 -30
- package/esm5/src/api/search-rest-api/model/requestHighlight.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestHighlightFields.js +0 -24
- package/esm5/src/api/search-rest-api/model/requestHighlightFields.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestInclude.js +0 -25
- package/esm5/src/api/search-rest-api/model/requestInclude.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestLimits.js +0 -24
- package/esm5/src/api/search-rest-api/model/requestLimits.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestLocalization.js +0 -24
- package/esm5/src/api/search-rest-api/model/requestLocalization.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestPagination.js +0 -24
- package/esm5/src/api/search-rest-api/model/requestPagination.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestPivot.js +0 -29
- package/esm5/src/api/search-rest-api/model/requestPivot.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestQuery.js +0 -31
- package/esm5/src/api/search-rest-api/model/requestQuery.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestRange.js +0 -24
- package/esm5/src/api/search-rest-api/model/requestRange.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestScope.js +0 -31
- package/esm5/src/api/search-rest-api/model/requestScope.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestSortDefinition.js +0 -25
- package/esm5/src/api/search-rest-api/model/requestSortDefinition.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestSortDefinitionInner.js +0 -31
- package/esm5/src/api/search-rest-api/model/requestSortDefinitionInner.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestSpellcheck.js +0 -24
- package/esm5/src/api/search-rest-api/model/requestSpellcheck.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestStats.js +0 -24
- package/esm5/src/api/search-rest-api/model/requestStats.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestTemplates.js +0 -25
- package/esm5/src/api/search-rest-api/model/requestTemplates.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/requestTemplatesInner.js +0 -24
- package/esm5/src/api/search-rest-api/model/requestTemplatesInner.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/responseConsistency.js +0 -24
- package/esm5/src/api/search-rest-api/model/responseConsistency.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/resultBuckets.js +0 -30
- package/esm5/src/api/search-rest-api/model/resultBuckets.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/resultBucketsBuckets.js +0 -24
- package/esm5/src/api/search-rest-api/model/resultBucketsBuckets.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/resultNode.js +0 -38
- package/esm5/src/api/search-rest-api/model/resultNode.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/resultSetContext.js +0 -52
- package/esm5/src/api/search-rest-api/model/resultSetContext.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/resultSetContextFacetQueries.js +0 -24
- package/esm5/src/api/search-rest-api/model/resultSetContextFacetQueries.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/resultSetContextSpellcheck.js +0 -30
- package/esm5/src/api/search-rest-api/model/resultSetContextSpellcheck.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/resultSetPaging.js +0 -26
- package/esm5/src/api/search-rest-api/model/resultSetPaging.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/resultSetPagingList.js +0 -34
- package/esm5/src/api/search-rest-api/model/resultSetPagingList.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/resultSetRowEntry.js +0 -26
- package/esm5/src/api/search-rest-api/model/resultSetRowEntry.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/searchEntry.js +0 -30
- package/esm5/src/api/search-rest-api/model/searchEntry.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/searchEntryHighlight.js +0 -24
- package/esm5/src/api/search-rest-api/model/searchEntryHighlight.js.map +0 -1
- package/esm5/src/api/search-rest-api/model/searchRequest.js +0 -74
- package/esm5/src/api/search-rest-api/model/searchRequest.js.map +0 -1
- package/esm5/src/api-clients/api-client.js +0 -45
- package/esm5/src/api-clients/api-client.js.map +0 -1
- package/esm5/src/api-clients/http-client.interface.js +0 -18
- package/esm5/src/api-clients/http-client.interface.js.map +0 -1
- package/esm5/src/assert.js +0 -22
- package/esm5/src/assert.js.map +0 -1
- package/esm5/src/authentication/authentication.js +0 -18
- package/esm5/src/authentication/authentication.js.map +0 -1
- package/esm5/src/authentication/basicAuth.js +0 -18
- package/esm5/src/authentication/basicAuth.js.map +0 -1
- package/esm5/src/authentication/contentAuth.js +0 -144
- package/esm5/src/authentication/contentAuth.js.map +0 -1
- package/esm5/src/authentication/oauth2.js +0 -18
- package/esm5/src/authentication/oauth2.js.map +0 -1
- package/esm5/src/authentication/oauth2Auth.js +0 -571
- package/esm5/src/authentication/oauth2Auth.js.map +0 -1
- package/esm5/src/authentication/oauth2Config.js +0 -18
- package/esm5/src/authentication/oauth2Config.js.map +0 -1
- package/esm5/src/authentication/processAuth.js +0 -146
- package/esm5/src/authentication/processAuth.js.map +0 -1
- package/esm5/src/contentClient.js +0 -37
- package/esm5/src/contentClient.js.map +0 -1
- package/esm5/src/processClient.js +0 -36
- package/esm5/src/processClient.js.map +0 -1
- package/esm5/src/storage.js +0 -59
- package/esm5/src/storage.js.map +0 -1
- package/esm5/src/superagentHttpClient.js +0 -264
- package/esm5/src/superagentHttpClient.js.map +0 -1
- package/esm5/src/to-deprecate/alfresco-api-type.js +0 -18
- package/esm5/src/to-deprecate/alfresco-api-type.js.map +0 -1
- package/esm5/src/utils/index.js +0 -19
- package/esm5/src/utils/index.js.map +0 -1
- package/esm5/src/utils/is-browser.js +0 -20
- package/esm5/src/utils/is-browser.js.map +0 -1
- package/esm5/src/utils/param-to-string.js +0 -26
- package/esm5/src/utils/param-to-string.js.map +0 -1
- package/esm5/src/utils/path-matcher.js +0 -25
- package/esm5/src/utils/path-matcher.js.map +0 -1
- package/index.js +0 -43
- package/index.js.map +0 -1
- package/src/alfrescoApi.js +0 -446
- package/src/alfrescoApi.js.map +0 -1
- package/src/alfrescoApiClient.js +0 -252
- package/src/alfrescoApiClient.js.map +0 -1
- package/src/alfrescoApiConfig.js +0 -48
- package/src/alfrescoApiConfig.js.map +0 -1
- package/src/api/activiti-rest-api/api/about.api.js +0 -29
- package/src/api/activiti-rest-api/api/about.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/accountIntegration.api.js +0 -31
- package/src/api/activiti-rest-api/api/accountIntegration.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/adminEndpoints.api.js +0 -153
- package/src/api/activiti-rest-api/api/adminEndpoints.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/adminGroups.api.js +0 -209
- package/src/api/activiti-rest-api/api/adminGroups.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/adminTenants.api.js +0 -115
- package/src/api/activiti-rest-api/api/adminTenants.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/adminUsers.api.js +0 -74
- package/src/api/activiti-rest-api/api/adminUsers.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/appDefinitions.api.js +0 -130
- package/src/api/activiti-rest-api/api/appDefinitions.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/base.api.js +0 -28
- package/src/api/activiti-rest-api/api/base.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/checklists.api.js +0 -63
- package/src/api/activiti-rest-api/api/checklists.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/comments.api.js +0 -77
- package/src/api/activiti-rest-api/api/comments.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/content.api.js +0 -196
- package/src/api/activiti-rest-api/api/content.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/dataSources.api.js +0 -32
- package/src/api/activiti-rest-api/api/dataSources.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/decisionAudits.api.js +0 -51
- package/src/api/activiti-rest-api/api/decisionAudits.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/decisionTables.api.js +0 -57
- package/src/api/activiti-rest-api/api/decisionTables.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/endpoints.api.js +0 -43
- package/src/api/activiti-rest-api/api/endpoints.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/formModels.api.js +0 -117
- package/src/api/activiti-rest-api/api/formModels.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/groups.api.js +0 -45
- package/src/api/activiti-rest-api/api/groups.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/iDMSync.api.js +0 -43
- package/src/api/activiti-rest-api/api/iDMSync.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/index.js +0 -65
- package/src/api/activiti-rest-api/api/index.js.map +0 -1
- package/src/api/activiti-rest-api/api/integrationAlfrescoCloud.api.js +0 -94
- package/src/api/activiti-rest-api/api/integrationAlfrescoCloud.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/integrationAlfrescoOnPremise.api.js +0 -87
- package/src/api/activiti-rest-api/api/integrationAlfrescoOnPremise.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/integrationBox.api.js +0 -95
- package/src/api/activiti-rest-api/api/integrationBox.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/integrationDrive.api.js +0 -38
- package/src/api/activiti-rest-api/api/integrationDrive.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/modelJsonBpmn.api.js +0 -67
- package/src/api/activiti-rest-api/api/modelJsonBpmn.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/models.api.js +0 -184
- package/src/api/activiti-rest-api/api/models.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/modelsBpmn.api.js +0 -51
- package/src/api/activiti-rest-api/api/modelsBpmn.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/modelsHistory.api.js +0 -55
- package/src/api/activiti-rest-api/api/modelsHistory.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/processDefinitions.api.js +0 -159
- package/src/api/activiti-rest-api/api/processDefinitions.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/processInstanceVariables.api.js +0 -88
- package/src/api/activiti-rest-api/api/processInstanceVariables.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/processInstances.api.js +0 -257
- package/src/api/activiti-rest-api/api/processInstances.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/processScopes.api.js +0 -32
- package/src/api/activiti-rest-api/api/processScopes.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/report.api.js +0 -130
- package/src/api/activiti-rest-api/api/report.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/runtimeAppDefinitions.api.js +0 -51
- package/src/api/activiti-rest-api/api/runtimeAppDefinitions.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/runtimeAppDeployments.api.js +0 -74
- package/src/api/activiti-rest-api/api/runtimeAppDeployments.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/scriptFiles.api.js +0 -38
- package/src/api/activiti-rest-api/api/scriptFiles.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/submittedForms.api.js +0 -72
- package/src/api/activiti-rest-api/api/submittedForms.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/systemProperties.api.js +0 -66
- package/src/api/activiti-rest-api/api/systemProperties.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/taskActions.api.js +0 -158
- package/src/api/activiti-rest-api/api/taskActions.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/taskForms.api.js +0 -119
- package/src/api/activiti-rest-api/api/taskForms.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/taskVariables.api.js +0 -103
- package/src/api/activiti-rest-api/api/taskVariables.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/tasks.api.js +0 -187
- package/src/api/activiti-rest-api/api/tasks.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/temporary.api.js +0 -66
- package/src/api/activiti-rest-api/api/temporary.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/userFilters.api.js +0 -141
- package/src/api/activiti-rest-api/api/userFilters.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/userProfile.api.js +0 -68
- package/src/api/activiti-rest-api/api/userProfile.api.js.map +0 -1
- package/src/api/activiti-rest-api/api/users.api.js +0 -91
- package/src/api/activiti-rest-api/api/users.api.js.map +0 -1
- package/src/api/activiti-rest-api/index.js +0 -22
- package/src/api/activiti-rest-api/index.js.map +0 -1
- package/src/api/activiti-rest-api/model/abstractGroupRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/abstractGroupRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/abstractUserRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/abstractUserRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/accountRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/accountRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/addGroupCapabilitiesRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/addGroupCapabilitiesRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/alfrescoContentRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/alfrescoContentRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/alfrescoEndpointRepresentation.js +0 -31
- package/src/api/activiti-rest-api/model/alfrescoEndpointRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/alfrescoNetworkRepresenation.js +0 -28
- package/src/api/activiti-rest-api/model/alfrescoNetworkRepresenation.js.map +0 -1
- package/src/api/activiti-rest-api/model/alfrescoSiteRepresenation.js +0 -28
- package/src/api/activiti-rest-api/model/alfrescoSiteRepresenation.js.map +0 -1
- package/src/api/activiti-rest-api/model/appDefinition.js +0 -40
- package/src/api/activiti-rest-api/model/appDefinition.js.map +0 -1
- package/src/api/activiti-rest-api/model/appDefinitionPublishRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/appDefinitionPublishRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/appDefinitionRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/appDefinitionRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/appDefinitionSaveRepresentation.js +0 -30
- package/src/api/activiti-rest-api/model/appDefinitionSaveRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/appDefinitionUpdateResultRepresentation.js +0 -30
- package/src/api/activiti-rest-api/model/appDefinitionUpdateResultRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/appDeploymentRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/appDeploymentRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/appModelDefinition.js +0 -30
- package/src/api/activiti-rest-api/model/appModelDefinition.js.map +0 -1
- package/src/api/activiti-rest-api/model/assigneeIdentifierRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/assigneeIdentifierRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/auditCalculatedValueRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/auditCalculatedValueRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/auditDecisionExpressionInfoRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/auditDecisionExpressionInfoRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/auditDecisionInfoRepresentation.js +0 -40
- package/src/api/activiti-rest-api/model/auditDecisionInfoRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/auditDecisionRuleInfoRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/auditDecisionRuleInfoRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/auditLogEntryRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/auditLogEntryRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/auditLogFormDataRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/auditLogFormDataRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/boxContent.js +0 -28
- package/src/api/activiti-rest-api/model/boxContent.js.map +0 -1
- package/src/api/activiti-rest-api/model/boxUserAccountCredentialsRepresentation.js +0 -30
- package/src/api/activiti-rest-api/model/boxUserAccountCredentialsRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/bulkUserUpdateRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/bulkUserUpdateRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/changePasswordRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/changePasswordRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/checklistOrderRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/checklistOrderRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/commentAuditInfo.js +0 -28
- package/src/api/activiti-rest-api/model/commentAuditInfo.js.map +0 -1
- package/src/api/activiti-rest-api/model/commentRepresentation.js +0 -32
- package/src/api/activiti-rest-api/model/commentRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/completeFormRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/completeFormRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/conditionRepresentation.js +0 -29
- package/src/api/activiti-rest-api/model/conditionRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/createEndpointBasicAuthRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/createEndpointBasicAuthRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/createProcessInstanceRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/createProcessInstanceRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/createTenantRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/createTenantRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/dataSourceConfigRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/dataSourceConfigRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/dataSourceRepresentation.js +0 -30
- package/src/api/activiti-rest-api/model/dataSourceRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/decisionAuditRepresentation.js +0 -30
- package/src/api/activiti-rest-api/model/decisionAuditRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/decisionTaskRepresentation.js +0 -30
- package/src/api/activiti-rest-api/model/decisionTaskRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/endpointBasicAuthRepresentation.js +0 -31
- package/src/api/activiti-rest-api/model/endpointBasicAuthRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/endpointConfigurationRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/endpointConfigurationRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/endpointRequestHeaderRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/endpointRequestHeaderRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/entityAttributeScopeRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/entityAttributeScopeRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/entityVariableScopeRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/entityVariableScopeRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/fieldValueInfo.js +0 -28
- package/src/api/activiti-rest-api/model/fieldValueInfo.js.map +0 -1
- package/src/api/activiti-rest-api/model/file.js +0 -28
- package/src/api/activiti-rest-api/model/file.js.map +0 -1
- package/src/api/activiti-rest-api/model/formDefinitionRepresentation.js +0 -58
- package/src/api/activiti-rest-api/model/formDefinitionRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/formFieldRepresentation.js +0 -36
- package/src/api/activiti-rest-api/model/formFieldRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/formIdentifierRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/formIdentifierRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/formJavascriptEventRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/formJavascriptEventRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/formOutcomeRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/formOutcomeRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/formRepresentation.js +0 -32
- package/src/api/activiti-rest-api/model/formRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/formSaveRepresentation.js +0 -36
- package/src/api/activiti-rest-api/model/formSaveRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/formScopeRepresentation.js +0 -45
- package/src/api/activiti-rest-api/model/formScopeRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/formTabRepresentation.js +0 -30
- package/src/api/activiti-rest-api/model/formTabRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/formValueRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/formValueRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/formVariableRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/formVariableRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/globalDateFormatRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/globalDateFormatRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/googleDriveContent.js +0 -28
- package/src/api/activiti-rest-api/model/googleDriveContent.js.map +0 -1
- package/src/api/activiti-rest-api/model/groupCapabilityRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/groupCapabilityRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/groupRepresentation.js +0 -48
- package/src/api/activiti-rest-api/model/groupRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/historicProcessInstanceQueryRepresentation.js +0 -39
- package/src/api/activiti-rest-api/model/historicProcessInstanceQueryRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/historicTaskInstanceQueryRepresentation.js +0 -49
- package/src/api/activiti-rest-api/model/historicTaskInstanceQueryRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/identityLinkRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/identityLinkRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/imageUploadRepresentation.js +0 -30
- package/src/api/activiti-rest-api/model/imageUploadRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/index.js +0 -167
- package/src/api/activiti-rest-api/model/index.js.map +0 -1
- package/src/api/activiti-rest-api/model/jsonNode.js +0 -41
- package/src/api/activiti-rest-api/model/jsonNode.js.map +0 -1
- package/src/api/activiti-rest-api/model/layoutRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/layoutRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/lightAppRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/lightAppRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/lightGroupRepresentation.js +0 -33
- package/src/api/activiti-rest-api/model/lightGroupRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/lightTenantRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/lightTenantRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/lightUserRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/lightUserRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/modelRepresentation.js +0 -30
- package/src/api/activiti-rest-api/model/modelRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/namedObject.js +0 -28
- package/src/api/activiti-rest-api/model/namedObject.js.map +0 -1
- package/src/api/activiti-rest-api/model/objectNode.js +0 -41
- package/src/api/activiti-rest-api/model/objectNode.js.map +0 -1
- package/src/api/activiti-rest-api/model/optionRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/optionRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/passwordValidationConstraints.js +0 -28
- package/src/api/activiti-rest-api/model/passwordValidationConstraints.js.map +0 -1
- package/src/api/activiti-rest-api/model/processContentRepresentation.js +0 -36
- package/src/api/activiti-rest-api/model/processContentRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/processDefinitionMetaDataRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/processDefinitionMetaDataRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/processDefinitionRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/processDefinitionRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/processInstanceAuditInfoRepresentation.js +0 -36
- package/src/api/activiti-rest-api/model/processInstanceAuditInfoRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/processInstanceFilterRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/processInstanceFilterRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/processInstanceFilterRequestRepresentation.js +0 -30
- package/src/api/activiti-rest-api/model/processInstanceFilterRequestRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/processInstanceQueryRepresentation.js +0 -41
- package/src/api/activiti-rest-api/model/processInstanceQueryRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/processInstanceRepresentation.js +0 -39
- package/src/api/activiti-rest-api/model/processInstanceRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/processInstanceVariableRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/processInstanceVariableRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/processScopeIdentifierRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/processScopeIdentifierRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/processScopeRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/processScopeRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/processScopesRequestRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/processScopesRequestRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/publishIdentityInfoRepresentation.js +0 -32
- package/src/api/activiti-rest-api/model/publishIdentityInfoRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/queryVariable.js +0 -42
- package/src/api/activiti-rest-api/model/queryVariable.js.map +0 -1
- package/src/api/activiti-rest-api/model/relatedContentRepresentation.js +0 -32
- package/src/api/activiti-rest-api/model/relatedContentRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/relatedProcessTask.js +0 -28
- package/src/api/activiti-rest-api/model/relatedProcessTask.js.map +0 -1
- package/src/api/activiti-rest-api/model/resetPasswordRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/resetPasswordRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/restVariable.js +0 -28
- package/src/api/activiti-rest-api/model/restVariable.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAbstractUserRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAbstractUserRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAccountRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAccountRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoContentRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoContentRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoEndpointRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoEndpointRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoNetworkRepresenation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoNetworkRepresenation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoSiteRepresenation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoSiteRepresenation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAppDefinitionRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAppDefinitionRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAppDeploymentRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationAppDeploymentRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationBoxContent.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationBoxContent.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationCommentRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationCommentRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationDataSourceRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationDataSourceRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationDecisionAuditRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationDecisionAuditRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationDecisionTaskRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationDecisionTaskRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationFormRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationFormRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationGoogleDriveContent.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationGoogleDriveContent.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationLightGroupRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationLightGroupRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationLightUserRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationLightUserRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationModelRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationModelRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationProcessContentRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationProcessContentRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationProcessDefinitionRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationProcessDefinitionRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationProcessInstanceRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationProcessInstanceRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationRelatedContentRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationRelatedContentRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationRelatedProcessTask.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationRelatedProcessTask.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationRuntimeDecisionTableRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationRuntimeDecisionTableRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationRuntimeFormRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationRuntimeFormRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationSubmittedFormRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationSubmittedFormRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationTaskRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationTaskRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationUserProcessInstanceFilterRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationUserProcessInstanceFilterRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/resultListDataRepresentationUserTaskFilterRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/resultListDataRepresentationUserTaskFilterRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/runtimeAppDefinitionSaveRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/runtimeAppDefinitionSaveRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/runtimeDecisionTableRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/runtimeDecisionTableRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/runtimeFormRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/runtimeFormRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/saveFormRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/saveFormRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/submittedFormRepresentation.js +0 -34
- package/src/api/activiti-rest-api/model/submittedFormRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/syncLogEntryRepresentation.js +0 -30
- package/src/api/activiti-rest-api/model/syncLogEntryRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/systemPropertiesRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/systemPropertiesRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/taskAuditInfoRepresentation.js +0 -40
- package/src/api/activiti-rest-api/model/taskAuditInfoRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/taskFilterRepresentation.js +0 -38
- package/src/api/activiti-rest-api/model/taskFilterRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/taskFilterRequestRepresentation.js +0 -30
- package/src/api/activiti-rest-api/model/taskFilterRequestRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/taskQueryRepresentation.js +0 -44
- package/src/api/activiti-rest-api/model/taskQueryRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/taskRepresentation.js +0 -63
- package/src/api/activiti-rest-api/model/taskRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/taskUpdateRepresentation.js +0 -30
- package/src/api/activiti-rest-api/model/taskUpdateRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/tenantEvent.js +0 -30
- package/src/api/activiti-rest-api/model/tenantEvent.js.map +0 -1
- package/src/api/activiti-rest-api/model/tenantRepresentation.js +0 -31
- package/src/api/activiti-rest-api/model/tenantRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/userAccountCredentialsRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/userAccountCredentialsRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/userActionRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/userActionRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/userFilterOrderRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/userFilterOrderRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/userIdentifierRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/userIdentifierRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/userProcessInstanceFilterRepresentation.js +0 -30
- package/src/api/activiti-rest-api/model/userProcessInstanceFilterRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/userRepresentation.js +0 -45
- package/src/api/activiti-rest-api/model/userRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/userRepresentationGroup.js +0 -38
- package/src/api/activiti-rest-api/model/userRepresentationGroup.js.map +0 -1
- package/src/api/activiti-rest-api/model/userTaskFilterRepresentation.js +0 -30
- package/src/api/activiti-rest-api/model/userTaskFilterRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/validationErrorRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/validationErrorRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/variableMappingRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/variableMappingRepresentation.js.map +0 -1
- package/src/api/activiti-rest-api/model/variableScopeRepresentation.js +0 -28
- package/src/api/activiti-rest-api/model/variableScopeRepresentation.js.map +0 -1
- package/src/api/auth-rest-api/api/authentication.api.js +0 -52
- package/src/api/auth-rest-api/api/authentication.api.js.map +0 -1
- package/src/api/auth-rest-api/api/base.api.js +0 -28
- package/src/api/auth-rest-api/api/base.api.js.map +0 -1
- package/src/api/auth-rest-api/api/index.js +0 -21
- package/src/api/auth-rest-api/api/index.js.map +0 -1
- package/src/api/auth-rest-api/index.js +0 -22
- package/src/api/auth-rest-api/index.js.map +0 -1
- package/src/api/auth-rest-api/model/index.js +0 -25
- package/src/api/auth-rest-api/model/index.js.map +0 -1
- package/src/api/auth-rest-api/model/ticket.js +0 -28
- package/src/api/auth-rest-api/model/ticket.js.map +0 -1
- package/src/api/auth-rest-api/model/ticketBody.js +0 -28
- package/src/api/auth-rest-api/model/ticketBody.js.map +0 -1
- package/src/api/auth-rest-api/model/ticketEntry.js +0 -30
- package/src/api/auth-rest-api/model/ticketEntry.js.map +0 -1
- package/src/api/auth-rest-api/model/validTicket.js +0 -28
- package/src/api/auth-rest-api/model/validTicket.js.map +0 -1
- package/src/api/auth-rest-api/model/validTicketEntry.js +0 -30
- package/src/api/auth-rest-api/model/validTicketEntry.js.map +0 -1
- package/src/api/content-custom-api/api/base.api.js +0 -47
- package/src/api/content-custom-api/api/base.api.js.map +0 -1
- package/src/api/content-custom-api/api/classes.api.js +0 -47
- package/src/api/content-custom-api/api/classes.api.js.map +0 -1
- package/src/api/content-custom-api/api/content.api.js +0 -70
- package/src/api/content-custom-api/api/content.api.js.map +0 -1
- package/src/api/content-custom-api/api/customModel.api.js +0 -384
- package/src/api/content-custom-api/api/customModel.api.js.map +0 -1
- package/src/api/content-custom-api/api/index.js +0 -25
- package/src/api/content-custom-api/api/index.js.map +0 -1
- package/src/api/content-custom-api/api/upload.api.js +0 -42
- package/src/api/content-custom-api/api/upload.api.js.map +0 -1
- package/src/api/content-custom-api/api/webscript.api.js +0 -42
- package/src/api/content-custom-api/api/webscript.api.js.map +0 -1
- package/src/api/content-custom-api/index.js +0 -22
- package/src/api/content-custom-api/index.js.map +0 -1
- package/src/api/content-custom-api/model/classDescription.js +0 -28
- package/src/api/content-custom-api/model/classDescription.js.map +0 -1
- package/src/api/content-custom-api/model/classPropertyDescription.js +0 -28
- package/src/api/content-custom-api/model/classPropertyDescription.js.map +0 -1
- package/src/api/content-custom-api/model/dateAlfresco.js +0 -54
- package/src/api/content-custom-api/model/dateAlfresco.js.map +0 -1
- package/src/api/content-custom-api/model/index.js +0 -24
- package/src/api/content-custom-api/model/index.js.map +0 -1
- package/src/api/content-custom-api/model/pagination.js +0 -19
- package/src/api/content-custom-api/model/pagination.js.map +0 -1
- package/src/api/content-rest-api/api/actions.api.js +0 -81
- package/src/api/content-rest-api/api/actions.api.js.map +0 -1
- package/src/api/content-rest-api/api/activities.api.js +0 -41
- package/src/api/content-rest-api/api/activities.api.js.map +0 -1
- package/src/api/content-rest-api/api/audit.api.js +0 -161
- package/src/api/content-rest-api/api/audit.api.js.map +0 -1
- package/src/api/content-rest-api/api/base.api.js +0 -28
- package/src/api/content-rest-api/api/base.api.js.map +0 -1
- package/src/api/content-rest-api/api/categories.api.js +0 -156
- package/src/api/content-rest-api/api/categories.api.js.map +0 -1
- package/src/api/content-rest-api/api/comments.api.js +0 -93
- package/src/api/content-rest-api/api/comments.api.js.map +0 -1
- package/src/api/content-rest-api/api/downloads.api.js +0 -64
- package/src/api/content-rest-api/api/downloads.api.js.map +0 -1
- package/src/api/content-rest-api/api/favorites.api.js +0 -163
- package/src/api/content-rest-api/api/favorites.api.js.map +0 -1
- package/src/api/content-rest-api/api/groups.api.js +0 -173
- package/src/api/content-rest-api/api/groups.api.js.map +0 -1
- package/src/api/content-rest-api/api/index.js +0 -42
- package/src/api/content-rest-api/api/index.js.map +0 -1
- package/src/api/content-rest-api/api/networks.api.js +0 -77
- package/src/api/content-rest-api/api/networks.api.js.map +0 -1
- package/src/api/content-rest-api/api/nodes.api.js +0 -418
- package/src/api/content-rest-api/api/nodes.api.js.map +0 -1
- package/src/api/content-rest-api/api/people.api.js +0 -156
- package/src/api/content-rest-api/api/people.api.js.map +0 -1
- package/src/api/content-rest-api/api/preferences.api.js +0 -56
- package/src/api/content-rest-api/api/preferences.api.js.map +0 -1
- package/src/api/content-rest-api/api/probes.api.js +0 -37
- package/src/api/content-rest-api/api/probes.api.js.map +0 -1
- package/src/api/content-rest-api/api/queries.api.js +0 -78
- package/src/api/content-rest-api/api/queries.api.js.map +0 -1
- package/src/api/content-rest-api/api/ratings.api.js +0 -91
- package/src/api/content-rest-api/api/ratings.api.js.map +0 -1
- package/src/api/content-rest-api/api/renditions.api.js +0 -103
- package/src/api/content-rest-api/api/renditions.api.js.map +0 -1
- package/src/api/content-rest-api/api/sharedlinks.api.js +0 -162
- package/src/api/content-rest-api/api/sharedlinks.api.js.map +0 -1
- package/src/api/content-rest-api/api/sites.api.js +0 -486
- package/src/api/content-rest-api/api/sites.api.js.map +0 -1
- package/src/api/content-rest-api/api/tags.api.js +0 -160
- package/src/api/content-rest-api/api/tags.api.js.map +0 -1
- package/src/api/content-rest-api/api/trashcan.api.js +0 -179
- package/src/api/content-rest-api/api/trashcan.api.js.map +0 -1
- package/src/api/content-rest-api/api/types.js +0 -19
- package/src/api/content-rest-api/api/types.js.map +0 -1
- package/src/api/content-rest-api/api/versions.api.js +0 -201
- package/src/api/content-rest-api/api/versions.api.js.map +0 -1
- package/src/api/content-rest-api/index.js +0 -22
- package/src/api/content-rest-api/index.js.map +0 -1
- package/src/api/content-rest-api/model/CategoryLinkBody.js +0 -28
- package/src/api/content-rest-api/model/CategoryLinkBody.js.map +0 -1
- package/src/api/content-rest-api/model/actionBodyExec.js +0 -28
- package/src/api/content-rest-api/model/actionBodyExec.js.map +0 -1
- package/src/api/content-rest-api/model/actionDefinition.js +0 -34
- package/src/api/content-rest-api/model/actionDefinition.js.map +0 -1
- package/src/api/content-rest-api/model/actionDefinitionEntry.js +0 -30
- package/src/api/content-rest-api/model/actionDefinitionEntry.js.map +0 -1
- package/src/api/content-rest-api/model/actionDefinitionList.js +0 -30
- package/src/api/content-rest-api/model/actionDefinitionList.js.map +0 -1
- package/src/api/content-rest-api/model/actionDefinitionListList.js +0 -36
- package/src/api/content-rest-api/model/actionDefinitionListList.js.map +0 -1
- package/src/api/content-rest-api/model/actionExecResult.js +0 -28
- package/src/api/content-rest-api/model/actionExecResult.js.map +0 -1
- package/src/api/content-rest-api/model/actionExecResultEntry.js +0 -30
- package/src/api/content-rest-api/model/actionExecResultEntry.js.map +0 -1
- package/src/api/content-rest-api/model/actionParameterDefinition.js +0 -28
- package/src/api/content-rest-api/model/actionParameterDefinition.js.map +0 -1
- package/src/api/content-rest-api/model/activity.js +0 -30
- package/src/api/content-rest-api/model/activity.js.map +0 -1
- package/src/api/content-rest-api/model/activityEntry.js +0 -30
- package/src/api/content-rest-api/model/activityEntry.js.map +0 -1
- package/src/api/content-rest-api/model/activityPaging.js +0 -30
- package/src/api/content-rest-api/model/activityPaging.js.map +0 -1
- package/src/api/content-rest-api/model/activityPagingList.js +0 -36
- package/src/api/content-rest-api/model/activityPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/association.js +0 -28
- package/src/api/content-rest-api/model/association.js.map +0 -1
- package/src/api/content-rest-api/model/associationBody.js +0 -28
- package/src/api/content-rest-api/model/associationBody.js.map +0 -1
- package/src/api/content-rest-api/model/associationEntry.js +0 -30
- package/src/api/content-rest-api/model/associationEntry.js.map +0 -1
- package/src/api/content-rest-api/model/associationInfo.js +0 -28
- package/src/api/content-rest-api/model/associationInfo.js.map +0 -1
- package/src/api/content-rest-api/model/auditApp.js +0 -28
- package/src/api/content-rest-api/model/auditApp.js.map +0 -1
- package/src/api/content-rest-api/model/auditAppEntry.js +0 -30
- package/src/api/content-rest-api/model/auditAppEntry.js.map +0 -1
- package/src/api/content-rest-api/model/auditAppPaging.js +0 -30
- package/src/api/content-rest-api/model/auditAppPaging.js.map +0 -1
- package/src/api/content-rest-api/model/auditAppPagingList.js +0 -36
- package/src/api/content-rest-api/model/auditAppPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/auditBodyUpdate.js +0 -28
- package/src/api/content-rest-api/model/auditBodyUpdate.js.map +0 -1
- package/src/api/content-rest-api/model/auditEntry.js +0 -32
- package/src/api/content-rest-api/model/auditEntry.js.map +0 -1
- package/src/api/content-rest-api/model/auditEntryEntry.js +0 -30
- package/src/api/content-rest-api/model/auditEntryEntry.js.map +0 -1
- package/src/api/content-rest-api/model/auditEntryPaging.js +0 -30
- package/src/api/content-rest-api/model/auditEntryPaging.js.map +0 -1
- package/src/api/content-rest-api/model/auditEntryPagingList.js +0 -36
- package/src/api/content-rest-api/model/auditEntryPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/capabilities.js +0 -28
- package/src/api/content-rest-api/model/capabilities.js.map +0 -1
- package/src/api/content-rest-api/model/category.js +0 -28
- package/src/api/content-rest-api/model/category.js.map +0 -1
- package/src/api/content-rest-api/model/categoryBody.js +0 -28
- package/src/api/content-rest-api/model/categoryBody.js.map +0 -1
- package/src/api/content-rest-api/model/categoryEntry.js +0 -30
- package/src/api/content-rest-api/model/categoryEntry.js.map +0 -1
- package/src/api/content-rest-api/model/categoryPaging.js +0 -30
- package/src/api/content-rest-api/model/categoryPaging.js.map +0 -1
- package/src/api/content-rest-api/model/categoryPagingList.js +0 -36
- package/src/api/content-rest-api/model/categoryPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/childAssociation.js +0 -28
- package/src/api/content-rest-api/model/childAssociation.js.map +0 -1
- package/src/api/content-rest-api/model/childAssociationBody.js +0 -28
- package/src/api/content-rest-api/model/childAssociationBody.js.map +0 -1
- package/src/api/content-rest-api/model/childAssociationEntry.js +0 -30
- package/src/api/content-rest-api/model/childAssociationEntry.js.map +0 -1
- package/src/api/content-rest-api/model/childAssociationInfo.js +0 -28
- package/src/api/content-rest-api/model/childAssociationInfo.js.map +0 -1
- package/src/api/content-rest-api/model/clientBody.js +0 -28
- package/src/api/content-rest-api/model/clientBody.js.map +0 -1
- package/src/api/content-rest-api/model/comment.js +0 -34
- package/src/api/content-rest-api/model/comment.js.map +0 -1
- package/src/api/content-rest-api/model/commentBody.js +0 -28
- package/src/api/content-rest-api/model/commentBody.js.map +0 -1
- package/src/api/content-rest-api/model/commentEntry.js +0 -30
- package/src/api/content-rest-api/model/commentEntry.js.map +0 -1
- package/src/api/content-rest-api/model/commentPaging.js +0 -30
- package/src/api/content-rest-api/model/commentPaging.js.map +0 -1
- package/src/api/content-rest-api/model/commentPagingList.js +0 -36
- package/src/api/content-rest-api/model/commentPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/company.js +0 -28
- package/src/api/content-rest-api/model/company.js.map +0 -1
- package/src/api/content-rest-api/model/constraint.js +0 -28
- package/src/api/content-rest-api/model/constraint.js.map +0 -1
- package/src/api/content-rest-api/model/contentInfo.js +0 -28
- package/src/api/content-rest-api/model/contentInfo.js.map +0 -1
- package/src/api/content-rest-api/model/definition.js +0 -34
- package/src/api/content-rest-api/model/definition.js.map +0 -1
- package/src/api/content-rest-api/model/deletedNode.js +0 -44
- package/src/api/content-rest-api/model/deletedNode.js.map +0 -1
- package/src/api/content-rest-api/model/deletedNodeBodyRestore.js +0 -28
- package/src/api/content-rest-api/model/deletedNodeBodyRestore.js.map +0 -1
- package/src/api/content-rest-api/model/deletedNodeEntry.js +0 -30
- package/src/api/content-rest-api/model/deletedNodeEntry.js.map +0 -1
- package/src/api/content-rest-api/model/deletedNodesPaging.js +0 -30
- package/src/api/content-rest-api/model/deletedNodesPaging.js.map +0 -1
- package/src/api/content-rest-api/model/deletedNodesPagingList.js +0 -36
- package/src/api/content-rest-api/model/deletedNodesPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/directAccessUrl.js +0 -30
- package/src/api/content-rest-api/model/directAccessUrl.js.map +0 -1
- package/src/api/content-rest-api/model/directAccessUrlEntry.js +0 -30
- package/src/api/content-rest-api/model/directAccessUrlEntry.js.map +0 -1
- package/src/api/content-rest-api/model/download.js +0 -37
- package/src/api/content-rest-api/model/download.js.map +0 -1
- package/src/api/content-rest-api/model/downloadBodyCreate.js +0 -28
- package/src/api/content-rest-api/model/downloadBodyCreate.js.map +0 -1
- package/src/api/content-rest-api/model/downloadEntry.js +0 -30
- package/src/api/content-rest-api/model/downloadEntry.js.map +0 -1
- package/src/api/content-rest-api/model/errorError.js +0 -28
- package/src/api/content-rest-api/model/errorError.js.map +0 -1
- package/src/api/content-rest-api/model/favorite.js +0 -30
- package/src/api/content-rest-api/model/favorite.js.map +0 -1
- package/src/api/content-rest-api/model/favoriteBodyCreate.js +0 -28
- package/src/api/content-rest-api/model/favoriteBodyCreate.js.map +0 -1
- package/src/api/content-rest-api/model/favoriteEntry.js +0 -30
- package/src/api/content-rest-api/model/favoriteEntry.js.map +0 -1
- package/src/api/content-rest-api/model/favoritePaging.js +0 -30
- package/src/api/content-rest-api/model/favoritePaging.js.map +0 -1
- package/src/api/content-rest-api/model/favoritePagingList.js +0 -36
- package/src/api/content-rest-api/model/favoritePagingList.js.map +0 -1
- package/src/api/content-rest-api/model/favoriteSite.js +0 -28
- package/src/api/content-rest-api/model/favoriteSite.js.map +0 -1
- package/src/api/content-rest-api/model/favoriteSiteBodyCreate.js +0 -28
- package/src/api/content-rest-api/model/favoriteSiteBodyCreate.js.map +0 -1
- package/src/api/content-rest-api/model/favoriteSiteEntry.js +0 -30
- package/src/api/content-rest-api/model/favoriteSiteEntry.js.map +0 -1
- package/src/api/content-rest-api/model/group.js +0 -28
- package/src/api/content-rest-api/model/group.js.map +0 -1
- package/src/api/content-rest-api/model/groupBodyCreate.js +0 -28
- package/src/api/content-rest-api/model/groupBodyCreate.js.map +0 -1
- package/src/api/content-rest-api/model/groupBodyUpdate.js +0 -28
- package/src/api/content-rest-api/model/groupBodyUpdate.js.map +0 -1
- package/src/api/content-rest-api/model/groupEntry.js +0 -30
- package/src/api/content-rest-api/model/groupEntry.js.map +0 -1
- package/src/api/content-rest-api/model/groupMember.js +0 -34
- package/src/api/content-rest-api/model/groupMember.js.map +0 -1
- package/src/api/content-rest-api/model/groupMemberEntry.js +0 -30
- package/src/api/content-rest-api/model/groupMemberEntry.js.map +0 -1
- package/src/api/content-rest-api/model/groupMemberPaging.js +0 -30
- package/src/api/content-rest-api/model/groupMemberPaging.js.map +0 -1
- package/src/api/content-rest-api/model/groupMemberPagingList.js +0 -36
- package/src/api/content-rest-api/model/groupMemberPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/groupMembershipBodyCreate.js +0 -34
- package/src/api/content-rest-api/model/groupMembershipBodyCreate.js.map +0 -1
- package/src/api/content-rest-api/model/groupPaging.js +0 -30
- package/src/api/content-rest-api/model/groupPaging.js.map +0 -1
- package/src/api/content-rest-api/model/groupPagingList.js +0 -36
- package/src/api/content-rest-api/model/groupPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/index.js +0 -204
- package/src/api/content-rest-api/model/index.js.map +0 -1
- package/src/api/content-rest-api/model/modelError.js +0 -30
- package/src/api/content-rest-api/model/modelError.js.map +0 -1
- package/src/api/content-rest-api/model/networkQuota.js +0 -28
- package/src/api/content-rest-api/model/networkQuota.js.map +0 -1
- package/src/api/content-rest-api/model/node.js +0 -42
- package/src/api/content-rest-api/model/node.js.map +0 -1
- package/src/api/content-rest-api/model/nodeAssociation.js +0 -44
- package/src/api/content-rest-api/model/nodeAssociation.js.map +0 -1
- package/src/api/content-rest-api/model/nodeAssociationEntry.js +0 -30
- package/src/api/content-rest-api/model/nodeAssociationEntry.js.map +0 -1
- package/src/api/content-rest-api/model/nodeAssociationPaging.js +0 -30
- package/src/api/content-rest-api/model/nodeAssociationPaging.js.map +0 -1
- package/src/api/content-rest-api/model/nodeAssociationPagingList.js +0 -38
- package/src/api/content-rest-api/model/nodeAssociationPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/nodeBodyCopy.js +0 -28
- package/src/api/content-rest-api/model/nodeBodyCopy.js.map +0 -1
- package/src/api/content-rest-api/model/nodeBodyCreate.js +0 -46
- package/src/api/content-rest-api/model/nodeBodyCreate.js.map +0 -1
- package/src/api/content-rest-api/model/nodeBodyCreateAssociation.js +0 -28
- package/src/api/content-rest-api/model/nodeBodyCreateAssociation.js.map +0 -1
- package/src/api/content-rest-api/model/nodeBodyLock.js +0 -38
- package/src/api/content-rest-api/model/nodeBodyLock.js.map +0 -1
- package/src/api/content-rest-api/model/nodeBodyMove.js +0 -28
- package/src/api/content-rest-api/model/nodeBodyMove.js.map +0 -1
- package/src/api/content-rest-api/model/nodeBodyUpdate.js +0 -30
- package/src/api/content-rest-api/model/nodeBodyUpdate.js.map +0 -1
- package/src/api/content-rest-api/model/nodeChildAssociation.js +0 -44
- package/src/api/content-rest-api/model/nodeChildAssociation.js.map +0 -1
- package/src/api/content-rest-api/model/nodeChildAssociationEntry.js +0 -30
- package/src/api/content-rest-api/model/nodeChildAssociationEntry.js.map +0 -1
- package/src/api/content-rest-api/model/nodeChildAssociationPaging.js +0 -30
- package/src/api/content-rest-api/model/nodeChildAssociationPaging.js.map +0 -1
- package/src/api/content-rest-api/model/nodeChildAssociationPagingList.js +0 -38
- package/src/api/content-rest-api/model/nodeChildAssociationPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/nodeEntry.js +0 -30
- package/src/api/content-rest-api/model/nodeEntry.js.map +0 -1
- package/src/api/content-rest-api/model/nodePaging.js +0 -30
- package/src/api/content-rest-api/model/nodePaging.js.map +0 -1
- package/src/api/content-rest-api/model/nodePagingList.js +0 -38
- package/src/api/content-rest-api/model/nodePagingList.js.map +0 -1
- package/src/api/content-rest-api/model/pagination.js +0 -28
- package/src/api/content-rest-api/model/pagination.js.map +0 -1
- package/src/api/content-rest-api/model/passwordResetBody.js +0 -28
- package/src/api/content-rest-api/model/passwordResetBody.js.map +0 -1
- package/src/api/content-rest-api/model/pathElement.js +0 -28
- package/src/api/content-rest-api/model/pathElement.js.map +0 -1
- package/src/api/content-rest-api/model/pathInfo.js +0 -34
- package/src/api/content-rest-api/model/pathInfo.js.map +0 -1
- package/src/api/content-rest-api/model/permissionElement.js +0 -34
- package/src/api/content-rest-api/model/permissionElement.js.map +0 -1
- package/src/api/content-rest-api/model/permissionsBody.js +0 -34
- package/src/api/content-rest-api/model/permissionsBody.js.map +0 -1
- package/src/api/content-rest-api/model/permissionsInfo.js +0 -39
- package/src/api/content-rest-api/model/permissionsInfo.js.map +0 -1
- package/src/api/content-rest-api/model/person.js +0 -34
- package/src/api/content-rest-api/model/person.js.map +0 -1
- package/src/api/content-rest-api/model/personBodyCreate.js +0 -30
- package/src/api/content-rest-api/model/personBodyCreate.js.map +0 -1
- package/src/api/content-rest-api/model/personBodyUpdate.js +0 -30
- package/src/api/content-rest-api/model/personBodyUpdate.js.map +0 -1
- package/src/api/content-rest-api/model/personEntry.js +0 -30
- package/src/api/content-rest-api/model/personEntry.js.map +0 -1
- package/src/api/content-rest-api/model/personNetwork.js +0 -43
- package/src/api/content-rest-api/model/personNetwork.js.map +0 -1
- package/src/api/content-rest-api/model/personNetworkEntry.js +0 -30
- package/src/api/content-rest-api/model/personNetworkEntry.js.map +0 -1
- package/src/api/content-rest-api/model/personNetworkPaging.js +0 -30
- package/src/api/content-rest-api/model/personNetworkPaging.js.map +0 -1
- package/src/api/content-rest-api/model/personNetworkPagingList.js +0 -36
- package/src/api/content-rest-api/model/personNetworkPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/personPaging.js +0 -30
- package/src/api/content-rest-api/model/personPaging.js.map +0 -1
- package/src/api/content-rest-api/model/personPagingList.js +0 -36
- package/src/api/content-rest-api/model/personPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/preference.js +0 -28
- package/src/api/content-rest-api/model/preference.js.map +0 -1
- package/src/api/content-rest-api/model/preferenceEntry.js +0 -30
- package/src/api/content-rest-api/model/preferenceEntry.js.map +0 -1
- package/src/api/content-rest-api/model/preferencePaging.js +0 -30
- package/src/api/content-rest-api/model/preferencePaging.js.map +0 -1
- package/src/api/content-rest-api/model/preferencePagingList.js +0 -36
- package/src/api/content-rest-api/model/preferencePagingList.js.map +0 -1
- package/src/api/content-rest-api/model/probeEntry.js +0 -30
- package/src/api/content-rest-api/model/probeEntry.js.map +0 -1
- package/src/api/content-rest-api/model/probeEntryEntry.js +0 -28
- package/src/api/content-rest-api/model/probeEntryEntry.js.map +0 -1
- package/src/api/content-rest-api/model/property.js +0 -34
- package/src/api/content-rest-api/model/property.js.map +0 -1
- package/src/api/content-rest-api/model/rating.js +0 -32
- package/src/api/content-rest-api/model/rating.js.map +0 -1
- package/src/api/content-rest-api/model/ratingAggregate.js +0 -28
- package/src/api/content-rest-api/model/ratingAggregate.js.map +0 -1
- package/src/api/content-rest-api/model/ratingBody.js +0 -34
- package/src/api/content-rest-api/model/ratingBody.js.map +0 -1
- package/src/api/content-rest-api/model/ratingEntry.js +0 -30
- package/src/api/content-rest-api/model/ratingEntry.js.map +0 -1
- package/src/api/content-rest-api/model/ratingPaging.js +0 -30
- package/src/api/content-rest-api/model/ratingPaging.js.map +0 -1
- package/src/api/content-rest-api/model/ratingPagingList.js +0 -36
- package/src/api/content-rest-api/model/ratingPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/rendition.js +0 -36
- package/src/api/content-rest-api/model/rendition.js.map +0 -1
- package/src/api/content-rest-api/model/renditionBodyCreate.js +0 -28
- package/src/api/content-rest-api/model/renditionBodyCreate.js.map +0 -1
- package/src/api/content-rest-api/model/renditionEntry.js +0 -30
- package/src/api/content-rest-api/model/renditionEntry.js.map +0 -1
- package/src/api/content-rest-api/model/renditionPaging.js +0 -30
- package/src/api/content-rest-api/model/renditionPaging.js.map +0 -1
- package/src/api/content-rest-api/model/renditionPagingList.js +0 -36
- package/src/api/content-rest-api/model/renditionPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/revertBody.js +0 -28
- package/src/api/content-rest-api/model/revertBody.js.map +0 -1
- package/src/api/content-rest-api/model/sharedLink.js +0 -36
- package/src/api/content-rest-api/model/sharedLink.js.map +0 -1
- package/src/api/content-rest-api/model/sharedLinkBodyCreate.js +0 -30
- package/src/api/content-rest-api/model/sharedLinkBodyCreate.js.map +0 -1
- package/src/api/content-rest-api/model/sharedLinkBodyEmail.js +0 -28
- package/src/api/content-rest-api/model/sharedLinkBodyEmail.js.map +0 -1
- package/src/api/content-rest-api/model/sharedLinkEntry.js +0 -30
- package/src/api/content-rest-api/model/sharedLinkEntry.js.map +0 -1
- package/src/api/content-rest-api/model/sharedLinkPaging.js +0 -30
- package/src/api/content-rest-api/model/sharedLinkPaging.js.map +0 -1
- package/src/api/content-rest-api/model/sharedLinkPagingList.js +0 -36
- package/src/api/content-rest-api/model/sharedLinkPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/site.js +0 -41
- package/src/api/content-rest-api/model/site.js.map +0 -1
- package/src/api/content-rest-api/model/siteBodyCreate.js +0 -35
- package/src/api/content-rest-api/model/siteBodyCreate.js.map +0 -1
- package/src/api/content-rest-api/model/siteBodyUpdate.js +0 -35
- package/src/api/content-rest-api/model/siteBodyUpdate.js.map +0 -1
- package/src/api/content-rest-api/model/siteContainer.js +0 -28
- package/src/api/content-rest-api/model/siteContainer.js.map +0 -1
- package/src/api/content-rest-api/model/siteContainerEntry.js +0 -30
- package/src/api/content-rest-api/model/siteContainerEntry.js.map +0 -1
- package/src/api/content-rest-api/model/siteContainerPaging.js +0 -30
- package/src/api/content-rest-api/model/siteContainerPaging.js.map +0 -1
- package/src/api/content-rest-api/model/siteContainerPagingList.js +0 -36
- package/src/api/content-rest-api/model/siteContainerPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/siteEntry.js +0 -32
- package/src/api/content-rest-api/model/siteEntry.js.map +0 -1
- package/src/api/content-rest-api/model/siteEntryRelations.js +0 -30
- package/src/api/content-rest-api/model/siteEntryRelations.js.map +0 -1
- package/src/api/content-rest-api/model/siteGroup.js +0 -38
- package/src/api/content-rest-api/model/siteGroup.js.map +0 -1
- package/src/api/content-rest-api/model/siteGroupEntry.js +0 -30
- package/src/api/content-rest-api/model/siteGroupEntry.js.map +0 -1
- package/src/api/content-rest-api/model/siteGroupPaging.js +0 -30
- package/src/api/content-rest-api/model/siteGroupPaging.js.map +0 -1
- package/src/api/content-rest-api/model/siteGroupPagingList.js +0 -36
- package/src/api/content-rest-api/model/siteGroupPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/siteMember.js +0 -38
- package/src/api/content-rest-api/model/siteMember.js.map +0 -1
- package/src/api/content-rest-api/model/siteMemberEntry.js +0 -30
- package/src/api/content-rest-api/model/siteMemberEntry.js.map +0 -1
- package/src/api/content-rest-api/model/siteMemberPaging.js +0 -30
- package/src/api/content-rest-api/model/siteMemberPaging.js.map +0 -1
- package/src/api/content-rest-api/model/siteMemberPagingList.js +0 -36
- package/src/api/content-rest-api/model/siteMemberPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/siteMembershipApprovalBody.js +0 -28
- package/src/api/content-rest-api/model/siteMembershipApprovalBody.js.map +0 -1
- package/src/api/content-rest-api/model/siteMembershipBodyCreate.js +0 -36
- package/src/api/content-rest-api/model/siteMembershipBodyCreate.js.map +0 -1
- package/src/api/content-rest-api/model/siteMembershipBodyUpdate.js +0 -36
- package/src/api/content-rest-api/model/siteMembershipBodyUpdate.js.map +0 -1
- package/src/api/content-rest-api/model/siteMembershipRejectionBody.js +0 -28
- package/src/api/content-rest-api/model/siteMembershipRejectionBody.js.map +0 -1
- package/src/api/content-rest-api/model/siteMembershipRequest.js +0 -32
- package/src/api/content-rest-api/model/siteMembershipRequest.js.map +0 -1
- package/src/api/content-rest-api/model/siteMembershipRequestBodyCreate.js +0 -28
- package/src/api/content-rest-api/model/siteMembershipRequestBodyCreate.js.map +0 -1
- package/src/api/content-rest-api/model/siteMembershipRequestBodyUpdate.js +0 -28
- package/src/api/content-rest-api/model/siteMembershipRequestBodyUpdate.js.map +0 -1
- package/src/api/content-rest-api/model/siteMembershipRequestEntry.js +0 -30
- package/src/api/content-rest-api/model/siteMembershipRequestEntry.js.map +0 -1
- package/src/api/content-rest-api/model/siteMembershipRequestPaging.js +0 -30
- package/src/api/content-rest-api/model/siteMembershipRequestPaging.js.map +0 -1
- package/src/api/content-rest-api/model/siteMembershipRequestPagingList.js +0 -36
- package/src/api/content-rest-api/model/siteMembershipRequestPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/siteMembershipRequestWithPerson.js +0 -34
- package/src/api/content-rest-api/model/siteMembershipRequestWithPerson.js.map +0 -1
- package/src/api/content-rest-api/model/siteMembershipRequestWithPersonEntry.js +0 -30
- package/src/api/content-rest-api/model/siteMembershipRequestWithPersonEntry.js.map +0 -1
- package/src/api/content-rest-api/model/siteMembershipRequestWithPersonPaging.js +0 -30
- package/src/api/content-rest-api/model/siteMembershipRequestWithPersonPaging.js.map +0 -1
- package/src/api/content-rest-api/model/siteMembershipRequestWithPersonPagingList.js +0 -36
- package/src/api/content-rest-api/model/siteMembershipRequestWithPersonPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/sitePaging.js +0 -30
- package/src/api/content-rest-api/model/sitePaging.js.map +0 -1
- package/src/api/content-rest-api/model/sitePagingList.js +0 -36
- package/src/api/content-rest-api/model/sitePagingList.js.map +0 -1
- package/src/api/content-rest-api/model/siteRole.js +0 -38
- package/src/api/content-rest-api/model/siteRole.js.map +0 -1
- package/src/api/content-rest-api/model/siteRoleEntry.js +0 -30
- package/src/api/content-rest-api/model/siteRoleEntry.js.map +0 -1
- package/src/api/content-rest-api/model/siteRolePaging.js +0 -30
- package/src/api/content-rest-api/model/siteRolePaging.js.map +0 -1
- package/src/api/content-rest-api/model/siteRolePagingList.js +0 -36
- package/src/api/content-rest-api/model/siteRolePagingList.js.map +0 -1
- package/src/api/content-rest-api/model/tag.js +0 -28
- package/src/api/content-rest-api/model/tag.js.map +0 -1
- package/src/api/content-rest-api/model/tagBody.js +0 -28
- package/src/api/content-rest-api/model/tagBody.js.map +0 -1
- package/src/api/content-rest-api/model/tagEntry.js +0 -30
- package/src/api/content-rest-api/model/tagEntry.js.map +0 -1
- package/src/api/content-rest-api/model/tagPaging.js +0 -30
- package/src/api/content-rest-api/model/tagPaging.js.map +0 -1
- package/src/api/content-rest-api/model/tagPagingList.js +0 -36
- package/src/api/content-rest-api/model/tagPagingList.js.map +0 -1
- package/src/api/content-rest-api/model/userInfo.js +0 -28
- package/src/api/content-rest-api/model/userInfo.js.map +0 -1
- package/src/api/content-rest-api/model/version.js +0 -34
- package/src/api/content-rest-api/model/version.js.map +0 -1
- package/src/api/content-rest-api/model/versionEntry.js +0 -30
- package/src/api/content-rest-api/model/versionEntry.js.map +0 -1
- package/src/api/content-rest-api/model/versionPaging.js +0 -30
- package/src/api/content-rest-api/model/versionPaging.js.map +0 -1
- package/src/api/content-rest-api/model/versionPagingList.js +0 -36
- package/src/api/content-rest-api/model/versionPagingList.js.map +0 -1
- package/src/api/discovery-rest-api/api/base.api.js +0 -28
- package/src/api/discovery-rest-api/api/base.api.js.map +0 -1
- package/src/api/discovery-rest-api/api/discovery.api.js +0 -31
- package/src/api/discovery-rest-api/api/discovery.api.js.map +0 -1
- package/src/api/discovery-rest-api/api/index.js +0 -21
- package/src/api/discovery-rest-api/api/index.js.map +0 -1
- package/src/api/discovery-rest-api/index.js +0 -22
- package/src/api/discovery-rest-api/index.js.map +0 -1
- package/src/api/discovery-rest-api/model/discoveryEntry.js +0 -30
- package/src/api/discovery-rest-api/model/discoveryEntry.js.map +0 -1
- package/src/api/discovery-rest-api/model/entitlementsInfo.js +0 -28
- package/src/api/discovery-rest-api/model/entitlementsInfo.js.map +0 -1
- package/src/api/discovery-rest-api/model/index.js +0 -28
- package/src/api/discovery-rest-api/model/index.js.map +0 -1
- package/src/api/discovery-rest-api/model/licenseInfo.js +0 -33
- package/src/api/discovery-rest-api/model/licenseInfo.js.map +0 -1
- package/src/api/discovery-rest-api/model/moduleInfo.js +0 -30
- package/src/api/discovery-rest-api/model/moduleInfo.js.map +0 -1
- package/src/api/discovery-rest-api/model/repositoryEntry.js +0 -30
- package/src/api/discovery-rest-api/model/repositoryEntry.js.map +0 -1
- package/src/api/discovery-rest-api/model/repositoryInfo.js +0 -40
- package/src/api/discovery-rest-api/model/repositoryInfo.js.map +0 -1
- package/src/api/discovery-rest-api/model/statusInfo.js +0 -28
- package/src/api/discovery-rest-api/model/statusInfo.js.map +0 -1
- package/src/api/discovery-rest-api/model/versionInfo.js +0 -28
- package/src/api/discovery-rest-api/model/versionInfo.js.map +0 -1
- package/src/api/gs-classification-rest-api/api/authorityClearance.api.js +0 -48
- package/src/api/gs-classification-rest-api/api/authorityClearance.api.js.map +0 -1
- package/src/api/gs-classification-rest-api/api/base.api.js +0 -28
- package/src/api/gs-classification-rest-api/api/base.api.js.map +0 -1
- package/src/api/gs-classification-rest-api/api/classificationGuides.api.js +0 -214
- package/src/api/gs-classification-rest-api/api/classificationGuides.api.js.map +0 -1
- package/src/api/gs-classification-rest-api/api/classificationReasons.api.js +0 -82
- package/src/api/gs-classification-rest-api/api/classificationReasons.api.js.map +0 -1
- package/src/api/gs-classification-rest-api/api/declassificationExemptions.api.js +0 -76
- package/src/api/gs-classification-rest-api/api/declassificationExemptions.api.js.map +0 -1
- package/src/api/gs-classification-rest-api/api/defaultClassificationValues.api.js +0 -37
- package/src/api/gs-classification-rest-api/api/defaultClassificationValues.api.js.map +0 -1
- package/src/api/gs-classification-rest-api/api/index.js +0 -30
- package/src/api/gs-classification-rest-api/api/index.js.map +0 -1
- package/src/api/gs-classification-rest-api/api/nodeSecurityMarks.api.js +0 -51
- package/src/api/gs-classification-rest-api/api/nodeSecurityMarks.api.js.map +0 -1
- package/src/api/gs-classification-rest-api/api/securityControlSettings.api.js +0 -50
- package/src/api/gs-classification-rest-api/api/securityControlSettings.api.js.map +0 -1
- package/src/api/gs-classification-rest-api/api/securityGroups.api.js +0 -71
- package/src/api/gs-classification-rest-api/api/securityGroups.api.js.map +0 -1
- package/src/api/gs-classification-rest-api/api/securityMarks.api.js +0 -91
- package/src/api/gs-classification-rest-api/api/securityMarks.api.js.map +0 -1
- package/src/api/gs-classification-rest-api/api/types.js +0 -19
- package/src/api/gs-classification-rest-api/api/types.js.map +0 -1
- package/src/api/gs-classification-rest-api/index.js +0 -22
- package/src/api/gs-classification-rest-api/index.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/authorityClearanceGroup.js +0 -28
- package/src/api/gs-classification-rest-api/model/authorityClearanceGroup.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/authorityClearanceGroupEntry.js +0 -30
- package/src/api/gs-classification-rest-api/model/authorityClearanceGroupEntry.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/authorityClearanceGroupPaging.js +0 -30
- package/src/api/gs-classification-rest-api/model/authorityClearanceGroupPaging.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/authorityClearanceGroupPagingList.js +0 -36
- package/src/api/gs-classification-rest-api/model/authorityClearanceGroupPagingList.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/authorityClearanceMark.js +0 -28
- package/src/api/gs-classification-rest-api/model/authorityClearanceMark.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationGuide.js +0 -28
- package/src/api/gs-classification-rest-api/model/classificationGuide.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationGuideBody.js +0 -28
- package/src/api/gs-classification-rest-api/model/classificationGuideBody.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationGuideEntry.js +0 -30
- package/src/api/gs-classification-rest-api/model/classificationGuideEntry.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationGuideInTopic.js +0 -28
- package/src/api/gs-classification-rest-api/model/classificationGuideInTopic.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationGuidePaging.js +0 -30
- package/src/api/gs-classification-rest-api/model/classificationGuidePaging.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationGuidePagingList.js +0 -36
- package/src/api/gs-classification-rest-api/model/classificationGuidePagingList.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationGuides.js +0 -28
- package/src/api/gs-classification-rest-api/model/classificationGuides.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationGuidesBody.js +0 -28
- package/src/api/gs-classification-rest-api/model/classificationGuidesBody.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationGuidesEntry.js +0 -30
- package/src/api/gs-classification-rest-api/model/classificationGuidesEntry.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationGuidesInTopic.js +0 -28
- package/src/api/gs-classification-rest-api/model/classificationGuidesInTopic.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationInformation.js +0 -28
- package/src/api/gs-classification-rest-api/model/classificationInformation.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationReason.js +0 -28
- package/src/api/gs-classification-rest-api/model/classificationReason.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationReasonBody.js +0 -28
- package/src/api/gs-classification-rest-api/model/classificationReasonBody.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationReasonEntry.js +0 -30
- package/src/api/gs-classification-rest-api/model/classificationReasonEntry.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationReasonsPaging.js +0 -30
- package/src/api/gs-classification-rest-api/model/classificationReasonsPaging.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/classificationReasonsPagingList.js +0 -36
- package/src/api/gs-classification-rest-api/model/classificationReasonsPagingList.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/combinedInstructionBody.js +0 -32
- package/src/api/gs-classification-rest-api/model/combinedInstructionBody.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/declassificationDate.js +0 -19
- package/src/api/gs-classification-rest-api/model/declassificationDate.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/declassificationExemption.js +0 -28
- package/src/api/gs-classification-rest-api/model/declassificationExemption.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/declassificationExemptionBody.js +0 -28
- package/src/api/gs-classification-rest-api/model/declassificationExemptionBody.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/declassificationExemptionEntry.js +0 -30
- package/src/api/gs-classification-rest-api/model/declassificationExemptionEntry.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/declassificationExemptionsPaging.js +0 -30
- package/src/api/gs-classification-rest-api/model/declassificationExemptionsPaging.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/declassificationExemptionsPagingList.js +0 -36
- package/src/api/gs-classification-rest-api/model/declassificationExemptionsPagingList.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/index.js +0 -75
- package/src/api/gs-classification-rest-api/model/index.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/instruction.js +0 -32
- package/src/api/gs-classification-rest-api/model/instruction.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/instructionBody.js +0 -32
- package/src/api/gs-classification-rest-api/model/instructionBody.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/instructionEntry.js +0 -30
- package/src/api/gs-classification-rest-api/model/instructionEntry.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/nodeSecurityMarkBody.js +0 -28
- package/src/api/gs-classification-rest-api/model/nodeSecurityMarkBody.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/path.js +0 -29
- package/src/api/gs-classification-rest-api/model/path.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityControlSetting.js +0 -28
- package/src/api/gs-classification-rest-api/model/securityControlSetting.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityControlSettingBody.js +0 -28
- package/src/api/gs-classification-rest-api/model/securityControlSettingBody.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityControlSettingEntry.js +0 -30
- package/src/api/gs-classification-rest-api/model/securityControlSettingEntry.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityGroup.js +0 -28
- package/src/api/gs-classification-rest-api/model/securityGroup.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityGroupBody.js +0 -28
- package/src/api/gs-classification-rest-api/model/securityGroupBody.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityGroupEntry.js +0 -30
- package/src/api/gs-classification-rest-api/model/securityGroupEntry.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityGroupPaging.js +0 -30
- package/src/api/gs-classification-rest-api/model/securityGroupPaging.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityGroupPagingList.js +0 -36
- package/src/api/gs-classification-rest-api/model/securityGroupPagingList.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityMark.js +0 -28
- package/src/api/gs-classification-rest-api/model/securityMark.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityMarkBody.js +0 -28
- package/src/api/gs-classification-rest-api/model/securityMarkBody.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityMarkEntry.js +0 -30
- package/src/api/gs-classification-rest-api/model/securityMarkEntry.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityMarkInformation.js +0 -30
- package/src/api/gs-classification-rest-api/model/securityMarkInformation.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityMarkInformationBody.js +0 -30
- package/src/api/gs-classification-rest-api/model/securityMarkInformationBody.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityMarkPaging.js +0 -30
- package/src/api/gs-classification-rest-api/model/securityMarkPaging.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityMarkPagingList.js +0 -36
- package/src/api/gs-classification-rest-api/model/securityMarkPagingList.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityMarks.js +0 -29
- package/src/api/gs-classification-rest-api/model/securityMarks.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/securityMarksBody.js +0 -29
- package/src/api/gs-classification-rest-api/model/securityMarksBody.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/subtopicPaging.js +0 -30
- package/src/api/gs-classification-rest-api/model/subtopicPaging.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/topic.js +0 -36
- package/src/api/gs-classification-rest-api/model/topic.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/topicBody.js +0 -30
- package/src/api/gs-classification-rest-api/model/topicBody.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/topicEntry.js +0 -30
- package/src/api/gs-classification-rest-api/model/topicEntry.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/topicPaging.js +0 -30
- package/src/api/gs-classification-rest-api/model/topicPaging.js.map +0 -1
- package/src/api/gs-classification-rest-api/model/topicPagingList.js +0 -36
- package/src/api/gs-classification-rest-api/model/topicPagingList.js.map +0 -1
- package/src/api/gs-core-rest-api/api/base.api.js +0 -28
- package/src/api/gs-core-rest-api/api/base.api.js.map +0 -1
- package/src/api/gs-core-rest-api/api/filePlans.api.js +0 -102
- package/src/api/gs-core-rest-api/api/filePlans.api.js.map +0 -1
- package/src/api/gs-core-rest-api/api/files.api.js +0 -45
- package/src/api/gs-core-rest-api/api/files.api.js.map +0 -1
- package/src/api/gs-core-rest-api/api/gsSites.api.js +0 -63
- package/src/api/gs-core-rest-api/api/gsSites.api.js.map +0 -1
- package/src/api/gs-core-rest-api/api/index.js +0 -31
- package/src/api/gs-core-rest-api/api/index.js.map +0 -1
- package/src/api/gs-core-rest-api/api/recordCategories.api.js +0 -114
- package/src/api/gs-core-rest-api/api/recordCategories.api.js.map +0 -1
- package/src/api/gs-core-rest-api/api/recordFolders.api.js +0 -111
- package/src/api/gs-core-rest-api/api/recordFolders.api.js.map +0 -1
- package/src/api/gs-core-rest-api/api/records.api.js +0 -123
- package/src/api/gs-core-rest-api/api/records.api.js.map +0 -1
- package/src/api/gs-core-rest-api/api/transferContainers.api.js +0 -83
- package/src/api/gs-core-rest-api/api/transferContainers.api.js.map +0 -1
- package/src/api/gs-core-rest-api/api/transfers.api.js +0 -63
- package/src/api/gs-core-rest-api/api/transfers.api.js.map +0 -1
- package/src/api/gs-core-rest-api/api/types.js +0 -19
- package/src/api/gs-core-rest-api/api/types.js.map +0 -1
- package/src/api/gs-core-rest-api/api/unfiledContainers.api.js +0 -103
- package/src/api/gs-core-rest-api/api/unfiledContainers.api.js.map +0 -1
- package/src/api/gs-core-rest-api/api/unfiledRecordFolders.api.js +0 -116
- package/src/api/gs-core-rest-api/api/unfiledRecordFolders.api.js.map +0 -1
- package/src/api/gs-core-rest-api/index.js +0 -22
- package/src/api/gs-core-rest-api/index.js.map +0 -1
- package/src/api/gs-core-rest-api/model/filePlan.js +0 -36
- package/src/api/gs-core-rest-api/model/filePlan.js.map +0 -1
- package/src/api/gs-core-rest-api/model/filePlanBodyUpdate.js +0 -28
- package/src/api/gs-core-rest-api/model/filePlanBodyUpdate.js.map +0 -1
- package/src/api/gs-core-rest-api/model/filePlanComponentBodyUpdate.js +0 -28
- package/src/api/gs-core-rest-api/model/filePlanComponentBodyUpdate.js.map +0 -1
- package/src/api/gs-core-rest-api/model/filePlanEntry.js +0 -30
- package/src/api/gs-core-rest-api/model/filePlanEntry.js.map +0 -1
- package/src/api/gs-core-rest-api/model/index.js +0 -79
- package/src/api/gs-core-rest-api/model/index.js.map +0 -1
- package/src/api/gs-core-rest-api/model/rMNodeBodyCreate.js +0 -28
- package/src/api/gs-core-rest-api/model/rMNodeBodyCreate.js.map +0 -1
- package/src/api/gs-core-rest-api/model/rMNodeBodyCreateWithRelativePath.js +0 -28
- package/src/api/gs-core-rest-api/model/rMNodeBodyCreateWithRelativePath.js.map +0 -1
- package/src/api/gs-core-rest-api/model/rMSite.js +0 -45
- package/src/api/gs-core-rest-api/model/rMSite.js.map +0 -1
- package/src/api/gs-core-rest-api/model/rMSiteBodyCreate.js +0 -34
- package/src/api/gs-core-rest-api/model/rMSiteBodyCreate.js.map +0 -1
- package/src/api/gs-core-rest-api/model/rMSiteBodyUpdate.js +0 -28
- package/src/api/gs-core-rest-api/model/rMSiteBodyUpdate.js.map +0 -1
- package/src/api/gs-core-rest-api/model/rMSiteEntry.js +0 -30
- package/src/api/gs-core-rest-api/model/rMSiteEntry.js.map +0 -1
- package/src/api/gs-core-rest-api/model/record.js +0 -38
- package/src/api/gs-core-rest-api/model/record.js.map +0 -1
- package/src/api/gs-core-rest-api/model/recordCategory.js +0 -36
- package/src/api/gs-core-rest-api/model/recordCategory.js.map +0 -1
- package/src/api/gs-core-rest-api/model/recordCategoryChild.js +0 -36
- package/src/api/gs-core-rest-api/model/recordCategoryChild.js.map +0 -1
- package/src/api/gs-core-rest-api/model/recordCategoryChildEntry.js +0 -30
- package/src/api/gs-core-rest-api/model/recordCategoryChildEntry.js.map +0 -1
- package/src/api/gs-core-rest-api/model/recordCategoryChildPaging.js +0 -30
- package/src/api/gs-core-rest-api/model/recordCategoryChildPaging.js.map +0 -1
- package/src/api/gs-core-rest-api/model/recordCategoryChildPagingList.js +0 -38
- package/src/api/gs-core-rest-api/model/recordCategoryChildPagingList.js.map +0 -1
- package/src/api/gs-core-rest-api/model/recordCategoryEntry.js +0 -30
- package/src/api/gs-core-rest-api/model/recordCategoryEntry.js.map +0 -1
- package/src/api/gs-core-rest-api/model/recordCategoryPaging.js +0 -30
- package/src/api/gs-core-rest-api/model/recordCategoryPaging.js.map +0 -1
- package/src/api/gs-core-rest-api/model/recordCategoryPagingList.js +0 -38
- package/src/api/gs-core-rest-api/model/recordCategoryPagingList.js.map +0 -1
- package/src/api/gs-core-rest-api/model/recordEntry.js +0 -30
- package/src/api/gs-core-rest-api/model/recordEntry.js.map +0 -1
- package/src/api/gs-core-rest-api/model/recordFolder.js +0 -36
- package/src/api/gs-core-rest-api/model/recordFolder.js.map +0 -1
- package/src/api/gs-core-rest-api/model/recordFolderAssociationPaging.js +0 -30
- package/src/api/gs-core-rest-api/model/recordFolderAssociationPaging.js.map +0 -1
- package/src/api/gs-core-rest-api/model/recordFolderAssociationPagingList.js +0 -38
- package/src/api/gs-core-rest-api/model/recordFolderAssociationPagingList.js.map +0 -1
- package/src/api/gs-core-rest-api/model/recordFolderChildAssociation.js +0 -40
- package/src/api/gs-core-rest-api/model/recordFolderChildAssociation.js.map +0 -1
- package/src/api/gs-core-rest-api/model/recordFolderChildAssociationEntry.js +0 -30
- package/src/api/gs-core-rest-api/model/recordFolderChildAssociationEntry.js.map +0 -1
- package/src/api/gs-core-rest-api/model/recordFolderEntry.js +0 -30
- package/src/api/gs-core-rest-api/model/recordFolderEntry.js.map +0 -1
- package/src/api/gs-core-rest-api/model/requestBodyFile.js +0 -28
- package/src/api/gs-core-rest-api/model/requestBodyFile.js.map +0 -1
- package/src/api/gs-core-rest-api/model/rootCategoryBodyCreate.js +0 -28
- package/src/api/gs-core-rest-api/model/rootCategoryBodyCreate.js.map +0 -1
- package/src/api/gs-core-rest-api/model/transfer.js +0 -32
- package/src/api/gs-core-rest-api/model/transfer.js.map +0 -1
- package/src/api/gs-core-rest-api/model/transferAssociationPaging.js +0 -30
- package/src/api/gs-core-rest-api/model/transferAssociationPaging.js.map +0 -1
- package/src/api/gs-core-rest-api/model/transferAssociationPagingList.js +0 -38
- package/src/api/gs-core-rest-api/model/transferAssociationPagingList.js.map +0 -1
- package/src/api/gs-core-rest-api/model/transferChild.js +0 -36
- package/src/api/gs-core-rest-api/model/transferChild.js.map +0 -1
- package/src/api/gs-core-rest-api/model/transferChildAssociation.js +0 -38
- package/src/api/gs-core-rest-api/model/transferChildAssociation.js.map +0 -1
- package/src/api/gs-core-rest-api/model/transferChildAssociationEntry.js +0 -30
- package/src/api/gs-core-rest-api/model/transferChildAssociationEntry.js.map +0 -1
- package/src/api/gs-core-rest-api/model/transferContainer.js +0 -34
- package/src/api/gs-core-rest-api/model/transferContainer.js.map +0 -1
- package/src/api/gs-core-rest-api/model/transferContainerAssociationPaging.js +0 -30
- package/src/api/gs-core-rest-api/model/transferContainerAssociationPaging.js.map +0 -1
- package/src/api/gs-core-rest-api/model/transferContainerAssociationPagingList.js +0 -38
- package/src/api/gs-core-rest-api/model/transferContainerAssociationPagingList.js.map +0 -1
- package/src/api/gs-core-rest-api/model/transferContainerBodyUpdate.js +0 -28
- package/src/api/gs-core-rest-api/model/transferContainerBodyUpdate.js.map +0 -1
- package/src/api/gs-core-rest-api/model/transferContainerChild.js +0 -32
- package/src/api/gs-core-rest-api/model/transferContainerChild.js.map +0 -1
- package/src/api/gs-core-rest-api/model/transferContainerChildAssociation.js +0 -34
- package/src/api/gs-core-rest-api/model/transferContainerChildAssociation.js.map +0 -1
- package/src/api/gs-core-rest-api/model/transferContainerChildAssociationEntry.js +0 -30
- package/src/api/gs-core-rest-api/model/transferContainerChildAssociationEntry.js.map +0 -1
- package/src/api/gs-core-rest-api/model/transferContainerEntry.js +0 -30
- package/src/api/gs-core-rest-api/model/transferContainerEntry.js.map +0 -1
- package/src/api/gs-core-rest-api/model/transferEntry.js +0 -30
- package/src/api/gs-core-rest-api/model/transferEntry.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledContainer.js +0 -36
- package/src/api/gs-core-rest-api/model/unfiledContainer.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledContainerAssociationPaging.js +0 -30
- package/src/api/gs-core-rest-api/model/unfiledContainerAssociationPaging.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledContainerAssociationPagingList.js +0 -38
- package/src/api/gs-core-rest-api/model/unfiledContainerAssociationPagingList.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledContainerChild.js +0 -36
- package/src/api/gs-core-rest-api/model/unfiledContainerChild.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledContainerChildAssociation.js +0 -38
- package/src/api/gs-core-rest-api/model/unfiledContainerChildAssociation.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledContainerChildAssociationEntry.js +0 -30
- package/src/api/gs-core-rest-api/model/unfiledContainerChildAssociationEntry.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledContainerEntry.js +0 -30
- package/src/api/gs-core-rest-api/model/unfiledContainerEntry.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledRecordContainerBodyUpdate.js +0 -28
- package/src/api/gs-core-rest-api/model/unfiledRecordContainerBodyUpdate.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledRecordFolder.js +0 -36
- package/src/api/gs-core-rest-api/model/unfiledRecordFolder.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPaging.js +0 -30
- package/src/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPaging.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPagingList.js +0 -38
- package/src/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPagingList.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledRecordFolderBodyUpdate.js +0 -28
- package/src/api/gs-core-rest-api/model/unfiledRecordFolderBodyUpdate.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledRecordFolderChild.js +0 -36
- package/src/api/gs-core-rest-api/model/unfiledRecordFolderChild.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociation.js +0 -38
- package/src/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociation.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociationEntry.js +0 -30
- package/src/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociationEntry.js.map +0 -1
- package/src/api/gs-core-rest-api/model/unfiledRecordFolderEntry.js +0 -30
- package/src/api/gs-core-rest-api/model/unfiledRecordFolderEntry.js.map +0 -1
- package/src/api/model-rest-api/api/aspects.api.js +0 -55
- package/src/api/model-rest-api/api/aspects.api.js.map +0 -1
- package/src/api/model-rest-api/api/base.api.js +0 -28
- package/src/api/model-rest-api/api/base.api.js.map +0 -1
- package/src/api/model-rest-api/api/index.js +0 -22
- package/src/api/model-rest-api/api/index.js.map +0 -1
- package/src/api/model-rest-api/api/types.api.js +0 -52
- package/src/api/model-rest-api/api/types.api.js.map +0 -1
- package/src/api/model-rest-api/index.js +0 -22
- package/src/api/model-rest-api/index.js.map +0 -1
- package/src/api/model-rest-api/model/abstractClass.js +0 -42
- package/src/api/model-rest-api/model/abstractClass.js.map +0 -1
- package/src/api/model-rest-api/model/abstractClassAssociation.js +0 -31
- package/src/api/model-rest-api/model/abstractClassAssociation.js.map +0 -1
- package/src/api/model-rest-api/model/abstractClassAssociationSource.js +0 -28
- package/src/api/model-rest-api/model/abstractClassAssociationSource.js.map +0 -1
- package/src/api/model-rest-api/model/aspect.js +0 -24
- package/src/api/model-rest-api/model/aspect.js.map +0 -1
- package/src/api/model-rest-api/model/aspectEntry.js +0 -30
- package/src/api/model-rest-api/model/aspectEntry.js.map +0 -1
- package/src/api/model-rest-api/model/aspectPaging.js +0 -30
- package/src/api/model-rest-api/model/aspectPaging.js.map +0 -1
- package/src/api/model-rest-api/model/aspectPagingList.js +0 -36
- package/src/api/model-rest-api/model/aspectPagingList.js.map +0 -1
- package/src/api/model-rest-api/model/index.js +0 -31
- package/src/api/model-rest-api/model/index.js.map +0 -1
- package/src/api/model-rest-api/model/model.js +0 -28
- package/src/api/model-rest-api/model/model.js.map +0 -1
- package/src/api/model-rest-api/model/type.js +0 -24
- package/src/api/model-rest-api/model/type.js.map +0 -1
- package/src/api/model-rest-api/model/typeEntry.js +0 -30
- package/src/api/model-rest-api/model/typeEntry.js.map +0 -1
- package/src/api/model-rest-api/model/typePaging.js +0 -30
- package/src/api/model-rest-api/model/typePaging.js.map +0 -1
- package/src/api/model-rest-api/model/typePagingList.js +0 -36
- package/src/api/model-rest-api/model/typePagingList.js.map +0 -1
- package/src/api/search-rest-api/api/index.js +0 -21
- package/src/api/search-rest-api/api/index.js.map +0 -1
- package/src/api/search-rest-api/api/search.api.js +0 -38
- package/src/api/search-rest-api/api/search.api.js.map +0 -1
- package/src/api/search-rest-api/index.js +0 -22
- package/src/api/search-rest-api/index.js.map +0 -1
- package/src/api/search-rest-api/model/genericBucket.js +0 -36
- package/src/api/search-rest-api/model/genericBucket.js.map +0 -1
- package/src/api/search-rest-api/model/genericBucketBucketInfo.js +0 -28
- package/src/api/search-rest-api/model/genericBucketBucketInfo.js.map +0 -1
- package/src/api/search-rest-api/model/genericFacetResponse.js +0 -34
- package/src/api/search-rest-api/model/genericFacetResponse.js.map +0 -1
- package/src/api/search-rest-api/model/genericMetric.js +0 -28
- package/src/api/search-rest-api/model/genericMetric.js.map +0 -1
- package/src/api/search-rest-api/model/index.js +0 -64
- package/src/api/search-rest-api/model/index.js.map +0 -1
- package/src/api/search-rest-api/model/requestDefaults.js +0 -38
- package/src/api/search-rest-api/model/requestDefaults.js.map +0 -1
- package/src/api/search-rest-api/model/requestFacetField.js +0 -38
- package/src/api/search-rest-api/model/requestFacetField.js.map +0 -1
- package/src/api/search-rest-api/model/requestFacetFields.js +0 -34
- package/src/api/search-rest-api/model/requestFacetFields.js.map +0 -1
- package/src/api/search-rest-api/model/requestFacetIntervals.js +0 -40
- package/src/api/search-rest-api/model/requestFacetIntervals.js.map +0 -1
- package/src/api/search-rest-api/model/requestFacetIntervalsIntervals.js +0 -34
- package/src/api/search-rest-api/model/requestFacetIntervalsIntervals.js.map +0 -1
- package/src/api/search-rest-api/model/requestFacetQueries.js +0 -29
- package/src/api/search-rest-api/model/requestFacetQueries.js.map +0 -1
- package/src/api/search-rest-api/model/requestFacetQueriesInner.js +0 -28
- package/src/api/search-rest-api/model/requestFacetQueriesInner.js.map +0 -1
- package/src/api/search-rest-api/model/requestFacetSet.js +0 -28
- package/src/api/search-rest-api/model/requestFacetSet.js.map +0 -1
- package/src/api/search-rest-api/model/requestFields.js +0 -29
- package/src/api/search-rest-api/model/requestFields.js.map +0 -1
- package/src/api/search-rest-api/model/requestFilterQueries.js +0 -29
- package/src/api/search-rest-api/model/requestFilterQueries.js.map +0 -1
- package/src/api/search-rest-api/model/requestFilterQueriesInner.js +0 -28
- package/src/api/search-rest-api/model/requestFilterQueriesInner.js.map +0 -1
- package/src/api/search-rest-api/model/requestHighlight.js +0 -34
- package/src/api/search-rest-api/model/requestHighlight.js.map +0 -1
- package/src/api/search-rest-api/model/requestHighlightFields.js +0 -28
- package/src/api/search-rest-api/model/requestHighlightFields.js.map +0 -1
- package/src/api/search-rest-api/model/requestInclude.js +0 -29
- package/src/api/search-rest-api/model/requestInclude.js.map +0 -1
- package/src/api/search-rest-api/model/requestLimits.js +0 -28
- package/src/api/search-rest-api/model/requestLimits.js.map +0 -1
- package/src/api/search-rest-api/model/requestLocalization.js +0 -28
- package/src/api/search-rest-api/model/requestLocalization.js.map +0 -1
- package/src/api/search-rest-api/model/requestPagination.js +0 -28
- package/src/api/search-rest-api/model/requestPagination.js.map +0 -1
- package/src/api/search-rest-api/model/requestPivot.js +0 -33
- package/src/api/search-rest-api/model/requestPivot.js.map +0 -1
- package/src/api/search-rest-api/model/requestQuery.js +0 -35
- package/src/api/search-rest-api/model/requestQuery.js.map +0 -1
- package/src/api/search-rest-api/model/requestRange.js +0 -28
- package/src/api/search-rest-api/model/requestRange.js.map +0 -1
- package/src/api/search-rest-api/model/requestScope.js +0 -35
- package/src/api/search-rest-api/model/requestScope.js.map +0 -1
- package/src/api/search-rest-api/model/requestSortDefinition.js +0 -29
- package/src/api/search-rest-api/model/requestSortDefinition.js.map +0 -1
- package/src/api/search-rest-api/model/requestSortDefinitionInner.js +0 -35
- package/src/api/search-rest-api/model/requestSortDefinitionInner.js.map +0 -1
- package/src/api/search-rest-api/model/requestSpellcheck.js +0 -28
- package/src/api/search-rest-api/model/requestSpellcheck.js.map +0 -1
- package/src/api/search-rest-api/model/requestStats.js +0 -28
- package/src/api/search-rest-api/model/requestStats.js.map +0 -1
- package/src/api/search-rest-api/model/requestTemplates.js +0 -29
- package/src/api/search-rest-api/model/requestTemplates.js.map +0 -1
- package/src/api/search-rest-api/model/requestTemplatesInner.js +0 -28
- package/src/api/search-rest-api/model/requestTemplatesInner.js.map +0 -1
- package/src/api/search-rest-api/model/responseConsistency.js +0 -28
- package/src/api/search-rest-api/model/responseConsistency.js.map +0 -1
- package/src/api/search-rest-api/model/resultBuckets.js +0 -34
- package/src/api/search-rest-api/model/resultBuckets.js.map +0 -1
- package/src/api/search-rest-api/model/resultBucketsBuckets.js +0 -28
- package/src/api/search-rest-api/model/resultBucketsBuckets.js.map +0 -1
- package/src/api/search-rest-api/model/resultNode.js +0 -42
- package/src/api/search-rest-api/model/resultNode.js.map +0 -1
- package/src/api/search-rest-api/model/resultSetContext.js +0 -56
- package/src/api/search-rest-api/model/resultSetContext.js.map +0 -1
- package/src/api/search-rest-api/model/resultSetContextFacetQueries.js +0 -28
- package/src/api/search-rest-api/model/resultSetContextFacetQueries.js.map +0 -1
- package/src/api/search-rest-api/model/resultSetContextSpellcheck.js +0 -34
- package/src/api/search-rest-api/model/resultSetContextSpellcheck.js.map +0 -1
- package/src/api/search-rest-api/model/resultSetPaging.js +0 -30
- package/src/api/search-rest-api/model/resultSetPaging.js.map +0 -1
- package/src/api/search-rest-api/model/resultSetPagingList.js +0 -38
- package/src/api/search-rest-api/model/resultSetPagingList.js.map +0 -1
- package/src/api/search-rest-api/model/resultSetRowEntry.js +0 -30
- package/src/api/search-rest-api/model/resultSetRowEntry.js.map +0 -1
- package/src/api/search-rest-api/model/searchEntry.js +0 -34
- package/src/api/search-rest-api/model/searchEntry.js.map +0 -1
- package/src/api/search-rest-api/model/searchEntryHighlight.js +0 -28
- package/src/api/search-rest-api/model/searchEntryHighlight.js.map +0 -1
- package/src/api/search-rest-api/model/searchRequest.js +0 -78
- package/src/api/search-rest-api/model/searchRequest.js.map +0 -1
- package/src/api-clients/api-client.js +0 -49
- package/src/api-clients/api-client.js.map +0 -1
- package/src/api-clients/http-client.interface.js +0 -19
- package/src/api-clients/http-client.interface.js.map +0 -1
- package/src/assert.js +0 -26
- package/src/assert.js.map +0 -1
- package/src/authentication/authentication.js +0 -19
- package/src/authentication/authentication.js.map +0 -1
- package/src/authentication/basicAuth.js +0 -19
- package/src/authentication/basicAuth.js.map +0 -1
- package/src/authentication/contentAuth.js +0 -149
- package/src/authentication/contentAuth.js.map +0 -1
- package/src/authentication/oauth2.js +0 -19
- package/src/authentication/oauth2.js.map +0 -1
- package/src/authentication/oauth2Auth.js +0 -575
- package/src/authentication/oauth2Auth.js.map +0 -1
- package/src/authentication/oauth2Config.js +0 -19
- package/src/authentication/oauth2Config.js.map +0 -1
- package/src/authentication/processAuth.js +0 -151
- package/src/authentication/processAuth.js.map +0 -1
- package/src/contentClient.js +0 -41
- package/src/contentClient.js.map +0 -1
- package/src/processClient.js +0 -40
- package/src/processClient.js.map +0 -1
- package/src/storage.js +0 -63
- package/src/storage.js.map +0 -1
- package/src/superagentHttpClient.js +0 -269
- package/src/superagentHttpClient.js.map +0 -1
- package/src/to-deprecate/alfresco-api-type.js +0 -19
- package/src/to-deprecate/alfresco-api-type.js.map +0 -1
- package/src/utils/index.js +0 -22
- package/src/utils/index.js.map +0 -1
- package/src/utils/is-browser.js +0 -24
- package/src/utils/is-browser.js.map +0 -1
- package/src/utils/param-to-string.js +0 -30
- package/src/utils/param-to-string.js.map +0 -1
- package/src/utils/path-matcher.js +0 -29
- package/src/utils/path-matcher.js.map +0 -1
- package/typings/index.d.ts +0 -39
- package/typings/src/alfrescoApi.d.ts +0 -130
- package/typings/src/alfrescoApiClient.d.ts +0 -113
- package/typings/src/api/activiti-rest-api/api/about.api.d.ts +0 -32
- package/typings/src/api/activiti-rest-api/api/accountIntegration.api.d.ts +0 -31
- package/typings/src/api/activiti-rest-api/api/adminEndpoints.api.d.ts +0 -102
- package/typings/src/api/activiti-rest-api/api/adminGroups.api.d.ts +0 -161
- package/typings/src/api/activiti-rest-api/api/adminTenants.api.d.ts +0 -87
- package/typings/src/api/activiti-rest-api/api/adminUsers.api.d.ts +0 -79
- package/typings/src/api/activiti-rest-api/api/appDefinitions.api.d.ts +0 -91
- package/typings/src/api/activiti-rest-api/api/checklists.api.d.ts +0 -49
- package/typings/src/api/activiti-rest-api/api/comments.api.d.ts +0 -61
- package/typings/src/api/activiti-rest-api/api/content.api.d.ts +0 -119
- package/typings/src/api/activiti-rest-api/api/dataSources.api.d.ts +0 -33
- package/typings/src/api/activiti-rest-api/api/decisionAudits.api.d.ts +0 -40
- package/typings/src/api/activiti-rest-api/api/decisionTables.api.d.ts +0 -57
- package/typings/src/api/activiti-rest-api/api/endpoints.api.d.ts +0 -37
- package/typings/src/api/activiti-rest-api/api/formModels.api.d.ts +0 -85
- package/typings/src/api/activiti-rest-api/api/groups.api.d.ts +0 -46
- package/typings/src/api/activiti-rest-api/api/iDMSync.api.d.ts +0 -47
- package/typings/src/api/activiti-rest-api/api/index.d.ts +0 -60
- package/typings/src/api/activiti-rest-api/api/integrationAlfrescoCloud.api.d.ts +0 -76
- package/typings/src/api/activiti-rest-api/api/integrationAlfrescoOnPremise.api.d.ts +0 -73
- package/typings/src/api/activiti-rest-api/api/integrationBox.api.d.ts +0 -79
- package/typings/src/api/activiti-rest-api/api/integrationDrive.api.d.ts +0 -44
- package/typings/src/api/activiti-rest-api/api/modelJsonBpmn.api.d.ts +0 -40
- package/typings/src/api/activiti-rest-api/api/models.api.d.ts +0 -144
- package/typings/src/api/activiti-rest-api/api/modelsBpmn.api.d.ts +0 -38
- package/typings/src/api/activiti-rest-api/api/modelsHistory.api.d.ts +0 -44
- package/typings/src/api/activiti-rest-api/api/processDefinitions.api.d.ts +0 -122
- package/typings/src/api/activiti-rest-api/api/processInstanceVariables.api.d.ts +0 -64
- package/typings/src/api/activiti-rest-api/api/processInstances.api.d.ts +0 -189
- package/typings/src/api/activiti-rest-api/api/processScopes.api.d.ts +0 -32
- package/typings/src/api/activiti-rest-api/api/report.api.d.ts +0 -50
- package/typings/src/api/activiti-rest-api/api/runtimeAppDefinitions.api.d.ts +0 -50
- package/typings/src/api/activiti-rest-api/api/runtimeAppDeployments.api.d.ts +0 -72
- package/typings/src/api/activiti-rest-api/api/scriptFiles.api.d.ts +0 -33
- package/typings/src/api/activiti-rest-api/api/submittedForms.api.d.ts +0 -58
- package/typings/src/api/activiti-rest-api/api/systemProperties.api.d.ts +0 -55
- package/typings/src/api/activiti-rest-api/api/taskActions.api.d.ts +0 -118
- package/typings/src/api/activiti-rest-api/api/taskForms.api.d.ts +0 -81
- package/typings/src/api/activiti-rest-api/api/taskVariables.api.d.ts +0 -80
- package/typings/src/api/activiti-rest-api/api/tasks.api.d.ts +0 -141
- package/typings/src/api/activiti-rest-api/api/temporary.api.d.ts +0 -50
- package/typings/src/api/activiti-rest-api/api/userFilters.api.d.ts +0 -122
- package/typings/src/api/activiti-rest-api/api/userProfile.api.d.ts +0 -74
- package/typings/src/api/activiti-rest-api/api/users.api.d.ts +0 -84
- package/typings/src/api/activiti-rest-api/model/abstractGroupRepresentation.d.ts +0 -23
- package/typings/src/api/activiti-rest-api/model/abstractUserRepresentation.d.ts +0 -26
- package/typings/src/api/activiti-rest-api/model/accountRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/addGroupCapabilitiesRepresentation.d.ts +0 -20
- package/typings/src/api/activiti-rest-api/model/alfrescoContentRepresentation.d.ts +0 -23
- package/typings/src/api/activiti-rest-api/model/alfrescoNetworkRepresenation.d.ts +0 -20
- package/typings/src/api/activiti-rest-api/model/alfrescoSiteRepresenation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/appDefinitionPublishRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/appDefinitionRepresentation.d.ts +0 -28
- package/typings/src/api/activiti-rest-api/model/appDefinitionSaveRepresentation.d.ts +0 -23
- package/typings/src/api/activiti-rest-api/model/appDefinitionUpdateResultRepresentation.d.ts +0 -27
- package/typings/src/api/activiti-rest-api/model/assigneeIdentifierRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/auditCalculatedValueRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/auditDecisionExpressionInfoRepresentation.d.ts +0 -22
- package/typings/src/api/activiti-rest-api/model/auditDecisionInfoRepresentation.d.ts +0 -23
- package/typings/src/api/activiti-rest-api/model/auditDecisionRuleInfoRepresentation.d.ts +0 -22
- package/typings/src/api/activiti-rest-api/model/auditLogEntryRepresentation.d.ts +0 -32
- package/typings/src/api/activiti-rest-api/model/auditLogFormDataRepresentation.d.ts +0 -22
- package/typings/src/api/activiti-rest-api/model/boxContent.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/bulkUserUpdateRepresentation.d.ts +0 -26
- package/typings/src/api/activiti-rest-api/model/changePasswordRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/checklistOrderRepresentation.d.ts +0 -20
- package/typings/src/api/activiti-rest-api/model/commentAuditInfo.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/completeFormRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/conditionRepresentation.d.ts +0 -28
- package/typings/src/api/activiti-rest-api/model/createEndpointBasicAuthRepresentation.d.ts +0 -23
- package/typings/src/api/activiti-rest-api/model/createProcessInstanceRepresentation.d.ts +0 -27
- package/typings/src/api/activiti-rest-api/model/createTenantRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/dataSourceConfigRepresentation.d.ts +0 -23
- package/typings/src/api/activiti-rest-api/model/dataSourceRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/endpointConfigurationRepresentation.d.ts +0 -30
- package/typings/src/api/activiti-rest-api/model/endpointRequestHeaderRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/entityAttributeScopeRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/entityVariableScopeRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/fieldValueInfo.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/file.d.ts +0 -34
- package/typings/src/api/activiti-rest-api/model/formDefinitionRepresentation.d.ts +0 -53
- package/typings/src/api/activiti-rest-api/model/formFieldRepresentation.d.ts +0 -57
- package/typings/src/api/activiti-rest-api/model/formIdentifierRepresentation.d.ts +0 -20
- package/typings/src/api/activiti-rest-api/model/formJavascriptEventRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/formOutcomeRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/formScopeRepresentation.d.ts +0 -27
- package/typings/src/api/activiti-rest-api/model/formTabRepresentation.d.ts +0 -23
- package/typings/src/api/activiti-rest-api/model/formValueRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/formVariableRepresentation.d.ts +0 -22
- package/typings/src/api/activiti-rest-api/model/globalDateFormatRepresentation.d.ts +0 -20
- package/typings/src/api/activiti-rest-api/model/googleDriveContent.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/groupCapabilityRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/identityLinkRepresentation.d.ts +0 -22
- package/typings/src/api/activiti-rest-api/model/jsonNode.d.ts +0 -54
- package/typings/src/api/activiti-rest-api/model/layoutRepresentation.d.ts +0 -22
- package/typings/src/api/activiti-rest-api/model/lightAppRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/lightGroupRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/lightTenantRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/lightUserRepresentation.d.ts +0 -26
- package/typings/src/api/activiti-rest-api/model/namedObject.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/objectNode.d.ts +0 -54
- package/typings/src/api/activiti-rest-api/model/optionRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/passwordValidationConstraints.d.ts +0 -22
- package/typings/src/api/activiti-rest-api/model/processDefinitionMetaDataRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/processDefinitionRepresentation.d.ts +0 -30
- package/typings/src/api/activiti-rest-api/model/processInstanceAuditInfoRepresentation.d.ts +0 -31
- package/typings/src/api/activiti-rest-api/model/processInstanceFilterRepresentation.d.ts +0 -25
- package/typings/src/api/activiti-rest-api/model/processInstanceFilterRequestRepresentation.d.ts +0 -25
- package/typings/src/api/activiti-rest-api/model/processInstanceQueryRepresentation.d.ts +0 -42
- package/typings/src/api/activiti-rest-api/model/processInstanceVariableRepresentation.d.ts +0 -22
- package/typings/src/api/activiti-rest-api/model/processScopeIdentifierRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/processScopeRepresentation.d.ts +0 -63
- package/typings/src/api/activiti-rest-api/model/processScopesRequestRepresentation.d.ts +0 -22
- package/typings/src/api/activiti-rest-api/model/publishIdentityInfoRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/queryVariable.d.ts +0 -39
- package/typings/src/api/activiti-rest-api/model/relatedProcessTask.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/resetPasswordRepresentation.d.ts +0 -20
- package/typings/src/api/activiti-rest-api/model/restVariable.d.ts +0 -23
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationAbstractUserRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationAccountRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoContentRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoNetworkRepresenation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoSiteRepresenation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationAppDefinitionRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationBoxContent.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationDataSourceRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationGoogleDriveContent.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationLightGroupRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationLightUserRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationProcessDefinitionRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationRelatedProcessTask.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationRuntimeDecisionTableRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationRuntimeFormRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/resultListDataRepresentationUserProcessInstanceFilterRepresentation.d.ts +0 -24
- package/typings/src/api/activiti-rest-api/model/runtimeAppDefinitionSaveRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/runtimeDecisionTableRepresentation.d.ts +0 -28
- package/typings/src/api/activiti-rest-api/model/runtimeFormRepresentation.d.ts +0 -26
- package/typings/src/api/activiti-rest-api/model/saveFormRepresentation.d.ts +0 -20
- package/typings/src/api/activiti-rest-api/model/systemPropertiesRepresentation.d.ts +0 -28
- package/typings/src/api/activiti-rest-api/model/taskAuditInfoRepresentation.d.ts +0 -32
- package/typings/src/api/activiti-rest-api/model/taskFilterRepresentation.d.ts +0 -36
- package/typings/src/api/activiti-rest-api/model/taskQueryRepresentation.d.ts +0 -48
- package/typings/src/api/activiti-rest-api/model/userAccountCredentialsRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/userActionRepresentation.d.ts +0 -22
- package/typings/src/api/activiti-rest-api/model/userFilterOrderRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/userIdentifierRepresentation.d.ts +0 -21
- package/typings/src/api/activiti-rest-api/model/userProcessInstanceFilterRepresentation.d.ts +0 -27
- package/typings/src/api/activiti-rest-api/model/validationErrorRepresentation.d.ts +0 -26
- package/typings/src/api/activiti-rest-api/model/variableMappingRepresentation.d.ts +0 -25
- package/typings/src/api/activiti-rest-api/model/variableScopeRepresentation.d.ts +0 -26
- package/typings/src/api/auth-rest-api/api/authentication.api.d.ts +0 -85
- package/typings/src/api/content-custom-api/api/classes.api.d.ts +0 -35
- package/typings/src/api/content-custom-api/api/customModel.api.d.ts +0 -181
- package/typings/src/api/content-custom-api/api/webscript.api.d.ts +0 -47
- package/typings/src/api/content-custom-api/model/dateAlfresco.d.ts +0 -36
- package/typings/src/api/content-rest-api/api/actions.api.d.ts +0 -149
- package/typings/src/api/content-rest-api/api/activities.api.d.ts +0 -41
- package/typings/src/api/content-rest-api/api/audit.api.d.ts +0 -225
- package/typings/src/api/content-rest-api/api/categories.api.d.ts +0 -207
- package/typings/src/api/content-rest-api/api/comments.api.d.ts +0 -112
- package/typings/src/api/content-rest-api/api/downloads.api.d.ts +0 -110
- package/typings/src/api/content-rest-api/api/favorites.api.d.ts +0 -346
- package/typings/src/api/content-rest-api/api/groups.api.d.ts +0 -314
- package/typings/src/api/content-rest-api/api/networks.api.d.ts +0 -58
- package/typings/src/api/content-rest-api/api/nodes.api.d.ts +0 -954
- package/typings/src/api/content-rest-api/api/people.api.d.ts +0 -266
- package/typings/src/api/content-rest-api/api/preferences.api.d.ts +0 -53
- package/typings/src/api/content-rest-api/api/probes.api.d.ts +0 -45
- package/typings/src/api/content-rest-api/api/queries.api.d.ts +0 -129
- package/typings/src/api/content-rest-api/api/ratings.api.d.ts +0 -74
- package/typings/src/api/content-rest-api/api/renditions.api.d.ts +0 -136
- package/typings/src/api/content-rest-api/api/sharedlinks.api.d.ts +0 -269
- package/typings/src/api/content-rest-api/api/sites.api.d.ts +0 -670
- package/typings/src/api/content-rest-api/api/tags.api.d.ts +0 -167
- package/typings/src/api/content-rest-api/api/trashcan.api.d.ts +0 -205
- package/typings/src/api/content-rest-api/api/types.d.ts +0 -48
- package/typings/src/api/content-rest-api/api/versions.api.d.ts +0 -253
- package/typings/src/api/content-rest-api/model/actionBodyExec.d.ts +0 -25
- package/typings/src/api/content-rest-api/model/actionDefinition.d.ts +0 -45
- package/typings/src/api/content-rest-api/model/actionDefinitionEntry.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/actionExecResult.d.ts +0 -23
- package/typings/src/api/content-rest-api/model/actionExecResultEntry.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/actionParameterDefinition.d.ts +0 -24
- package/typings/src/api/content-rest-api/model/activity.d.ts +0 -55
- package/typings/src/api/content-rest-api/model/association.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/associationEntry.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/associationInfo.d.ts +0 -20
- package/typings/src/api/content-rest-api/model/auditApp.d.ts +0 -24
- package/typings/src/api/content-rest-api/model/auditAppEntry.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/auditBodyUpdate.d.ts +0 -20
- package/typings/src/api/content-rest-api/model/capabilities.d.ts +0 -22
- package/typings/src/api/content-rest-api/model/categoryBody.d.ts +0 -20
- package/typings/src/api/content-rest-api/model/categoryEntry.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/categoryPaging.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/commentBody.d.ts +0 -20
- package/typings/src/api/content-rest-api/model/company.d.ts +0 -27
- package/typings/src/api/content-rest-api/model/constraint.d.ts +0 -35
- package/typings/src/api/content-rest-api/model/definition.d.ts +0 -24
- package/typings/src/api/content-rest-api/model/deletedNode.d.ts +0 -51
- package/typings/src/api/content-rest-api/model/deletedNodeBodyRestore.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/download.d.ts +0 -53
- package/typings/src/api/content-rest-api/model/downloadBodyCreate.d.ts +0 -20
- package/typings/src/api/content-rest-api/model/downloadEntry.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/errorError.d.ts +0 -25
- package/typings/src/api/content-rest-api/model/favorite.d.ts +0 -37
- package/typings/src/api/content-rest-api/model/favoriteBodyCreate.d.ts +0 -20
- package/typings/src/api/content-rest-api/model/favoriteSite.d.ts +0 -20
- package/typings/src/api/content-rest-api/model/favoriteSiteBodyCreate.d.ts +0 -20
- package/typings/src/api/content-rest-api/model/favoriteSiteEntry.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/group.d.ts +0 -24
- package/typings/src/api/content-rest-api/model/groupBodyCreate.d.ts +0 -22
- package/typings/src/api/content-rest-api/model/groupBodyUpdate.d.ts +0 -20
- package/typings/src/api/content-rest-api/model/groupEntry.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/groupMember.d.ts +0 -29
- package/typings/src/api/content-rest-api/model/groupMemberEntry.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/modelError.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/networkQuota.d.ts +0 -28
- package/typings/src/api/content-rest-api/model/node.d.ts +0 -49
- package/typings/src/api/content-rest-api/model/nodeAssociation.d.ts +0 -51
- package/typings/src/api/content-rest-api/model/nodeBodyCopy.d.ts +0 -26
- package/typings/src/api/content-rest-api/model/nodeBodyCreate.d.ts +0 -39
- package/typings/src/api/content-rest-api/model/nodeBodyCreateAssociation.d.ts +0 -20
- package/typings/src/api/content-rest-api/model/nodeBodyLock.d.ts +0 -34
- package/typings/src/api/content-rest-api/model/nodeBodyMove.d.ts +0 -26
- package/typings/src/api/content-rest-api/model/nodeBodyUpdate.d.ts +0 -32
- package/typings/src/api/content-rest-api/model/nodeChildAssociation.d.ts +0 -51
- package/typings/src/api/content-rest-api/model/pagination.d.ts +0 -51
- package/typings/src/api/content-rest-api/model/passwordResetBody.d.ts +0 -31
- package/typings/src/api/content-rest-api/model/pathElement.d.ts +0 -23
- package/typings/src/api/content-rest-api/model/permissionElement.d.ts +0 -29
- package/typings/src/api/content-rest-api/model/personBodyCreate.d.ts +0 -39
- package/typings/src/api/content-rest-api/model/personBodyUpdate.d.ts +0 -39
- package/typings/src/api/content-rest-api/model/personNetwork.d.ts +0 -47
- package/typings/src/api/content-rest-api/model/preference.d.ts +0 -31
- package/typings/src/api/content-rest-api/model/preferenceEntry.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/probeEntry.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/probeEntryEntry.d.ts +0 -20
- package/typings/src/api/content-rest-api/model/property.d.ts +0 -57
- package/typings/src/api/content-rest-api/model/rating.d.ts +0 -33
- package/typings/src/api/content-rest-api/model/ratingAggregate.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/ratingBody.d.ts +0 -34
- package/typings/src/api/content-rest-api/model/renditionBodyCreate.d.ts +0 -20
- package/typings/src/api/content-rest-api/model/revertBody.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/sharedLink.d.ts +0 -54
- package/typings/src/api/content-rest-api/model/sharedLinkBodyEmail.d.ts +0 -23
- package/typings/src/api/content-rest-api/model/siteContainer.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/siteContainerEntry.d.ts +0 -21
- package/typings/src/api/content-rest-api/model/siteMembershipApprovalBody.d.ts +0 -20
- package/typings/src/api/content-rest-api/model/siteMembershipRequestBodyCreate.d.ts +0 -28
- package/typings/src/api/content-rest-api/model/siteMembershipRequestBodyUpdate.d.ts +0 -20
- package/typings/src/api/content-rest-api/model/version.d.ts +0 -37
- package/typings/src/api/discovery-rest-api/api/discovery.api.d.ts +0 -35
- package/typings/src/api/gs-classification-rest-api/api/authorityClearance.api.d.ts +0 -41
- package/typings/src/api/gs-classification-rest-api/api/classificationGuides.api.d.ts +0 -194
- package/typings/src/api/gs-classification-rest-api/api/classificationReasons.api.d.ts +0 -105
- package/typings/src/api/gs-classification-rest-api/api/declassificationExemptions.api.d.ts +0 -108
- package/typings/src/api/gs-classification-rest-api/api/defaultClassificationValues.api.d.ts +0 -31
- package/typings/src/api/gs-classification-rest-api/api/nodeSecurityMarks.api.d.ts +0 -41
- package/typings/src/api/gs-classification-rest-api/api/securityControlSettings.api.d.ts +0 -42
- package/typings/src/api/gs-classification-rest-api/api/securityGroups.api.d.ts +0 -66
- package/typings/src/api/gs-classification-rest-api/api/securityMarks.api.d.ts +0 -68
- package/typings/src/api/gs-classification-rest-api/api/types.d.ts +0 -55
- package/typings/src/api/gs-classification-rest-api/model/authorityClearanceGroup.d.ts +0 -25
- package/typings/src/api/gs-classification-rest-api/model/authorityClearanceGroupEntry.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/authorityClearanceGroupPaging.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/authorityClearanceGroupPagingList.d.ts +0 -23
- package/typings/src/api/gs-classification-rest-api/model/authorityClearanceMark.d.ts +0 -23
- package/typings/src/api/gs-classification-rest-api/model/classificationGuide.d.ts +0 -26
- package/typings/src/api/gs-classification-rest-api/model/classificationGuideBody.d.ts +0 -23
- package/typings/src/api/gs-classification-rest-api/model/classificationGuideEntry.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/classificationGuideInTopic.d.ts +0 -26
- package/typings/src/api/gs-classification-rest-api/model/classificationGuidePaging.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/classificationGuidePagingList.d.ts +0 -23
- package/typings/src/api/gs-classification-rest-api/model/classificationGuides.d.ts +0 -27
- package/typings/src/api/gs-classification-rest-api/model/classificationGuidesBody.d.ts +0 -24
- package/typings/src/api/gs-classification-rest-api/model/classificationGuidesEntry.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/classificationGuidesInTopic.d.ts +0 -27
- package/typings/src/api/gs-classification-rest-api/model/classificationInformation.d.ts +0 -28
- package/typings/src/api/gs-classification-rest-api/model/classificationReason.d.ts +0 -22
- package/typings/src/api/gs-classification-rest-api/model/classificationReasonBody.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/classificationReasonEntry.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/classificationReasonsPaging.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/classificationReasonsPagingList.d.ts +0 -23
- package/typings/src/api/gs-classification-rest-api/model/combinedInstructionBody.d.ts +0 -23
- package/typings/src/api/gs-classification-rest-api/model/declassificationDate.d.ts +0 -18
- package/typings/src/api/gs-classification-rest-api/model/declassificationExemption.d.ts +0 -22
- package/typings/src/api/gs-classification-rest-api/model/declassificationExemptionBody.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/declassificationExemptionEntry.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/declassificationExemptionsPaging.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/declassificationExemptionsPagingList.d.ts +0 -23
- package/typings/src/api/gs-classification-rest-api/model/index.d.ts +0 -71
- package/typings/src/api/gs-classification-rest-api/model/instruction.d.ts +0 -26
- package/typings/src/api/gs-classification-rest-api/model/instructionBody.d.ts +0 -23
- package/typings/src/api/gs-classification-rest-api/model/instructionEntry.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/nodeSecurityMarkBody.d.ts +0 -22
- package/typings/src/api/gs-classification-rest-api/model/path.d.ts +0 -25
- package/typings/src/api/gs-classification-rest-api/model/securityControlSetting.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/securityControlSettingBody.d.ts +0 -20
- package/typings/src/api/gs-classification-rest-api/model/securityControlSettingEntry.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/securityGroup.d.ts +0 -24
- package/typings/src/api/gs-classification-rest-api/model/securityGroupBody.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/securityGroupEntry.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/securityGroupPaging.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/securityGroupPagingList.d.ts +0 -23
- package/typings/src/api/gs-classification-rest-api/model/securityMark.d.ts +0 -22
- package/typings/src/api/gs-classification-rest-api/model/securityMarkBody.d.ts +0 -20
- package/typings/src/api/gs-classification-rest-api/model/securityMarkEntry.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/securityMarkInformation.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/securityMarkInformationBody.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/securityMarkPaging.d.ts +0 -21
- package/typings/src/api/gs-classification-rest-api/model/securityMarkPagingList.d.ts +0 -23
- package/typings/src/api/gs-classification-rest-api/model/securityMarks.d.ts +0 -20
- package/typings/src/api/gs-classification-rest-api/model/securityMarksBody.d.ts +0 -20
- package/typings/src/api/gs-classification-rest-api/model/topicBody.d.ts +0 -23
- package/typings/src/api/gs-classification-rest-api/model/topicPagingList.d.ts +0 -23
- package/typings/src/api/gs-core-rest-api/api/filePlans.api.d.ts +0 -146
- package/typings/src/api/gs-core-rest-api/api/files.api.d.ts +0 -39
- package/typings/src/api/gs-core-rest-api/api/gsSites.api.d.ts +0 -75
- package/typings/src/api/gs-core-rest-api/api/recordCategories.api.d.ts +0 -207
- package/typings/src/api/gs-core-rest-api/api/recordFolders.api.d.ts +0 -196
- package/typings/src/api/gs-core-rest-api/api/records.api.d.ts +0 -115
- package/typings/src/api/gs-core-rest-api/api/transferContainers.api.d.ts +0 -77
- package/typings/src/api/gs-core-rest-api/api/transfers.api.d.ts +0 -48
- package/typings/src/api/gs-core-rest-api/api/types.d.ts +0 -54
- package/typings/src/api/gs-core-rest-api/api/unfiledContainers.api.d.ts +0 -205
- package/typings/src/api/gs-core-rest-api/api/unfiledRecordFolders.api.d.ts +0 -211
- package/typings/src/api/gs-core-rest-api/model/filePlan.d.ts +0 -38
- package/typings/src/api/gs-core-rest-api/model/filePlanBodyUpdate.d.ts +0 -22
- package/typings/src/api/gs-core-rest-api/model/filePlanComponentBodyUpdate.d.ts +0 -29
- package/typings/src/api/gs-core-rest-api/model/rMNodeBodyCreate.d.ts +0 -30
- package/typings/src/api/gs-core-rest-api/model/rMNodeBodyCreateWithRelativePath.d.ts +0 -31
- package/typings/src/api/gs-core-rest-api/model/rMSite.d.ts +0 -46
- package/typings/src/api/gs-core-rest-api/model/rMSiteBodyCreate.d.ts +0 -29
- package/typings/src/api/gs-core-rest-api/model/rMSiteBodyUpdate.d.ts +0 -21
- package/typings/src/api/gs-core-rest-api/model/rMSiteEntry.d.ts +0 -21
- package/typings/src/api/gs-core-rest-api/model/record.d.ts +0 -44
- package/typings/src/api/gs-core-rest-api/model/recordCategory.d.ts +0 -42
- package/typings/src/api/gs-core-rest-api/model/recordCategoryChild.d.ts +0 -48
- package/typings/src/api/gs-core-rest-api/model/recordCategoryChildPagingList.d.ts +0 -25
- package/typings/src/api/gs-core-rest-api/model/recordCategoryPagingList.d.ts +0 -25
- package/typings/src/api/gs-core-rest-api/model/recordFolder.d.ts +0 -42
- package/typings/src/api/gs-core-rest-api/model/recordFolderAssociationPagingList.d.ts +0 -25
- package/typings/src/api/gs-core-rest-api/model/recordFolderChildAssociation.d.ts +0 -46
- package/typings/src/api/gs-core-rest-api/model/requestBodyFile.d.ts +0 -20
- package/typings/src/api/gs-core-rest-api/model/rootCategoryBodyCreate.d.ts +0 -30
- package/typings/src/api/gs-core-rest-api/model/transfer.d.ts +0 -46
- package/typings/src/api/gs-core-rest-api/model/transferChild.d.ts +0 -44
- package/typings/src/api/gs-core-rest-api/model/transferChildAssociation.d.ts +0 -46
- package/typings/src/api/gs-core-rest-api/model/transferContainer.d.ts +0 -36
- package/typings/src/api/gs-core-rest-api/model/transferContainerAssociationPagingList.d.ts +0 -25
- package/typings/src/api/gs-core-rest-api/model/transferContainerBodyUpdate.d.ts +0 -28
- package/typings/src/api/gs-core-rest-api/model/transferContainerChild.d.ts +0 -46
- package/typings/src/api/gs-core-rest-api/model/transferContainerChildAssociation.d.ts +0 -48
- package/typings/src/api/gs-core-rest-api/model/unfiledContainer.d.ts +0 -38
- package/typings/src/api/gs-core-rest-api/model/unfiledContainerAssociationPagingList.d.ts +0 -25
- package/typings/src/api/gs-core-rest-api/model/unfiledContainerChild.d.ts +0 -40
- package/typings/src/api/gs-core-rest-api/model/unfiledContainerChildAssociation.d.ts +0 -42
- package/typings/src/api/gs-core-rest-api/model/unfiledRecordContainerBodyUpdate.d.ts +0 -28
- package/typings/src/api/gs-core-rest-api/model/unfiledRecordFolder.d.ts +0 -40
- package/typings/src/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPagingList.d.ts +0 -25
- package/typings/src/api/gs-core-rest-api/model/unfiledRecordFolderBodyUpdate.d.ts +0 -28
- package/typings/src/api/gs-core-rest-api/model/unfiledRecordFolderChild.d.ts +0 -40
- package/typings/src/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociation.d.ts +0 -42
- package/typings/src/api/model-rest-api/api/aspects.api.d.ts +0 -138
- package/typings/src/api/model-rest-api/api/types.api.d.ts +0 -142
- package/typings/src/api/model-rest-api/model/abstractClass.d.ts +0 -33
- package/typings/src/api/model-rest-api/model/abstractClassAssociation.d.ts +0 -27
- package/typings/src/api/model-rest-api/model/abstractClassAssociationSource.d.ts +0 -24
- package/typings/src/api/model-rest-api/model/aspectPagingList.d.ts +0 -23
- package/typings/src/api/model-rest-api/model/model.d.ts +0 -24
- package/typings/src/api/search-rest-api/api/search.api.d.ts +0 -331
- package/typings/src/api/search-rest-api/model/genericBucket.d.ts +0 -45
- package/typings/src/api/search-rest-api/model/genericBucketBucketInfo.d.ts +0 -38
- package/typings/src/api/search-rest-api/model/genericFacetResponse.d.ts +0 -32
- package/typings/src/api/search-rest-api/model/genericMetric.d.ts +0 -31
- package/typings/src/api/search-rest-api/model/requestDefaults.d.ts +0 -60
- package/typings/src/api/search-rest-api/model/requestFacetField.d.ts +0 -65
- package/typings/src/api/search-rest-api/model/requestFacetFields.d.ts +0 -31
- package/typings/src/api/search-rest-api/model/requestFacetIntervals.d.ts +0 -32
- package/typings/src/api/search-rest-api/model/requestFacetIntervalsIntervals.d.ts +0 -32
- package/typings/src/api/search-rest-api/model/requestFacetQueries.d.ts +0 -23
- package/typings/src/api/search-rest-api/model/requestFacetQueriesInner.d.ts +0 -27
- package/typings/src/api/search-rest-api/model/requestFacetSet.d.ts +0 -42
- package/typings/src/api/search-rest-api/model/requestFields.d.ts +0 -25
- package/typings/src/api/search-rest-api/model/requestFilterQueries.d.ts +0 -23
- package/typings/src/api/search-rest-api/model/requestFilterQueriesInner.d.ts +0 -29
- package/typings/src/api/search-rest-api/model/requestHighlight.d.ts +0 -57
- package/typings/src/api/search-rest-api/model/requestHighlightFields.d.ts +0 -28
- package/typings/src/api/search-rest-api/model/requestInclude.d.ts +0 -29
- package/typings/src/api/search-rest-api/model/requestLimits.d.ts +0 -30
- package/typings/src/api/search-rest-api/model/requestLocalization.d.ts +0 -30
- package/typings/src/api/search-rest-api/model/requestPagination.d.ts +0 -27
- package/typings/src/api/search-rest-api/model/requestPivot.d.ts +0 -27
- package/typings/src/api/search-rest-api/model/requestQuery.d.ts +0 -42
- package/typings/src/api/search-rest-api/model/requestRange.d.ts +0 -58
- package/typings/src/api/search-rest-api/model/requestScope.d.ts +0 -35
- package/typings/src/api/search-rest-api/model/requestSortDefinition.d.ts +0 -23
- package/typings/src/api/search-rest-api/model/requestSortDefinitionInner.d.ts +0 -39
- package/typings/src/api/search-rest-api/model/requestSpellcheck.d.ts +0 -25
- package/typings/src/api/search-rest-api/model/requestStats.d.ts +0 -86
- package/typings/src/api/search-rest-api/model/requestTemplates.d.ts +0 -28
- package/typings/src/api/search-rest-api/model/requestTemplatesInner.d.ts +0 -27
- package/typings/src/api/search-rest-api/model/responseConsistency.d.ts +0 -26
- package/typings/src/api/search-rest-api/model/resultBuckets.d.ts +0 -28
- package/typings/src/api/search-rest-api/model/resultBucketsBuckets.d.ts +0 -35
- package/typings/src/api/search-rest-api/model/resultNode.d.ts +0 -50
- package/typings/src/api/search-rest-api/model/resultSetContext.d.ts +0 -51
- package/typings/src/api/search-rest-api/model/resultSetContextFacetQueries.d.ts +0 -25
- package/typings/src/api/search-rest-api/model/resultSetContextSpellcheck.d.ts +0 -31
- package/typings/src/api/search-rest-api/model/resultSetPagingList.d.ts +0 -25
- package/typings/src/api/search-rest-api/model/searchEntry.d.ts +0 -29
- package/typings/src/api/search-rest-api/model/searchEntryHighlight.d.ts +0 -27
- package/typings/src/api/search-rest-api/model/searchRequest.d.ts +0 -61
- package/typings/src/assert.d.ts +0 -17
- package/typings/src/authentication/contentAuth.d.ts +0 -68
- package/typings/src/authentication/oauth2Auth.d.ts +0 -126
- package/typings/src/authentication/processAuth.d.ts +0 -62
- package/typings/src/contentClient.d.ts +0 -33
- package/typings/src/processClient.d.ts +0 -32
- package/typings/src/superagentHttpClient.d.ts +0 -68
- package/typings/src/utils/param-to-string.d.ts +0 -22
- package/typings/src/utils/path-matcher.d.ts +0 -19
- /package/{typings/src/alfrescoApiConfig.d.ts → alfrescoApiConfig.d.ts} +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/api/base.api.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/index.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/alfrescoEndpointRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/appDefinition.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/appDeploymentRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/appModelDefinition.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/boxUserAccountCredentialsRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/commentRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/decisionAuditRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/decisionTaskRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/endpointBasicAuthRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/formRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/formSaveRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/groupRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/historicProcessInstanceQueryRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/historicTaskInstanceQueryRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/imageUploadRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/index.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/modelRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/processContentRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/processInstanceRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/relatedContentRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/resultListDataRepresentationAlfrescoEndpointRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/resultListDataRepresentationAppDeploymentRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/resultListDataRepresentationCommentRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/resultListDataRepresentationDecisionAuditRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/resultListDataRepresentationDecisionTaskRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/resultListDataRepresentationFormRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/resultListDataRepresentationModelRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/resultListDataRepresentationProcessContentRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/resultListDataRepresentationProcessInstanceRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/resultListDataRepresentationRelatedContentRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/resultListDataRepresentationSubmittedFormRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/resultListDataRepresentationTaskRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/resultListDataRepresentationUserTaskFilterRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/submittedFormRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/syncLogEntryRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/taskFilterRequestRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/taskRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/taskUpdateRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/tenantEvent.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/tenantRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/userRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/userRepresentationGroup.d.ts +0 -0
- /package/{typings/src/api → api}/activiti-rest-api/model/userTaskFilterRepresentation.d.ts +0 -0
- /package/{typings/src/api → api}/auth-rest-api/api/base.api.d.ts +0 -0
- /package/{typings/src/api → api}/auth-rest-api/api/index.d.ts +0 -0
- /package/{typings/src/api → api}/auth-rest-api/index.d.ts +0 -0
- /package/{typings/src/api → api}/auth-rest-api/model/index.d.ts +0 -0
- /package/{typings/src/api → api}/auth-rest-api/model/ticket.d.ts +0 -0
- /package/{typings/src/api → api}/auth-rest-api/model/ticketBody.d.ts +0 -0
- /package/{typings/src/api → api}/auth-rest-api/model/ticketEntry.d.ts +0 -0
- /package/{typings/src/api → api}/auth-rest-api/model/validTicket.d.ts +0 -0
- /package/{typings/src/api → api}/auth-rest-api/model/validTicketEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-custom-api/api/base.api.d.ts +0 -0
- /package/{typings/src/api → api}/content-custom-api/api/content.api.d.ts +0 -0
- /package/{typings/src/api → api}/content-custom-api/api/index.d.ts +0 -0
- /package/{typings/src/api → api}/content-custom-api/api/upload.api.d.ts +0 -0
- /package/{typings/src/api → api}/content-custom-api/index.d.ts +0 -0
- /package/{typings/src/api → api}/content-custom-api/model/classDescription.d.ts +0 -0
- /package/{typings/src/api → api}/content-custom-api/model/classPropertyDescription.d.ts +0 -0
- /package/{typings/src/api → api}/content-custom-api/model/index.d.ts +0 -0
- /package/{typings/src/api → api}/content-custom-api/model/pagination.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/api/base.api.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/api/index.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/index.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/CategoryLinkBody.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/actionDefinitionList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/actionDefinitionListList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/activityEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/activityPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/activityPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/associationBody.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/auditAppPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/auditAppPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/auditEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/auditEntryEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/auditEntryPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/auditEntryPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/category.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/categoryPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/childAssociation.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/childAssociationBody.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/childAssociationEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/childAssociationInfo.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/clientBody.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/comment.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/commentEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/commentPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/commentPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/contentInfo.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/deletedNodeEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/deletedNodesPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/deletedNodesPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/directAccessUrl.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/directAccessUrlEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/favoriteEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/favoritePaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/favoritePagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/groupMemberPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/groupMemberPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/groupMembershipBodyCreate.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/groupPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/groupPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/index.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/nodeAssociationEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/nodeAssociationPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/nodeAssociationPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/nodeChildAssociationEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/nodeChildAssociationPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/nodeChildAssociationPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/nodeEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/nodePaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/nodePagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/pathInfo.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/permissionsBody.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/permissionsInfo.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/person.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/personEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/personNetworkEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/personNetworkPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/personNetworkPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/personPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/personPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/preferencePaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/preferencePagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/ratingEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/ratingPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/ratingPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/rendition.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/renditionEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/renditionPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/renditionPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/sharedLinkBodyCreate.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/sharedLinkEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/sharedLinkPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/sharedLinkPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/site.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteBodyCreate.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteBodyUpdate.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteContainerPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteContainerPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteEntryRelations.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteGroup.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteGroupEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteGroupPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteGroupPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteMember.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteMemberEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteMemberPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteMemberPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteMembershipBodyCreate.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteMembershipBodyUpdate.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteMembershipRejectionBody.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteMembershipRequest.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteMembershipRequestEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteMembershipRequestPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteMembershipRequestPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteMembershipRequestWithPerson.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteMembershipRequestWithPersonEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteMembershipRequestWithPersonPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteMembershipRequestWithPersonPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/sitePaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/sitePagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteRole.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteRoleEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteRolePaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/siteRolePagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/tag.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/tagBody.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/tagEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/tagPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/tagPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/userInfo.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/versionEntry.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/versionPaging.d.ts +0 -0
- /package/{typings/src/api → api}/content-rest-api/model/versionPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/discovery-rest-api/api/base.api.d.ts +0 -0
- /package/{typings/src/api → api}/discovery-rest-api/api/index.d.ts +0 -0
- /package/{typings/src/api → api}/discovery-rest-api/index.d.ts +0 -0
- /package/{typings/src/api → api}/discovery-rest-api/model/discoveryEntry.d.ts +0 -0
- /package/{typings/src/api → api}/discovery-rest-api/model/entitlementsInfo.d.ts +0 -0
- /package/{typings/src/api → api}/discovery-rest-api/model/index.d.ts +0 -0
- /package/{typings/src/api → api}/discovery-rest-api/model/licenseInfo.d.ts +0 -0
- /package/{typings/src/api → api}/discovery-rest-api/model/moduleInfo.d.ts +0 -0
- /package/{typings/src/api → api}/discovery-rest-api/model/repositoryEntry.d.ts +0 -0
- /package/{typings/src/api → api}/discovery-rest-api/model/repositoryInfo.d.ts +0 -0
- /package/{typings/src/api → api}/discovery-rest-api/model/statusInfo.d.ts +0 -0
- /package/{typings/src/api → api}/discovery-rest-api/model/versionInfo.d.ts +0 -0
- /package/{typings/src/api → api}/gs-classification-rest-api/api/base.api.d.ts +0 -0
- /package/{typings/src/api → api}/gs-classification-rest-api/api/index.d.ts +0 -0
- /package/{typings/src/api → api}/gs-classification-rest-api/index.d.ts +0 -0
- /package/{typings/src/api → api}/gs-classification-rest-api/model/subtopicPaging.d.ts +0 -0
- /package/{typings/src/api → api}/gs-classification-rest-api/model/topic.d.ts +0 -0
- /package/{typings/src/api → api}/gs-classification-rest-api/model/topicEntry.d.ts +0 -0
- /package/{typings/src/api → api}/gs-classification-rest-api/model/topicPaging.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/api/base.api.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/api/index.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/index.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/filePlanEntry.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/index.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/recordCategoryChildEntry.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/recordCategoryChildPaging.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/recordCategoryEntry.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/recordCategoryPaging.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/recordEntry.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/recordFolderAssociationPaging.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/recordFolderChildAssociationEntry.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/recordFolderEntry.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/transferAssociationPaging.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/transferAssociationPagingList.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/transferChildAssociationEntry.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/transferContainerAssociationPaging.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/transferContainerChildAssociationEntry.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/transferContainerEntry.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/transferEntry.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/unfiledContainerAssociationPaging.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/unfiledContainerChildAssociationEntry.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/unfiledContainerEntry.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/unfiledRecordFolderAssociationPaging.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/unfiledRecordFolderChildAssociationEntry.d.ts +0 -0
- /package/{typings/src/api → api}/gs-core-rest-api/model/unfiledRecordFolderEntry.d.ts +0 -0
- /package/{typings/src/api → api}/model-rest-api/api/base.api.d.ts +0 -0
- /package/{typings/src/api → api}/model-rest-api/api/index.d.ts +0 -0
- /package/{typings/src/api → api}/model-rest-api/index.d.ts +0 -0
- /package/{typings/src/api → api}/model-rest-api/model/aspect.d.ts +0 -0
- /package/{typings/src/api → api}/model-rest-api/model/aspectEntry.d.ts +0 -0
- /package/{typings/src/api → api}/model-rest-api/model/aspectPaging.d.ts +0 -0
- /package/{typings/src/api → api}/model-rest-api/model/index.d.ts +0 -0
- /package/{typings/src/api → api}/model-rest-api/model/type.d.ts +0 -0
- /package/{typings/src/api → api}/model-rest-api/model/typeEntry.d.ts +0 -0
- /package/{typings/src/api → api}/model-rest-api/model/typePaging.d.ts +0 -0
- /package/{typings/src/api → api}/model-rest-api/model/typePagingList.d.ts +0 -0
- /package/{typings/src/api → api}/search-rest-api/api/index.d.ts +0 -0
- /package/{typings/src/api → api}/search-rest-api/index.d.ts +0 -0
- /package/{typings/src/api → api}/search-rest-api/model/index.d.ts +0 -0
- /package/{typings/src/api → api}/search-rest-api/model/resultSetPaging.d.ts +0 -0
- /package/{typings/src/api → api}/search-rest-api/model/resultSetRowEntry.d.ts +0 -0
- /package/{typings/src/api-clients → api-clients}/api-client.d.ts +0 -0
- /package/{typings/src/api-clients → api-clients}/http-client.interface.d.ts +0 -0
- /package/{typings/src/authentication → authentication}/authentication.d.ts +0 -0
- /package/{typings/src/authentication → authentication}/basicAuth.d.ts +0 -0
- /package/{typings/src/authentication → authentication}/oauth2.d.ts +0 -0
- /package/{typings/src/authentication → authentication}/oauth2Config.d.ts +0 -0
- /package/{typings/src/storage.d.ts → storage.d.ts} +0 -0
- /package/{typings/src/to-deprecate → to-deprecate}/alfresco-api-type.d.ts +0 -0
- /package/{typings/src/utils → utils}/index.d.ts +0 -0
- /package/{typings/src/utils → utils}/is-browser.d.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"alfresco-js-api.mjs","sources":["../../../../lib/js-api/src/api/content-rest-api/model/pagination.ts","../../../../lib/js-api/src/api/content-rest-api/model/actionDefinitionListList.ts","../../../../lib/js-api/src/api/content-rest-api/model/actionDefinitionList.ts","../../../../lib/js-api/src/api-clients/api-client.ts","../../../../lib/js-api/src/api/content-custom-api/api/base.api.ts","../../../../lib/js-api/src/api/content-custom-api/api/webscript.api.ts","../../../../lib/js-api/src/api/content-custom-api/model/classDescription.ts","../../../../lib/js-api/src/api/content-custom-api/api/classes.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/base.api.ts","../../../../lib/js-api/src/assert.ts","../../../../lib/js-api/src/utils/is-browser.ts","../../../../lib/js-api/src/utils/param-to-string.ts","../../../../lib/js-api/src/utils/index.ts","../../../../lib/js-api/src/superagentHttpClient.ts","../../../../lib/js-api/src/storage.ts","../../../../lib/js-api/src/alfrescoApiClient.ts","../../../../lib/js-api/src/api/content-rest-api/api/nodes.api.ts","../../../../lib/js-api/src/api/content-custom-api/api/upload.api.ts","../../../../lib/js-api/src/api/content-custom-api/api/content.api.ts","../../../../lib/js-api/src/api/content-custom-api/api/customModel.api.ts","../../../../lib/js-api/src/api/content-custom-api/api/index.ts","../../../../lib/js-api/src/api/content-custom-api/model/dateAlfresco.ts","../../../../lib/js-api/src/api/content-custom-api/model/classPropertyDescription.ts","../../../../lib/js-api/src/api/content-custom-api/model/index.ts","../../../../lib/js-api/src/api/content-custom-api/index.ts","../../../../lib/js-api/src/api/content-rest-api/model/activity.ts","../../../../lib/js-api/src/api/content-rest-api/model/activityEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/activityPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/activityPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/associationBody.ts","../../../../lib/js-api/src/api/content-rest-api/model/auditAppPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/auditAppPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/userInfo.ts","../../../../lib/js-api/src/api/content-rest-api/model/auditEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/auditEntryEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/auditEntryPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/auditEntryPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/childAssociation.ts","../../../../lib/js-api/src/api/content-rest-api/model/childAssociationBody.ts","../../../../lib/js-api/src/api/content-rest-api/model/childAssociationEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/childAssociationInfo.ts","../../../../lib/js-api/src/api/content-rest-api/model/clientBody.ts","../../../../lib/js-api/src/api/content-rest-api/model/category.ts","../../../../lib/js-api/src/api/content-rest-api/model/categoryEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/CategoryLinkBody.ts","../../../../lib/js-api/src/api/content-rest-api/model/categoryPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/categoryPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/person.ts","../../../../lib/js-api/src/api/content-rest-api/model/comment.ts","../../../../lib/js-api/src/api/content-rest-api/model/commentEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/commentPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/commentPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/contentInfo.ts","../../../../lib/js-api/src/api/content-rest-api/model/pathInfo.ts","../../../../lib/js-api/src/api/content-rest-api/model/permissionElement.ts","../../../../lib/js-api/src/api/content-rest-api/model/permissionsInfo.ts","../../../../lib/js-api/src/api/content-rest-api/model/deletedNode.ts","../../../../lib/js-api/src/api/content-rest-api/model/deletedNodeEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/deletedNodesPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/deletedNodesPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/directAccessUrl.ts","../../../../lib/js-api/src/api/content-rest-api/model/directAccessUrlEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/favorite.ts","../../../../lib/js-api/src/api/content-rest-api/model/favoriteEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/favoritePagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/favoritePaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/groupMemberPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/groupMemberPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/groupMembershipBodyCreate.ts","../../../../lib/js-api/src/api/content-rest-api/model/groupPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/groupPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/node.ts","../../../../lib/js-api/src/api/content-rest-api/model/nodeAssociation.ts","../../../../lib/js-api/src/api/content-rest-api/model/nodeAssociationEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/nodeAssociationPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/nodeAssociationPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/permissionsBody.ts","../../../../lib/js-api/src/api/content-rest-api/model/nodeBodyCreate.ts","../../../../lib/js-api/src/api/content-rest-api/model/nodeBodyUpdate.ts","../../../../lib/js-api/src/api/content-rest-api/model/nodeChildAssociation.ts","../../../../lib/js-api/src/api/content-rest-api/model/nodeChildAssociationEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/nodeChildAssociationPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/nodeChildAssociationPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/nodeEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/nodePagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/nodePaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/personEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/personNetwork.ts","../../../../lib/js-api/src/api/content-rest-api/model/personNetworkEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/personNetworkPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/personNetworkPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/personPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/personPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/preferencePagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/preferencePaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/rating.ts","../../../../lib/js-api/src/api/content-rest-api/model/ratingEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/ratingPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/ratingPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/rendition.ts","../../../../lib/js-api/src/api/content-rest-api/model/renditionEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/renditionPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/renditionPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/sharedLink.ts","../../../../lib/js-api/src/api/content-rest-api/model/sharedLinkBodyCreate.ts","../../../../lib/js-api/src/api/content-rest-api/model/sharedLinkEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/sharedLinkPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/sharedLinkPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/site.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteBodyCreate.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteBodyUpdate.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteContainerPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteContainerPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteMember.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteMemberEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteMemberPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteMemberPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteEntryRelations.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteGroup.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteGroupEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteGroupPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteGroupPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteMembershipBodyCreate.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteMembershipBodyUpdate.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteMembershipRejectionBody.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteMembershipRequest.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteMembershipRequestEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteMembershipRequestPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteMembershipRequestPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteMembershipRequestWithPerson.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteMembershipRequestWithPersonEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteMembershipRequestWithPersonPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteMembershipRequestWithPersonPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/sitePagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/sitePaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteRole.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteRoleEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteRolePagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/siteRolePaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/tag.ts","../../../../lib/js-api/src/api/content-rest-api/model/tagBody.ts","../../../../lib/js-api/src/api/content-rest-api/model/tagEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/tagPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/tagPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/version.ts","../../../../lib/js-api/src/api/content-rest-api/model/versionEntry.ts","../../../../lib/js-api/src/api/content-rest-api/model/versionPagingList.ts","../../../../lib/js-api/src/api/content-rest-api/model/versionPaging.ts","../../../../lib/js-api/src/api/content-rest-api/model/index.ts","../../../../lib/js-api/src/api/content-rest-api/api/actions.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/activities.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/audit.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/categories.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/comments.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/downloads.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/favorites.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/groups.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/networks.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/people.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/preferences.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/probes.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/queries.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/ratings.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/renditions.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/sharedlinks.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/sites.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/tags.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/trashcan.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/versions.api.ts","../../../../lib/js-api/src/api/content-rest-api/api/index.ts","../../../../lib/js-api/src/api/content-rest-api/index.ts","../../../../lib/js-api/src/api/discovery-rest-api/model/entitlementsInfo.ts","../../../../lib/js-api/src/api/discovery-rest-api/model/licenseInfo.ts","../../../../lib/js-api/src/api/discovery-rest-api/model/moduleInfo.ts","../../../../lib/js-api/src/api/discovery-rest-api/model/statusInfo.ts","../../../../lib/js-api/src/api/discovery-rest-api/model/versionInfo.ts","../../../../lib/js-api/src/api/discovery-rest-api/model/repositoryInfo.ts","../../../../lib/js-api/src/api/discovery-rest-api/model/repositoryEntry.ts","../../../../lib/js-api/src/api/discovery-rest-api/model/discoveryEntry.ts","../../../../lib/js-api/src/api/discovery-rest-api/api/base.api.ts","../../../../lib/js-api/src/api/discovery-rest-api/api/discovery.api.ts","../../../../lib/js-api/src/api/discovery-rest-api/api/index.ts","../../../../lib/js-api/src/api/discovery-rest-api/model/index.ts","../../../../lib/js-api/src/api/discovery-rest-api/index.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/model/topic.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/model/topicEntry.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/model/topicPagingList.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/model/subtopicPaging.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/model/topicPaging.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/model/index.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/api/base.api.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/api/classificationGuides.api.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/api/classificationReasons.api.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/api/declassificationExemptions.api.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/api/defaultClassificationValues.api.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/api/securityControlSettings.api.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/api/securityMarks.api.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/api/securityGroups.api.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/api/nodeSecurityMarks.api.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/api/authorityClearance.api.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/api/index.ts","../../../../lib/js-api/src/api/gs-classification-rest-api/index.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/filePlan.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/filePlanEntry.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/recordCategory.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/recordCategoryEntry.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/recordCategoryPagingList.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/recordCategoryPaging.ts","../../../../lib/js-api/src/api/gs-core-rest-api/api/base.api.ts","../../../../lib/js-api/src/api/gs-core-rest-api/api/filePlans.api.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/record.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/recordEntry.ts","../../../../lib/js-api/src/api/gs-core-rest-api/api/files.api.ts","../../../../lib/js-api/src/api/gs-core-rest-api/api/gsSites.api.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/recordCategoryChild.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/recordCategoryChildEntry.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/recordCategoryChildPagingList.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/recordCategoryChildPaging.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/recordFolder.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/recordFolderChildAssociation.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/recordFolderChildAssociationEntry.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/recordFolderAssociationPagingList.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/recordFolderAssociationPaging.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/recordFolderEntry.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/transfer.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/transferChildAssociation.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/transferChildAssociationEntry.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/transferAssociationPagingList.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/transferAssociationPaging.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/transferChild.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/transferContainer.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/transferContainerChildAssociation.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/transferContainerChildAssociationEntry.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/transferContainerAssociationPagingList.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/transferContainerAssociationPaging.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/transferContainerChild.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/transferContainerEntry.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/transferEntry.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/unfiledContainer.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/unfiledContainerChildAssociation.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/unfiledContainerChildAssociationEntry.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/unfiledContainerAssociationPagingList.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/unfiledContainerAssociationPaging.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/unfiledContainerChild.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/unfiledContainerEntry.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/unfiledRecordFolder.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociation.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/unfiledRecordFolderChildAssociationEntry.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPagingList.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/unfiledRecordFolderAssociationPaging.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/unfiledRecordFolderChild.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/unfiledRecordFolderEntry.ts","../../../../lib/js-api/src/api/gs-core-rest-api/model/index.ts","../../../../lib/js-api/src/api/gs-core-rest-api/api/recordCategories.api.ts","../../../../lib/js-api/src/api/gs-core-rest-api/api/recordFolders.api.ts","../../../../lib/js-api/src/api/gs-core-rest-api/api/records.api.ts","../../../../lib/js-api/src/api/gs-core-rest-api/api/transferContainers.api.ts","../../../../lib/js-api/src/api/gs-core-rest-api/api/transfers.api.ts","../../../../lib/js-api/src/api/gs-core-rest-api/api/unfiledContainers.api.ts","../../../../lib/js-api/src/api/gs-core-rest-api/api/unfiledRecordFolders.api.ts","../../../../lib/js-api/src/api/gs-core-rest-api/api/index.ts","../../../../lib/js-api/src/api/gs-core-rest-api/index.ts","../../../../lib/js-api/src/api/auth-rest-api/model/ticket.ts","../../../../lib/js-api/src/api/auth-rest-api/model/ticketEntry.ts","../../../../lib/js-api/src/api/auth-rest-api/model/validTicket.ts","../../../../lib/js-api/src/api/auth-rest-api/model/validTicketEntry.ts","../../../../lib/js-api/src/api/auth-rest-api/api/base.api.ts","../../../../lib/js-api/src/api/auth-rest-api/api/authentication.api.ts","../../../../lib/js-api/src/api/auth-rest-api/api/index.ts","../../../../lib/js-api/src/api/auth-rest-api/model/ticketBody.ts","../../../../lib/js-api/src/api/auth-rest-api/model/index.ts","../../../../lib/js-api/src/api/auth-rest-api/index.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/base.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/about.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/accountIntegration.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/alfrescoEndpointRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/appModelDefinition.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/appDefinition.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/appDeploymentRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/boxUserAccountCredentialsRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/commentRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/decisionAuditRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/decisionTaskRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/endpointBasicAuthRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/formRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/formSaveRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/userRepresentationGroup.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/groupRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/historicProcessInstanceQueryRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/historicTaskInstanceQueryRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/imageUploadRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/modelRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/relatedContentRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/processContentRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/processInstanceRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/resultListDataRepresentationAlfrescoEndpointRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/resultListDataRepresentationAppDeploymentRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/resultListDataRepresentationCommentRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/resultListDataRepresentationDecisionAuditRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/resultListDataRepresentationDecisionTaskRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/resultListDataRepresentationFormRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/resultListDataRepresentationModelRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/resultListDataRepresentationProcessContentRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/resultListDataRepresentationProcessInstanceRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/resultListDataRepresentationRelatedContentRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/submittedFormRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/resultListDataRepresentationSubmittedFormRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/taskRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/resultListDataRepresentationTaskRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/taskFilterRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/userTaskFilterRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/resultListDataRepresentationUserTaskFilterRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/syncLogEntryRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/taskFilterRequestRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/taskQueryRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/taskUpdateRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/tenantEvent.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/tenantRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/userRepresentation.ts","../../../../lib/js-api/src/api/activiti-rest-api/model/index.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/adminEndpoints.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/adminGroups.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/adminTenants.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/adminUsers.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/appDefinitions.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/checklists.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/comments.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/content.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/dataSources.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/decisionAudits.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/decisionTables.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/endpoints.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/formModels.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/groups.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/iDMSync.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/integrationAlfrescoCloud.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/integrationAlfrescoOnPremise.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/integrationBox.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/integrationDrive.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/models.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/modelsBpmn.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/modelsHistory.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/processDefinitions.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/processInstances.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/processInstanceVariables.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/processScopes.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/runtimeAppDefinitions.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/runtimeAppDeployments.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/scriptFiles.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/submittedForms.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/systemProperties.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/taskActions.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/taskForms.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/tasks.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/taskVariables.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/userFilters.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/userProfile.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/users.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/report.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/modelJsonBpmn.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/temporary.api.ts","../../../../lib/js-api/src/api/activiti-rest-api/api/index.ts","../../../../lib/js-api/src/api/activiti-rest-api/index.ts","../../../../lib/js-api/src/api/search-rest-api/model/resultNode.ts","../../../../lib/js-api/src/api/search-rest-api/model/resultSetRowEntry.ts","../../../../lib/js-api/src/api/search-rest-api/model/resultSetPagingList.ts","../../../../lib/js-api/src/api/search-rest-api/model/resultSetPaging.ts","../../../../lib/js-api/src/api/search-rest-api/api/search.api.ts","../../../../lib/js-api/src/api/search-rest-api/api/index.ts","../../../../lib/js-api/src/api/search-rest-api/model/index.ts","../../../../lib/js-api/src/api/search-rest-api/index.ts","../../../../lib/js-api/src/api/model-rest-api/model/abstractClass.ts","../../../../lib/js-api/src/api/model-rest-api/model/aspect.ts","../../../../lib/js-api/src/api/model-rest-api/model/aspectEntry.ts","../../../../lib/js-api/src/api/model-rest-api/model/aspectPagingList.ts","../../../../lib/js-api/src/api/model-rest-api/model/aspectPaging.ts","../../../../lib/js-api/src/api/model-rest-api/api/base.api.ts","../../../../lib/js-api/src/api/model-rest-api/api/aspects.api.ts","../../../../lib/js-api/src/api/model-rest-api/model/type.ts","../../../../lib/js-api/src/api/model-rest-api/model/typeEntry.ts","../../../../lib/js-api/src/api/model-rest-api/model/typePagingList.ts","../../../../lib/js-api/src/api/model-rest-api/model/typePaging.ts","../../../../lib/js-api/src/api/model-rest-api/api/types.api.ts","../../../../lib/js-api/src/api/model-rest-api/api/index.ts","../../../../lib/js-api/src/api/model-rest-api/model/index.ts","../../../../lib/js-api/src/api/model-rest-api/index.ts","../../../../lib/js-api/src/authentication/contentAuth.ts","../../../../lib/js-api/src/authentication/processAuth.ts","../../../../lib/js-api/src/utils/path-matcher.ts","../../../../lib/js-api/src/authentication/oauth2Auth.ts","../../../../lib/js-api/src/contentClient.ts","../../../../lib/js-api/src/processClient.ts","../../../../lib/js-api/src/alfrescoApiConfig.ts","../../../../lib/js-api/src/alfrescoApi.ts","../../../../lib/js-api/src/index.ts","../../../../lib/js-api/src/alfresco-js-api.ts"],"sourcesContent":["/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class Pagination {\n /**\n * The number of objects in the entries array.\n */\n count?: number;\n /**\n * A boolean value which is **true** if there are more entities in the collection\n * beyond those in this response. A true value means a request with a larger value\n * for the **skipCount** or the **maxItems** parameter will return more entities.\n */\n hasMoreItems?: boolean;\n /**\n * An integer describing the total number of entities in the collection.\n * The API might not be able to determine this value,\n * in which case this property will not be present.\n */\n totalItems?: number;\n /**\n * An integer describing how many entities exist in the collection before\n * those included in this list. If there was no **skipCount** parameter then the\n * default value is 0.\n */\n skipCount?: number;\n /**\n * The value of the **maxItems** parameter used to generate this list.\n * If there was no **maxItems** parameter then the default value is 100.\n */\n maxItems?: number;\n\n constructor(input?: Partial<Pagination>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ActionDefinition } from './actionDefinition';\nimport { Pagination } from './pagination';\n\nexport class ActionDefinitionListList {\n pagination?: Pagination;\n entries?: ActionDefinition[];\n\n constructor(input?: Partial<ActionDefinitionListList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ActionDefinitionListList } from './actionDefinitionListList';\n\nexport class ActionDefinitionList {\n list?: ActionDefinitionListList;\n\n constructor(input?: ActionDefinitionList) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new ActionDefinitionListList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AlfrescoApiType } from '../to-deprecate/alfresco-api-type';\nimport { LegacyHttpClient, RequestOptions } from './http-client.interface';\n\nexport abstract class ApiClient {\n protected alfrescoApi: AlfrescoApiType;\n protected httpClient: LegacyHttpClient;\n\n get apiClient(): LegacyHttpClient {\n return this.httpClient;\n }\n\n constructor(legacyApi?: AlfrescoApiType);\n constructor(httpClient: LegacyHttpClient);\n constructor(httpClient?: AlfrescoApiType & LegacyHttpClient) {\n if (httpClient?.__type === 'legacy-client') {\n // TODO: remove legacyApi?: AlfrescoApi option and clean up this code. BREAKING CHANGE!\n this.alfrescoApi = httpClient;\n } else {\n this.httpClient = httpClient;\n }\n }\n\n post<T = any>(options: RequestOptions): Promise<T> {\n return this.apiClient.post<T>(options);\n }\n\n put<T = any>(options: RequestOptions): Promise<T> {\n return this.apiClient.put<T>(options);\n }\n\n get<T = any>(options: RequestOptions): Promise<T> {\n return this.apiClient.get<T>(options);\n }\n\n delete<T = void>(options: RequestOptions): Promise<T> {\n return this.apiClient.delete(options);\n }\n\n errorMessage(param: string, methodName: string) {\n return `Missing param ${param} in ${methodName}`;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ApiClient } from '../../../api-clients/api-client';\nimport { LegacyHttpClient, RequestOptions } from '../../../api-clients/http-client.interface';\nimport { AlfrescoApiType, LegacyTicketApi } from '../../../to-deprecate/alfresco-api-type';\n\nexport abstract class BaseApi extends ApiClient {\n protected declare httpClient: LegacyHttpClient & LegacyTicketApi;\n\n /** @deprecated */\n constructor(legacyApi?: AlfrescoApiType);\n constructor(httpClient: LegacyHttpClient & LegacyTicketApi);\n constructor(httpClient?: AlfrescoApiType | (LegacyHttpClient & LegacyTicketApi)) {\n super(httpClient as AlfrescoApiType);\n }\n\n // TODO: Find a way to remove this hack from the legacy version :/\n get apiClientPrivate(): LegacyHttpClient & LegacyTicketApi {\n return this.httpClient ?? this.alfrescoApi.contentPrivateClient;\n }\n\n override get apiClient(): LegacyHttpClient & LegacyTicketApi {\n return this.httpClient ?? this.alfrescoApi.contentClient;\n }\n\n override post<T = any>(options: RequestOptions): Promise<T> {\n return this.apiClientPrivate.post<T>(options);\n }\n\n override put<T = any>(options: RequestOptions): Promise<T> {\n return this.apiClientPrivate.put<T>(options);\n }\n\n override get<T = any>(options: RequestOptions): Promise<T> {\n return this.apiClientPrivate.get<T>(options);\n }\n\n override delete<T = void>(options: RequestOptions): Promise<T> {\n return this.apiClientPrivate.delete(options);\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\n\n/**\n * Constructs a new WebscriptApi.\n */\nexport class WebscriptApi extends BaseApi {\n allowedMethod: string[] = ['GET', 'POST', 'PUT', 'DELETE'];\n\n /**\n * Call a get on a Web Scripts see https://wiki.alfresco.com/wiki/Web_Scripts for more details about Web Scripts\n * Url syntax definition : http[s]://<host>:<port>/[<contextPath>/]/<servicePath>[/<scriptPath>][?<scriptArgs>]\n * example: http://localhost:8081/share/service/mytasks?priority=1\n *\n * @param httpMethod GET, POST, PUT and DELETE\n * @param scriptPath script path\n * @param scriptArgs script arguments\n * @param contextRoot default value alfresco\n * @param servicePath default value service\n * @param postBody post body\n * @returns A promise that is resolved return the webScript data and {error} if rejected.\n */\n executeWebScript(\n httpMethod: string,\n scriptPath: string,\n scriptArgs?: any,\n contextRoot?: string,\n servicePath?: string,\n postBody?: any\n ): Promise<any> {\n contextRoot = contextRoot || 'alfresco';\n servicePath = servicePath || 'service';\n postBody = postBody || null;\n\n if (!httpMethod || this.allowedMethod.indexOf(httpMethod) === -1) {\n throw new Error('method allowed value GET, POST, PUT and DELETE');\n }\n\n if (!scriptPath) {\n throw new Error('Missing param scriptPath in executeWebScript');\n }\n\n const contentTypes = ['application/json'];\n const accepts = ['application/json', 'text/html'];\n\n return this.apiClient.callApi(\n '/' + servicePath + '/' + scriptPath,\n httpMethod,\n {},\n scriptArgs,\n {},\n {},\n postBody,\n contentTypes,\n accepts,\n null,\n contextRoot\n );\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ClassPropertyDescription } from './classPropertyDescription';\n\nexport class ClassDescription {\n\n associations?: any;\n childassociations?: any;\n defaultAspects?: any;\n description?: string;\n isAspect?: boolean;\n isContainer?: boolean;\n name?: string;\n parent?: any;\n properties?: {\n [key: string]: ClassPropertyDescription;\n };\n title?: string;\n url?: string;\n\n constructor(input?: Partial<ClassDescription>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ClassDescription } from '../model/classDescription';\nimport { BaseApi } from './base.api';\n\n/**\n * Constructs a new ClassesApi.\n */\nexport class ClassesApi extends BaseApi {\n /**\n * Gets the class information for the specified className.\n *\n * @param className The identifier of the class.\n * @returns a Promise, with data of type ClassDescription\n */\n getClass(className: string): Promise<ClassDescription> {\n // verify the required parameter 'className' is set\n if (className === undefined || className === null) {\n throw new Error(`Missing param 'className' in getClass`);\n }\n\n return this.get<ClassDescription>({\n path: '/api/classes/{className}',\n pathParams: { className },\n returnType: ClassDescription,\n contextRoot: this.apiClientPrivate.config.contextRoot + '/s'\n });\n }\n\n getSubclasses(className: string): Promise<ClassDescription[]> {\n // verify the required parameter 'className' is set\n if (className === undefined || className === null) {\n throw new Error(`Missing param 'className'`);\n }\n\n return this.get({\n path: `/api/classes/{className}/subclasses`,\n pathParams: { className },\n returnType: ClassDescription,\n contextRoot: this.apiClientPrivate.config.contextRoot + '/s'\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ApiClient } from '../../../api-clients/api-client';\nimport { LegacyHttpClient } from '../../../api-clients/http-client.interface';\n\nexport abstract class BaseApi extends ApiClient {\n override get apiClient(): LegacyHttpClient {\n return this.httpClient ?? this.alfrescoApi.contentClient;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/**\n * Throw exception if param is not defined\n *\n * @param param param\n * @param name param name\n */\nexport function throwIfNotDefined(param: any, name: string) {\n if (param === null || param === undefined) {\n throw new Error(`Missing param '${name}'`);\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport const isBrowser = (): boolean => typeof window !== 'undefined' && typeof window.document !== 'undefined';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/**\n * Returns a string representation for an actual parameter.\n *\n * @param param The actual parameter.\n * @returns The string representation of <code>param</code>.\n */\nexport function paramToString(param: any): string {\n if (param === undefined || param === null) {\n return '';\n }\n if (param instanceof Date) {\n return param.toJSON();\n }\n return param.toString();\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './is-browser';\nexport * from './param-to-string';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport ee, { Emitter } from 'event-emitter';\nimport superagent, { Response, SuperAgentRequest } from 'superagent';\nimport { Authentication } from './authentication/authentication';\nimport { RequestOptions, HttpClient, SecurityOptions, Emitters } from './api-clients/http-client.interface';\nimport { Oauth2 } from './authentication/oauth2';\nimport { BasicAuth } from './authentication/basicAuth';\nimport { isBrowser, paramToString } from './utils';\n\ndeclare const Blob: any;\ndeclare const Buffer: any;\n\nconst isProgressEvent = (event: ProgressEvent | unknown): event is ProgressEvent => (event as ProgressEvent)?.lengthComputable;\n\nexport class SuperagentHttpClient implements HttpClient {\n /**\n * The default HTTP timeout for all API calls.\n */\n timeout: number | { deadline?: number; response?: number } = undefined;\n\n post<T = any>(url: string, options: RequestOptions, securityOptions: SecurityOptions, emitters: Emitters): Promise<T> {\n return this.request<T>(url, { ...options, httpMethod: 'POST' }, securityOptions, emitters);\n }\n\n put<T = any>(url: string, options: RequestOptions, securityOptions: SecurityOptions, emitters: Emitters): Promise<T> {\n return this.request<T>(url, { ...options, httpMethod: 'PUT' }, securityOptions, emitters);\n }\n\n get<T = any>(url: string, options: RequestOptions, securityOptions: SecurityOptions, emitters: Emitters): Promise<T> {\n return this.request<T>(url, { ...options, httpMethod: 'GET' }, securityOptions, emitters);\n }\n\n delete<T = void>(url: string, options: RequestOptions, securityOptions: SecurityOptions, emitters: Emitters): Promise<T> {\n return this.request<T>(url, { ...options, httpMethod: 'DELETE' }, securityOptions, emitters);\n }\n\n request<T = any>(url: string, options: RequestOptions, securityOptions: SecurityOptions, emitters: Emitters): Promise<T> {\n const { httpMethod, queryParams, headerParams, formParams, bodyParam, contentType, accept, responseType, returnType } = options;\n const { eventEmitter, apiClientEmitter } = emitters;\n\n let request = this.buildRequest(\n httpMethod,\n url,\n queryParams,\n headerParams,\n formParams,\n bodyParam,\n contentType,\n accept,\n responseType,\n eventEmitter,\n returnType,\n securityOptions\n );\n\n if (returnType === 'Binary') {\n request = request.buffer(true).parse(superagent.parse['application/octet-stream']);\n }\n\n const promise: any = new Promise((resolve, reject) => {\n request.on('abort', () => {\n eventEmitter.emit('abort');\n });\n request.end((error: any, response: Response) => {\n if (error) {\n apiClientEmitter.emit('error', error);\n eventEmitter.emit('error', error);\n\n if (error.status === 401) {\n apiClientEmitter.emit('unauthorized');\n eventEmitter.emit('unauthorized');\n }\n\n if (response?.text) {\n error = error || {};\n reject(Object.assign(error, { message: response.text }));\n } else {\n // eslint-disable-next-line prefer-promise-reject-errors\n reject({ error });\n }\n } else {\n if (securityOptions.isBpmRequest) {\n const hasSetCookie = Object.prototype.hasOwnProperty.call(response.header, 'set-cookie');\n if (response.header && hasSetCookie) {\n // mutate the passed value from AlfrescoApiClient class for backward compatibility\n securityOptions.authentications.cookie = response.header['set-cookie'][0];\n }\n }\n let data = {};\n if (response.type === 'text/html') {\n data = SuperagentHttpClient.deserialize(response);\n } else {\n data = SuperagentHttpClient.deserialize(response, returnType);\n }\n\n eventEmitter.emit('success', data);\n resolve(data);\n }\n });\n });\n\n promise.abort = function() {\n request.abort();\n return this;\n };\n\n return promise;\n }\n\n private buildRequest(\n httpMethod: string,\n url: string,\n queryParams: { [key: string]: any },\n headerParams: { [key: string]: any },\n formParams: { [key: string]: any },\n // eslint-disable-next-line @typescript-eslint/ban-types\n bodyParam: string | Object,\n contentType: string,\n accept: string,\n responseType: string,\n eventEmitter: ee.Emitter,\n returnType: string,\n securityOptions: SecurityOptions\n ) {\n const request = superagent(httpMethod, url);\n\n const { isBpmRequest, authentications, defaultHeaders = {}, enableCsrf, withCredentials = false } = securityOptions;\n\n // apply authentications\n this.applyAuthToRequest(request, authentications);\n\n // set query parameters\n request.query(SuperagentHttpClient.normalizeParams(queryParams));\n\n // set header parameters\n request.set(defaultHeaders).set(SuperagentHttpClient.normalizeParams(headerParams));\n\n if (isBpmRequest && enableCsrf) {\n this.setCsrfToken(request);\n }\n\n if (withCredentials) {\n request.withCredentials();\n }\n\n // add cookie for activiti\n if (isBpmRequest) {\n request.withCredentials();\n if (securityOptions.authentications.cookie) {\n if (!isBrowser()) {\n request.set('Cookie', securityOptions.authentications.cookie);\n }\n }\n }\n\n // set request timeout\n request.timeout(this.timeout);\n\n if (contentType && contentType !== 'multipart/form-data') {\n request.type(contentType);\n } else if (!(request as any).header['Content-Type'] && contentType !== 'multipart/form-data') {\n request.type('application/json');\n }\n\n if (contentType === 'application/x-www-form-urlencoded') {\n request.send(SuperagentHttpClient.normalizeParams(formParams)).on('progress', (event: any) => {\n this.progress(event, eventEmitter);\n });\n } else if (contentType === 'multipart/form-data') {\n const _formParams = SuperagentHttpClient.normalizeParams(formParams);\n for (const key in _formParams) {\n if (Object.prototype.hasOwnProperty.call(_formParams, key)) {\n if (SuperagentHttpClient.isFileParam(_formParams[key])) {\n // file field\n request.attach(key, _formParams[key]).on('progress', (event: ProgressEvent) => {\n // jshint ignore:line\n this.progress(event, eventEmitter);\n });\n } else {\n request.field(key, _formParams[key]).on('progress', (event: ProgressEvent) => {\n // jshint ignore:line\n this.progress(event, eventEmitter);\n });\n }\n }\n }\n } else if (bodyParam) {\n request.send(bodyParam).on('progress', (event: any) => {\n this.progress(event, eventEmitter);\n });\n }\n\n if (accept) {\n request.accept(accept);\n }\n\n if (returnType === 'blob' || returnType === 'Blob' || responseType === 'blob' || responseType === 'Blob') {\n request.responseType('blob');\n } else if (returnType === 'String') {\n request.responseType('string');\n }\n\n return request;\n }\n\n setCsrfToken(request: SuperAgentRequest): void {\n const token = SuperagentHttpClient.createCSRFToken();\n request.set('X-CSRF-TOKEN', token);\n\n if (!isBrowser()) {\n request.set('Cookie', 'CSRF-TOKEN=' + token + ';path=/');\n }\n\n try {\n document.cookie = 'CSRF-TOKEN=' + token + ';path=/';\n } catch (err) {\n /* continue regardless of error */\n }\n }\n\n /**\n * Applies authentication headers to the request.\n *\n * @param request The request object created by a <code>superagent()</code> call.\n * @param authentications authentications\n */\n private applyAuthToRequest(request: SuperAgentRequest, authentications: Authentication) {\n if (authentications) {\n switch (authentications.type) {\n case 'basic': {\n const basicAuth: BasicAuth = authentications.basicAuth;\n if (basicAuth.username || basicAuth.password) {\n request.auth(basicAuth.username || '', basicAuth.password || '');\n }\n break;\n }\n case 'activiti': {\n if (authentications.basicAuth.ticket) {\n request.set({ Authorization: authentications.basicAuth.ticket });\n }\n break;\n }\n case 'oauth2': {\n const oauth2: Oauth2 = authentications.oauth2;\n if (oauth2.accessToken) {\n request.set({ Authorization: 'Bearer ' + oauth2.accessToken });\n }\n break;\n }\n default:\n throw new Error('Unknown authentication type: ' + authentications.type);\n }\n }\n }\n\n private progress(event: ProgressEvent | unknown, eventEmitter: Emitter): void {\n if (isProgressEvent(event)) {\n const percent = Math.round((event.loaded / event.total) * 100);\n\n const progress = {\n total: event.total,\n loaded: event.loaded,\n percent\n };\n\n eventEmitter.emit('progress', progress);\n }\n }\n\n private static createCSRFToken(a?: any): string {\n return a\n ? (a ^ ((Math.random() * 16) >> (a / 4))).toString(16)\n : ([1e16] + (1e16).toString()).replace(/[01]/g, SuperagentHttpClient.createCSRFToken);\n }\n\n /**\n * Deserializes an HTTP response body into a value of the specified type.\n *\n * @param response A SuperAgent response object.\n * @param returnType The type to return. Pass a string for simple types\n * or the constructor function for a complex type. Pass an array containing the type name to return an array of that type. To\n * return an object, pass an object with one property whose name is the key type and whose value is the corresponding value type:\n * all properties on <code>data<code> will be converted to this type.\n * @returns A value of the specified type.\n */\n private static deserialize(response: Response, returnType?: any): any {\n if (response === null) {\n return null;\n }\n\n let data = response.body;\n\n if (data === null) {\n data = response.text;\n }\n\n if (returnType) {\n if (returnType === 'blob' && isBrowser()) {\n data = new Blob([data], { type: response.header['content-type'] });\n } else if (returnType === 'blob' && !isBrowser()) {\n data = new Buffer.from(data, 'binary');\n } else if (Array.isArray(data)) {\n data = data.map((element) => new returnType(element));\n } else {\n data = new returnType(data);\n }\n }\n\n return data;\n }\n\n /**\n * Normalizes parameter values:\n * <ul>\n * <li>remove nils</li>\n * <li>keep files and arrays</li>\n * <li>format to string with `paramToString` for other cases</li>\n * </ul>\n *\n * @param params The parameters as object properties.\n * @returns normalized parameters.\n */\n private static normalizeParams(params: { [key: string]: any }): { [key: string]: any } {\n const newParams: { [key: string]: any } = {};\n\n for (const key in params) {\n if (Object.prototype.hasOwnProperty.call(params, key) && params[key] !== undefined && params[key] !== null) {\n const value = params[key];\n if (SuperagentHttpClient.isFileParam(value) || Array.isArray(value)) {\n newParams[key] = value;\n } else {\n newParams[key] = paramToString(value);\n }\n }\n }\n return newParams;\n }\n\n /**\n * Checks whether the given parameter value represents file-like content.\n *\n * @param param The parameter to check.\n * @returns <code>true</code> if <code>param</code> represents a file.\n */\n private static isFileParam(param: any): boolean {\n // Buffer in Node.js\n if (typeof Buffer === 'function' && (param instanceof Buffer || param.path)) {\n return true;\n }\n // Blob in browser\n if (typeof Blob === 'function' && param instanceof Blob) {\n return true;\n }\n // File in browser (it seems File object is also instance of Blob, but keep this for safe)\n if (typeof File === 'function' && param instanceof File) {\n return true;\n }\n // Safari fix\n if (typeof File === 'object' && param instanceof File) {\n return true;\n }\n\n return false;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class Storage {\n\n private static instance: Storage;\n\n _storage: any;\n prefix: string;\n\n private constructor() {\n if (this.supportsStorage()) {\n this._storage = window.localStorage;\n }\n }\n\n public static getInstance(){\n if(!Storage.instance){\n Storage.instance = new Storage();\n }\n return Storage.instance;\n }\n\n supportsStorage() {\n try {\n return 'localStorage' in window && window.localStorage !== null;\n } catch (e) {\n return false;\n }\n }\n\n setDomainPrefix(prefix: any) {\n this.prefix = prefix ? prefix + '_' : '';\n }\n\n setStorage(storage: any) {\n this._storage = storage;\n }\n\n setItem(key: string, value: any) {\n if (this.supportsStorage()) {\n this._storage.setItem(this.prefix + key, value);\n }\n }\n\n removeItem(key: string) {\n if (this.supportsStorage()) {\n this._storage.removeItem(this.prefix + key);\n }\n }\n\n getItem(key: string) {\n if (this.supportsStorage()) {\n return this._storage.getItem(this.prefix + key);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport ee from 'event-emitter';\nimport { AlfrescoApiConfig } from './alfrescoApiConfig';\nimport { Authentication } from './authentication/authentication';\nimport { SuperagentHttpClient } from './superagentHttpClient';\nimport { Emitters, HttpClient, LegacyHttpClient, RequestOptions, SecurityOptions } from './api-clients/http-client.interface';\nimport { paramToString } from './utils';\nimport { Storage } from './storage';\n\ndeclare const Buffer: any;\n\nexport type AlfrescoApiClientPromise<T = any> = Promise<T> & {\n on: ee.EmitterMethod;\n off: ee.EmitterMethod;\n once: ee.EmitterMethod;\n emit: (type: string, ...args: any[]) => void;\n abort?: () => void;\n};\n\n/**\n * Builds a string representation of an array-type actual parameter, according to the given collection format.\n *\n * @param param An array parameter.\n * @param collectionFormat The array element separator strategy.\n * @returns A string representation of the supplied collection, using the specified delimiter. Returns\n * <code>param</code> as is if <code>collectionFormat</code> is <code>multi</code>.\n */\nexport function buildCollectionParam(param: string[], collectionFormat: string): string | any[] {\n if (!param) {\n return null;\n }\n\n switch (collectionFormat) {\n case 'csv':\n return param.map(paramToString).join(',');\n case 'ssv':\n return param.map(paramToString).join(' ');\n case 'tsv':\n return param.map(paramToString).join('\\t');\n case 'pipes':\n return param.map(paramToString).join('|');\n case 'multi':\n // return the array directly as SuperAgent will handle it as expected\n return param.map(paramToString);\n default:\n throw new Error('Unknown collection format: ' + collectionFormat);\n }\n}\n\nexport class AlfrescoApiClient implements ee.Emitter, LegacyHttpClient {\n on: ee.EmitterMethod;\n off: ee.EmitterMethod;\n once: ee.EmitterMethod;\n emit: (type: string, ...args: any[]) => void;\n\n storage: Storage;\n host: string;\n className: string;\n config: AlfrescoApiConfig;\n url: string;\n /**\n * The base URL against which to resolve every API call's (relative) path.\n */\n basePath = '';\n\n /**\n * The authentication methods to be included for all API calls.\n */\n authentications: Authentication = {\n basicAuth: {\n ticket: ''\n },\n type: 'basic'\n };\n /**\n * The default HTTP headers to be included for all API calls.\n */\n defaultHeaders = {};\n\n /**\n * The default HTTP timeout for all API calls.\n */\n timeout: number | { deadline?: number; response?: number } = undefined;\n\n contentTypes = {\n JSON: ['application/json']\n };\n\n httpClient: HttpClient;\n\n constructor(host?: string, httpClient?: HttpClient) {\n this.host = host;\n\n this.storage = Storage.getInstance();\n\n // fallback for backward compatibility\n this.httpClient = httpClient || new SuperagentHttpClient();\n\n ee(this);\n }\n\n request<T = any>(options: RequestOptions): Promise<T> {\n return this.buildRequestCall(this.basePath, options, this.httpClient.request.bind(this.httpClient));\n }\n\n post<T = any>(options: RequestOptions): AlfrescoApiClientPromise<T> {\n const url = this.getCallApiUrl(options);\n return this.buildRequestCall(url, options, this.httpClient.post.bind(this.httpClient));\n }\n\n put<T = any>(options: RequestOptions): AlfrescoApiClientPromise<T> {\n const url = this.getCallApiUrl(options);\n return this.buildRequestCall(url, options, this.httpClient.put.bind(this.httpClient));\n }\n\n get<T = any>(options: RequestOptions): AlfrescoApiClientPromise<T> {\n const url = this.getCallApiUrl(options);\n return this.buildRequestCall(url, options, this.httpClient.get.bind(this.httpClient));\n }\n\n delete<T = void>(options: RequestOptions): AlfrescoApiClientPromise<T> {\n const url = this.getCallApiUrl(options);\n return this.buildRequestCall<T>(url, options, this.httpClient.delete.bind(this.httpClient));\n }\n\n callApi(\n path: string,\n httpMethod: string,\n pathParams?: any,\n queryParams?: any,\n headerParams?: any,\n formParams?: any,\n bodyParam?: any,\n contentTypes?: string[],\n accepts?: string[],\n returnType?: any,\n contextRoot?: string,\n responseType?: string,\n url?: string\n ): AlfrescoApiClientPromise<any> {\n const callApiUrl = url ?? this.getCallApiUrl({ contextRoot, path, pathParams });\n\n const options: RequestOptions = {\n path,\n httpMethod,\n pathParams,\n queryParams,\n headerParams,\n formParams,\n bodyParam,\n contentTypes,\n accepts,\n returnType,\n contextRoot,\n responseType,\n url\n };\n\n return this.buildRequestCall(callApiUrl, options, this.httpClient.request.bind(this.httpClient));\n }\n\n callCustomApi(\n path: string,\n httpMethod: string,\n pathParams?: any,\n queryParams?: any,\n headerParams?: any,\n formParams?: any,\n bodyParam?: any,\n contentTypes?: string[],\n accepts?: string[],\n returnType?: any,\n contextRoot?: string,\n responseType?: string\n ): AlfrescoApiClientPromise<any> {\n const customApiUrl = AlfrescoApiClient.buildUrl(path, '', pathParams);\n const options: RequestOptions = {\n path,\n httpMethod,\n pathParams,\n queryParams,\n headerParams,\n formParams,\n bodyParam,\n contentTypes,\n accepts,\n returnType,\n contextRoot,\n responseType\n };\n\n return this.buildRequestCall(customApiUrl, options, this.httpClient.request.bind(this.httpClient));\n }\n\n isCsrfEnabled(): boolean {\n if (this.config) {\n return !this.config.disableCsrf;\n } else {\n return true;\n }\n }\n\n isBpmRequest(): boolean {\n return this.className === 'ProcessAuth' || this.className === 'ProcessClient';\n }\n\n basicAuth(username: string, password: string): string {\n const str = username + ':' + password;\n\n let base64;\n\n if (typeof Buffer === 'function') {\n base64 = Buffer.from(str, 'binary').toString('base64');\n } else {\n base64 = btoa(str);\n }\n\n return 'Basic ' + base64;\n }\n\n isWithCredentials(): boolean {\n return !!this.config?.withCredentials;\n }\n\n getAlfTicket(ticket: string): string {\n const ticketParam = this.isWithCredentials() ? '&ticket=' : '&alf_ticket=';\n\n if (ticket) {\n return ticketParam + ticket;\n } else if (this.config.ticketEcm) {\n return ticketParam + this.config.ticketEcm;\n } else if (this.storage.getItem('ticket-ECM')) {\n return ticketParam + this.storage.getItem('ticket-ECM');\n }\n\n return '';\n }\n\n /**\n * Builds full URL by appending the given path to the base URL and replacing path parameter place-holders\n * with parameter values\n */\n private static buildUrl(basePath: string, path: string, pathParams: any): string {\n if (path && path !== '' && !path.match(/^\\//)) {\n path = '/' + path;\n }\n const url = basePath + path;\n\n return AlfrescoApiClient.addParamsToUrl(url, pathParams);\n }\n\n private static addParamsToUrl(path: string, pathParams: any) {\n return path.replace(/\\{([\\w-]+)}/g, (fullMatch, key) => {\n let value;\n\n if (Object.prototype.hasOwnProperty.call(pathParams, key)) {\n value = paramToString(pathParams[key]);\n } else {\n value = fullMatch;\n }\n\n return encodeURIComponent(value);\n });\n }\n\n private getCallApiUrl({ contextRoot, path, pathParams }: { contextRoot?: string; path: string; pathParams?: any }): string {\n const basePath = contextRoot ? `${this.host}/${contextRoot}` : this.basePath;\n\n return AlfrescoApiClient.buildUrl(basePath, path, pathParams);\n }\n\n private buildRequestCall<T = any>(\n url: string,\n options: RequestOptions,\n httpCall: (url: string, options: RequestOptions, security: SecurityOptions, emitters: Emitters) => Promise<T>\n ): AlfrescoApiClientPromise<T> {\n const security = this.getSecurityOptions();\n const emitters = this.getEventEmitters();\n const httpRequestOptions = this.getRequestOptionsWithAcceptAndContentType(options);\n const promise = httpCall(url, httpRequestOptions, security, emitters);\n\n return this.addPromiseListeners(promise, emitters.eventEmitter);\n }\n\n private getSecurityOptions(): SecurityOptions {\n return {\n isBpmRequest: this.isBpmRequest(),\n enableCsrf: this.isCsrfEnabled(),\n withCredentials: this.isWithCredentials(),\n authentications: this.authentications,\n defaultHeaders: this.defaultHeaders\n };\n }\n\n private getEventEmitters(): Emitters {\n const apiClientEmitter = {\n on: this.on.bind(this),\n off: this.off.bind(this),\n once: this.once.bind(this),\n emit: this.emit.bind(this)\n };\n\n return {\n apiClientEmitter,\n eventEmitter: ee({})\n };\n }\n\n private getRequestOptionsWithAcceptAndContentType(options: RequestOptions): RequestOptions {\n const contentType = AlfrescoApiClient.jsonPreferredMime(options.contentTypes);\n const accept = AlfrescoApiClient.jsonPreferredMime(options.accepts);\n\n return {\n ...options,\n contentType,\n accept\n };\n }\n\n /**\n * Chooses a content type from the given array, with JSON preferred; i.e. return JSON if included, otherwise return the first.\n *\n * @param contentTypes content types\n * @returns The chosen content type, preferring JSON.\n */\n private static jsonPreferredMime(contentTypes: readonly string[]): string {\n if (!contentTypes?.length) {\n return 'application/json';\n }\n\n for (const item of contentTypes) {\n if (AlfrescoApiClient.isJsonMime(item)) {\n return item;\n }\n }\n return contentTypes[0];\n }\n\n /**\n * Checks whether the given content type represents JSON.<br>\n *\n * JSON content type examples:<br>\n * <ul>\n * <li>application/json</li>\n * <li>application/json; charset=UTF8</li>\n * <li>APPLICATION/JSON</li>\n * </ul>\n *\n * @param contentType The MIME content type to check.\n * @returns <code>true</code> if <code>contentType</code> represents JSON, otherwise <code>false</code>.\n */\n private static isJsonMime(contentType: string): boolean {\n return Boolean(contentType?.match(/^application\\/json(;.*)?$/i));\n }\n\n private addPromiseListeners<T = any>(promise: Promise<T>, eventEmitter: ee.Emitter): AlfrescoApiClientPromise<T> {\n return Object.assign(promise, {\n on() {\n // eslint-disable-next-line prefer-spread,prefer-rest-params\n eventEmitter.on.apply(eventEmitter, arguments);\n return this;\n },\n once() {\n // eslint-disable-next-line prefer-spread,prefer-rest-params\n eventEmitter.once.apply(eventEmitter, arguments);\n return this;\n },\n emit() {\n // eslint-disable-next-line prefer-spread,prefer-rest-params\n eventEmitter.emit.apply(eventEmitter, arguments);\n return this;\n },\n off() {\n // eslint-disable-next-line prefer-spread,prefer-rest-params\n eventEmitter.off.apply(eventEmitter, arguments);\n return this;\n }\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n AssociationBody,\n AssociationEntry,\n ChildAssociationBody,\n ChildAssociationEntry,\n DirectAccessUrlEntry,\n NodeAssociationPaging,\n NodeBodyCopy,\n NodeBodyCreate,\n NodeBodyLock,\n NodeBodyMove,\n NodeBodyUpdate,\n NodeChildAssociationPaging,\n NodeEntry\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentPagingQuery } from './types';\n\nexport type NodesIncludeQuery = {\n /**\n * Returns additional information about the node. The following optional fields can be requested:\n * - allowableOperations\n * - association\n * - isLink\n * - isFavorite\n * - isLocked\n * - path\n * - permissions\n * - definition\n */\n include?: string[];\n\n /**\n * A list of field names.\n *\n * You can use this parameter to restrict the fields\n * returned within a response if, for example, you want to save on overall bandwidth.\n *\n * The list applies to a returned individual\n * entity or entries within a collection.\n *\n * If the API method also supports the **include**\n * parameter, then the fields specified in the **include**\n * parameter are returned in addition to those specified in the **fields** parameter.\n */\n fields?: string[];\n};\n\nexport interface CreateNodeOpts extends NodesIncludeQuery {\n [key: string]: any;\n // If true, then a name clash will cause an attempt to auto rename by finding a unique name using an integer suffix.\n autoRename?: boolean;\n // If true, then created node will be version 1.0 MAJOR. If false, then created node will be version 0.1 MINOR.\n majorVersion?: boolean;\n // If true, then created node will be versioned. If false, then created node will be unversioned and auto-versioning disabled.\n versioningEnabled?: boolean;\n}\n\n/**\n * Nodes service.\n */\nexport class NodesApi extends BaseApi {\n /**\n * Copy a node\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Copies the node **nodeId** to the parent folder node **targetParentId**. You specify the **targetParentId** in the request body.\n *\n * The new node has the same name as the source node unless you specify a new **name** in the request body.\n *\n * If the source **nodeId** is a folder, then all of its children are also copied.\n *\n * If the source **nodeId** is a file, it's properties, aspects and tags are copied, it's ratings, comments and locks are not.\n *\n * @param nodeId The identifier of a node.\n * @param nodeBodyCopy The targetParentId and, optionally, a new name which should include the file extension.\n * @param opts Optional parameters\n * @returns Promise<NodeEntry>\n */\n copyNode(nodeId: string, nodeBodyCopy: NodeBodyCopy, opts?: NodesIncludeQuery): Promise<NodeEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(nodeBodyCopy, 'nodeBodyCopy');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/nodes/{nodeId}/copy',\n pathParams,\n queryParams,\n bodyParam: nodeBodyCopy,\n returnType: NodeEntry\n });\n }\n\n /**\n * Create node association\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a source node.\n * @param associationBodyCreate The target node id and assoc type.\n * @param opts Optional parameters\n * @param opts.fields A list of field names.\n * You can use this parameter to restrict the fields\n * returned within a response if, for example, you want to save on overall bandwidth.\n * The list applies to a returned individual entity or entries within a collection.\n * If the API method also supports the **include** parameter, then the fields specified in the **include**\n * parameter are returned in addition to those specified in the **fields** parameter.\n * @returns Promise<AssociationEntry>\n */\n createAssociation(nodeId: string, associationBodyCreate: AssociationBody, opts?: { fields?: string[] }): Promise<AssociationEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(associationBodyCreate, 'associationBodyCreate');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/nodes/{nodeId}/targets',\n pathParams,\n queryParams,\n bodyParam: associationBodyCreate\n });\n }\n\n /**\n * Create a node\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a node. You can also use one of these well-known aliases:\n * -my-\n * -shared-\n * -root-\n * @param nodeBodyCreate The node information to create.\n * @param opts Optional parameters\n * @param opts.autoRename If true, then a name clash will cause an attempt to auto rename by finding a unique name using an integer suffix.\n * @param opts.include Returns additional information about the node. The following optional fields can be requested:\n * - allowableOperations\n * - association\n * - isLink\n * - isFavorite\n * - isLocked\n * - path\n * - permissions\n * - definition\n * @param opts.fields A list of field names. You can use this parameter to restrict the fields\n * returned within a response if, for example, you want to save on overall bandwidth.\n * The list applies to a returned individual entity or entries within a collection.\n * If the API method also supports the **include** parameter, then the fields specified in the **include**\n * parameter are returned in addition to those specified in the **fields** parameter.\n * @param formParams parameters\n * @returns Promise<NodeEntry>\n */\n createNode(nodeId: string, nodeBodyCreate: NodeBodyCreate, opts?: CreateNodeOpts, formParams?: any): Promise<NodeEntry | any> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(nodeBodyCreate, 'nodeBodyCreate');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n autoRename: opts?.autoRename,\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n formParams = formParams || {};\n\n let contentTypes;\n let returnType;\n\n if (formParams.filedata) {\n contentTypes = ['multipart/form-data'];\n } else {\n contentTypes = ['application/json'];\n returnType = NodeEntry;\n }\n\n return this.post({\n path: '/nodes/{nodeId}/children',\n pathParams,\n queryParams,\n formParams,\n bodyParam: nodeBodyCreate,\n contentTypes,\n returnType\n });\n }\n\n /**\n * Create a folder\n *\n * @param name - folder name\n * @param relativePath - The relativePath specifies the folder structure to create relative to the node identified by nodeId.\n * @param nodeId default value root.The identifier of a node where add the folder. You can also use one of these well-known aliases: -my- | -shared- | -root-\n * @param opts Optional parameters\n * @returns A promise that is resolved if the folder is created and {error} if rejected.\n */\n createFolder(name: string, relativePath: string, nodeId: string, opts?: CreateNodeOpts): Promise<NodeEntry> {\n nodeId = nodeId || '-root-';\n\n const nodeBody = new NodeBodyCreate({\n name,\n relativePath,\n nodeType: 'cm:folder'\n });\n\n return this.createNode(nodeId, nodeBody, opts);\n }\n\n /**\n * Create secondary child\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a parent node.\n * @param secondaryChildAssociationBodyCreate The child node id and assoc type.\n * @param opts Optional parameters\n * @param opts.fields A list of field names.\n * You can use this parameter to restrict the fields returned within a response if, for example, you want to save on overall bandwidth.\n * The list applies to a returned individual entity or entries within a collection.\n * If the API method also supports the **include** parameter, then the fields specified in the **include**\n * parameter are returned in addition to those specified in the **fields** parameter.\n * @returns Promise<ChildAssociationEntry>\n */\n createSecondaryChildAssociation(\n nodeId: string,\n secondaryChildAssociationBodyCreate: ChildAssociationBody,\n opts?: {\n fields?: string[];\n }\n ): Promise<ChildAssociationEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(secondaryChildAssociationBodyCreate, 'secondaryChildAssociationBodyCreate');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/nodes/{nodeId}/secondary-children',\n pathParams,\n queryParams,\n bodyParam: secondaryChildAssociationBodyCreate,\n returnType: ChildAssociationEntry\n });\n }\n /**\n * Delete node association(s)\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Delete an association, or associations, from the source **nodeId* to a target node for the given association type.\n * If the association type is **not** specified, then all peer associations, of any type, in the direction\n * from source to target, are deleted.\n * **Note:** After removal of the peer association, or associations, from source to target, the two nodes may still have peer associations in the other direction.\n *\n * @param nodeId The identifier of a source node.\n * @param targetId The identifier of a target node.\n * @param opts Optional parameters\n * @param opts.assocType Only delete associations of this type.\n * @returns Promise<{}>\n */\n deleteAssociation(nodeId: string, targetId: string, opts?: { assocType?: string }): Promise<void> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(targetId, 'targetId');\n\n const pathParams = {\n nodeId,\n targetId\n };\n\n const queryParams = {\n assocType: opts?.assocType\n };\n\n return this.delete({\n path: '/nodes/{nodeId}/targets/{targetId}',\n pathParams,\n queryParams\n });\n }\n /**\n * Delete a node\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * If **nodeId** is a folder, then its children are also deleted.\n * Deleted nodes move to the trashcan unless the **permanent** query parameter is **true** and the current user is the owner of the node or an admin.\n *\n * Deleting a node deletes it from its primary parent and also from any secondary parents. Peer associations are also deleted, where the deleted\n * node is either a source or target of an association. This applies recursively to any hierarchy of primary children of the deleted node.\n *\n * **Note:** If the node is not permanently deleted, and is later successfully restored to its former primary parent, then the primary\n * child association is restored. This applies recursively for any primary children. No other secondary child associations or\n * peer associations are restored for any of the nodes in the primary parent-child hierarchy of restored nodes, regardless of whether the original\n * associations were to nodes inside or outside the restored hierarchy.\n *\n * @param nodeId The identifier of a node.\n * @param opts Optional parameters\n * @param opts.permanent If **true** then the node is deleted permanently, without moving to the trashcan.\n * Only the owner of the node or an admin can permanently delete the node. (default to false)\n * @returns Promise<{}>\n */\n deleteNode(nodeId: string, opts?: { permanent?: boolean }): Promise<void> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n permanent: opts?.permanent\n };\n\n return this.delete({\n path: '/nodes/{nodeId}',\n pathParams,\n queryParams\n });\n }\n /**\n * Delete multiple nodes\n *\n * @param nodeIds The list of node IDs to delete.\n * @param opts Optional parameters\n * @param opts.permanent If **true** then nodes are deleted permanently, without moving to the trashcan.\n * Only the owner of the node or an admin can permanently delete the node. (default to false)\n * @returns Promise<[]>\n */\n deleteNodes(nodeIds: string[], opts?: { permanent?: boolean }): Promise<void[]> {\n throwIfNotDefined(nodeIds, 'nodeIds');\n\n return Promise.all(nodeIds.map((id) => this.deleteNode(id, opts)));\n }\n\n /**\n * Delete secondary child or children\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Delete secondary child associations between the parent **nodeId** and child nodes for the given association type.\n *\n * If the association type is **not** specified, then all secondary child associations, of any type in the direction\n * from parent to secondary child, will be deleted. The child will still have a primary parent and may still be\n * associated as a secondary child with other secondary parents.\n *\n * @param nodeId The identifier of a parent node.\n * @param childId The identifier of a child node.\n * @param opts Optional parameters\n * @param opts.assocType Only delete associations of this type.\n * @returns Promise<{}>\n */\n deleteSecondaryChildAssociation(nodeId: string, childId: string, opts?: { assocType?: string }): Promise<void> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(childId, 'childId');\n\n const pathParams = {\n nodeId,\n childId\n };\n\n return this.delete({\n path: '/nodes/{nodeId}/secondary-children/{childId}',\n pathParams,\n queryParams: opts\n });\n }\n\n /**\n * Get a node\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * You can use the **include** parameter to return additional information.\n *\n * @param nodeId The identifier of a node. You can also use one of these well-known aliases:\n * - -my-\n * - -shared-\n * - -root-\n * @param opts Optional parameters\n * @param opts.relativePath A path relative to the **nodeId**. If you set this, information is returned on the node resolved by this path.\n * @returns Promise<NodeEntry>\n */\n getNode(nodeId: string, opts?: { relativePath?: string } & NodesIncludeQuery): Promise<NodeEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n relativePath: opts?.relativePath,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/nodes/{nodeId}',\n pathParams,\n queryParams,\n returnType: NodeEntry\n });\n }\n\n /**\n * Get node content\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param opts Optional parameters\n * @param opts.attachment **true** enables a web browser to download the file as an attachment.\n * **false** means a web browser may preview the file in a new tab or window, but not download the file.\n * You can only set this parameter to **false** if the content type of the file is in the supported list;\n * for example, certain image files and PDF files.\n * If the content type is not supported for preview, then a value of **false** is ignored, and\n * the attachment will be returned in the response. (default to true)\n * @param opts.ifModifiedSince Only returns the content if it has been modified since the date provided.\n * Use the date format defined by HTTP. For example, Wed, 09 Mar 2016 16:56:34 GMT.\n * @param opts.range The Range header indicates the part of a document that the server should return.\n * Single part request supported, for example: bytes=1-10.\n * @returns Promise<Blob>\n */\n getNodeContent(\n nodeId: string,\n opts?: {\n attachment?: boolean;\n ifModifiedSince?: string;\n range?: string;\n }\n ): Promise<Blob> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n opts = opts || {};\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n attachment: opts?.attachment\n };\n\n const headerParams = {\n 'If-Modified-Since': opts?.ifModifiedSince,\n Range: opts?.range\n };\n\n const accepts = ['application/octet-stream'];\n\n return this.get({\n path: '/nodes/{nodeId}/content',\n pathParams,\n queryParams,\n headerParams,\n accepts,\n returnType: 'blob'\n });\n }\n\n /**\n * List node children\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Gets a list of children of the parent node **nodeId**.\n * Minimal information for each child is returned by default.\n * You can use the **include** parameter to return additional information.\n * The list of child nodes includes primary children and secondary children, if there are any.\n * You can use the **include** parameter (include=association) to return child association details\n * for each child, including the **assocTyp**e and the **isPrimary** flag.\n *\n * The default sort order for the returned list is for folders to be sorted before files, and by ascending name.\n *\n * You can override the default using **orderBy** to specify one or more fields to sort by. The default order is always ascending, but\n * you can use an optional **ASC** or **DESC** modifier to specify an ascending or descending sort order.\n *\n * For example, specifying orderBy=name DESC returns a mixed folder/file list in descending **name** order.\n * You can use any of the following fields to order the results:\n * - isFolder\n * - name\n * - mimeType\n * - nodeType\n * - sizeInBytes\n * - modifiedAt\n * - createdAt\n * - modifiedByUser\n * - createdByUser\n *\n * @param nodeId The identifier of a node. You can also use one of these well-known aliases:\n * - -my-\n * - -shared-\n * - -root-\n * @param opts Optional parameters\n * @param opts.orderBy A string to control the order of the entities returned in a list. You can use the **orderBy** parameter to sort the list by one or more fields.\n * Each field has a default sort order, which is normally ascending order. Read the API method implementation notes\n * above to check if any fields used in this method have a descending default search order.\n * To sort the entities in a specific order, you can use the **ASC** and **DESC** keywords for any field.\n * @param opts.where Optionally filter the list. Here are some examples:\n * - where=(isFolder=true)\n * - where=(isFile=true)\n * - where=(nodeType='my:specialNodeType')\n * - where=(nodeType='my:specialNodeType INCLUDESUBTYPES')\n * - where=(isPrimary=true)\n * - where=(assocType='my:specialAssocType')\n * - where=(isPrimary=false and assocType='my:specialAssocType')\n * @param opts.relativePath Return information on children in the folder resolved by this path. The path is relative to **nodeId**.\n * @param opts.includeSource Also include **source** in addition to **entries** with folder information on the parent node – either the specified parent **nodeId**, or as resolved by **relativePath**.\n * @returns Promise<NodeChildAssociationPaging>\n */\n listNodeChildren(\n nodeId: string,\n opts?: {\n orderBy?: string[];\n where?: string;\n relativePath?: string;\n includeSource?: boolean;\n } & NodesIncludeQuery &\n ContentPagingQuery\n ): Promise<NodeChildAssociationPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n where: opts?.where,\n include: buildCollectionParam(opts?.include, 'csv'),\n relativePath: opts?.relativePath,\n includeSource: opts?.includeSource,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/nodes/{nodeId}/children',\n pathParams,\n queryParams,\n returnType: NodeChildAssociationPaging\n });\n }\n\n /**\n * List parents\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Gets a list of parent nodes that are associated with the current child **nodeId**.\n * The list includes both the primary parent and any secondary parents.\n *\n * @param nodeId The identifier of a child node. You can also use one of these well-known aliases:\n * - -my-\n * - -shared-\n * - -root-\n * @param opts Optional parameters\n * @param opts.where Optionally filter the list by **assocType** and/or **isPrimary**. Here are some example filters:\n * - where=(assocType='my:specialAssocType')\n * - where=(isPrimary=true)\n * - where=(isPrimary=false and assocType='my:specialAssocType')\n * @param opts.includeSource Also include **source** (in addition to **entries**) with folder information on **nodeId**\n * @returns Promise<NodeAssociationPaging>\n */\n listParents(\n nodeId: string,\n opts?: {\n where?: string;\n includeSource?: boolean;\n } & NodesIncludeQuery &\n ContentPagingQuery\n ): Promise<NodeAssociationPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n opts = opts || {};\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n where: opts?.where,\n include: buildCollectionParam(opts?.include, 'csv'),\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n includeSource: opts?.includeSource,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/nodes/{nodeId}/parents',\n pathParams,\n queryParams,\n returnType: NodeAssociationPaging\n });\n }\n\n /**\n * List secondary children\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Gets a list of secondary child nodes that are associated with the current parent **nodeId**, via a secondary child association.\n *\n * @param nodeId The identifier of a parent node. You can also use one of these well-known aliases:\n * -my-\n * -shared-\n * -root-\n * @param opts Optional parameters\n * @param opts.where Optionally filter the list by assocType. Here's an example:\n * - where=(assocType='my:specialAssocType')\n * @param opts.includeSource Also include **source** (in addition to **entries**) with folder information on **nodeId**\n * @returns Promise<NodeChildAssociationPaging>\n */\n listSecondaryChildren(\n nodeId: string,\n opts?: {\n where?: string;\n includeSource?: boolean;\n } & NodesIncludeQuery &\n ContentPagingQuery\n ): Promise<NodeChildAssociationPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n opts = opts || {};\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n where: opts?.where,\n include: buildCollectionParam(opts?.include, 'csv'),\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n includeSource: opts?.includeSource,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/nodes/{nodeId}/secondary-children',\n pathParams,\n queryParams,\n returnType: NodeChildAssociationPaging\n });\n }\n\n /**\n * List source associations\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a target node.\n * @param opts Optional parameters\n * @param opts.where Optionally filter the list by **assocType**. Here's an example:\n * - where=(assocType='my:specialAssocType')\n * @returns Promise<NodeAssociationPaging>\n */\n listSourceAssociations(\n nodeId: string,\n opts?: {\n where?: string;\n } & NodesIncludeQuery\n ): Promise<NodeAssociationPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n opts = opts || {};\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n where: opts?.where,\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/nodes/{nodeId}/sources',\n pathParams,\n queryParams,\n returnType: NodeAssociationPaging\n });\n }\n\n /**\n * List target associations\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Gets a list of target nodes that are associated with the current source **nodeId**.\n *\n * @param nodeId The identifier of a source node.\n * @param opts Optional parameters\n * @param opts.where Optionally filter the list by **assocType**. Here's an example:\n * - where=(assocType='my:specialAssocType')\n * @returns Promise<NodeAssociationPaging>\n */\n listTargetAssociations(\n nodeId: string,\n opts?: {\n where?: string;\n } & NodesIncludeQuery &\n ContentPagingQuery\n ): Promise<NodeAssociationPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n opts = opts || {};\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n where: opts?.where,\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/nodes/{nodeId}/targets',\n pathParams,\n queryParams,\n returnType: NodeAssociationPaging\n });\n }\n\n /**\n * Lock a node\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * If a lock on the node cannot be taken, then an error is returned.\n *\n * @param nodeId The identifier of a node.\n * @param nodeBodyLock Lock details.\n * @param opts Optional parameters\n * @returns Promise<NodeEntry>\n */\n lockNode(nodeId: string, nodeBodyLock: NodeBodyLock, opts?: NodesIncludeQuery): Promise<NodeEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(nodeBodyLock, 'nodeBodyLock');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/nodes/{nodeId}/lock',\n pathParams,\n queryParams,\n bodyParam: nodeBodyLock,\n returnType: NodeEntry\n });\n }\n\n /**\n * Move a node\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * The **targetParentId** is specified in the in request body.\n * The moved node retains its name unless you specify a new **name** in the request body.\n * If the source **nodeId** is a folder, then its children are also moved.\n * The move will effectively change the primary parent.\n *\n * @param nodeId The identifier of a node.\n * @param nodeBodyMove The targetParentId and, optionally, a new name which should include the file extension.\n * @param opts Optional parameters\n * @returns Promise<NodeEntry>\n */\n moveNode(nodeId: string, nodeBodyMove: NodeBodyMove, opts?: NodesIncludeQuery): Promise<NodeEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(nodeBodyMove, 'nodeBodyMove');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/nodes/{nodeId}/move',\n pathParams,\n queryParams,\n bodyParam: nodeBodyMove,\n returnType: NodeEntry\n });\n }\n\n /**\n * Unlock a node\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * The current user must be the owner of the locks or have admin rights, otherwise an error is returned.\n * If a lock on the node cannot be released, then an error is returned.\n *\n * @param nodeId The identifier of a node.\n * @param opts Optional parameters\n * @returns Promise<NodeEntry>\n */\n unlockNode(nodeId: string, opts?: NodesIncludeQuery): Promise<NodeEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/nodes/{nodeId}/unlock',\n pathParams,\n queryParams,\n returnType: NodeEntry\n });\n }\n\n /**\n * Update a node\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param nodeBodyUpdate The node information to update.\n * @param opts Optional parameters\n * @returns Promise<NodeEntry>\n */\n updateNode(nodeId: string, nodeBodyUpdate: NodeBodyUpdate, opts?: NodesIncludeQuery): Promise<NodeEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(nodeBodyUpdate, 'nodeBodyUpdate');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/nodes/{nodeId}',\n pathParams,\n queryParams,\n bodyParam: nodeBodyUpdate,\n returnType: NodeEntry\n });\n }\n /**\n * Update node content\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param contentBodyUpdate The binary content\n * @param opts Optional parameters\n * @param opts.majorVersion If **true**, create a major version.\n * Setting this parameter also enables versioning of this node, if it is not already versioned. (default to false)\n * @param opts.comment Add a version comment which will appear in version history.\n * Setting this parameter also enables versioning of this node, if it is not already versioned.\n * @param opts.name Optional new name. This should include the file extension.\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n * @returns Promise<NodeEntry>\n */\n updateNodeContent(\n nodeId: string,\n contentBodyUpdate: string,\n opts?: {\n majorVersion?: boolean;\n comment?: string;\n name?: string;\n } & NodesIncludeQuery\n ): Promise<NodeEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(contentBodyUpdate, 'contentBodyUpdate');\n opts = opts || {};\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n majorVersion: opts?.majorVersion,\n comment: opts?.comment,\n name: opts?.name,\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/nodes/{nodeId}/content',\n pathParams,\n queryParams,\n contentTypes: ['application/octet-stream'],\n bodyParam: contentBodyUpdate,\n returnType: NodeEntry\n });\n }\n\n /**\n * Generate a direct access content url for a given node\n *\n * **Note:** this endpoint is available in Alfresco 7.1 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @returns Promise<DirectAccessUrlEntry>\n */\n requestDirectAccessUrl(nodeId: string): Promise<DirectAccessUrlEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n return this.post({\n path: '/nodes/{nodeId}/request-direct-access-url',\n pathParams,\n returnType: DirectAccessUrlEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { NodesApi } from '../../content-rest-api/api/nodes.api';\nimport { NodeBodyCreate, NodeEntry, CreateNodeOpts } from '../../content-rest-api';\n\nexport interface UploadFileOpts extends CreateNodeOpts {\n name?: string;\n renditions?: string;\n}\n\nexport class UploadApi extends NodesApi {\n uploadFile(fileDefinition: any, relativePath?: string, rootFolderId?: string, nodeBody?: NodeBodyCreate, opts?: UploadFileOpts): Promise<NodeEntry | any> {\n rootFolderId = rootFolderId || '-root-';\n opts = opts || {};\n\n const nodeBodyRequired = {\n name: fileDefinition.name,\n nodeType: 'cm:content',\n relativePath\n };\n\n nodeBody = Object.assign(nodeBodyRequired, nodeBody);\n\n let formParam = Object.assign({}, nodeBody.properties || {});\n formParam.filedata = fileDefinition;\n formParam.relativePath = relativePath;\n if (opts.name) {\n formParam.name = opts.name;\n }\n\n formParam = Object.assign(formParam, opts);\n\n return this.createNode(rootFolderId, nodeBody, opts, formParam);\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\n\nexport class ContentApi extends BaseApi {\n\n /**\n * Get thumbnail URL for the given nodeId\n *\n * @param nodeId The ID of the document node\n * @param [attachment=false] Retrieve content as an attachment for download\n * @param [ticket] Custom ticket to use for authentication\n * @returns The URL address pointing to the content.\n */\n getDocumentThumbnailUrl(nodeId: string, attachment?: boolean, ticket?: string): string {\n return this.apiClient.basePath + '/nodes/' + nodeId +\n '/renditions/doclib/content' +\n '?attachment=' + (attachment ? 'true' : 'false') +\n this.apiClient.getAlfTicket(ticket);\n }\n\n /**\n * Get preview URL for the given nodeId\n *\n * @param nodeId The ID of the document node\n * @param [attachment=false] Retrieve content as an attachment for download\n * @param [ticket] Custom ticket to use for authentication\n * @returns The URL address pointing to the content.\n */\n getDocumentPreviewUrl(nodeId: string, attachment?: boolean, ticket?: string): string {\n return this.apiClient.basePath + '/nodes/' + nodeId +\n '/renditions/imgpreview/content' +\n '?attachment=' + (attachment ? 'true' : 'false') +\n this.apiClient.getAlfTicket(ticket);\n }\n\n /**\n * Get content URL for the given nodeId\n *\n * @param nodeId The ID of the document node\n * @param [attachment=false] Retrieve content as an attachment for download\n * @param [ticket] Custom ticket to use for authentication\n * @returns The URL address pointing to the content.\n */\n getContentUrl(nodeId: string, attachment?: boolean, ticket?: string): string {\n return this.apiClient.basePath + '/nodes/' + nodeId +\n '/content' +\n '?attachment=' + (attachment ? 'true' : 'false') +\n this.apiClient.getAlfTicket(ticket);\n }\n\n /**\n * Get rendition URL for the given nodeId\n *\n * @param nodeId The ID of the document node\n * @param encoding of the document\n * @param [attachment=false] retrieve content as an attachment for download\n * @param [ticket] Custom ticket to use for authentication\n * @returns The URL address pointing to the content.\n */\n getRenditionUrl(nodeId: string, encoding: string, attachment?: boolean, ticket?: string): string {\n return this.apiClient.basePath + '/nodes/' + nodeId +\n '/renditions/' + encoding + '/content' +\n '?attachment=' + (attachment ? 'true' : 'false') +\n this.apiClient.getAlfTicket(ticket);\n }\n\n /**\n * Get version's rendition URL for the given nodeId\n *\n * @param nodeId The ID of the document node\n * @param versionId The ID of the version\n * @param encoding of the document\n * @param [attachment=false] retrieve content as an attachment for download\n * @param [ticket] Custom ticket to use for authentication\n * @returns The URL address pointing to the content.\n */\n getVersionRenditionUrl(nodeId: string, versionId: string, encoding: string, attachment?: boolean, ticket?: string): string {\n return this.apiClient.basePath + '/nodes/' + nodeId + '/versions/' + versionId +\n '/renditions/' + encoding + '/content' +\n '?attachment=' + (attachment ? 'true' : 'false') +\n this.apiClient.getAlfTicket(ticket);\n }\n\n /**\n * Get content URL for the given nodeId and versionId\n *\n * @param nodeId The ID of the document node\n * @param versionId The ID of the version\n * @param [attachment=false] Retrieve content as an attachment for download\n * @param [ticket] Custom ticket to use for authentication\n * @returns The URL address pointing to the content.\n */\n getVersionContentUrl(nodeId: string, versionId: string, attachment?: boolean, ticket?: string): string {\n return this.apiClient.basePath + '/nodes/' + nodeId +\n '/versions/' + versionId + '/content' +\n '?attachment=' + (attachment ? 'true' : 'false') +\n this.apiClient.getAlfTicket(ticket);\n }\n\n /**\n * Get content url for the given shared link id\n *\n * @param linkId - The ID of the shared link\n * @param [attachment=false] Retrieve content as an attachment for download\n * @returns The URL address pointing to the content.\n */\n getSharedLinkContentUrl(linkId: string, attachment?: boolean): string {\n return this.apiClient.basePath + '/shared-links/' + linkId +\n '/content' +\n '?attachment=' + (attachment ? 'true' : 'false');\n }\n\n /**\n * Gets the rendition content for file with shared link identifier sharedId.\n *\n * @param sharedId - The identifier of a shared link to a file.\n * @param renditionId - The name of a thumbnail rendition, for example doclib, or pdf.\n * @param [attachment=false] Retrieve content as an attachment for download\n * @returns The URL address pointing to the content.\n */\n getSharedLinkRenditionUrl(sharedId: string, renditionId: string, attachment?: boolean): string {\n return this.apiClient.basePath + '/shared-links/' + sharedId +\n '/renditions/' + renditionId + '/content' +\n '?attachment=' + (attachment ? 'true' : 'false');\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { PaginatedList, PaginatedEntries } from '../model/pagination';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\nexport interface CustomModel {\n name: string;\n namespacePrefix: string;\n description: string;\n author: string;\n namespaceUri: string;\n status: 'ACTIVE' | 'DRAFT';\n}\n\nexport interface CustomType {\n name?: string;\n parentName?: string;\n prefixedName?: string;\n description?: string;\n properties?: CustomModelProperty[];\n title?: string;\n}\n\nexport interface CustomAspect {\n description?: string;\n name?: string;\n parentName?: string;\n prefixedName?: string;\n properties?: CustomModelProperty[];\n title?: string;\n}\n\nexport interface CustomModelProperty {\n name?: string;\n prefixedName?: string;\n title?: string;\n dataType?: string;\n facetable?: 'FALSE' | 'TRUE';\n indexTokenisationMode?: 'FALSE' | 'TRUE';\n constraints?: CustomModelPropertyConstraint[];\n multiValued?: boolean;\n mandatoryEnforced?: boolean;\n mandatory?: boolean;\n indexed?: boolean;\n}\n\nexport interface CustomModelPropertyConstraint {\n name: string;\n prefixedName: string;\n type: string;\n parameters: any[];\n}\n\n/**\n * Constructs a new CustomModelApi.\n */\nexport class CustomModelApi extends BaseApi {\n private = true;\n\n /**\n * create Custom Model\n */\n createCustomModel(status: string, description: string, name: string, namespaceUri: string, namespacePrefix: string, author?: string): Promise<{ entry: CustomModel }> {\n throwIfNotDefined(namespaceUri, 'namespaceUri');\n throwIfNotDefined(namespacePrefix, 'namespacePrefix');\n\n const bodyParam = {\n status,\n description,\n name,\n namespaceUri,\n namespacePrefix,\n author\n };\n\n return this.post({\n path: 'cmm',\n bodyParam\n });\n }\n\n /**\n * Create a custom type\n */\n createCustomType(modelName: string, name: string, parentName?: string, title?: string, description?: string): Promise<{ entry: CustomType }> {\n throwIfNotDefined(modelName, 'modelName');\n throwIfNotDefined(name, 'name');\n\n const bodyParam = {\n name,\n parentName,\n title,\n description\n };\n\n const pathParams = {\n modelName\n };\n\n return this.post({\n path: 'cmm/{modelName}/types',\n bodyParam,\n pathParams\n });\n }\n\n /**\n * Create a custom aspect\n */\n createCustomAspect(modelName: string, name: string, parentName?: string, title?: string, description?: string): Promise<any> {\n throwIfNotDefined(modelName, 'modelName');\n throwIfNotDefined(name, 'name');\n\n const bodyParam = {\n name,\n parentName,\n title,\n description\n };\n\n const pathParams = {\n modelName\n };\n\n return this.post({\n path: 'cmm/{modelName}/aspects',\n bodyParam,\n pathParams\n });\n }\n\n /**\n * Create a custom constraint\n */\n createCustomConstraint(modelName: string, name: string, type: string, parameters?: any): Promise<any> {\n throwIfNotDefined(modelName, 'modelName');\n throwIfNotDefined(type, 'type');\n throwIfNotDefined(name, 'name');\n\n const bodyParam = {\n name,\n type,\n parameters\n };\n\n const pathParams = {\n modelName\n };\n\n return this.post({\n path: 'cmm/{modelName}/constraints',\n bodyParam,\n pathParams\n });\n }\n\n /**\n * Activate the custom model\n */\n activateCustomModel(modelName: string): Promise<{ entry: CustomModel }> {\n throwIfNotDefined(modelName, 'modelName');\n\n const bodyParam = {\n status: 'ACTIVE'\n };\n\n const pathParams = {\n modelName\n };\n\n return this.put({\n path: 'cmm/{modelName}?select=status',\n bodyParam,\n pathParams\n });\n }\n\n /**\n * Deactivate the custom model\n */\n deactivateCustomModel(modelName: string): Promise<{ entry: CustomModel }> {\n throwIfNotDefined(modelName, 'modelName');\n\n const bodyParam = {\n status: 'DRAFT'\n };\n\n const pathParams = {\n modelName\n };\n\n return this.put({\n path: 'cmm/{modelName}?select=status',\n bodyParam,\n pathParams\n });\n }\n\n /**\n * Add property into an existing aspect\n */\n addPropertyToAspect(modelName: string, aspectName: string, properties?: CustomModelProperty[]): Promise<CustomAspect> {\n throwIfNotDefined(modelName, 'modelName');\n throwIfNotDefined(aspectName, 'aspectName');\n\n const bodyParam = {\n name: aspectName,\n properties\n };\n\n const pathParams = {\n modelName,\n aspectName\n };\n\n return this.put({\n path: 'cmm/{modelName}/aspects/{aspectName}?select=props',\n bodyParam,\n pathParams\n });\n }\n\n /**\n * Add Property into an existing type\n */\n addPropertyToType(modelName: string, typeName: string, properties?: CustomModelProperty[]): Promise<CustomType> {\n throwIfNotDefined(modelName, 'modelName');\n throwIfNotDefined(typeName, 'typeName');\n\n const bodyParam = {\n name: typeName,\n properties\n };\n\n const pathParams = {\n modelName,\n typeName\n };\n\n return this.put({\n path: 'cmm/{modelName}/types/{typeName}?select=props',\n bodyParam,\n pathParams\n });\n }\n\n /**\n * Edit an existing custom model\n */\n updateCustomModel(modelName: string, description?: string, namespaceUri?: string, namespacePrefix?: string, author?: string): Promise<any> {\n throwIfNotDefined(modelName, 'modelName');\n\n const bodyParam = {\n name: modelName,\n description,\n namespaceUri,\n namespacePrefix,\n author\n };\n\n const pathParams = {\n modelName\n };\n\n return this.put({\n path: 'cmm/{modelName}',\n bodyParam,\n pathParams\n });\n }\n\n /**\n * Edit an existing custom model type\n */\n updateCustomType(modelName: string, typeName: string, description?: string, parentName?: string, title?: string): Promise<any> {\n throwIfNotDefined(modelName, 'modelName');\n throwIfNotDefined(typeName, 'typeName');\n\n const bodyParam = {\n name: typeName,\n parentName,\n title,\n description\n };\n\n const pathParams = {\n modelName,\n typeName\n };\n\n return this.put({\n path: 'cmm/{modelName}/types/{typeName}',\n bodyParam,\n pathParams\n });\n }\n\n /**\n * Edit an existing custom model aspect\n */\n updateCustomAspect(modelName: string, aspectName: string, description?: string, parentName?: string, title?: string): Promise<any> {\n throwIfNotDefined(modelName, 'modelName');\n throwIfNotDefined(aspectName, 'aspectName');\n\n const bodyParam = {\n name: aspectName,\n parentName,\n title,\n description\n };\n\n const pathParams = {\n modelName,\n aspectName\n };\n\n return this.put({\n path: 'cmm/{modelName}/aspects/{aspectName}',\n bodyParam,\n pathParams\n });\n }\n\n /**\n * Get all custom models\n */\n getAllCustomModel(): Promise<PaginatedEntries<CustomModel>> {\n return this.get({\n path: 'cmm'\n });\n }\n\n /**\n * Get custom model\n */\n getCustomModel(modelName: string, queryParams?: any): Promise<{ entry: CustomModel }> {\n throwIfNotDefined(modelName, 'modelName');\n\n const pathParams = {\n modelName\n };\n\n return this.get({\n path: 'cmm/{modelName}',\n pathParams,\n queryParams\n });\n }\n\n /**\n * Get all custom model types\n */\n getAllCustomType(modelName: string): Promise<PaginatedList<CustomType>> {\n throwIfNotDefined(modelName, 'modelName');\n\n const pathParams = {\n modelName\n };\n\n return this.get({\n path: 'cmm/{modelName}/types',\n pathParams\n });\n }\n\n /**\n * Get custom model type\n */\n getCustomType(modelName: string, typeName?: string, queryParams?: any): Promise<{ entry: CustomType }> {\n throwIfNotDefined(modelName, 'modelName');\n throwIfNotDefined(typeName, 'typeName');\n\n const pathParams = {\n modelName,\n typeName\n };\n\n return this.get({\n path: 'cmm/{modelName}/types/{typeName}',\n pathParams,\n queryParams\n });\n }\n\n /**\n * Get all custom model aspect\n */\n getAllCustomAspect(modelName: string, queryParams?: any): Promise<PaginatedList<CustomAspect>> {\n throwIfNotDefined(modelName, 'modelName');\n\n const pathParams = {\n modelName\n };\n\n return this.get({\n path: 'cmm/{modelName}/aspects',\n pathParams,\n queryParams\n });\n }\n\n /**\n * Get custom model aspect\n */\n getCustomAspect(modelName: string, aspectName: string, queryParams?: any): Promise<{ entry: CustomAspect }> {\n throwIfNotDefined(modelName, 'modelName');\n throwIfNotDefined(aspectName, 'aspectName');\n\n const pathParams = {\n modelName,\n aspectName\n };\n\n return this.get({\n path: 'cmm/{modelName}/aspects/{aspectName}',\n pathParams,\n queryParams\n });\n }\n\n /**\n * Get all custom model defined constraints\n */\n getAllCustomConstraints(modelName: string, queryParams?: any): Promise<any> {\n throwIfNotDefined(modelName, 'modelName');\n\n const pathParams = {\n modelName\n };\n\n return this.get({\n path: 'cmm/{modelName}/constraints',\n pathParams,\n queryParams\n });\n }\n\n /**\n * Get custom model defined constraints\n */\n getCustomConstraints(modelName: string, constraintName: string, queryParams?: any): Promise<any> {\n throwIfNotDefined(modelName, 'modelName');\n throwIfNotDefined(constraintName, 'constraintName');\n\n const pathParams = {\n modelName,\n constraintName\n };\n\n return this.get({\n path: 'cmm/{modelName}/constraints{constraintName}',\n pathParams,\n queryParams\n });\n }\n\n /**\n * Delete the given custom model\n */\n deleteCustomModel(modelName: string): Promise<void> {\n throwIfNotDefined(modelName, 'modelName');\n\n const pathParams = {\n modelName\n };\n\n return this.delete({\n path: 'cmm/{modelName}',\n pathParams\n });\n }\n\n /**\n * Delete the given custom type\n */\n deleteCustomType(modelName: string, typeName: string): Promise<void> {\n throwIfNotDefined(modelName, 'modelName');\n throwIfNotDefined(typeName, 'typeName');\n\n const pathParams = {\n modelName,\n typeName\n };\n\n return this.delete({\n path: 'cmm/{modelName}/types/{typeName}',\n pathParams\n });\n }\n\n deleteCustomAspect(modelName: string, aspectName: string): Promise<void> {\n throwIfNotDefined(modelName, 'modelName');\n throwIfNotDefined(aspectName, 'aspectName');\n\n const pathParams = {\n modelName,\n aspectName\n };\n\n return this.delete({\n path: 'cmm/{modelName}/aspects/{aspectName}',\n pathParams\n });\n }\n\n deleteCustomAspectProperty(modelName: string, aspectName: string, propertyName: string): Promise<{ entry: CustomAspect }> {\n throwIfNotDefined(modelName, 'modelName');\n throwIfNotDefined(aspectName, 'aspectName');\n throwIfNotDefined(propertyName, 'propertyName');\n\n const bodyParam = {\n name: aspectName\n };\n\n const pathParams = {\n modelName,\n aspectName\n };\n\n const queryParams = {\n select: 'props',\n delete: propertyName,\n update: true\n };\n\n return this.put({\n path: 'cmm/{modelName}/aspects/{aspectName}',\n bodyParam,\n pathParams,\n queryParams\n });\n }\n\n deleteCustomTypeProperty(modelName: string, typeName: string, propertyName: string): Promise<{ entry: CustomType }> {\n throwIfNotDefined(modelName, 'modelName');\n throwIfNotDefined(typeName, 'typeName');\n throwIfNotDefined(propertyName, 'propertyName');\n\n const bodyParam = {\n name: typeName\n };\n\n const pathParams = {\n modelName,\n typeName\n };\n\n const queryParams = {\n select: 'props',\n delete: propertyName,\n update: true\n };\n\n return this.put({\n path: 'cmm/{modelName}/types/{typeName}',\n bodyParam,\n pathParams,\n queryParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './webscript.api';\nexport * from './classes.api';\nexport * from './upload.api';\nexport * from './content.api';\nexport * from './customModel.api';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class DateAlfresco extends Date {\n /**\n * Parses an ISO-8601 string representation of a date value.\n *\n * @param dateToConvert The date value as a string.\n * @returns The parsed date object.\n */\n static parseDate(dateToConvert: any): Date {\n if (dateToConvert instanceof Date) {\n return dateToConvert;\n } else if (typeof dateToConvert === 'number') {\n return new Date(dateToConvert);\n }\n\n const dateLength = 10;\n const separatorPos = dateToConvert.substring(dateLength).search(/[+-]/) + dateLength;\n const dateStr = separatorPos > dateLength ? dateToConvert.substring(0, separatorPos) : dateToConvert;\n const tzStr = separatorPos > dateLength ? dateToConvert.substring(separatorPos) : '';\n const parsedDate = this.parseDateTime(dateStr);\n const tzOffsetMins = this.parseDateTimeZone(tzStr);\n parsedDate.setTime(parsedDate.getTime() + tzOffsetMins * 60000);\n return parsedDate;\n }\n\n /**\n * Parses the date component of a ISO-8601 string representation of a date value.\n *\n * @param dateToConvert The date value as a string.\n * @returns The parsed date object.\n */\n static parseDateTime(dateToConvert: string): Date {\n // TODO: review when Safari 10 is released\n // return new Date(str.replace(/T/i, ' '));\n\n // Compatible with Safari 9.1.2\n const dateParts = dateToConvert.split(/[^0-9]/).map(function(s) {\n return parseInt(s, 10);\n });\n return new Date(\n Date.UTC(\n dateParts[0],\n dateParts[1] - 1 || 0,\n dateParts[2] || 1,\n dateParts[3] || 0,\n dateParts[4] || 0,\n dateParts[5] || 0,\n dateParts[6] || 0\n )\n );\n }\n\n /**\n * Parses the timezone component of a ISO-8601 string representation of a date value.\n *\n * @param dateToConvert The timezone offset as a string, e.g. '+0000', '+2000' or '-0500'.\n * @returns The number of minutes offset from UTC.\n */\n static parseDateTimeZone(dateToConvert: string): number {\n const match = /([+-])(\\d{2}):?(\\d{2})?/.exec(dateToConvert);\n if (match !== null) {\n return parseInt(match[1] + '1', 10) * -1 * (parseInt(match[2], 10) * 60) + parseInt(match[3] || '0', 10);\n } else {\n return 0;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class ClassPropertyDescription {\n\n dataType?: string;\n defaultValue?: string;\n description?: string;\n enforced?: boolean;\n indexed?: boolean;\n mandatory?: boolean;\n multiValued?: boolean;\n name?: string;\n protected?: boolean;\n title?: string;\n url?: string;\n\n constructor(input?: Partial<ClassPropertyDescription>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './dateAlfresco';\nexport * from './classDescription';\nexport * from './classPropertyDescription';\nexport * from './pagination';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './api';\nexport * from './model';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\n/**\n * Activities describe any past activity in a site,\n * for example creating an item of content, commenting on a node,\n * liking an item of content.\n */\nexport class Activity {\n /**\n * The id of the person who performed the activity\n */\n postPersonId: string;\n /**\n * The unique id of the activity\n */\n id: number;\n /**\n * The unique id of the site on which the activity was performed\n */\n siteId?: string;\n /**\n * The date time at which the activity was performed\n */\n postedAt?: Date;\n /**\n * The feed on which this activity was posted\n */\n feedPersonId: string;\n /**\n * An object summarizing the activity\n */\n activitySummary?: { [key: string]: string };\n /**\n * The type of the activity posted\n */\n activityType: string;\n\n constructor(input?: Partial<Activity>) {\n if (input) {\n Object.assign(this, input);\n this.postedAt = input.postedAt ? DateAlfresco.parseDate(input.postedAt) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Activity } from './activity';\n\nexport class ActivityEntry {\n entry: Activity;\n\n constructor(input?: Partial<ActivityEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Activity(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ActivityEntry } from './activityEntry';\nimport { Pagination } from './pagination';\n\nexport class ActivityPagingList {\n pagination: Pagination;\n entries: ActivityEntry[];\n\n constructor(input?: Partial<ActivityPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new ActivityEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ActivityPagingList } from './activityPagingList';\n\nexport class ActivityPaging {\n list?: ActivityPagingList;\n\n constructor(input?: Partial<ActivityPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new ActivityPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class AssociationBody {\n targetId: string;\n assocType: string;\n\n constructor(input?: Partial<AssociationBody>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AuditAppEntry } from './auditAppEntry';\nimport { Pagination } from './pagination';\n\nexport class AuditAppPagingList {\n pagination?: Pagination;\n entries?: AuditAppEntry[];\n\n constructor(input?: Partial<AuditAppPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AuditAppPagingList } from './auditAppPagingList';\n\nexport class AuditAppPaging {\n list?: AuditAppPagingList;\n\n constructor(input?: Partial<AuditAppPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new AuditAppPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class UserInfo {\n displayName: string;\n id: string;\n\n constructor(input?: Partial<UserInfo>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { UserInfo } from './userInfo';\n\nexport class AuditEntry {\n id: string;\n auditApplicationId: string;\n createdByUser: UserInfo;\n createdAt: Date;\n values?: any;\n\n constructor(input?: Partial<AuditEntry>) {\n if (input) {\n Object.assign(this, input);\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AuditEntry } from './auditEntry';\n\nexport class AuditEntryEntry {\n entry?: AuditEntry;\n\n constructor(input?: Partial<AuditEntryEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new AuditEntry(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AuditEntryEntry } from './auditEntryEntry';\nimport { Pagination } from './pagination';\n\nexport class AuditEntryPagingList {\n pagination?: Pagination;\n entries?: AuditEntryEntry[];\n\n constructor(input?: Partial<AuditEntryPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new AuditEntryEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AuditEntryPagingList } from './auditEntryPagingList';\n\nexport class AuditEntryPaging {\n list?: AuditEntryPagingList;\n\n constructor(input?: Partial<AuditEntryPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new AuditEntryPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class ChildAssociation {\n childId: string;\n assocType: string;\n\n constructor(input?: Partial<ChildAssociation>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class ChildAssociationBody {\n childId: string;\n assocType: string;\n\n constructor(input?: Partial<ChildAssociationBody>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ChildAssociation } from './childAssociation';\n\nexport class ChildAssociationEntry {\n entry: ChildAssociation;\n\n constructor(input?: Partial<ChildAssociationEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new ChildAssociation(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class ChildAssociationInfo {\n assocType: string;\n isPrimary: boolean;\n\n constructor(input?: Partial<ChildAssociationInfo>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class ClientBody {\n /**\n * the client name\n */\n client: string;\n\n constructor(input?: Partial<ClientBody>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class Category {\n id: string;\n name: string;\n parentId?: string;\n hasChildren?: boolean;\n count?: number;\n path?: string;\n\n constructor(input?: Partial<Category>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Category } from './category';\n\nexport class CategoryEntry {\n entry: Category;\n\n constructor(input?: Partial<CategoryEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Category(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class CategoryLinkBody {\n categoryId: string;\n\n constructor(input?: Partial<CategoryLinkBody>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { CategoryEntry } from './categoryEntry';\n\nexport class CategoryPagingList {\n pagination: Pagination;\n entries: CategoryEntry[];\n\n constructor(input?: Partial<CategoryPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new CategoryEntry(item));\n }\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { CategoryPagingList } from './categoryPagingList';\n\nexport class CategoryPaging {\n list?: CategoryPagingList;\n\n constructor(input?: Partial<CategoryPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new CategoryPagingList(input.list) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Capabilities } from './capabilities';\nimport { Company } from './company';\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class Person {\n id: string;\n firstName: string;\n lastName?: string;\n displayName?: string;\n description?: string;\n avatarId?: string;\n email: string;\n skypeId?: string;\n googleId?: string;\n instantMessageId?: string;\n jobTitle?: string;\n location?: string;\n company?: Company;\n mobile?: string;\n telephone?: string;\n statusUpdatedAt?: Date;\n userStatus?: string;\n enabled: boolean;\n emailNotificationsEnabled?: boolean;\n aspectNames?: string[];\n properties?: { [key: string]: string };\n capabilities?: Capabilities;\n\n constructor(input?: Partial<Person>) {\n if (input) {\n Object.assign(this, input);\n this.statusUpdatedAt = input.statusUpdatedAt ? DateAlfresco.parseDate(input.statusUpdatedAt) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { Person } from './person';\n\nexport class Comment {\n id: string;\n title: string;\n content: string;\n createdBy: Person;\n createdAt: Date;\n edited: boolean;\n modifiedBy: Person;\n modifiedAt: Date;\n canEdit: boolean;\n canDelete: boolean;\n\n constructor(input?: Partial<Comment>) {\n if (input) {\n Object.assign(this, input);\n this.createdBy = input.createdBy ? new Person(input.createdBy) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.modifiedBy = input.modifiedBy ? new Person(input.modifiedBy) : undefined;\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Comment } from './comment';\n\nexport class CommentEntry {\n entry: Comment;\n\n constructor(input?: Partial<CommentEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Comment(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { CommentEntry } from './commentEntry';\nimport { Pagination } from './pagination';\n\nexport class CommentPagingList {\n pagination: Pagination;\n entries: CommentEntry[];\n\n constructor(input?: Partial<CommentPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new CommentEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { CommentPagingList } from './commentPagingList';\n\nexport class CommentPaging {\n list?: CommentPagingList;\n\n constructor(input?: Partial<CommentPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new CommentPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class ContentInfo {\n mimeType: string;\n mimeTypeName: string;\n sizeInBytes: number;\n encoding?: string;\n\n constructor(input?: Partial<ContentInfo>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { PathElement } from './pathElement';\n\nexport class PathInfo {\n elements?: PathElement[];\n name?: string;\n isComplete?: boolean;\n\n constructor(input?: Partial<PathInfo>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class PermissionElement {\n authorityId?: string;\n name?: string;\n accessStatus?: 'ALLOWED' | 'DENIED' | string;\n\n constructor(input?: Partial<PermissionElement>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { PermissionElement } from './permissionElement';\n\nexport class PermissionsInfo {\n isInheritanceEnabled?: boolean;\n inherited?: PermissionElement[];\n locallySet?: PermissionElement[];\n settable?: string[];\n\n constructor(input?: Partial<PermissionsInfo>) {\n if (input) {\n Object.assign(this, input);\n if (input.inherited) {\n this.inherited = input.inherited.map((item) => new PermissionElement(item));\n }\n if (input.locallySet) {\n this.locallySet = input.locallySet.map((item) => new PermissionElement(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ContentInfo } from './contentInfo';\nimport { DateAlfresco } from '../../content-custom-api';\nimport { Definition } from './definition';\nimport { PathInfo } from './pathInfo';\nimport { PermissionsInfo } from './permissionsInfo';\nimport { UserInfo } from './userInfo';\n\nexport class DeletedNode {\n id: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n isFolder: boolean;\n isFile: boolean;\n isLocked?: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n parentId?: string;\n isLink?: boolean;\n isFavorite?: boolean;\n content?: ContentInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n permissions?: PermissionsInfo;\n definition?: Definition;\n archivedByUser: UserInfo;\n archivedAt: Date;\n\n constructor(input?: Partial<DeletedNode>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.content = input.content ? new ContentInfo(input.content) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n this.permissions = input.permissions ? new PermissionsInfo(input.permissions) : undefined;\n this.archivedByUser = input.archivedByUser ? new UserInfo(input.archivedByUser) : undefined;\n this.archivedAt = input.archivedAt ? DateAlfresco.parseDate(input.archivedAt) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DeletedNode } from './deletedNode';\n\nexport class DeletedNodeEntry {\n entry?: DeletedNode;\n\n constructor(input?: Partial<DeletedNodeEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new DeletedNode(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DeletedNodeEntry } from './deletedNodeEntry';\nimport { Pagination } from './pagination';\n\nexport class DeletedNodesPagingList {\n pagination?: Pagination;\n entries?: DeletedNodeEntry[];\n\n constructor(input?: Partial<DeletedNodesPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new DeletedNodeEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DeletedNodesPagingList } from './deletedNodesPagingList';\n\nexport class DeletedNodesPaging {\n list?: DeletedNodesPagingList;\n\n constructor(input?: Partial<DeletedNodesPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new DeletedNodesPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class DirectAccessUrl {\n /**\n * The direct access URL of a binary content\n */\n contentUrl: string;\n /**\n * Whether or not the content downloads as an attachment\n */\n attachment?: boolean;\n /**\n * The direct access URL would become invalid when the expiry date is reached\n */\n expiryTime?: Date;\n\n constructor(input?: Partial<DirectAccessUrl>) {\n if (input) {\n Object.assign(this, input);\n this.expiryTime = input.expiryTime ? DateAlfresco.parseDate(input.expiryTime) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DirectAccessUrl } from './directAccessUrl';\n\nexport class DirectAccessUrlEntry {\n entry: DirectAccessUrl;\n\n constructor(input?: Partial<DirectAccessUrlEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new DirectAccessUrl(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\n/**\n * A favorite describes an Alfresco entity that a person has marked as a favorite.\n * The target can be a site, file or folder.\n */\nexport class Favorite {\n /**\n * The guid of the object that is a favorite.\n */\n targetGuid: string;\n /**\n * The time the object was made a favorite.\n */\n createdAt?: Date;\n target: any;\n /**\n * A subset of the target favorite properties, system properties and properties already available in the target are excluded.\n */\n properties?: any;\n\n constructor(input?: Partial<Favorite>) {\n if (input) {\n Object.assign(this, input);\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Favorite } from './favorite';\n\nexport class FavoriteEntry {\n entry: Favorite;\n\n constructor(input?: Partial<FavoriteEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Favorite(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { FavoriteEntry } from './favoriteEntry';\nimport { Pagination } from './pagination';\n\nexport class FavoritePagingList {\n pagination: Pagination;\n entries: FavoriteEntry[];\n\n constructor(input?: Partial<FavoritePagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new FavoriteEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { FavoritePagingList } from './favoritePagingList';\n\nexport class FavoritePaging {\n list?: FavoritePagingList;\n\n constructor(input?: Partial<FavoritePaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new FavoritePagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { GroupMemberEntry } from './groupMemberEntry';\nimport { Pagination } from './pagination';\n\nexport class GroupMemberPagingList {\n pagination?: Pagination;\n entries?: GroupMemberEntry[];\n\n constructor(input?: Partial<GroupMemberPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { GroupMemberPagingList } from './groupMemberPagingList';\n\nexport class GroupMemberPaging {\n list?: GroupMemberPagingList;\n\n constructor(input?: Partial<GroupMemberPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new GroupMemberPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class GroupMembershipBodyCreate {\n id: string;\n memberType: GroupMembershipBodyCreate.MemberTypeEnum | string;\n\n constructor(input?: Partial<GroupMembershipBodyCreate>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n\n}\nexport namespace GroupMembershipBodyCreate {\n export type MemberTypeEnum = 'GROUP' | 'PERSON';\n export const MemberTypeEnum = {\n GROUP: 'GROUP' as MemberTypeEnum,\n PERSON: 'PERSON' as MemberTypeEnum\n };\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { GroupEntry } from './groupEntry';\nimport { Pagination } from './pagination';\n\nexport class GroupPagingList {\n pagination?: Pagination;\n entries?: GroupEntry[];\n\n constructor(input?: Partial<GroupPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { GroupPagingList } from './groupPagingList';\n\nexport class GroupPaging {\n list?: GroupPagingList;\n\n constructor(input?: Partial<GroupPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new GroupPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ContentInfo } from './contentInfo';\nimport { DateAlfresco } from '../../content-custom-api';\nimport { Definition } from './definition';\nimport { PathInfo } from './pathInfo';\nimport { PermissionsInfo } from './permissionsInfo';\nimport { UserInfo } from './userInfo';\n\nexport class Node {\n id: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n isFolder: boolean;\n isFile: boolean;\n isLocked?: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n parentId?: string;\n isLink?: boolean;\n isFavorite?: boolean;\n content?: ContentInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n permissions?: PermissionsInfo;\n definition?: Definition;\n\n constructor(input?: Partial<Node>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.content = input.content ? new ContentInfo(input.content) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n this.permissions = input.permissions ? new PermissionsInfo(input.permissions) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AssociationInfo } from './associationInfo';\nimport { ContentInfo } from './contentInfo';\nimport { DateAlfresco } from '../../content-custom-api';\nimport { Definition } from './definition';\nimport { PathInfo } from './pathInfo';\nimport { PermissionsInfo } from './permissionsInfo';\nimport { UserInfo } from './userInfo';\n\nexport class NodeAssociation {\n id: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n isFolder: boolean;\n isFile: boolean;\n isLocked?: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n parentId?: string;\n isLink?: boolean;\n isFavorite?: boolean;\n content?: ContentInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n permissions?: PermissionsInfo;\n definition?: Definition;\n association?: AssociationInfo;\n\n constructor(input?: Partial<NodeAssociation>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.content = input.content ? new ContentInfo(input.content) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n this.permissions = input.permissions ? new PermissionsInfo(input.permissions) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { NodeAssociation } from './nodeAssociation';\n\nexport class NodeAssociationEntry {\n entry: NodeAssociation;\n\n constructor(input?: Partial<NodeAssociationEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new NodeAssociation(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Node } from './node';\nimport { NodeAssociationEntry } from './nodeAssociationEntry';\nimport { Pagination } from './pagination';\n\nexport class NodeAssociationPagingList {\n pagination?: Pagination;\n entries?: NodeAssociationEntry[];\n source?: Node;\n\n constructor(input?: Partial<NodeAssociationPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new NodeAssociationEntry(item));\n }\n this.source = input.source ? new Node(input.source) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { NodeAssociationPagingList } from './nodeAssociationPagingList';\n\nexport class NodeAssociationPaging {\n list?: NodeAssociationPagingList;\n\n constructor(input?: Partial<NodeAssociationPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new NodeAssociationPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { PermissionElement } from './permissionElement';\n\nexport class PermissionsBody {\n isInheritanceEnabled?: boolean;\n locallySet?: PermissionElement[];\n\n constructor(input?: Partial<PermissionsBody>) {\n if (input) {\n Object.assign(this, input);\n if (input.locallySet) {\n this.locallySet = input.locallySet.map((item) => new PermissionElement(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AssociationBody } from './associationBody';\nimport { ChildAssociationBody } from './childAssociationBody';\nimport { Definition } from './definition';\nimport { NodeBodyCreateAssociation } from './nodeBodyCreateAssociation';\nimport { PermissionsBody } from './permissionsBody';\n\nexport class NodeBodyCreate {\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n aspectNames?: string[];\n properties?: any;\n permissions?: PermissionsBody;\n definition?: Definition;\n relativePath?: string;\n association?: NodeBodyCreateAssociation;\n secondaryChildren?: ChildAssociationBody[];\n targets?: AssociationBody[];\n\n constructor(input?: Partial<NodeBodyCreate>) {\n if (input) {\n Object.assign(this, input);\n this.permissions = input.permissions ? new PermissionsBody(input.permissions) : undefined;\n if (input.secondaryChildren) {\n this.secondaryChildren = input.secondaryChildren.map((item) => new ChildAssociationBody(item));\n }\n if (input.targets) {\n this.targets = input.targets.map((item) => new AssociationBody(item));\n }\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { PermissionsBody } from './permissionsBody';\n\nexport class NodeBodyUpdate {\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name?: string;\n nodeType?: string;\n aspectNames?: string[];\n properties?: { [key: string]: string };\n permissions?: PermissionsBody;\n\n constructor(input?: Partial<NodeBodyUpdate>) {\n if (input) {\n Object.assign(this, input);\n this.permissions = input.permissions ? new PermissionsBody(input.permissions) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ChildAssociationInfo } from './childAssociationInfo';\nimport { ContentInfo } from './contentInfo';\nimport { DateAlfresco } from '../../content-custom-api';\nimport { Definition } from './definition';\nimport { PathInfo } from './pathInfo';\nimport { PermissionsInfo } from './permissionsInfo';\nimport { UserInfo } from './userInfo';\n\nexport class NodeChildAssociation {\n id: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n isFolder: boolean;\n isFile: boolean;\n isLocked?: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n parentId?: string;\n isLink?: boolean;\n isFavorite?: boolean;\n content?: ContentInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n permissions?: PermissionsInfo;\n definition?: Definition;\n association?: ChildAssociationInfo;\n\n constructor(input?: Partial<NodeChildAssociation>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.content = input.content ? new ContentInfo(input.content) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n this.permissions = input.permissions ? new PermissionsInfo(input.permissions) : undefined;\n this.association = input.association ? new ChildAssociationInfo(input.association) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { NodeChildAssociation } from './nodeChildAssociation';\n\nexport class NodeChildAssociationEntry {\n entry: NodeChildAssociation;\n\n constructor(input?: Partial<NodeChildAssociationEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new NodeChildAssociation(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Node } from './node';\nimport { NodeChildAssociationEntry } from './nodeChildAssociationEntry';\nimport { Pagination } from './pagination';\n\nexport class NodeChildAssociationPagingList {\n pagination?: Pagination;\n entries?: NodeChildAssociationEntry[];\n source?: Node;\n\n constructor(input?: Partial<NodeChildAssociationPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new NodeChildAssociationEntry(item));\n }\n this.source = input.source ? new Node(input.source) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { NodeChildAssociationPagingList } from './nodeChildAssociationPagingList';\n\nexport class NodeChildAssociationPaging {\n list?: NodeChildAssociationPagingList;\n\n constructor(input?: Partial<NodeChildAssociationPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new NodeChildAssociationPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Node } from './node';\n\nexport class NodeEntry {\n entry: Node;\n\n constructor(input?: Partial<NodeEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Node(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Node } from './node';\nimport { NodeEntry } from './nodeEntry';\nimport { Pagination } from './pagination';\n\nexport class NodePagingList {\n pagination?: Pagination;\n entries?: NodeEntry[];\n source?: Node;\n\n constructor(input?: Partial<NodePagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new NodeEntry(item));\n }\n this.source = input.source ? new Node(input.source) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { NodePagingList } from './nodePagingList';\n\nexport class NodePaging {\n list?: NodePagingList;\n\n constructor(input?: Partial<NodePaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new NodePagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Person } from './person';\n\nexport class PersonEntry {\n entry: Person;\n\n constructor(input?: Partial<PersonEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Person(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { NetworkQuota } from './networkQuota';\n\n/**\n * A network is the group of users and sites that belong to an organization.\n * Networks are organized by email domain. When a user signs up for an\n * Alfresco account , their email domain becomes their Home Network.\n */\nexport class PersonNetwork {\n /**\n * This network's unique id\n */\n id: string;\n /**\n * Is this the home network?\n */\n homeNetwork?: boolean;\n isEnabled: boolean;\n createdAt?: Date;\n paidNetwork?: boolean;\n subscriptionLevel?: 'Free' | 'Standard' | 'Enterprise' | string;\n quotas?: NetworkQuota[];\n\n constructor(input?: Partial<PersonNetwork>) {\n if (input) {\n Object.assign(this, input);\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { PersonNetwork } from './personNetwork';\n\nexport class PersonNetworkEntry {\n entry: PersonNetwork;\n\n constructor(input?: Partial<PersonNetworkEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new PersonNetwork(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { PersonNetworkEntry } from './personNetworkEntry';\n\nexport class PersonNetworkPagingList {\n pagination: Pagination;\n entries: PersonNetworkEntry[];\n\n constructor(input?: Partial<PersonNetworkPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new PersonNetworkEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { PersonNetworkPagingList } from './personNetworkPagingList';\n\nexport class PersonNetworkPaging {\n list?: PersonNetworkPagingList;\n\n constructor(input?: Partial<PersonNetworkPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new PersonNetworkPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { PersonEntry } from './personEntry';\n\nexport class PersonPagingList {\n pagination?: Pagination;\n entries?: PersonEntry[];\n\n constructor(input?: Partial<PersonPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new PersonEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { PersonPagingList } from './personPagingList';\n\nexport class PersonPaging {\n list?: PersonPagingList;\n\n constructor(input?: Partial<PersonPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new PersonPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { PreferenceEntry } from './preferenceEntry';\n\nexport class PreferencePagingList {\n pagination: Pagination;\n entries: PreferenceEntry[];\n\n constructor(input?: Partial<PreferencePagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { PreferencePagingList } from './preferencePagingList';\n\nexport class PreferencePaging {\n list?: PreferencePagingList;\n\n constructor(input?: Partial<PreferencePaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new PreferencePagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { RatingAggregate } from './ratingAggregate';\n\n/**\n * A person can rate an item of content by liking it. They can also remove\n * their like of an item of content. API methods exist to get a list of\n * ratings and to add a new rating.\n */\nexport class Rating {\n id: string;\n aggregate?: RatingAggregate;\n ratedAt?: Date;\n /**\n * The rating. The type is specific to the rating scheme, boolean for the likes and an integer for the fiveStar.\n */\n myRating?: string;\n\n constructor(input?: Partial<Rating>) {\n if (input) {\n Object.assign(this, input);\n this.ratedAt = input.ratedAt ? DateAlfresco.parseDate(input.ratedAt) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Rating } from './rating';\n\nexport class RatingEntry {\n entry: Rating;\n\n constructor(input?: Partial<RatingEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Rating(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { RatingEntry } from './ratingEntry';\n\nexport class RatingPagingList {\n pagination: Pagination;\n entries: RatingEntry[];\n\n constructor(input?: Partial<RatingPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new RatingEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RatingPagingList } from './ratingPagingList';\n\nexport class RatingPaging {\n list?: RatingPagingList;\n\n constructor(input?: Partial<RatingPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new RatingPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ContentInfo } from './contentInfo';\n\nexport class Rendition {\n id?: string;\n content?: ContentInfo;\n status?: Rendition.StatusEnum | string;\n\n constructor(input?: Partial<Rendition>) {\n if (input) {\n Object.assign(this, input);\n this.content = input.content ? new ContentInfo(input.content) : undefined;\n }\n }\n\n}\nexport namespace Rendition {\n export type StatusEnum = 'CREATED' | 'NOT_CREATED';\n export const StatusEnum = {\n CREATED: 'CREATED' as StatusEnum,\n NOTCREATED: 'NOT_CREATED' as StatusEnum\n };\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Rendition } from './rendition';\n\nexport class RenditionEntry {\n entry: Rendition;\n\n constructor(input?: Partial<RenditionEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Rendition(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { RenditionEntry } from './renditionEntry';\n\nexport class RenditionPagingList {\n pagination?: Pagination;\n entries?: RenditionEntry[];\n\n constructor(input?: Partial<RenditionPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item: any) => new RenditionEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RenditionPagingList } from './renditionPagingList';\n\nexport class RenditionPaging {\n list?: RenditionPagingList;\n\n constructor(input?: Partial<RenditionPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new RenditionPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ContentInfo } from './contentInfo';\nimport { DateAlfresco } from '../../content-custom-api';\nimport { UserInfo } from './userInfo';\n\nexport class SharedLink {\n id?: string;\n expiresAt?: Date;\n nodeId?: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name?: string;\n title?: string;\n description?: string;\n modifiedAt?: Date;\n modifiedByUser?: UserInfo;\n sharedByUser?: UserInfo;\n content?: ContentInfo;\n /**\n * The allowable operations for the `Quickshare` link itself. See allowableOperationsOnTarget for the\n * allowable operations pertaining to the linked content node.\n */\n allowableOperations?: string[];\n /**\n * The allowable operations for the content node being shared.\n */\n allowableOperationsOnTarget?: string[];\n isFavorite?: boolean;\n /**\n * A subset of the target node's properties, system properties and properties already available in the SharedLink are excluded.\n */\n properties?: any;\n aspectNames?: string[];\n\n constructor(input?: Partial<SharedLink>) {\n if (input) {\n Object.assign(this, input);\n this.expiresAt = input.expiresAt ? DateAlfresco.parseDate(input.expiresAt) : undefined;\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.sharedByUser = input.sharedByUser ? new UserInfo(input.sharedByUser) : undefined;\n this.content = input.content ? new ContentInfo(input.content) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class SharedLinkBodyCreate {\n nodeId: string;\n expiresAt?: Date;\n\n constructor(input?: Partial<SharedLinkBodyCreate>) {\n if (input) {\n Object.assign(this, input);\n this.expiresAt = input.expiresAt ? DateAlfresco.parseDate(input.expiresAt) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SharedLink } from './sharedLink';\n\nexport class SharedLinkEntry {\n entry: SharedLink;\n\n constructor(input?: Partial<SharedLinkEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new SharedLink(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { SharedLinkEntry } from './sharedLinkEntry';\n\nexport class SharedLinkPagingList {\n pagination: Pagination;\n entries: SharedLinkEntry[];\n\n constructor(input?: Partial<SharedLinkPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new SharedLinkEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SharedLinkPagingList } from './sharedLinkPagingList';\n\nexport class SharedLinkPaging {\n list?: SharedLinkPagingList;\n\n constructor(input?: Partial<SharedLinkPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new SharedLinkPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class Site {\n id: string;\n guid: string;\n title: string;\n description?: string;\n visibility: Site.VisibilityEnum | string;\n preset?: string;\n role?: Site.RoleEnum | string;\n\n constructor(input?: Partial<Site>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n\n}\nexport namespace Site {\n export type VisibilityEnum = 'PRIVATE' | 'MODERATED' | 'PUBLIC';\n export const VisibilityEnum = {\n PRIVATE: 'PRIVATE' as VisibilityEnum,\n MODERATED: 'MODERATED' as VisibilityEnum,\n PUBLIC: 'PUBLIC' as VisibilityEnum\n };\n export type RoleEnum = 'SiteConsumer' | 'SiteCollaborator' | 'SiteContributor' | 'SiteManager';\n export const RoleEnum = {\n SiteConsumer: 'SiteConsumer' as RoleEnum,\n SiteCollaborator: 'SiteCollaborator' as RoleEnum,\n SiteContributor: 'SiteContributor' as RoleEnum,\n SiteManager: 'SiteManager' as RoleEnum\n };\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class SiteBodyCreate {\n id?: string;\n title: string;\n description?: string;\n visibility: SiteBodyCreate.VisibilityEnum | string;\n\n constructor(input?: Partial<SiteBodyCreate>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n\n}\nexport namespace SiteBodyCreate {\n export type VisibilityEnum = 'PUBLIC' | 'PRIVATE' | 'MODERATED';\n export const VisibilityEnum = {\n PUBLIC: 'PUBLIC' as VisibilityEnum,\n PRIVATE: 'PRIVATE' as VisibilityEnum,\n MODERATED: 'MODERATED' as VisibilityEnum\n };\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class SiteBodyUpdate {\n title?: string;\n description?: string;\n visibility?: SiteBodyUpdate.VisibilityEnum | string;\n\n constructor(input?: Partial<SiteBodyUpdate>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n\n}\nexport namespace SiteBodyUpdate {\n export type VisibilityEnum = 'PRIVATE' | 'MODERATED' | 'PUBLIC';\n export const VisibilityEnum = {\n PRIVATE: 'PRIVATE' as VisibilityEnum,\n MODERATED: 'MODERATED' as VisibilityEnum,\n PUBLIC: 'PUBLIC' as VisibilityEnum\n };\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { SiteContainerEntry } from './siteContainerEntry';\n\nexport class SiteContainerPagingList {\n pagination: Pagination;\n entries: SiteContainerEntry[];\n\n constructor(input?: Partial<SiteContainerPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SiteContainerPagingList } from './siteContainerPagingList';\n\nexport class SiteContainerPaging {\n list?: SiteContainerPagingList;\n\n constructor(input?: Partial<SiteContainerPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new SiteContainerPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Person } from './person';\n\nexport class SiteMember {\n id: string;\n person: Person;\n role: SiteMember.RoleEnum | string;\n isMemberOfGroup?: boolean;\n\n constructor(input?: Partial<SiteMember>) {\n if (input) {\n Object.assign(this, input);\n this.person = input.person ? new Person(input.person) : undefined;\n }\n }\n\n}\nexport namespace SiteMember {\n export type RoleEnum = 'SiteConsumer' | 'SiteCollaborator' | 'SiteContributor' | 'SiteManager';\n export const RoleEnum = {\n SiteConsumer: 'SiteConsumer' as RoleEnum,\n SiteCollaborator: 'SiteCollaborator' as RoleEnum,\n SiteContributor: 'SiteContributor' as RoleEnum,\n SiteManager: 'SiteManager' as RoleEnum\n };\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SiteMember } from './siteMember';\n\nexport class SiteMemberEntry {\n entry: SiteMember;\n\n constructor(input?: Partial<SiteMemberEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new SiteMember(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { SiteMemberEntry } from './siteMemberEntry';\n\nexport class SiteMemberPagingList {\n pagination: Pagination;\n entries: SiteMemberEntry[];\n\n constructor(input?: Partial<SiteMemberPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new SiteMemberEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SiteMemberPagingList } from './siteMemberPagingList';\n\nexport class SiteMemberPaging {\n list?: SiteMemberPagingList;\n\n constructor(input?: Partial<SiteMemberPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new SiteMemberPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SiteMemberPaging } from './siteMemberPaging';\n\nexport class SiteEntryRelations {\n members: SiteMemberPaging;\n\n constructor(input?: Partial<SiteEntryRelations>) {\n if (input) {\n Object.assign(this, input);\n this.members = input.members ? new SiteMemberPaging(input.members) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Site } from './site';\nimport { SiteEntryRelations } from './siteEntryRelations';\n\nexport class SiteEntry {\n entry: Site;\n relations?: SiteEntryRelations;\n\n constructor(input?: Partial<SiteEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Site(input.entry) : undefined;\n this.relations = input.relations ? new SiteEntryRelations(input.relations) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { GroupMember } from './groupMember';\n\nexport class SiteGroup {\n id: string;\n group: GroupMember;\n role: SiteGroup.RoleEnum | string;\n\n constructor(input?: Partial<SiteGroup>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\nexport namespace SiteGroup {\n export type RoleEnum = 'SiteConsumer' | 'SiteCollaborator' | 'SiteContributor' | 'SiteManager';\n export const RoleEnum = {\n SiteConsumer: 'SiteConsumer' as RoleEnum,\n SiteCollaborator: 'SiteCollaborator' as RoleEnum,\n SiteContributor: 'SiteContributor' as RoleEnum,\n SiteManager: 'SiteManager' as RoleEnum\n };\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SiteGroup } from './siteGroup';\n\nexport class SiteGroupEntry {\n entry: SiteGroup;\n\n constructor(input?: Partial<SiteGroupEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new SiteGroup(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { SiteGroupEntry } from './siteGroupEntry';\n\nexport class SiteGroupPagingList {\n pagination: Pagination;\n entries: SiteGroupEntry[];\n\n constructor(input?: Partial<SiteGroupPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new SiteGroupEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SiteGroupPagingList } from './siteGroupPagingList';\n\nexport class SiteGroupPaging {\n list?: SiteGroupPagingList;\n\n constructor(input?: Partial<SiteGroupPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new SiteGroupPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class SiteMembershipBodyCreate {\n role: SiteMembershipBodyCreate.RoleEnum | string;\n id: string; // contains both user and groupId\n\n constructor(input?: Partial<SiteMembershipBodyCreate>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n\n}\nexport namespace SiteMembershipBodyCreate {\n export type RoleEnum = 'SiteConsumer' | 'SiteCollaborator' | 'SiteContributor' | 'SiteManager';\n export const RoleEnum = {\n SiteConsumer: 'SiteConsumer' as RoleEnum,\n SiteCollaborator: 'SiteCollaborator' as RoleEnum,\n SiteContributor: 'SiteContributor' as RoleEnum,\n SiteManager: 'SiteManager' as RoleEnum\n };\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class SiteMembershipBodyUpdate {\n role: SiteMembershipBodyUpdate.RoleEnum | string;\n\n constructor(input?: Partial<SiteMembershipBodyUpdate>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n\n}\nexport namespace SiteMembershipBodyUpdate {\n export type RoleEnum = 'SiteConsumer' | 'SiteCollaborator' | 'SiteContributor' | 'SiteManager';\n export const RoleEnum = {\n SiteConsumer: 'SiteConsumer' as RoleEnum,\n SiteCollaborator: 'SiteCollaborator' as RoleEnum,\n SiteContributor: 'SiteContributor' as RoleEnum,\n SiteManager: 'SiteManager' as RoleEnum\n };\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class SiteMembershipRejectionBody {\n comment?: string;\n\n constructor(input?: Partial<SiteMembershipRejectionBody>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { Site } from './site';\n\nexport class SiteMembershipRequest {\n id: string;\n createdAt: Date;\n site: Site;\n message?: string;\n\n constructor(input?: Partial<SiteMembershipRequest>) {\n if (input) {\n Object.assign(this, input);\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.site = input.site ? new Site(input.site) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SiteMembershipRequest } from './siteMembershipRequest';\n\nexport class SiteMembershipRequestEntry {\n entry: SiteMembershipRequest;\n\n constructor(input?: Partial<SiteMembershipRequestEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new SiteMembershipRequest(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { SiteMembershipRequestEntry } from './siteMembershipRequestEntry';\n\nexport class SiteMembershipRequestPagingList {\n pagination: Pagination;\n entries: SiteMembershipRequestEntry[];\n\n constructor(input?: Partial<SiteMembershipRequestPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new SiteMembershipRequestEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SiteMembershipRequestPagingList } from './siteMembershipRequestPagingList';\n\nexport class SiteMembershipRequestPaging {\n list?: SiteMembershipRequestPagingList;\n\n constructor(input?: Partial<SiteMembershipRequestPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new SiteMembershipRequestPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { Person } from './person';\nimport { Site } from './site';\n\nexport class SiteMembershipRequestWithPerson {\n id: string;\n createdAt: Date;\n site: Site;\n person: Person;\n message?: string;\n\n constructor(input?: Partial<SiteMembershipRequestWithPerson>) {\n if (input) {\n Object.assign(this, input);\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.site = input.site ? new Site(input.site) : undefined;\n this.person = input.person ? new Person(input.person) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SiteMembershipRequestWithPerson } from './siteMembershipRequestWithPerson';\n\nexport class SiteMembershipRequestWithPersonEntry {\n entry: SiteMembershipRequestWithPerson;\n\n constructor(input?: Partial<SiteMembershipRequestWithPersonEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new SiteMembershipRequestWithPerson(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { SiteMembershipRequestWithPersonEntry } from './siteMembershipRequestWithPersonEntry';\n\nexport class SiteMembershipRequestWithPersonPagingList {\n pagination: Pagination;\n entries: SiteMembershipRequestWithPersonEntry[];\n\n constructor(input?: Partial<SiteMembershipRequestWithPersonPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new SiteMembershipRequestWithPersonEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SiteMembershipRequestWithPersonPagingList } from './siteMembershipRequestWithPersonPagingList';\n\nexport class SiteMembershipRequestWithPersonPaging {\n list?: SiteMembershipRequestWithPersonPagingList;\n\n constructor(input?: Partial<SiteMembershipRequestWithPersonPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new SiteMembershipRequestWithPersonPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { SiteEntry } from './siteEntry';\n\nexport class SitePagingList {\n pagination: Pagination;\n entries: SiteEntry[];\n\n constructor(input?: Partial<SitePagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new SiteEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SitePagingList } from './sitePagingList';\n\nexport class SitePaging {\n list?: SitePagingList;\n\n constructor(input?: Partial<SitePaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new SitePagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Site } from './site';\n\nexport class SiteRole {\n site: Site;\n id: string;\n guid: string;\n role: SiteRole.RoleEnum | string;\n\n constructor(input?: Partial<SiteRole>) {\n if (input) {\n Object.assign(this, input);\n this.site = input.site ? new Site(input.site) : undefined;\n }\n }\n\n}\nexport namespace SiteRole {\n export type RoleEnum = 'SiteConsumer' | 'SiteCollaborator' | 'SiteContributor' | 'SiteManager';\n export const RoleEnum = {\n SiteConsumer: 'SiteConsumer' as RoleEnum,\n SiteCollaborator: 'SiteCollaborator' as RoleEnum,\n SiteContributor: 'SiteContributor' as RoleEnum,\n SiteManager: 'SiteManager' as RoleEnum\n };\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SiteRole } from './siteRole';\n\nexport class SiteRoleEntry {\n entry: SiteRole;\n\n constructor(input?: Partial<SiteRoleEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new SiteRole(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { SiteRoleEntry } from './siteRoleEntry';\n\nexport class SiteRolePagingList {\n pagination: Pagination;\n entries: SiteRoleEntry[];\n\n constructor(input?: Partial<SiteRolePagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new SiteRoleEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SiteRolePagingList } from './siteRolePagingList';\n\nexport class SiteRolePaging {\n list?: SiteRolePagingList;\n\n constructor(input?: Partial<SiteRolePaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new SiteRolePagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class Tag {\n id: string;\n tag: string;\n count?: number;\n\n constructor(input?: Partial<Tag>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class TagBody {\n tag: string;\n\n constructor(input?: Partial<TagBody>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Tag } from './tag';\n\nexport class TagEntry {\n entry: Tag;\n\n constructor(input?: Partial<TagEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Tag(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { TagEntry } from './tagEntry';\n\nexport class TagPagingList {\n pagination: Pagination;\n entries: TagEntry[];\n\n constructor(input?: Partial<TagPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new TagEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TagPagingList } from './tagPagingList';\n\nexport class TagPaging {\n list?: TagPagingList;\n\n constructor(input?: Partial<TagPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new TagPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ContentInfo } from './contentInfo';\nimport { DateAlfresco } from '../../content-custom-api';\nimport { UserInfo } from './userInfo';\n\nexport class Version {\n id: string;\n versionComment?: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n isFolder: boolean;\n isFile: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n content?: ContentInfo;\n aspectNames?: string[];\n properties?: any;\n\n constructor(input?: Partial<Version>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.content = input.content ? new ContentInfo(input.content) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Version } from './version';\n\nexport class VersionEntry {\n entry?: Version;\n\n constructor(input?: Partial<VersionEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Version(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from './pagination';\nimport { VersionEntry } from './versionEntry';\n\nexport class VersionPagingList {\n pagination?: Pagination;\n entries?: VersionEntry[];\n\n constructor(input?: Partial<VersionPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new VersionEntry(item));\n }\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { VersionPagingList } from './versionPagingList';\n\nexport class VersionPaging {\n list?: VersionPagingList;\n\n constructor(input?: Partial<VersionPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new VersionPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './actionBodyExec';\nexport * from './actionDefinition';\nexport * from './actionDefinitionEntry';\nexport * from './actionDefinitionList';\nexport * from './actionDefinitionListList';\nexport * from './actionExecResult';\nexport * from './actionExecResultEntry';\nexport * from './actionParameterDefinition';\nexport * from './activity';\nexport * from './activityEntry';\nexport * from './activityPaging';\nexport * from './activityPagingList';\nexport * from './association';\nexport * from './associationBody';\nexport * from './associationEntry';\nexport * from './associationInfo';\nexport * from './auditApp';\nexport * from './auditAppEntry';\nexport * from './auditAppPaging';\nexport * from './auditAppPagingList';\nexport * from './auditBodyUpdate';\nexport * from './auditEntry';\nexport * from './auditEntryEntry';\nexport * from './auditEntryPaging';\nexport * from './auditEntryPagingList';\nexport * from './capabilities';\nexport * from './childAssociation';\nexport * from './childAssociationBody';\nexport * from './childAssociationEntry';\nexport * from './childAssociationInfo';\nexport * from './clientBody';\nexport * from './category';\nexport * from './categoryBody';\nexport * from './categoryEntry';\nexport * from './CategoryLinkBody';\nexport * from './categoryPaging';\nexport * from './categoryPagingList';\nexport * from './comment';\nexport * from './commentBody';\nexport * from './commentEntry';\nexport * from './commentPaging';\nexport * from './commentPagingList';\nexport * from './company';\nexport * from './constraint';\nexport * from './contentInfo';\nexport * from './definition';\nexport * from './deletedNodeBodyRestore';\nexport * from './deletedNodeEntry';\nexport * from './deletedNodesPaging';\nexport * from './deletedNodesPagingList';\nexport * from './directAccessUrl';\nexport * from './directAccessUrlEntry';\nexport * from './download';\nexport * from './downloadBodyCreate';\nexport * from './downloadEntry';\nexport * from './errorError';\nexport * from './favorite';\nexport * from './favoriteBodyCreate';\nexport * from './favoriteEntry';\nexport * from './favoritePaging';\nexport * from './favoritePagingList';\nexport * from './favoriteSite';\nexport * from './favoriteSiteBodyCreate';\nexport * from './favoriteSiteEntry';\nexport * from './group';\nexport * from './groupBodyCreate';\nexport * from './groupBodyUpdate';\nexport * from './groupEntry';\nexport * from './groupMember';\nexport * from './groupMemberEntry';\nexport * from './groupMemberPaging';\nexport * from './groupMemberPagingList';\nexport * from './groupMembershipBodyCreate';\nexport * from './groupPaging';\nexport * from './groupPagingList';\nexport * from './modelError';\nexport * from './networkQuota';\nexport * from './node';\nexport * from './nodeAssociationEntry';\nexport * from './nodeAssociationPaging';\nexport * from './nodeAssociationPagingList';\nexport * from './nodeBodyCopy';\nexport * from './nodeBodyCreate';\nexport * from './nodeBodyCreateAssociation';\nexport * from './nodeBodyLock';\nexport * from './nodeBodyMove';\nexport * from './nodeBodyUpdate';\nexport * from './nodeChildAssociationEntry';\nexport * from './nodeChildAssociationPaging';\nexport * from './nodeChildAssociationPagingList';\nexport * from './nodeEntry';\nexport * from './nodePaging';\nexport * from './nodePagingList';\nexport * from './pagination';\nexport * from './passwordResetBody';\nexport * from './pathElement';\nexport * from './pathInfo';\nexport * from './permissionElement';\nexport * from './permissionsBody';\nexport * from './permissionsInfo';\nexport * from './person';\nexport * from './personBodyCreate';\nexport * from './personBodyUpdate';\nexport * from './personEntry';\nexport * from './personNetwork';\nexport * from './personNetworkEntry';\nexport * from './personNetworkPaging';\nexport * from './personNetworkPagingList';\nexport * from './personPaging';\nexport * from './personPagingList';\nexport * from './preference';\nexport * from './preferenceEntry';\nexport * from './preferencePaging';\nexport * from './preferencePagingList';\nexport * from './probeEntry';\nexport * from './probeEntryEntry';\nexport * from './property';\nexport * from './rating';\nexport * from './ratingAggregate';\nexport * from './ratingBody';\nexport * from './ratingEntry';\nexport * from './ratingPaging';\nexport * from './ratingPagingList';\nexport * from './rendition';\nexport * from './renditionBodyCreate';\nexport * from './renditionEntry';\nexport * from './renditionPaging';\nexport * from './renditionPagingList';\nexport * from './revertBody';\nexport * from './sharedLink';\nexport * from './sharedLinkBodyCreate';\nexport * from './sharedLinkBodyEmail';\nexport * from './sharedLinkEntry';\nexport * from './sharedLinkPaging';\nexport * from './sharedLinkPagingList';\nexport * from './site';\nexport * from './siteBodyCreate';\nexport * from './siteBodyUpdate';\nexport * from './siteContainer';\nexport * from './siteContainerEntry';\nexport * from './siteContainerPaging';\nexport * from './siteContainerPagingList';\nexport * from './siteEntry';\nexport * from './siteMember';\nexport * from './siteMemberEntry';\nexport * from './siteMemberPaging';\nexport * from './siteMemberPagingList';\nexport * from './siteGroup';\nexport * from './siteGroupEntry';\nexport * from './siteGroupPaging';\nexport * from './siteGroupPagingList';\nexport * from './siteMembershipApprovalBody';\nexport * from './siteMembershipBodyCreate';\nexport * from './siteMembershipBodyUpdate';\nexport * from './siteMembershipRejectionBody';\nexport * from './siteMembershipRequest';\nexport * from './siteMembershipRequestBodyCreate';\nexport * from './siteMembershipRequestBodyUpdate';\nexport * from './siteMembershipRequestEntry';\nexport * from './siteMembershipRequestPaging';\nexport * from './siteMembershipRequestPagingList';\nexport * from './siteMembershipRequestWithPerson';\nexport * from './siteMembershipRequestWithPersonEntry';\nexport * from './siteMembershipRequestWithPersonPaging';\nexport * from './siteMembershipRequestWithPersonPagingList';\nexport * from './sitePaging';\nexport * from './sitePagingList';\nexport * from './siteRole';\nexport * from './siteRoleEntry';\nexport * from './siteRolePaging';\nexport * from './siteRolePagingList';\nexport * from './tag';\nexport * from './tagBody';\nexport * from './tagEntry';\nexport * from './tagPaging';\nexport * from './tagPagingList';\nexport * from './userInfo';\nexport * from './version';\nexport * from './versionEntry';\nexport * from './versionPaging';\nexport * from './versionPagingList';\nexport * from './deletedNode';\nexport * from './nodeAssociation';\nexport * from './nodeChildAssociation';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ActionBodyExec, ActionDefinitionEntry, ActionDefinitionList, ActionExecResultEntry } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentPagingQuery } from './types';\n\n/**\n * Actions service.\n */\nexport class ActionsApi extends BaseApi {\n /**\n * Retrieve the details of an action definition\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param actionDefinitionId The identifier of an action definition.\n * @returns Promise<ActionDefinitionEntry>\n */\n actionDetails(actionDefinitionId: string): Promise<ActionDefinitionEntry> {\n throwIfNotDefined(actionDefinitionId, 'actionDefinitionId');\n\n const pathParams = {\n actionDefinitionId\n };\n\n return this.get({\n path: '/action-definitions/{actionDefinitionId}',\n pathParams\n });\n }\n\n /**\n * Execute an action\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param actionBodyExec Action execution details\n * @returns Promise<ActionExecResultEntry>\n */\n actionExec(actionBodyExec: ActionBodyExec): Promise<ActionExecResultEntry> {\n throwIfNotDefined(actionBodyExec, 'actionBodyExec');\n\n return this.post({\n path: '/action-executions',\n bodyParam: actionBodyExec\n });\n }\n\n /**\n * Retrieve list of available actions\n *\n * **Note:** this endpoint is available in Alfresco 5.2.2 and newer versions.\n *\n * Gets a list of all available actions\n *\n * The default sort order for the returned list is for actions to be sorted by ascending name.\n * You can override the default by using the **orderBy** parameter.\n *\n * You can use any of the following fields to order the results:\n * - name\n * - title\n *\n *\n * @param opts Optional parameters\n * @param opts.orderBy A string to control the order of the entities returned in a list. You can use the **orderBy** parameter to\n * sort the list by one or more fields.\n * Each field has a default sort order, which is normally ascending order. Read the API method implementation notes\n * above to check if any fields used in this method have a descending default search order.\n * To sort the entities in a specific order, you can use the **ASC** and **DESC** keywords for any field.\n * @returns Promise<ActionDefinitionList>\n */\n listActions(opts?: { orderBy?: string[] } & ContentPagingQuery & ContentFieldsQuery): Promise<ActionDefinitionList> {\n opts = opts || {};\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/action-definitions',\n queryParams,\n returnType: ActionDefinitionList\n });\n }\n\n /**\n * Retrieve actions for a node\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Retrieve the list of actions that may be executed against the given **nodeId**.\n * The default sort order for the returned list is for actions to be sorted by ascending name.\n * You can override the default by using the **orderBy** parameter.\n * You can use any of the following fields to order the results:\n * - name\n * - title\n *\n * @param nodeId The identifier of a node.\n * @param opts Optional parameters\n * @param opts.orderBy A string to control the order of the entities returned in a list. You can use the **orderBy** parameter to\n * sort the list by one or more fields.\n * Each field has a default sort order, which is normally ascending order. Read the API method implementation notes\n * above to check if any fields used in this method have a descending default search order.\n * To sort the entities in a specific order, you can use the **ASC** and **DESC** keywords for any field.\n * @returns Promise<ActionDefinitionList>\n */\n nodeActions(nodeId: string, opts?: { orderBy?: string[] } & ContentPagingQuery & ContentFieldsQuery): Promise<ActionDefinitionList> {\n throwIfNotDefined(nodeId, 'nodeId');\n opts = opts || {};\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/nodes/{nodeId}/action-definitions',\n pathParams,\n queryParams,\n returnType: ActionDefinitionList\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ActivityPaging } from '../model/activityPaging';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentPagingQuery } from './types';\n\n/**\n * Activities service.\n */\nexport class ActivitiesApi extends BaseApi {\n /**\n * List activities\n *\n * Gets a list of activities for person **personId**.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param opts Optional parameters\n * @param opts.who A filter to include the user's activities only me, other user's activities only others'\n * @param opts.siteId Include only activity feed entries relating to this site.\n * @returns Promise<ActivityPaging>\n */\n listActivitiesForPerson(\n personId: string,\n opts?: {\n who?: string;\n siteId?: string;\n } & ContentPagingQuery &\n ContentFieldsQuery\n ): Promise<ActivityPaging> {\n throwIfNotDefined(personId, 'personId');\n opts = opts || {};\n\n const pathParams = {\n personId\n };\n\n const queryParams = {\n ...opts,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/people/{personId}/activities',\n pathParams,\n queryParams,\n returnType: ActivityPaging\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AuditApp, AuditAppPaging, AuditBodyUpdate, AuditEntryEntry, AuditEntryPaging } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentIncludeQuery, ContentPagingQuery } from './types';\n\n/**\n * Audit service.\n */\nexport class AuditApi extends BaseApi {\n /**\n * Permanently delete audit entries for an audit application\n *\n * **Note:** this endpoint is available in Alfresco 5.2.2 and newer versions.\n *\n * Permanently delete audit entries for an audit application **auditApplicationId**.\n * The **where** clause must be specified, either with an inclusive time period or for\n * an inclusive range of ids. The delete is within the context of the given audit application.\n * For example:\n * - where=(createdAt BETWEEN ('2017-06-02T12:13:51.593+01:00' , '2017-06-04T10:05:16.536+01:00')\n * - where=(id BETWEEN ('1234', '4321')\n * You must have admin rights to delete audit information.\n *\n * @param auditApplicationId The identifier of an audit application.\n * @param where Audit entries to permanently delete for an audit application, given an inclusive time period or range of ids. For example:\n * - where=(createdAt BETWEEN ('2017-06-02T12:13:51.593+01:00' , '2017-06-04T10:05:16.536+01:00')\n * - where=(id BETWEEN ('1234', '4321')\n * @return Promise<{}>\n */\n deleteAuditEntriesForAuditApp(auditApplicationId: string, where: string): Promise<void> {\n throwIfNotDefined(auditApplicationId, 'auditApplicationId');\n throwIfNotDefined(where, 'where');\n\n const pathParams = {\n auditApplicationId\n };\n\n const queryParams = {\n where\n };\n\n return this.delete({\n path: '/audit-applications/{auditApplicationId}/audit-entries',\n pathParams,\n queryParams\n });\n }\n\n /**\n * Permanently delete an audit entry\n *\n * **Note:** this endpoint is available in Alfresco 5.2.2 and newer versions.\n * You must have admin rights to delete audit information.\n *\n * @param auditApplicationId The identifier of an audit application.\n * @param auditEntryId The identifier of an audit entry.\n * @return Promise<{}>\n */\n deleteAuditEntry(auditApplicationId: string, auditEntryId: string): Promise<void> {\n throwIfNotDefined(auditApplicationId, 'auditApplicationId');\n throwIfNotDefined(auditEntryId, 'auditEntryId');\n\n const pathParams = {\n auditApplicationId,\n auditEntryId\n };\n\n return this.delete({\n path: '/audit-applications/{auditApplicationId}/audit-entries/{auditEntryId}',\n pathParams\n });\n }\n\n /**\n * Get audit application info\n *\n * **Note:** this endpoint is available in Alfresco 5.2.2 and newer versions.\n * You must have admin rights to retrieve audit information.\n *\n * You can use the **include** parameter to return the minimum and/or maximum audit record id for the application.\n *\n * @param auditApplicationId The identifier of an audit application.\n * @param opts Optional parameters\n * @return Promise<AuditApp>\n */\n getAuditApp(auditApplicationId: string, opts?: ContentFieldsQuery & ContentIncludeQuery): Promise<AuditApp> {\n throwIfNotDefined(auditApplicationId, 'auditApplicationId');\n\n const pathParams = {\n auditApplicationId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv'),\n include: buildCollectionParam(opts?.include, 'csv')\n };\n\n return this.get({\n path: '/audit-applications/{auditApplicationId}',\n pathParams,\n queryParams\n });\n }\n\n /**\n * Get audit entry\n *\n * **Note:** this endpoint is available in Alfresco 5.2.2 and newer versions.\n * You must have admin rights to access audit information.\n *\n * @param auditApplicationId The identifier of an audit application.\n * @param auditEntryId The identifier of an audit entry.\n * @param opts Optional parameters\n * @return Promise<AuditEntryEntry>\n */\n getAuditEntry(auditApplicationId: string, auditEntryId: string, opts?: ContentFieldsQuery): Promise<AuditEntryEntry> {\n throwIfNotDefined(auditApplicationId, 'auditApplicationId');\n throwIfNotDefined(auditEntryId, 'auditEntryId');\n\n const pathParams = {\n auditApplicationId,\n auditEntryId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/audit-applications/{auditApplicationId}/audit-entries/{auditEntryId}',\n pathParams,\n queryParams,\n returnType: AuditEntryEntry\n });\n }\n\n /**\n * Gets a list of audit applications in this repository.\n *\n * **Note:** this endpoint is available in Alfresco 5.2.2 and newer versions.\n *\n * This list may include pre-configured audit applications, if enabled, such as:\n *\n * - alfresco-access\n * - CMISChangeLog\n * - Alfresco Tagging Service\n * - Alfresco Sync Service (used by Enterprise Cloud Sync)\n *\n * You must have admin rights to retrieve audit information.\n *\n * @param opts Optional parameters\n * @return Promise<AuditAppPaging>\n */\n listAuditApps(opts?: ContentPagingQuery & ContentFieldsQuery): Promise<AuditAppPaging> {\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/audit-applications',\n queryParams,\n returnType: AuditAppPaging\n });\n }\n\n /**\n * List audit entries for an audit application\n *\n * **Note:** this endpoint is available in Alfresco 5.2.2 and newer versions.\n *\n * Gets a list of audit entries for audit application **auditApplicationId**.\n * You can use the **include** parameter to return additional **values** information.\n * The list can be filtered by one or more of:\n * - **createdByUser** person id\n * - **createdAt** inclusive time period\n * - **id** inclusive range of ids\n * - **valuesKey** audit entry values contains the exact matching key\n * - **valuesValue** audit entry values contains the exact matching value\n *\n * The default sort order is **createdAt** ascending, but you can use an optional **ASC** or **DESC**\n * modifier to specify an ascending or descending sort order.\n *\n * For example, specifying orderBy=createdAt DESC returns audit entries in descending **createdAt** order.\n * You must have admin rights to retrieve audit information.\n *\n * @param auditApplicationId The identifier of an audit application.\n * @param opts Optional parameters\n * @param opts.orderBy A string to control the order of the entities returned in a list. You can use the **orderBy** parameter to\n * sort the list by one or more fields.\n * Each field has a default sort order, which is normally ascending order. Read the API method implementation notes\n * above to check if any fields used in this method have a descending default search order.\n * To sort the entities in a specific order, you can use the **ASC** and **DESC** keywords for any field.\n * @param opts.where Optionally filter the list. Here are some examples:\n * - where=(createdByUser='jbloggs')\n * - where=(id BETWEEN ('1234', '4321')\n * - where=(createdAt BETWEEN ('2017-06-02T12:13:51.593+01:00' , '2017-06-04T10:05:16.536+01:00')\n * - where=(createdByUser='jbloggs' and createdAt BETWEEN ('2017-06-02T12:13:51.593+01:00' , '2017-06-04T10:05:16.536+01:00')\n * - where=(valuesKey='/alfresco-access/login/user')\n * - where=(valuesKey='/alfresco-access/transaction/action' and valuesValue='DELETE')\n * @returns Promise<AuditEntryPaging>\n */\n listAuditEntriesForAuditApp(\n auditApplicationId: string,\n opts?: {\n where?: string;\n orderBy?: string[];\n } & ContentPagingQuery &\n ContentFieldsQuery &\n ContentIncludeQuery\n ): Promise<AuditEntryPaging> {\n throwIfNotDefined(auditApplicationId, 'auditApplicationId');\n opts = opts || {};\n\n const pathParams = {\n auditApplicationId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n maxItems: opts?.maxItems,\n where: opts?.where,\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/audit-applications/{auditApplicationId}/audit-entries',\n pathParams,\n queryParams,\n returnType: AuditEntryPaging\n });\n }\n\n /**\n * List audit entries for a node\n *\n * **Note:** this endpoint is available in Alfresco 5.2.2 and newer versions.\n *\n * The list can be filtered by **createdByUser** and for a given inclusive time period.\n * The default sort order is **createdAt** ascending, but you can use an optional **ASC** or **DESC**\n * modifier to specify an ascending or descending sort order.\n *\n * For example, specifying orderBy=createdAt DESC returns audit entries in descending **createdAt** order.\n * This relies on the pre-configured 'alfresco-access' audit application.\n *\n * @param nodeId The identifier of a node.\n * @param opts Optional parameters\n * @param opts.orderBy A string to control the order of the entities returned in a list. You can use the **orderBy** parameter to\n * sort the list by one or more fields.\n * Each field has a default sort order, which is normally ascending order. Read the API method implementation notes\n * above to check if any fields used in this method have a descending default search order.\n * To sort the entities in a specific order, you can use the **ASC** and **DESC** keywords for any field.\n * @param opts.where Optionally filter the list. Here are some examples:\n * - where=(createdByUser='-me-')\n * - where=(createdAt BETWEEN ('2017-06-02T12:13:51.593+01:00' , '2017-06-04T10:05:16.536+01:00')\n * - where=(createdByUser='jbloggs' and createdAt BETWEEN ('2017-06-02T12:13:51.593+01:00' , '2017-06-04T10:05:16.536+01:00')\n * @returns Promise<AuditEntryPaging>\n */\n listAuditEntriesForNode(\n nodeId: string,\n opts?: {\n orderBy?: string[];\n where?: string;\n } & ContentPagingQuery &\n ContentIncludeQuery &\n ContentFieldsQuery\n ): Promise<AuditEntryPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n opts = opts || {};\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n maxItems: opts?.maxItems,\n where: opts?.where,\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/nodes/{nodeId}/audit-entries',\n pathParams,\n queryParams,\n returnType: AuditEntryPaging\n });\n }\n\n /**\n * Update audit application info\n *\n * **Note:** this endpoint is available in Alfresco 5.2.2 and newer versions.\n *\n * New audit entries will not be created for a disabled audit application until\n * it is re-enabled (and system-wide auditing is also enabled).\n * Note, it is still possible to query &/or delete any existing audit entries even\n * if auditing is disabled for the audit application.\n * You must have admin rights to update audit application.\n *\n * @param auditApplicationId The identifier of an audit application.\n * @param auditAppBodyUpdate The audit application to update.\n * @param opts Optional parameters\n * @returns Promise<AuditApp>\n */\n updateAuditApp(auditApplicationId: string, auditAppBodyUpdate: AuditBodyUpdate, opts?: ContentFieldsQuery): Promise<AuditApp> {\n throwIfNotDefined(auditApplicationId, 'auditApplicationId');\n throwIfNotDefined(auditAppBodyUpdate, 'auditAppBodyUpdate');\n\n const pathParams = {\n auditApplicationId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/audit-applications/{auditApplicationId}',\n pathParams,\n queryParams,\n bodyParam: auditAppBodyUpdate\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { CategoryBody, CategoryEntry, CategoryLinkBody, CategoryPaging } from '../model';\nimport { ContentFieldsQuery, ContentIncludeQuery, ContentPagingQuery } from './types';\n\nexport type CategoryQuery = ContentFieldsQuery & ContentIncludeQuery;\n\n/**\n * Categories service.\n */\nexport class CategoriesApi extends BaseApi {\n /**\n * List of subcategories within category\n *\n * Gets a list of subcategories with category **categoryId**.\n * The parameter categoryId can be set to the alias -root- to obtain a list of top level categories.\n *\n * You can use the **include** parameter to return additional **values** information.\n *\n * @param categoryId The identifier of a category.\n * @param opts Optional parameters\n * @returns Promise<CategoryPaging>\n */\n getSubcategories(categoryId: string, opts?: ContentPagingQuery & CategoryQuery): Promise<CategoryPaging> {\n throwIfNotDefined(categoryId, 'categoryId');\n\n const pathParams = {\n categoryId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n fields: buildCollectionParam(opts?.fields, 'csv'),\n include: buildCollectionParam(opts?.include, 'csv')\n };\n\n return this.get({\n path: '/categories/{categoryId}/subcategories',\n pathParams,\n queryParams,\n returnType: CategoryPaging\n });\n }\n\n /**\n * Get a category\n *\n * Get a specific category with categoryId.\n * You can use the **include** parameter to return additional **values** information.\n *\n * @param categoryId The identifier of a category.\n * @param opts Optional parameters\n * @returns Promise<CategoryEntry>\n */\n getCategory(categoryId: string, opts?: CategoryQuery): Promise<CategoryEntry> {\n throwIfNotDefined(categoryId, 'categoryId');\n\n const pathParams = {\n categoryId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv'),\n include: buildCollectionParam(opts?.include, 'csv')\n };\n\n return this.get({\n path: '/categories/{categoryId}',\n pathParams,\n queryParams,\n returnType: CategoryEntry\n });\n }\n\n /**\n * List of categories that node is assigned to\n *\n * @param nodeId The identifier of a node.\n * @param opts Optional parameters\n * @returns Promise<CategoryPaging>\n */\n getCategoryLinksForNode(nodeId: string, opts?: ContentPagingQuery & CategoryQuery): Promise<CategoryPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n fields: buildCollectionParam(opts?.fields, 'csv'),\n include: buildCollectionParam(opts?.include, 'csv')\n };\n\n return this.get({\n path: '/nodes/{nodeId}/category-links',\n pathParams,\n queryParams,\n returnType: CategoryPaging\n });\n }\n\n /**\n * Deletes the category **categoryId**.\n *\n * This will cause everything to be removed from the category.\n * You must have admin rights to delete a category.\n *\n * @param categoryId The identifier of a category.\n * @returns Promise<{}>\n */\n deleteCategory(categoryId: string): Promise<void> {\n throwIfNotDefined(categoryId, 'categoryId');\n\n const pathParams = {\n categoryId\n };\n\n return this.delete({\n path: '/categories/{categoryId}',\n pathParams\n });\n }\n\n /**\n * Unassign a node from category\n *\n * @param nodeId The identifier of a node.\n * @param categoryId The identifier of a category.\n * @returns Promise<{}>\n */\n unlinkNodeFromCategory(nodeId: string, categoryId: string): Promise<void> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(categoryId, 'categoryId');\n\n const pathParams = {\n nodeId,\n categoryId\n };\n\n return this.delete({\n path: '/nodes/{nodeId}/category-links/{categoryId}',\n pathParams\n });\n }\n\n /**\n * Update a category\n *\n * Updates the category **categoryId**.\n * You must have admin rights to update a category.\n *\n * @param categoryId The identifier of a category.\n * @param categoryBodyUpdate The updated category\n * @param opts Optional parameters\n * @returns Promise<CategoryEntry>\n */\n updateCategory(categoryId: string, categoryBodyUpdate: CategoryBody, opts?: CategoryQuery): Promise<CategoryEntry> {\n throwIfNotDefined(categoryId, 'categoryId');\n throwIfNotDefined(categoryBodyUpdate, 'categoryBodyUpdate');\n\n const pathParams = {\n categoryId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv'),\n include: buildCollectionParam(opts?.include, 'csv')\n };\n\n return this.put({\n path: '/categories/{categoryId}',\n pathParams,\n queryParams,\n bodyParam: categoryBodyUpdate,\n returnType: CategoryEntry\n });\n }\n\n /**\n * Create new categories\n *\n * Creates new categories within the category **categoryId**.\n * The parameter categoryId can be set to the alias -root- to create a new top level category.\n * You must have admin rights to create a category.\n *\n * @param categoryId The identifier of a category.\n * @param categoryBodyCreate List of categories to create.\n * @param opts Optional parameters.\n * @returns Promise<CategoryPaging | CategoryEntry>\n */\n createSubcategories(categoryId: string, categoryBodyCreate: CategoryBody[], opts?: CategoryQuery): Promise<CategoryPaging | CategoryEntry> {\n throwIfNotDefined(categoryId, 'categoryId');\n throwIfNotDefined(categoryBodyCreate, 'categoryBodyCreate');\n\n const pathParams = {\n categoryId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv'),\n include: buildCollectionParam(opts?.include, 'csv')\n };\n\n return this.post({\n path: '/categories/{categoryId}/subcategories',\n pathParams,\n queryParams,\n bodyParam: categoryBodyCreate,\n returnType: CategoryEntry\n });\n }\n\n /**\n * Assign a node to a category\n *\n * @param nodeId The identifier of a node.\n * @param categoryLinkBodyCreate The new category link\n * @param opts Optional parameters\n * @returns Promise<CategoryPaging | CategoryEntry>\n */\n linkNodeToCategory(nodeId: string, categoryLinkBodyCreate: CategoryLinkBody[], opts?: CategoryQuery): Promise<CategoryPaging | CategoryEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(categoryLinkBodyCreate, 'categoryLinkBodyCreate');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv'),\n include: buildCollectionParam(opts?.include, 'csv')\n };\n\n return this.post({\n path: '/nodes/{nodeId}/category-links',\n pathParams,\n queryParams,\n bodyParam: categoryLinkBodyCreate,\n returnType: CategoryEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { CommentBody } from '../model/commentBody';\nimport { CommentEntry } from '../model/commentEntry';\nimport { CommentPaging } from '../model/commentPaging';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentPagingQuery } from './types';\n\n/**\n * Comments service.\n */\nexport class CommentsApi extends BaseApi {\n /**\n * Create a comment\n *\n * @param nodeId The identifier of a node.\n * @param commentBodyCreate The comment text. Note that you can also provide a list of comments.\n * @param opts Optional parameters\n * @returns Promise<CommentEntry>\n */\n createComment(nodeId: string, commentBodyCreate: CommentBody, opts?: ContentFieldsQuery): Promise<CommentEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(commentBodyCreate, 'commentBodyCreate');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/nodes/{nodeId}/comments',\n pathParams,\n queryParams,\n bodyParam: commentBodyCreate,\n returnType: CommentEntry\n });\n }\n\n /**\n * Delete a comment\n *\n * @param nodeId The identifier of a node.\n * @param commentId The identifier of a comment.\n * @returns Promise<{}>\n */\n deleteComment(nodeId: string, commentId: string): Promise<void> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(commentId, 'commentId');\n\n const pathParams = {\n nodeId,\n commentId\n };\n\n return this.delete({\n path: '/nodes/{nodeId}/comments/{commentId}',\n pathParams\n });\n }\n\n /**\n * List comments\n *\n * Gets a list of comments for the node **nodeId**, sorted chronologically with the newest comment first.\n *\n * @param nodeId The identifier of a node.\n * @param opts Optional parameters\n * @returns Promise<CommentPaging>\n */\n listComments(nodeId: string, opts?: ContentPagingQuery & ContentFieldsQuery): Promise<CommentPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/nodes/{nodeId}/comments',\n pathParams,\n queryParams,\n returnType: CommentPaging\n });\n }\n\n /**\n * Update a comment\n *\n * @param nodeId The identifier of a node.\n * @param commentId The identifier of a comment.\n * @param commentBodyUpdate The JSON representing the comment to be updated.\n * @param opts Optional parameters\n * @returns Promise<CommentEntry>\n */\n updateComment(nodeId: string, commentId: string, commentBodyUpdate: CommentBody, opts?: ContentFieldsQuery): Promise<CommentEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(commentId, 'commentId');\n throwIfNotDefined(commentBodyUpdate, 'commentBodyUpdate');\n\n const pathParams = {\n nodeId,\n commentId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/nodes/{nodeId}/comments/{commentId}',\n pathParams,\n queryParams,\n bodyParam: commentBodyUpdate,\n returnType: CommentEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DownloadBodyCreate, DownloadEntry } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\n\n/**\n * Downloads service.\n */\nexport class DownloadsApi extends BaseApi {\n /**\n * Cancel a download\n *\n * **Note:** this endpoint is available in Alfresco 5.2.1 and newer versions.\n *\n * Cancels the creation of a download request.\n *\n * **Note:** The download node can be deleted using the **DELETE /nodes/{downloadId}** endpoint\n *\n * By default, if the download node is not deleted it will be picked up by a cleaner job which removes download nodes older than a configurable amount of time (default is 1 hour)\n * Information about the existing progress at the time of cancelling can be retrieved by calling the **GET /downloads/{downloadId}** endpoint\n * The cancel operation is done asynchronously.\n *\n * @param downloadId The identifier of a download node.\n * @returns Promise<{}>\n */\n cancelDownload(downloadId: string): Promise<any> {\n throwIfNotDefined(downloadId, 'downloadId');\n\n const pathParams = {\n downloadId\n };\n\n return this.delete({\n path: '/downloads/{downloadId}',\n pathParams\n });\n }\n\n /**\n * Create a new download\n *\n * **Note:** this endpoint is available in Alfresco 5.2.1 and newer versions.\n * **Note:** The content of the download node can be obtained using the **GET /nodes/{downloadId}/content** endpoint\n *\n * @param downloadBodyCreate The nodeIds the content of which will be zipped, which zip will be set as the content of our download node.\n * @param opts Optional parameters\n * @param opts.fields A list of field names. You can use this parameter to restrict the fields\n * returned within a response if, for example, you want to save on overall bandwidth.\n * The list applies to a returned individual entity or entries within a collection.\n * If the API method also supports the **include** parameter, then the fields specified in the **include**\n * parameter are returned in addition to those specified in the **fields** parameter.\n * @returns Promise<DownloadEntry>\n */\n createDownload(downloadBodyCreate: DownloadBodyCreate, opts?: { fields?: string[] }): Promise<DownloadEntry> {\n throwIfNotDefined(downloadBodyCreate, 'downloadBodyCreate');\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/downloads',\n queryParams,\n bodyParam: downloadBodyCreate\n });\n }\n\n /**\n * Get a download\n *\n * **Note:** this endpoint is available in Alfresco 5.2.1 and newer versions.\n *\n * @param downloadId The identifier of a download node.\n * @param opts Optional parameters\n * @param opts.fields A list of field names. You can use this parameter to restrict the fields\n * returned within a response if, for example, you want to save on overall bandwidth.\n * The list applies to a returned individual entity or entries within a collection.\n * If the API method also supports the **include** parameter, then the fields specified in the **include**\n * parameter are returned in addition to those specified in the **fields** parameter.\n * @returns Promise<DownloadEntry>\n */\n getDownload(downloadId: string, opts?: { fields?: string[] }): Promise<DownloadEntry> {\n throwIfNotDefined(downloadId, 'downloadId');\n\n const pathParams = {\n downloadId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/downloads/{downloadId}',\n pathParams,\n queryParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { FavoriteBodyCreate, FavoriteEntry, FavoritePaging, FavoriteSiteBodyCreate, FavoriteSiteEntry, SiteEntry, SitePaging } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentIncludeQuery, ContentPagingQuery } from './types';\n\n/**\n * Favorites service.\n */\nexport class FavoritesApi extends BaseApi {\n /**\n * Create a favorite\n *\n * Favorite a **site**, **file**, or **folder** in the repository.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param favoriteBodyCreate An object identifying the entity to be favorited.\n * The object consists of a single property which is an object with the name site, file, or folder.\n * The content of that object is the guid of the target entity.\n * @param opts Optional parameters\n * @param opts.include Returns additional information about favorites, the following optional fields can be requested:\n * - path (note, this only applies to files and folders)\n * - properties\n * @param opts.fields A list of field names. You can use this parameter to restrict the fields\n * returned within a response if, for example, you want to save on overall bandwidth.\n * The list applies to a returned individual entity or entries within a collection.\n * If the API method also supports the **include** parameter, then the fields specified in the **include**\n * parameter are returned in addition to those specified in the **fields** parameter.\n * @returns Promise<FavoriteEntry>\n */\n createFavorite(\n personId: string,\n favoriteBodyCreate: FavoriteBodyCreate,\n opts?: { include?: string[]; fields?: string[] }\n ): Promise<FavoriteEntry> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(favoriteBodyCreate, 'favoriteBodyCreate');\n\n const pathParams = {\n personId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/people/{personId}/favorites',\n pathParams,\n queryParams,\n bodyParam: favoriteBodyCreate,\n returnType: FavoriteEntry\n });\n }\n\n /**\n * Create a site favorite\n *\n * **Note:** this endpoint is deprecated as of Alfresco 4.2, and will be removed in the future. Use /people/{personId}/favorites instead.\n *\n * @param personId The identifier of a person.\n * @param favoriteSiteBodyCreate The id of the site to favorite.\n * @param opts Optional parameters\n * @returns Promise<FavoriteSiteEntry>\n */\n createSiteFavorite(personId: string, favoriteSiteBodyCreate: FavoriteSiteBodyCreate, opts?: ContentFieldsQuery): Promise<FavoriteSiteEntry> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(favoriteSiteBodyCreate, 'favoriteSiteBodyCreate');\n\n const pathParams = {\n personId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/people/{personId}/favorite-sites',\n pathParams,\n queryParams,\n bodyParam: favoriteSiteBodyCreate\n });\n }\n\n /**\n * Delete a favorite\n *\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param favoriteId The identifier of a favorite.\n * @returns Promise<{}>\n */\n deleteFavorite(personId: string, favoriteId: string): Promise<void> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(favoriteId, 'favoriteId');\n\n const pathParams = {\n personId,\n favoriteId\n };\n\n return this.delete({\n path: '/people/{personId}/favorites/{favoriteId}',\n pathParams\n });\n }\n\n /**\n * Delete a site favorite\n *\n * **Note:** this endpoint is deprecated as of Alfresco 4.2, and will be removed in the future.\n * Use /people/{personId}/favorites/{favoriteId} instead.\n *\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param siteId The identifier of a site.\n * @returns Promise<{}>\n */\n deleteSiteFavorite(personId: string, siteId: string): Promise<void> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(siteId, 'siteId');\n\n const pathParams = {\n personId,\n siteId\n };\n\n return this.delete({\n path: '/people/{personId}/favorite-sites/{siteId}',\n pathParams\n });\n }\n\n /**\n * Get a favorite\n *\n * Gets favorite **favoriteId** for person **personId**.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param favoriteId The identifier of a favorite.\n * @param opts Optional parameters\n * @param opts.include Returns additional information about favorites, the following optional fields can be requested:\n * - path (note, this only applies to files and folders)\n * - properties\n * @param opts.fields A list of field names. You can use this parameter to restrict the fields\n * returned within a response if, for example, you want to save on overall bandwidth.\n * The list applies to a returned individual entity or entries within a collection.\n * If the API method also supports the **include** parameter, then the fields specified in the **include**\n * parameter are returned in addition to those specified in the **fields** parameter.\n * @returns Promise<FavoriteEntry>\n */\n getFavorite(personId: string, favoriteId: string, opts?: { include?: string[]; fields?: string[] }): Promise<FavoriteEntry> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(favoriteId, 'favoriteId');\n\n const pathParams = {\n personId,\n favoriteId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/people/{personId}/favorites/{favoriteId}',\n pathParams,\n queryParams,\n returnType: FavoriteEntry\n });\n }\n\n /**\n * Get a favorite site\n *\n * **Note:** this endpoint is deprecated as of Alfresco 4.2, and will be removed in the future.\n * Use /people/{personId}/favorites/{favoriteId} instead.\n *\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param siteId The identifier of a site.\n * @param opts Optional parameters\n * @param opts.fields A list of field names. You can use this parameter to restrict the fields\n * returned within a response if, for example, you want to save on overall bandwidth.\n * The list applies to a returned individual entity or entries within a collection.\n * If the API method also supports the **include** parameter, then the fields specified in the **include**\n * parameter are returned in addition to those specified in the **fields** parameter.\n * @returns Promise<SiteEntry>\n */\n getFavoriteSite(personId: string, siteId: string, opts?: { fields?: string[] }): Promise<SiteEntry> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(siteId, 'siteId');\n\n const pathParams = {\n personId,\n siteId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/people/{personId}/favorite-sites/{siteId}',\n pathParams,\n queryParams,\n returnType: SiteEntry\n });\n }\n\n /**\n * List favorite sites\n *\n * **Note:** this endpoint is deprecated as of Alfresco 4.2, and will be removed in the future.\n * Use /people/{personId}/favorites instead.\n *\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param opts Optional parameters\n * @returns Promise<SitePaging>\n */\n listFavoriteSitesForPerson(personId: string, opts?: ContentPagingQuery & ContentFieldsQuery): Promise<SitePaging> {\n throwIfNotDefined(personId, 'personId');\n\n const pathParams = {\n personId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/people/{personId}/favorite-sites',\n pathParams,\n queryParams,\n returnType: SitePaging\n });\n }\n\n /**\n * List favorites\n *\n * Gets a list of favorites for person **personId**.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param opts optional parameters\n * @returns Promise<FavoritePaging>\n */\n listFavorites(\n personId: string,\n opts?: {\n orderBy?: string[];\n where?: string;\n } & ContentPagingQuery &\n ContentIncludeQuery &\n ContentFieldsQuery\n ): Promise<FavoritePaging> {\n throwIfNotDefined(personId, 'personId');\n opts = opts || {};\n\n const pathParams = {\n personId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n where: opts?.where,\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/people/{personId}/favorites',\n pathParams,\n queryParams,\n returnType: FavoritePaging\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { GroupBodyCreate, GroupBodyUpdate, GroupEntry, GroupMemberEntry, GroupMemberPaging, GroupMembershipBodyCreate, GroupPaging } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentIncludeQuery, ContentPagingQuery } from './types';\n\nexport interface ListGroupMembershipsOpts {\n /**\n * A string to control the order of the entities returned in a list. You can use the **orderBy** parameter to\n * sort the list by one or more fields.\n *\n * Each field has a default sort order, which is normally ascending order. Read the API method implementation notes\n * above to check if any fields used in this method have a descending default search order.\n *\n * To sort the entities in a specific order, you can use the **ASC** and **DESC** keywords for any field\n */\n orderBy?: string[];\n // A string to restrict the returned objects by using a predicate.\n where?: string;\n}\n\nexport interface GroupPagingOpts {\n /**\n * A string to control the order of the entities returned in a list. You can use the **orderBy** parameter to\n * sort the list by one or more fields.\n *\n * Each field has a default sort order, which is normally ascending order. Read the API method implementation notes\n * above to check if any fields used in this method have a descending default search order.\n *\n * To sort the entities in a specific order, you can use the **ASC** and **DESC** keywords for any field.\n */\n orderBy?: string[];\n /**\n * A string to restrict the returned objects by using a predicate.\n */\n where?: string;\n}\n\nexport type DeleteGroupOpts = { cascade?: boolean };\n\n/**\n * Groups service.\n */\nexport class GroupsApi extends BaseApi {\n /**\n * Create a group\n *\n * **Note:** this endpoint is available in Alfresco 5.2.1 and newer versions.\n *\n * Create a group.\n *\n * The group id must start with \\\"GROUP\\\\_\\\". If this is omitted it will be added automatically.\n * This format is also returned when listing groups or group memberships. It should be noted\n * that the other group-related operations also expect the id to start with \\\"GROUP\\\\_\\\".\n *\n * If one or more parentIds are specified then the group will be created and become a member of each of the specified parent groups.\n * If no parentIds are specified then the group will be created as a root group.\n * The group will be created in the **APP.DEFAULT** and **AUTH.ALF** zones.\n *\n * You must have admin rights to create a group.\n *\n * @param groupBodyCreate The group to create.\n * @param opts Optional parameters\n * @returns Promise<GroupEntry>\n */\n createGroup(groupBodyCreate: GroupBodyCreate, opts?: ContentIncludeQuery & ContentFieldsQuery): Promise<GroupEntry> {\n throwIfNotDefined(groupBodyCreate, 'groupBodyCreate');\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/groups',\n queryParams,\n bodyParam: groupBodyCreate\n });\n }\n\n /**\n * Create a group membership\n *\n * **Note:** this endpoint is available in Alfresco 5.2.1 and newer versions.\n *\n * Create a group membership (for an existing person or group) within a group **groupId**.\n * If the added group was previously a root group then it becomes a non-root group since it now has a parent.\n * It is an error to specify an **id** that does not exist.\n * You must have admin rights to create a group membership.\n *\n * @param groupId The identifier of a group.\n * @param groupMembershipBodyCreate The group membership to add (person or sub-group).\n * @param opts Optional parameters\n * @returns Promise<GroupMemberEntry>\n */\n createGroupMembership(\n groupId: string,\n groupMembershipBodyCreate: GroupMembershipBodyCreate,\n opts?: ContentFieldsQuery\n ): Promise<GroupMemberEntry> {\n throwIfNotDefined(groupId, 'groupId');\n throwIfNotDefined(groupMembershipBodyCreate, 'groupMembershipBodyCreate');\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/groups/{groupId}/members',\n pathParams: { groupId },\n queryParams,\n bodyParam: groupMembershipBodyCreate\n });\n }\n\n /**\n * Delete a group\n *\n * **Note:** this endpoint is available in Alfresco 5.2.1 and newer versions.\n *\n * Delete group **groupId**.\n * The option to cascade delete applies this recursively to any hierarchy of group members.\n * In this case, removing a group member does not delete the person or sub-group itself.\n * If a removed sub-group no longer has any parent groups then it becomes a root group.\n * You must have admin rights to delete a group.\n *\n * @param groupId The identifier of a group.\n * @param opts Optional parameters\n * @returns Promise\n */\n deleteGroup(groupId: string, opts?: DeleteGroupOpts): Promise<void> {\n throwIfNotDefined(groupId, 'groupId');\n opts = opts || {};\n\n const cascadeDelete = opts['cascade'] ? opts['cascade'] : false;\n\n const pathParams = {\n groupId\n };\n\n const queryParams = {\n cascade: cascadeDelete\n };\n\n return this.delete({\n path: '/groups/{groupId}',\n pathParams,\n queryParams\n });\n }\n\n /**\n * Delete a group membership\n *\n * **Note:** this endpoint is available in Alfresco 5.2.1 and newer versions.\n *\n * Delete group member **groupMemberId** (person or sub-group) from group **groupId**.\n * Removing a group member does not delete the person or sub-group itself.\\\n * If a removed sub-group no longer has any parent groups then it becomes a root group.\n *\n * @param groupId The identifier of a group.\n * @param groupMemberId The identifier of a person or group.\n * @returns Promise<{}>\n */\n deleteGroupMembership(groupId: string, groupMemberId: string): Promise<void> {\n throwIfNotDefined(groupId, 'groupId');\n throwIfNotDefined(groupMemberId, 'groupMemberId');\n\n const pathParams = {\n groupId,\n groupMemberId\n };\n\n return this.delete({\n path: '/groups/{groupId}/members/{groupMemberId}',\n pathParams\n });\n }\n\n /**\n * Get group details\n *\n * **Note:** this endpoint is available in Alfresco 5.2.1 and newer versions.\n *\n * Get details for group **groupId**.\n * You can use the **include** parameter to return additional information.\n *\n * @param groupId The identifier of a group.\n * @param opts Optional parameters\n * @returns Promise<GroupEntry>\n */\n getGroup(groupId: string, opts?: ContentIncludeQuery & ContentFieldsQuery): Promise<GroupEntry> {\n throwIfNotDefined(groupId, 'groupId');\n\n const pathParams = {\n groupId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/groups/{groupId}',\n pathParams,\n queryParams\n });\n }\n\n /**\n * List memberships of a group\n *\n * **Note:** this endpoint is available in Alfresco 5.2.1 and newer versions.\n *\n * Gets a list of the group memberships for the group **groupId**.\n *\n * You can use the **where** parameter to filter the returned groups by **memberType**.\n * Example to filter by **memberType**, use any one of:\n * - (memberType='GROUP')\n * - (memberType='PERSON')\n *\n * The default sort order for the returned list is for group members to be sorted by ascending displayName.\n * You can override the default by using the **orderBy** parameter. You can specify one of the following fields in the **orderBy** parameter:\n * - id\n * - displayName\n *\n * @param groupId The identifier of a group.\n * @param opts Optional parameters\n * @returns Promise<GroupMemberPaging>\n */\n listGroupMemberships(groupId: string, opts?: ListGroupMembershipsOpts & ContentPagingQuery & ContentFieldsQuery): Promise<GroupMemberPaging> {\n throwIfNotDefined(groupId, 'groupId');\n\n const pathParams = {\n groupId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n where: opts?.where,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/groups/{groupId}/members',\n pathParams,\n queryParams,\n returnType: GroupMemberPaging\n });\n }\n\n /**\n * List group memberships\n *\n * **Note:** this endpoint is available in Alfresco 5.2.1 and newer versions.\n *\n * @param personId The identifier of a person.\n * @param opts Optional parameters\n * @param opts.skipCount The number of entities that exist in the collection before those included in this list.\n * If not supplied then the default value is 0. (default to 0)\n * @param opts.maxItems The maximum number of items to return in the list. If not supplied then the default value is 100. (default to 100)\n * @param opts.orderBy A string to control the order of the entities returned in a list. You can use the **orderBy** parameter to\n * sort the list by one or more fields.\n * Each field has a default sort order, which is normally ascending order. Read the API method implementation notes\n * above to check if any fields used in this method have a descending default search order.\n * To sort the entities in a specific order, you can use the **ASC** and **DESC** keywords for any field.\n * @param opts.include Returns additional information about the group. The following optional fields can be requested:\n * - parentIds\n * - zones\n * @param opts.where A string to restrict the returned objects by using a predicate.\n * @param opts.fields A list of field names.\n * You can use this parameter to restrict the fields\n * returned within a response if, for example, you want to save on overall bandwidth.\n * The list applies to a returned individual entity or entries within a collection.\n * If the API method also supports the **include** parameter, then the fields specified in the **include**\n * parameter are returned in addition to those specified in the **fields** parameter.\n * @returns Promise<GroupPaging>\n */\n listGroupMembershipsForPerson(\n personId: string,\n opts?: GroupPagingOpts & ContentPagingQuery & ContentIncludeQuery & ContentFieldsQuery\n ): Promise<GroupPaging> {\n throwIfNotDefined(personId, 'personId');\n\n const pathParams = {\n personId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n include: buildCollectionParam(opts?.include, 'csv'),\n where: opts?.where,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/people/{personId}/groups',\n pathParams,\n queryParams,\n returnType: GroupPaging\n });\n }\n\n /**\n * List groups\n *\n * **Note:** this endpoint is available in Alfresco 5.2.1 and newer versions.\n *\n * @param opts Optional parameters\n * @returns Promise<GroupPaging>\n */\n listGroups(opts?: GroupPagingOpts & ContentPagingQuery & ContentIncludeQuery & ContentFieldsQuery): Promise<GroupPaging> {\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n include: buildCollectionParam(opts?.include, 'csv'),\n where: opts?.where,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/groups',\n queryParams,\n returnType: GroupPaging\n });\n }\n\n /**\n * Update group details\n *\n * **Note:** this endpoint is available in Alfresco 5.2.1 and newer versions.\n * You must have admin rights to update a group.\n *\n * @param groupId The identifier of a group.\n * @param groupBodyUpdate The group information to update.\n * @param opts Optional parameters\n * @returns Promise<GroupEntry>\n */\n updateGroup(groupId: string, groupBodyUpdate: GroupBodyUpdate, opts?: ContentIncludeQuery & ContentFieldsQuery): Promise<GroupEntry> {\n throwIfNotDefined(groupId, 'groupId');\n throwIfNotDefined(groupBodyUpdate, 'groupBodyUpdate');\n\n const pathParams = {\n groupId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/groups/{groupId}',\n pathParams,\n queryParams,\n bodyParam: groupBodyUpdate\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { PersonNetworkEntry } from '../model/personNetworkEntry';\nimport { PersonNetworkPaging } from '../model/personNetworkPaging';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentPagingQuery } from './types';\n\n/**\n * Networks service.\n */\nexport class NetworksApi extends BaseApi {\n /**\n * Get a network\n *\n * @param networkId The identifier of a network.\n * @param opts Optional parameters\n * @returns Promise<PersonNetworkEntry>\n */\n getNetwork(networkId: string, opts?: ContentFieldsQuery): Promise<PersonNetworkEntry> {\n throwIfNotDefined(networkId, 'networkId');\n\n const pathParams = {\n networkId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/networks/{networkId}',\n pathParams,\n queryParams,\n returnType: PersonNetworkEntry\n });\n }\n\n /**\n * Get network information\n *\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param networkId The identifier of a network.\n * @param opts Optional parameters\n * @returns Promise<PersonNetworkEntry>\n */\n getNetworkForPerson(personId: string, networkId: string, opts?: ContentFieldsQuery): Promise<PersonNetworkEntry> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(networkId, 'networkId');\n\n const pathParams = {\n personId,\n networkId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/people/{personId}/networks/{networkId}',\n pathParams,\n queryParams,\n returnType: PersonNetworkEntry\n });\n }\n\n /**\n * List network membership\n *\n * Gets a list of network memberships for person **personId**.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param opts Optional parameters\n * @returns Promise<PersonNetworkPaging>\n */\n listNetworksForPerson(personId: string, opts?: ContentPagingQuery & ContentFieldsQuery): Promise<PersonNetworkPaging> {\n throwIfNotDefined(personId, 'personId');\n\n const pathParams = {\n personId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/people/{personId}/networks',\n pathParams,\n queryParams,\n returnType: PersonNetworkPaging\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ClientBody, PasswordResetBody, PersonBodyCreate, PersonBodyUpdate, PersonEntry, PersonPaging } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentIncludeQuery, ContentPagingQuery } from './types';\n\n/**\n * People service.\n */\nexport class PeopleApi extends BaseApi {\n /**\n * Create person\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n * **Note:** setting properties of type d:content and d:category are not supported.\n *\n * @param personBodyCreate The person details.\n * @param opts Optional parameters\n * @returns Promise<PersonEntry>\n */\n createPerson(personBodyCreate: PersonBodyCreate, opts?: ContentFieldsQuery): Promise<PersonEntry> {\n throwIfNotDefined(personBodyCreate, 'personBodyCreate');\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/people',\n queryParams,\n bodyParam: personBodyCreate,\n returnType: PersonEntry\n });\n }\n\n /**\n * Delete avatar image\n *\n * **Note:** this endpoint is available in Alfresco 5.2.2 and newer versions.\n *\n * Deletes the avatar image related to person **personId**.\n * You must be the person or have admin rights to update a person's avatar.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @returns Promise<{}>\n */\n deleteAvatarImage(personId: string): Promise<void> {\n throwIfNotDefined(personId, 'personId');\n\n const pathParams = {\n personId\n };\n\n return this.delete({\n path: '/people/{personId}/avatar',\n pathParams\n });\n }\n\n /**\n * Get avatar image\n *\n * **Note:** this endpoint is available in Alfresco 5.2.2 and newer versions.\n *\n * Gets the avatar image related to the person **personId**. If the person has no related avatar then\n * the **placeholder** query parameter can be optionally used to request a placeholder image to be returned.\n *\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param opts Optional parameters\n * @param opts.attachment **true** enables a web browser to download the file as an attachment.\n * **false** means a web browser may preview the file in a new tab or window, but not download the file.\n * You can only set this parameter to **false** if the content type of the file is in the supported list;\n * for example, certain image files and PDF files.\n * If the content type is not supported for preview, then a value of **false** is ignored, and\n * the attachment will be returned in the response. (default to true)\n * @param opts.ifModifiedSince Only returns the content if it has been modified since the date provided.\n * Use the date format defined by HTTP. For example, Wed, 09 Mar 2016 16:56:34 GMT.\n * @param opts.placeholder If **true** and there is no avatar for this **personId**\n * then the placeholder image is returned, rather than a 404 response. (default to true)\n * @returns Promise<Blob>\n */\n getAvatarImage(personId: string, opts?: { attachment?: boolean; placeholder?: boolean; ifModifiedSince?: string }): Promise<Blob> {\n throwIfNotDefined(personId, 'personId');\n\n const pathParams = {\n personId\n };\n\n const queryParams = {\n attachment: opts?.attachment,\n placeholder: opts?.placeholder\n };\n\n const headerParams = {\n 'If-Modified-Since': opts?.ifModifiedSince\n };\n\n const accepts = ['application/octet-stream'];\n\n return this.get({\n path: '/people/{personId}/avatar',\n pathParams,\n queryParams,\n headerParams,\n accepts,\n returnType: 'blob'\n });\n }\n\n /**\n * Get a person\n *\n * You can use the `-me-` string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param opts Optional parameters\n * @returns Promise<PersonEntry>\n */\n getPerson(personId: string, opts?: ContentFieldsQuery): Promise<PersonEntry> {\n throwIfNotDefined(personId, 'personId');\n\n const pathParams = {\n personId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/people/{personId}',\n pathParams,\n queryParams,\n returnType: PersonEntry\n });\n }\n\n /**\n * List people\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * List people.\n *\n * You can use the **include** parameter to return any additional information.\n *\n * The default sort order for the returned list is for people to be sorted by ascending id.\n * You can override the default by using the **orderBy** parameter.\n *\n * You can use any of the following fields to order the results:\n * - id\n * - firstName\n * - lastName\n *\n * @param opts Optional parameters\n * @param opts.orderBy A string to control the order of the entities returned in a list. You can use the **orderBy** parameter to\n * sort the list by one or more fields.\n *\n * Each field has a default sort order, which is normally ascending order. Read the API method implementation notes\n * above to check if any fields used in this method have a descending default search order.\n *\n * To sort the entities in a specific order, you can use the **ASC** and **DESC** keywords for any field.\n * @returns Promise<PersonPaging>\n */\n listPeople(\n opts?: {\n orderBy?: string[];\n } & ContentPagingQuery &\n ContentIncludeQuery &\n ContentFieldsQuery\n ): Promise<PersonPaging> {\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/people',\n queryParams,\n returnType: PersonPaging\n });\n }\n\n /**\n * Request password reset\n *\n * **Note:** this endpoint is available in Alfresco 5.2.1 and newer versions.\n * **Note:** No authentication is required to call this endpoint.\n *\n * @param personId The identifier of a person.\n * @param clientBody The client name to send email with app-specific url.\n * @returns Promise<{}>\n */\n requestPasswordReset(personId: string, clientBody: ClientBody): Promise<any> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(clientBody, 'clientBody');\n\n const pathParams = {\n personId\n };\n\n return this.post({\n path: '/people/{personId}/request-password-reset',\n pathParams,\n bodyParam: clientBody\n });\n }\n\n /**\n * Reset password\n *\n * **Note:** this endpoint is available in Alfresco 5.2.1 and newer versions.\n * **Note:** No authentication is required to call this endpoint.\n *\n * @param personId The identifier of a person.\n * @param passwordResetBody The reset password details\n * @returns Promise<{}>\n */\n resetPassword(personId: string, passwordResetBody: PasswordResetBody): Promise<any> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(passwordResetBody, 'passwordResetBody');\n\n const pathParams = {\n personId\n };\n\n return this.post({\n path: '/people/{personId}/reset-password',\n pathParams,\n bodyParam: passwordResetBody\n });\n }\n\n /**\n * Update avatar image\n *\n * **Note:** this endpoint is available in Alfresco 5.2.2 and newer versions.\n *\n * Updates the avatar image related to the person **personId**.\n *\n * The request body should be the binary stream for the avatar image. The content type of the file\n * should be an image file. This will be used to generate an \\\"avatar\\\" thumbnail rendition.\n *\n * You must be the person or have admin rights to update a person's avatar.\n *\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param contentBodyUpdate The binary content\n * @returns Promise<{}>\n */\n updateAvatarImage(personId: string, contentBodyUpdate: string): Promise<any> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(contentBodyUpdate, 'contentBodyUpdate');\n\n const pathParams = {\n personId\n };\n\n const contentTypes = ['application/octet-stream'];\n\n return this.put({\n path: '/people/{personId}/avatar',\n pathParams,\n bodyParam: contentBodyUpdate,\n contentTypes\n });\n }\n\n /**\n * Update person\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * You can use the `-me-` string in place of <personId> to specify the currently authenticated user.\n * If applicable, the given person's login access can also be optionally disabled or re-enabled.\n * You must have admin rights to update a person — unless updating your own details.\n * If you are changing your password, as a non-admin user, then the existing password must also\n * be supplied (using the oldPassword field in addition to the new password value).\n *\n * Admin users cannot be disabled by setting enabled to false.\n * Non-admin users may not disable themselves.\n * **Note:** setting properties of type d:content and d:category are not supported.\n *\n * @param personId The identifier of a person.\n * @param personBodyUpdate The person details.\n * @param opts Optional parameters\n * @returns Promise<PersonEntry>\n */\n updatePerson(personId: string, personBodyUpdate: PersonBodyUpdate, opts?: ContentFieldsQuery): Promise<PersonEntry> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(personBodyUpdate, 'personBodyUpdate');\n\n const pathParams = {\n personId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/people/{personId}',\n pathParams,\n queryParams,\n bodyParam: personBodyUpdate,\n returnType: PersonEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { PreferenceEntry, PreferencePaging } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentPagingQuery } from './types';\n\n/**\n * Preferences service.\n */\nexport class PreferencesApi extends BaseApi {\n /**\n * Get a preference\n *\n * Gets a specific preference for person **personId**.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param preferenceName The name of the preference.\n * @param opts Optional parameters\n * @returns Promise<PreferenceEntry>\n */\n getPreference(personId: string, preferenceName: string, opts?: ContentFieldsQuery): Promise<PreferenceEntry> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(preferenceName, 'preferenceName');\n\n const pathParams = {\n personId,\n preferenceName\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/people/{personId}/preferences/{preferenceName}',\n pathParams,\n queryParams\n });\n }\n\n /**\n * List preferences\n *\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n * Note that each preference consists of an **id** and a **value**.\n *\n * The **value** can be of any JSON type.\n *\n * @param personId The identifier of a person.\n * @param opts Optional parameters\n * @returns Promise<PreferencePaging>\n */\n listPreferences(personId: string, opts?: ContentPagingQuery & ContentFieldsQuery): Promise<PreferencePaging> {\n throwIfNotDefined(personId, 'personId');\n\n const pathParams = {\n personId\n };\n\n const queryParams = {\n ...(opts || {}),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/people/{personId}/preferences',\n pathParams,\n queryParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ProbeEntry } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * Probes service.\n */\nexport class ProbesApi extends BaseApi {\n /**\n * Check readiness and liveness of the repository\n *\n * **Note:** this endpoint is available in Alfresco 6.0 and newer versions.\n *\n * Returns a status of 200 to indicate success and 503 for failure.\n * The readiness probe is normally only used to check repository startup.\n * The liveness probe should then be used to check the repository is still responding to requests.\n * **Note:** No authentication is required to call this endpoint.\n *\n * @param probeId The name of the probe:\n * - -ready-\n * - -live-\n * @returns Promise<ProbeEntry>\n */\n getProbe(probeId: string): Promise<ProbeEntry> {\n throwIfNotDefined(probeId, 'probeId');\n\n const pathParams = {\n probeId\n };\n\n return this.get({\n path: '/probes/{probeId}',\n pathParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { NodePaging } from '../model/nodePaging';\nimport { PersonPaging } from '../model/personPaging';\nimport { SitePaging } from '../model/sitePaging';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentIncludeQuery, ContentPagingQuery } from './types';\n\nexport type FindQuery = {\n /**\n * The term to search for.\n */\n term?: string;\n /**\n * A string to control the order of the entities returned in a list. You can use the **orderBy** parameter to\n * sort the list by one or more fields.\n *\n * Each field has a default sort order, which is normally ascending order. Read the API method implementation notes\n * above to check if any fields used in this method have a descending default search order.\n *\n * To sort the entities in a specific order, you can use the **ASC** and **DESC** keywords for any field.\n */\n orderBy?: string[];\n} & ContentPagingQuery &\n ContentFieldsQuery;\n\nexport type FindNodesQuery = {\n /**\n * The id of the node to start the search from.\n * Supports the aliases **-my-**, **-root-** and **-shared-**.\n */\n rootNodeId?: string;\n /**\n * Restrict the returned results to only those of the given node type and its sub-types\n */\n nodeType?: string;\n} & FindQuery;\n\n/**\n * Queries service.\n */\nexport class QueriesApi extends BaseApi {\n /**\n * Find nodes\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Gets a list of nodes that match the given search criteria.\n *\n * The search term is used to look for nodes that match against name, title, description, full text content or tags.\n *\n * The search term:\n * - must contain a minimum of 3 alphanumeric characters\n * - allows \\\"quoted term\\\"\n * - can optionally use '*' for wildcard matching\n *\n * By default, file and folder types will be searched unless a specific type is provided as a query parameter.\n *\n * By default, the search will be across the repository unless a specific root node id is provided to start the search from.\n *\n * You can sort the result list using the **orderBy** parameter. You can specify one or more of the following fields in the **orderBy** parameter:\n * - name\n * - modifiedAt\n * - createdAt\n *\n * @param term The term to search for.\n * @param opts Optional parameters\n * @returns Promise<NodePaging>\n */\n findNodes(term: string, opts?: FindNodesQuery & ContentPagingQuery & ContentIncludeQuery & ContentFieldsQuery): Promise<NodePaging> {\n throwIfNotDefined(term, 'term');\n\n const queryParams = {\n term,\n rootNodeId: opts?.rootNodeId,\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n nodeType: opts?.nodeType,\n include: buildCollectionParam(opts?.include, 'csv'),\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/queries/nodes',\n queryParams,\n returnType: NodePaging\n });\n }\n\n /**\n * Find people\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Gets a list of people that match the given search criteria.\n *\n * The search term is used to look for matches against person id, firstname and lastname.\n *\n * The search term:\n * - must contain a minimum of 2 alphanumeric characters\n * - can optionally use '*' for wildcard matching within the term\n *\n * You can sort the result list using the **orderBy** parameter. You can specify one or more of the following fields in the **orderBy** parameter:\n * - id\n * - firstName\n * - lastName\n *\n * @param term The term to search for.\n * @param opts Optional parameters\n * @returns Promise<PersonPaging>\n */\n findPeople(term: string, opts?: FindQuery): Promise<PersonPaging> {\n throwIfNotDefined(term, 'term');\n opts = opts || {};\n\n const queryParams = {\n term,\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n fields: buildCollectionParam(opts?.fields, 'csv'),\n orderBy: buildCollectionParam(opts?.orderBy, 'csv')\n };\n\n return this.get({\n path: '/queries/people',\n queryParams,\n returnType: PersonPaging\n });\n }\n\n /**\n * Find sites\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Gets a list of sites that match the given search criteria.\n *\n * The search term is used to look for sites that match against site id, title or description.\n *\n * The search term:\n * - must contain a minimum of 2 alphanumeric characters\n * - can optionally use '*' for wildcard matching within the term\n *\n * The default sort order for the returned list is for sites to be sorted by ascending id.\n * You can override the default by using the **orderBy** parameter. You can specify one or more of the following fields in the **orderBy** parameter:\n * - id\n * - title\n * - description\n *\n * @param term The term to search for.\n * @param opts Optional parameters\n * @returns Promise<SitePaging>\n */\n findSites(term: string, opts?: FindQuery): Promise<SitePaging> {\n throwIfNotDefined(term, 'term');\n\n const queryParams = {\n term,\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/queries/sites',\n queryParams,\n returnType: SitePaging\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RatingBody } from '../model/ratingBody';\nimport { RatingEntry } from '../model/ratingEntry';\nimport { RatingPaging } from '../model/ratingPaging';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentPagingQuery } from './types';\n\n/**\n * Ratings service.\n */\nexport class RatingsApi extends BaseApi {\n /**\n * Create a rating\n *\n * @param nodeId The identifier of a node.\n * @param ratingBodyCreate For \\\"myRating\\\" the type is specific to the rating scheme, boolean for the likes and an integer for the fiveStar.\n * For example, to \\\"like\\\" a file the following body would be used:\n *\n *JSON\n *{\n * \\\"id\\\": \\\"likes\\\",\n * \\\"myRating\\\": true\n * }\n * @param opts Optional parameters\n * @returns Promise<RatingEntry>\n */\n createRating(nodeId: string, ratingBodyCreate: RatingBody, opts?: ContentFieldsQuery): Promise<RatingEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(ratingBodyCreate, 'ratingBodyCreate');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/nodes/{nodeId}/ratings',\n pathParams,\n queryParams,\n bodyParam: ratingBodyCreate,\n returnType: RatingEntry\n });\n }\n\n /**\n * Delete a rating\n *\n * Deletes rating **ratingId** from node **nodeId**.\n *\n * @param nodeId The identifier of a node.\n * @param ratingId The identifier of a rating.\n * @returns Promise<{}>\n */\n deleteRating(nodeId: string, ratingId: string): Promise<void> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(ratingId, 'ratingId');\n\n const pathParams = {\n nodeId,\n ratingId\n };\n\n return this.delete({\n path: '/nodes/{nodeId}/ratings/{ratingId}',\n pathParams\n });\n }\n\n /**\n * Get a rating\n *\n * Get the specific rating **ratingId** on node **nodeId**.\n *\n * @param nodeId The identifier of a node.\n * @param ratingId The identifier of a rating.\n * @param opts Optional parameters\n * @returns Promise<RatingEntry>\n */\n getRating(nodeId: string, ratingId: string, opts?: ContentFieldsQuery): Promise<RatingEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(ratingId, 'ratingId');\n\n const pathParams = {\n nodeId,\n ratingId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/nodes/{nodeId}/ratings/{ratingId}',\n pathParams,\n queryParams,\n returnType: RatingEntry\n });\n }\n\n /**\n * List ratings\n *\n * Gets a list of ratings for node **nodeId**.\n *\n * @param nodeId The identifier of a node.\n * @param opts Optional parameters\n * @returns Promise<RatingPaging>\n */\n listRatings(nodeId: string, opts?: ContentPagingQuery & ContentFieldsQuery): Promise<RatingPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/nodes/{nodeId}/ratings',\n pathParams,\n queryParams,\n returnType: RatingPaging\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DirectAccessUrlEntry, RenditionBodyCreate, RenditionEntry, RenditionPaging } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * Renditions service.\n */\nexport class RenditionsApi extends BaseApi {\n /**\n * Create rendition\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param renditionBodyCreate The rendition \\\"id\\\".\n * @returns Promise<{}>\n */\n createRendition(nodeId: string, renditionBodyCreate: RenditionBodyCreate): Promise<any> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(renditionBodyCreate, 'renditionBodyCreate');\n\n const pathParams = {\n nodeId\n };\n\n return this.post({\n path: '/nodes/{nodeId}/renditions',\n pathParams,\n bodyParam: renditionBodyCreate\n });\n }\n\n /**\n * Get rendition information\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param renditionId The name of a thumbnail rendition, for example *doclib*, or *pdf*.\n * @returns Promise<RenditionEntry>\n */\n getRendition(nodeId: string, renditionId: string): Promise<RenditionEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(renditionId, 'renditionId');\n\n const pathParams = {\n nodeId,\n renditionId\n };\n\n return this.get({\n path: '/nodes/{nodeId}/renditions/{renditionId}',\n pathParams,\n returnType: RenditionEntry\n });\n }\n\n /**\n * Get rendition content\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param renditionId The name of a thumbnail rendition, for example *doclib*, or *pdf*.\n * @param opts Optional parameters\n * @param opts.attachment **true** enables a web browser to download the file as an attachment.\n * **false** means a web browser may preview the file in a new tab or window, but not download the file.\n * You can only set this parameter to **false** if the content type of the file is in the supported list; for example, certain image files and PDF files.\n * If the content type is not supported for preview, then a value of **false** is ignored, and\n * the attachment will be returned in the response. (default to true)\n * @param opts.ifModifiedSince Only returns the content if it has been modified since the date provided.\n * Use the date format defined by HTTP. For example, Wed, 09 Mar 2016 16:56:34 GMT.\n * @param opts.range The Range header indicates the part of a document that the server should return.\n * Single part request supported, for example: bytes=1-10.\n * @param opts.placeholder If **true** and there is no rendition for this **nodeId** and **renditionId**,\n * then the placeholder image for the mime type of this rendition is returned, rather than a 404 response. (default to false)\n * @returns Promise<Blob>\n */\n getRenditionContent(\n nodeId: string,\n renditionId: string,\n opts?: {\n attachment?: boolean;\n placeholder?: boolean;\n ifModifiedSince?: string;\n range?: string;\n }\n ): Promise<Blob> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(renditionId, 'renditionId');\n\n const pathParams = {\n nodeId,\n renditionId\n };\n\n const queryParams = {\n attachment: opts?.attachment,\n placeholder: opts?.placeholder\n };\n\n const headerParams = {\n 'If-Modified-Since': opts?.ifModifiedSince,\n Range: opts?.range\n };\n\n const accepts = ['application/octet-stream'];\n\n return this.get({\n path: '/nodes/{nodeId}/renditions/{renditionId}/content',\n pathParams,\n queryParams,\n headerParams,\n accepts,\n returnType: 'blob'\n });\n }\n\n /**\n * List renditions\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Gets a list of the rendition information for each rendition of the the file **nodeId**, including the rendition id.\n * Each rendition returned has a **status**: CREATED means it is available to view or download, NOT_CREATED means the rendition can be requested.\n * You can use the **where** parameter to filter the returned renditions by **status**. For example, the following **where**\n * clause will return just the CREATED renditions:\n * - (status='CREATED')\n *\n * @param nodeId The identifier of a node.\n * @param opts Optional parameters\n * @param opts.where A string to restrict the returned objects by using a predicate.\n * @returns Promise<RenditionPaging>\n */\n listRenditions(nodeId: string, opts?: { where?: string }): Promise<RenditionPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n return this.get({\n path: '/nodes/{nodeId}/renditions',\n pathParams,\n queryParams: opts,\n returnType: RenditionPaging\n });\n }\n\n /**\n * Generate a direct access content url for a given rendition of a node\n *\n * **Note:** this endpoint is available in Alfresco 7.1 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param renditionId The identifier of a version\n * @returns Promise<DirectAccessUrlEntry>\n */\n requestDirectAccessUrl(nodeId: string, renditionId: string): Promise<DirectAccessUrlEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(renditionId, 'renditionId');\n\n const pathParams = {\n nodeId,\n renditionId\n };\n\n return this.post({\n path: '/nodes/{nodeId}/renditions/{renditionId}/request-direct-access-url',\n pathParams,\n returnType: DirectAccessUrlEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RenditionEntry } from '../model/renditionEntry';\nimport { RenditionPaging } from '../model/renditionPaging';\nimport { SharedLinkBodyCreate } from '../model/sharedLinkBodyCreate';\nimport { SharedLinkBodyEmail } from '../model/sharedLinkBodyEmail';\nimport { SharedLinkEntry } from '../model/sharedLinkEntry';\nimport { SharedLinkPaging } from '../model/sharedLinkPaging';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentIncludeQuery, ContentPagingQuery } from './types';\n\n/**\n * Sharedlinks service.\n */\nexport class SharedlinksApi extends BaseApi {\n /**\n * Create a shared link to a file\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param sharedLinkBodyCreate The nodeId to create a shared link for.\n * @param opts Optional parameters\n * @returns Promise<SharedLinkEntry>\n */\n createSharedLink(sharedLinkBodyCreate: SharedLinkBodyCreate, opts?: ContentIncludeQuery & ContentFieldsQuery): Promise<SharedLinkEntry> {\n throwIfNotDefined(sharedLinkBodyCreate, 'sharedLinkBodyCreate');\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/shared-links',\n queryParams,\n bodyParam: sharedLinkBodyCreate,\n returnType: SharedLinkEntry\n });\n }\n\n /**\n * Deletes a shared link\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param sharedId The identifier of a shared link to a file.\n * @returns Promise<{}>\n */\n deleteSharedLink(sharedId: string): Promise<void> {\n throwIfNotDefined(sharedId, 'sharedId');\n\n const pathParams = {\n sharedId\n };\n\n return this.delete({\n path: '/shared-links/{sharedId}',\n pathParams\n });\n }\n\n /**\n * Email shared link\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param sharedId The identifier of a shared link to a file.\n * @param sharedLinkBodyEmail The shared link email to send.\n * @returns Promise<{}>\n */\n emailSharedLink(sharedId: string, sharedLinkBodyEmail: SharedLinkBodyEmail): Promise<any> {\n throwIfNotDefined(sharedId, 'sharedId');\n throwIfNotDefined(sharedLinkBodyEmail, 'sharedLinkBodyEmail');\n\n const pathParams = {\n sharedId\n };\n\n return this.post({\n path: '/shared-links/{sharedId}/email',\n pathParams,\n bodyParam: sharedLinkBodyEmail\n });\n }\n\n /**\n * Get a shared link\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n * **Note:** No authentication is required to call this endpoint.\n *\n * @param sharedId The identifier of a shared link to a file.\n * @param opts Optional parameters\n * @returns Promise<SharedLinkEntry>\n */\n getSharedLink(sharedId: string, opts?: ContentFieldsQuery): Promise<SharedLinkEntry> {\n throwIfNotDefined(sharedId, 'sharedId');\n\n const pathParams = {\n sharedId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/shared-links/{sharedId}',\n pathParams,\n queryParams,\n returnType: SharedLinkEntry\n });\n }\n\n /**\n * Get shared link content\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n * **Note:** No authentication is required to call this endpoint.\n *\n * @param sharedId The identifier of a shared link to a file.\n * @param opts Optional parameters\n * @param opts.attachment **true** enables a web browser to download the file as an attachment.\n * **false** means a web browser may preview the file in a new tab or window, but not download the file.\n * You can only set this parameter to **false** if the content type of the file is in the supported list; for example, certain image files and PDF files.\n * If the content type is not supported for preview, then a value of **false** is ignored, and the attachment will be returned in the response.\n * (default to true)\n * @param opts.ifModifiedSince Only returns the content if it has been modified since the date provided.\n * Use the date format defined by HTTP. For example, Wed, 09 Mar 2016 16:56:34 GMT.\n * @param opts.range The Range header indicates the part of a document that the server should return.\n * Single part request supported, for example: bytes=1-10.\n * @returns Promise<Blob>\n */\n getSharedLinkContent(\n sharedId: string,\n opts?: {\n attachment?: boolean;\n ifModifiedSince?: string;\n range?: string;\n }\n ): Promise<Blob> {\n throwIfNotDefined(sharedId, 'sharedId');\n\n const pathParams = {\n sharedId\n };\n\n const queryParams = {\n attachment: opts?.attachment\n };\n\n const headerParams = {\n 'If-Modified-Since': opts?.ifModifiedSince,\n Range: opts?.range\n };\n\n return this.get({\n path: '/shared-links/{sharedId}/content',\n pathParams,\n queryParams,\n headerParams,\n accepts: ['application/octet-stream'],\n returnType: 'blob'\n });\n }\n\n /**\n * Get shared link rendition information\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * This API method returns rendition information where the rendition status is CREATED,\n * which means the rendition is available to view/download.\n *\n * **Note:** No authentication is required to call this endpoint.\n *\n * @param sharedId The identifier of a shared link to a file.\n * @param renditionId The name of a thumbnail rendition, for example *doclib*, or *pdf*.\n * @returns Promise<RenditionEntry>\n */\n getSharedLinkRendition(sharedId: string, renditionId: string): Promise<RenditionEntry> {\n throwIfNotDefined(sharedId, 'sharedId');\n throwIfNotDefined(renditionId, 'renditionId');\n\n const pathParams = {\n sharedId,\n renditionId\n };\n\n return this.get({\n path: '/shared-links/{sharedId}/renditions/{renditionId}',\n pathParams,\n returnType: RenditionEntry\n });\n }\n\n /**\n * Get shared link rendition content\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n * **Note:** No authentication is required to call this endpoint.\n *\n * @param sharedId The identifier of a shared link to a file.\n * @param renditionId The name of a thumbnail rendition, for example *doclib*, or *pdf*.\n * @param opts Optional parameters\n * @param opts.attachment **true** enables a web browser to download the file as an attachment.\n * **false** means a web browser may preview the file in a new tab or window, but not download the file.\n * You can only set this parameter to **false** if the content type of the file is in the supported list;\n * for example, certain image files and PDF files.\n * If the content type is not supported for preview, then a value of **false** is ignored, and\n * the attachment will be returned in the response. (default to true)\n * @param opts.ifModifiedSince Only returns the content if it has been modified since the date provided.\n * Use the date format defined by HTTP. For example, Wed, 09 Mar 2016 16:56:34 GMT.\n * @param opts.range The Range header indicates the part of a document that the server should return.\n * Single part request supported, for example: bytes=1-10.\n * @returns Promise<Blob>\n */\n getSharedLinkRenditionContent(\n sharedId: string,\n renditionId: string,\n opts?: {\n attachment?: boolean;\n ifModifiedSince?: string;\n range?: string;\n }\n ): Promise<Blob> {\n throwIfNotDefined(sharedId, 'sharedId');\n throwIfNotDefined(renditionId, 'renditionId');\n\n const pathParams = {\n sharedId,\n renditionId\n };\n\n const queryParams = {\n attachment: opts?.attachment\n };\n\n const headerParams = {\n 'If-Modified-Since': opts?.ifModifiedSince,\n Range: opts?.range\n };\n\n return this.get({\n path: '/shared-links/{sharedId}/renditions/{renditionId}/content',\n pathParams,\n queryParams,\n headerParams,\n accepts: ['application/octet-stream'],\n returnType: 'blob'\n });\n }\n\n /**\n * List renditions for a shared link\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Gets a list of the rendition information for the file with shared link identifier **sharedId**.\n * This API method returns rendition information, including the rendition id, for each rendition\n * where the rendition status is CREATED, which means the rendition is available to view/download.\n *\n * **Note:** No authentication is required to call this endpoint.\n *\n * @param sharedId The identifier of a shared link to a file.\n * @returns Promise<RenditionPaging>\n */\n listSharedLinkRenditions(sharedId: string): Promise<RenditionPaging> {\n throwIfNotDefined(sharedId, 'sharedId');\n\n const pathParams = {\n sharedId\n };\n\n return this.get({\n path: '/shared-links/{sharedId}/renditions',\n pathParams,\n returnType: RenditionPaging\n });\n }\n\n /**\n * List shared links\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Get a list of links that the current user has read permission on source node.\n * The list is ordered in descending modified order.\n *\n * **Note:** The list of links is eventually consistent so newly created shared links may not appear immediately.\n *\n * @param opts Optional parameters\n * @param opts.where Optionally filter the list by \\\"sharedByUser\\\" `userId` of person who shared the link (can also use -me-)\n * where=(sharedByUser='jbloggs')\n * where=(sharedByUser='-me-')\n * @returns Promise<SharedLinkPaging>\n */\n listSharedLinks(\n opts?: {\n where?: string;\n } & ContentPagingQuery &\n ContentIncludeQuery &\n ContentFieldsQuery\n ): Promise<SharedLinkPaging> {\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n where: opts?.where,\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/shared-links',\n queryParams,\n returnType: SharedLinkPaging\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n SiteBodyCreate,\n SiteBodyUpdate,\n SiteContainerEntry,\n SiteContainerPaging,\n SiteEntry,\n SiteGroupEntry,\n SiteGroupPaging,\n SiteMemberEntry,\n SiteMemberPaging,\n SiteMembershipBodyCreate,\n SiteMembershipBodyUpdate,\n SiteMembershipRequestBodyCreate,\n SiteMembershipRequestBodyUpdate,\n SiteMembershipRequestEntry,\n SiteMembershipRequestPaging,\n SiteMembershipRequestWithPersonPaging,\n SitePaging,\n SiteRoleEntry,\n SiteRolePaging\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentPagingQuery } from './types';\n\n/**\n * Sites service.\n */\nexport class SitesApi extends BaseApi {\n /**\n * Approve a site membership request\n *\n * @param siteId The identifier of a site.\n * @param inviteeId The invitee username.\n * @param opts Optional parameters\n * @param opts.siteMembershipApprovalBody Accepting a request to join, optionally, allows assignment of a role to the user.\n * @returns Promise<{}>\n */\n approveSiteMembershipRequest(siteId: string, inviteeId: string, opts?: { siteMembershipApprovalBody?: any }): Promise<any> {\n throwIfNotDefined(siteId, 'siteId');\n throwIfNotDefined(inviteeId, 'inviteeId');\n\n const postBody = opts?.siteMembershipApprovalBody;\n\n const pathParams = {\n siteId,\n inviteeId\n };\n\n return this.post({\n path: '/sites/{siteId}/site-membership-requests/{inviteeId}/approve',\n pathParams,\n bodyParam: postBody\n });\n }\n\n /**\n * Create a site\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param siteBodyCreate The site details\n * @param opts Optional parameters\n * @param opts.skipConfiguration Flag to indicate whether the Share-specific (surf) configuration files for the site should not be created. (default to false)\n * @param opts.skipAddToFavorites Flag to indicate whether the site should not be added to the user's site favorites. (default to false)\n * @param opts.fields A list of field names. You can use this parameter to restrict the fields\n * returned within a response if, for example, you want to save on overall bandwidth.\n * The list applies to a returned individual entity or entries within a collection.\n * If the API method also supports the **include** parameter, then the fields specified in the **include**\n * parameter are returned in addition to those specified in the **fields** parameter.\n * @returns Promise<SiteEntry>\n */\n createSite(\n siteBodyCreate: SiteBodyCreate,\n opts?: { skipConfiguration?: boolean; skipAddToFavorites?: boolean; fields?: string[] }\n ): Promise<SiteEntry> {\n throwIfNotDefined(siteBodyCreate, 'siteBodyCreate');\n opts = opts || {};\n\n const queryParams = {\n skipConfiguration: opts?.skipConfiguration,\n skipAddToFavorites: opts?.skipAddToFavorites,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/sites',\n queryParams,\n bodyParam: siteBodyCreate,\n returnType: SiteEntry\n });\n }\n\n /**\n * Create a site membership\n *\n * @param siteId The identifier of a site.\n * @param siteMembershipBodyCreate The person to add and their role\n * @param opts Optional parameters\n * @param opts.fields A list of field names. You can use this parameter to restrict the fields\n * returned within a response if, for example, you want to save on overall bandwidth. The list applies to a returned individual\n * entity or entries within a collection. If the API method also supports the **include** parameter, then the fields specified in the **include**\n * parameter are returned in addition to those specified in the **fields** parameter.\n * @returns Promise<SiteMemberEntry>\n */\n createSiteMembership(siteId: string, siteMembershipBodyCreate: SiteMembershipBodyCreate, opts?: { fields?: string[] }): Promise<SiteMemberEntry> {\n throwIfNotDefined(siteId, 'siteId');\n throwIfNotDefined(siteMembershipBodyCreate, 'siteMembershipBodyCreate');\n\n const pathParams = {\n siteId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/sites/{siteId}/members',\n pathParams,\n queryParams,\n bodyParam: siteMembershipBodyCreate,\n returnType: SiteMemberEntry\n });\n }\n\n /**\n * Create a site membership request\n *\n * @param personId The identifier of a person.\n * @param siteMembershipRequestBodyCreate Site membership request details\n * @param opts Optional parameters\n * @returns Promise<SiteMembershipRequestEntry>\n */\n createSiteMembershipRequestForPerson(\n personId: string,\n siteMembershipRequestBodyCreate: SiteMembershipRequestBodyCreate,\n opts?: ContentFieldsQuery\n ): Promise<SiteMembershipRequestEntry> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(siteMembershipRequestBodyCreate, 'siteMembershipRequestBodyCreate');\n\n const pathParams = {\n personId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/people/{personId}/site-membership-requests',\n pathParams,\n queryParams,\n bodyParam: siteMembershipRequestBodyCreate,\n returnType: SiteMembershipRequestEntry\n });\n }\n\n /**\n * Delete a site\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param siteId The identifier of a site.\n * @param opts Optional parameters\n * @param opts.permanent Flag to indicate whether the site should be permanently deleted i.e. bypass the trashcan. (default to false)\n * @returns Promise<{}>\n */\n deleteSite(siteId: string, opts?: { permanent?: boolean }): Promise<void> {\n throwIfNotDefined(siteId, 'siteId');\n\n const pathParams = {\n siteId\n };\n\n const queryParams = {\n permanent: opts?.permanent\n };\n\n return this.delete({\n path: '/sites/{siteId}',\n pathParams,\n queryParams\n });\n }\n\n /**\n * Delete a site membership\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param siteId The identifier of a site.\n * @param personId The identifier of a person.\n * @returns Promise<{}>\n */\n deleteSiteMembership(siteId: string, personId: string): Promise<void> {\n throwIfNotDefined(siteId, 'siteId');\n throwIfNotDefined(personId, 'personId');\n\n const pathParams = {\n siteId,\n personId\n };\n\n return this.delete({\n path: '/sites/{siteId}/members/{personId}',\n pathParams\n });\n }\n\n /**\n * Delete a site membership\n *\n * Deletes person **personId** as a member of site **siteId**.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param siteId The identifier of a site.\n * @returns Promise<{}>\n */\n deleteSiteMembershipForPerson(personId: string, siteId: string): Promise<void> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(siteId, 'siteId');\n\n const pathParams = {\n personId,\n siteId\n };\n\n return this.delete({\n path: '/people/{personId}/sites/{siteId}',\n pathParams\n });\n }\n\n /**\n * Delete a site membership request\n *\n * Deletes the site membership request to site **siteId** for person **personId**.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param siteId The identifier of a site.\n * @returns Promise<{}>\n */\n deleteSiteMembershipRequestForPerson(personId: string, siteId: string): Promise<void> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(siteId, 'siteId');\n\n const pathParams = {\n personId,\n siteId\n };\n\n return this.delete({\n path: '/people/{personId}/site-membership-requests/{siteId}',\n pathParams\n });\n }\n\n /**\n * Get a site\n *\n * Gets information for site **siteId**.\n *\n * You can use the **relations** parameter to include one or more related\n * entities in a single response and so reduce network traffic.\n *\n * The entity types in Alfresco are organized in a tree structure.\n * The **sites** entity has two children, **containers** and **members**.\n * The following relations parameter returns all the container and member\n * objects related to the site **siteId**:\n *\n * containers,members\n *\n * @param siteId The identifier of a site.\n * @param opts Optional parameters\n * @param opts.relations Use the relations parameter to include one or more related entities in a single response.\n * @returns Promise<SiteEntry>\n */\n getSite(siteId: string, opts?: { relations?: string[] } & ContentFieldsQuery): Promise<SiteEntry> {\n throwIfNotDefined(siteId, 'siteId');\n\n const pathParams = {\n siteId\n };\n\n const queryParams = {\n relations: buildCollectionParam(opts?.relations, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/sites/{siteId}',\n pathParams,\n queryParams,\n returnType: SiteEntry\n });\n }\n\n /**\n * Get a site container\n *\n * Gets information on the container **containerId** in site **siteId**.\n *\n * @param siteId The identifier of a site.\n * @param containerId The unique identifier of a site container.\n * @param opts Optional parameters\n * @returns Promise<SiteContainerEntry>\n */\n getSiteContainer(siteId: string, containerId: string, opts?: ContentFieldsQuery): Promise<SiteContainerEntry> {\n throwIfNotDefined(siteId, 'siteId');\n throwIfNotDefined(containerId, 'containerId');\n\n const pathParams = {\n siteId,\n containerId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/sites/{siteId}/containers/{containerId}',\n pathParams,\n queryParams\n });\n }\n\n /**\n * Get a site membership\n *\n * Gets site membership information for person **personId** on site **siteId**.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param siteId The identifier of a site.\n * @param personId The identifier of a person.\n * @param opts Optional parameters\n * @returns Promise<SiteMemberEntry>\n */\n getSiteMembership(siteId: string, personId: string, opts?: ContentFieldsQuery): Promise<SiteMemberEntry> {\n throwIfNotDefined(siteId, 'siteId');\n throwIfNotDefined(personId, 'personId');\n\n const pathParams = {\n siteId,\n personId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/sites/{siteId}/members/{personId}',\n pathParams,\n queryParams,\n returnType: SiteMemberEntry\n });\n }\n\n /**\n * Get a site membership\n *\n * Gets site membership information for person **personId** on site **siteId**.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param siteId The identifier of a site.\n * @returns Promise<SiteRoleEntry>\n */\n getSiteMembershipForPerson(personId: string, siteId: string): Promise<SiteRoleEntry> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(siteId, 'siteId');\n\n const pathParams = {\n personId,\n siteId\n };\n\n return this.get({\n path: '/people/{personId}/sites/{siteId}',\n pathParams,\n returnType: SiteRoleEntry\n });\n }\n\n /**\n * Get a site membership request\n *\n * Gets the site membership request for site **siteId** for person **personId**, if one exists.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param siteId The identifier of a site.\n * @param opts Optional parameters\n * @returns Promise<SiteMembershipRequestEntry>\n */\n getSiteMembershipRequestForPerson(personId: string, siteId: string, opts?: ContentFieldsQuery): Promise<SiteMembershipRequestEntry> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(siteId, 'siteId');\n\n const pathParams = {\n personId,\n siteId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/people/{personId}/site-membership-requests/{siteId}',\n pathParams,\n queryParams,\n returnType: SiteMembershipRequestEntry\n });\n }\n\n /**\n * Get site membership requests\n *\n * You can use the **where** parameter to filter the returned site membership requests by **siteId**. For example:\n *\n * (siteId=mySite)\n *\n * The **where** parameter can also be used to filter by ***personId***. For example:\n *\n * where=(personId=person)\n *\n * This may be combined with the siteId filter, as shown below:\n *\n * where=(siteId=mySite AND personId=person))\n *\n * @param opts Optional parameters\n * @param opts.where A string to restrict the returned objects by using a predicate.\n * @returns Promise<SiteMembershipRequestWithPersonPaging>\n */\n getSiteMembershipRequests(opts?: { where?: string } & ContentPagingQuery & ContentFieldsQuery): Promise<SiteMembershipRequestWithPersonPaging> {\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n where: opts?.where,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/site-membership-requests',\n queryParams,\n returnType: SiteMembershipRequestWithPersonPaging\n });\n }\n\n /**\n * List site containers\n *\n * Gets a list of containers for the site **siteId**.\n *\n * @param siteId The identifier of a site.\n * @param opts Optional parameters\n * @returns Promise<SiteContainerPaging>\n */\n listSiteContainers(siteId: string, opts?: ContentPagingQuery & ContentFieldsQuery): Promise<SiteContainerPaging> {\n throwIfNotDefined(siteId, 'siteId');\n\n const pathParams = {\n siteId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/sites/{siteId}/containers',\n pathParams,\n queryParams,\n returnType: SiteContainerPaging\n });\n }\n\n /**\n * List site membership requests\n *\n * Gets a list of the current site membership requests for person **personId**.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param opts Optional parameters\n * @returns Promise<SiteMembershipRequestPaging>\n */\n listSiteMembershipRequestsForPerson(personId: string, opts?: ContentPagingQuery & ContentFieldsQuery): Promise<SiteMembershipRequestPaging> {\n throwIfNotDefined(personId, 'personId');\n\n const pathParams = {\n personId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/people/{personId}/site-membership-requests',\n pathParams,\n queryParams,\n returnType: SiteMembershipRequestPaging\n });\n }\n\n /**\n * List site memberships\n *\n * Gets a list of site memberships for site **siteId**.\n *\n * @param siteId The identifier of a site.\n * @param opts Optional parameters\n * @returns Promise<SiteMemberPaging>\n */\n listSiteMemberships(siteId: string, opts?: { where?: string } & ContentPagingQuery & ContentFieldsQuery): Promise<SiteMemberPaging> {\n throwIfNotDefined(siteId, 'siteId');\n\n opts = opts || {};\n\n const pathParams = {\n siteId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n where: opts?.where,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/sites/{siteId}/members',\n pathParams,\n queryParams,\n returnType: SiteMemberPaging\n });\n }\n\n /**\n * List site memberships\n *\n * Gets a list of site membership information for person **personId**.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * You can use the **where** parameter to filter the returned sites by **visibility** or site **preset**.\n *\n * Example to filter by **visibility**, use any one of:\n * - (visibility='PRIVATE')\n * - (visibility='PUBLIC')\n * - (visibility='MODERATED')\n *\n * Example to filter by site **preset**:\n *\n * (preset='site-dashboard')\n *\n * The default sort order for the returned list is for sites to be sorted by ascending title.\n * You can override the default by using the **orderBy** parameter. You can specify one or more of the following fields in the **orderBy** parameter:\n * - id\n * - title\n * - role\n *\n * @param personId The identifier of a person.\n * @param opts Optional parameters\n * @param opts.orderBy A string to control the order of the entities returned in a list. You can use the **orderBy** parameter to\n * sort the list by one or more fields.\n * Each field has a default sort order, which is normally ascending order. Read the API method implementation notes\n * above to check if any fields used in this method have a descending default search order.\n * To sort the entities in a specific order, you can use the **ASC** and **DESC** keywords for any field.\n * @param opts.relations Use the relations parameter to include one or more related entities in a single response.\n * @param opts.where A string to restrict the returned objects by using a predicate.\n * @returns Promise<SiteRolePaging>\n */\n listSiteMembershipsForPerson(\n personId: string,\n opts?: { where?: string; orderBy?: string[]; relations?: string[] } & ContentPagingQuery & ContentFieldsQuery\n ): Promise<SiteRolePaging> {\n throwIfNotDefined(personId, 'personId');\n opts = opts || {};\n\n const pathParams = {\n personId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n relations: buildCollectionParam(opts?.relations, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv'),\n where: opts?.where\n };\n\n return this.get({\n path: '/people/{personId}/sites',\n pathParams,\n queryParams,\n returnType: SiteRolePaging\n });\n }\n\n /**\n * List sites\n *\n * Gets a list of sites in this repository.\n *\n * You can use the **where** parameter to filter the returned sites by **visibility** or site **preset**.\n *\n * Example to filter by **visibility**, use any one of:\n *\n * (visibility='PRIVATE')\n * (visibility='PUBLIC')\n * (visibility='MODERATED')\n *\n * Example to filter by site **preset**:\n *\n * (preset='site-dashboard')\n *\n * The default sort order for the returned list is for sites to be sorted by ascending title.\n * You can override the default by using the **orderBy** parameter. You can specify one or more of the following fields in the **orderBy** parameter:\n * id\n * title\n * description\n *\n * You can use the **relations** parameter to include one or more related\n * entities in a single response and so reduce network traffic.\n *\n * The entity types in Alfresco are organized in a tree structure.\n * The **sites** entity has two children, **containers** and **members**.\n * The following relations parameter returns all the container and member\n * objects related to each site:\n *\n * containers,members\n *\n *\n * @param opts Optional parameters\n * @param opts.orderBy A string to control the order of the entities returned in a list. You can use the **orderBy** parameter to\n * sort the list by one or more fields.\n * Each field has a default sort order, which is normally ascending order. Read the API method implementation notes\n * above to check if any fields used in this method have a descending default search order.\n * To sort the entities in a specific order, you can use the **ASC** and **DESC** keywords for any field.\n * @param opts.relations Use the relations parameter to include one or more related entities in a single response.\n * @param opts.where A string to restrict the returned objects by using a predicate.\n * @returns Promise<SitePaging>\n */\n listSites(\n opts?: {\n orderBy?: string[];\n relations?: string[];\n where?: string;\n } & ContentPagingQuery &\n ContentFieldsQuery\n ): Promise<SitePaging> {\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n relations: buildCollectionParam(opts?.relations, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv'),\n where: opts?.where\n };\n\n return this.get({\n path: '/sites',\n queryParams,\n returnType: SitePaging\n });\n }\n\n /**\n * Reject a site membership request\n *\n * @param siteId The identifier of a site.\n * @param inviteeId The invitee username.\n * @param opts Optional parameters\n * @param opts.siteMembershipRejectionBody Rejecting a request to join, optionally, allows the inclusion of comment.\n * @returns Promise<{}>\n */\n rejectSiteMembershipRequest(siteId: string, inviteeId: string, opts?: { siteMembershipRejectionBody?: any }): Promise<any> {\n throwIfNotDefined(siteId, 'siteId');\n throwIfNotDefined(inviteeId, 'inviteeId');\n\n const postBody = opts?.siteMembershipRejectionBody;\n\n const pathParams = {\n siteId,\n inviteeId\n };\n\n return this.post({\n path: '/sites/{siteId}/site-membership-requests/{inviteeId}/reject',\n pathParams,\n bodyParam: postBody\n });\n }\n\n /**\n * Update a site\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Update the details for the given site **siteId**. Site Manager or otherwise a\n * (site) admin can update title, description or visibility.\n *\n * Note: the id of a site cannot be updated once the site has been created.\n *\n * @param siteId The identifier of a site.\n * @param siteBodyUpdate The site information to update.\n * @param opts Optional parameters\n * @returns Promise<SiteEntry>\n */\n updateSite(siteId: string, siteBodyUpdate: SiteBodyUpdate, opts?: ContentFieldsQuery): Promise<SiteEntry> {\n throwIfNotDefined(siteId, 'siteId');\n throwIfNotDefined(siteBodyUpdate, 'siteBodyUpdate');\n\n opts = opts || {};\n\n const pathParams = {\n siteId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/sites/{siteId}',\n pathParams,\n queryParams,\n bodyParam: siteBodyUpdate,\n returnType: SiteEntry\n });\n }\n\n /**\n * Update a site membership\n *\n * Update the membership of person **personId** in site **siteId**.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n * You can set the **role** to one of four types:\n * - SiteConsumer\n * - SiteCollaborator\n * - SiteContributor\n * - SiteManager\n *\n * @param siteId The identifier of a site.\n * @param personId The identifier of a person.\n * @param siteMembershipBodyUpdate The persons new role\n * @param opts Optional parameters\n * @returns Promise<SiteMemberEntry>\n */\n updateSiteMembership(\n siteId: string,\n personId: string,\n siteMembershipBodyUpdate: SiteMembershipBodyUpdate,\n opts?: ContentFieldsQuery\n ): Promise<SiteMemberEntry> {\n throwIfNotDefined(siteId, 'siteId');\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(siteMembershipBodyUpdate, 'siteMembershipBodyUpdate');\n\n const pathParams = {\n siteId,\n personId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/sites/{siteId}/members/{personId}',\n pathParams,\n queryParams,\n bodyParam: siteMembershipBodyUpdate,\n returnType: SiteMemberEntry\n });\n }\n\n /**\n * Update a site membership request\n *\n * Updates the message for the site membership request to site **siteId** for person **personId**.\n * You can use the -me- string in place of <personId> to specify the currently authenticated user.\n *\n * @param personId The identifier of a person.\n * @param siteId The identifier of a site.\n * @param siteMembershipRequestBodyUpdate The new message to display\n * @param opts Optional parameters\n * @returns Promise<SiteMembershipRequestEntry>\n */\n updateSiteMembershipRequestForPerson(\n personId: string,\n siteId: string,\n siteMembershipRequestBodyUpdate: SiteMembershipRequestBodyUpdate,\n opts?: ContentFieldsQuery\n ): Promise<SiteMembershipRequestEntry> {\n throwIfNotDefined(personId, 'personId');\n throwIfNotDefined(siteId, 'siteId');\n throwIfNotDefined(siteMembershipRequestBodyUpdate, 'siteMembershipRequestBodyUpdate');\n\n const pathParams = {\n personId,\n siteId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/people/{personId}/site-membership-requests/{siteId}',\n pathParams,\n queryParams,\n bodyParam: siteMembershipRequestBodyUpdate,\n returnType: SiteMembershipRequestEntry\n });\n }\n\n /**\n * Create a site membership for group\n *\n * **Note:** this endpoint is available in Alfresco 7.0.0 and newer versions.\n * You can set the **role** to one of four types:\n * - SiteConsumer\n * - SiteCollaborator\n * - SiteContributor\n * - SiteManager\n *\n * @param siteId The identifier of a site.\n * @param siteMembershipBodyCreate The group to add and it role\n * @param opts Optional parameters\n * @returns Promise<SiteGroupEntry>\n */\n createSiteGroupMembership(\n siteId: string,\n siteMembershipBodyCreate: SiteMembershipBodyCreate,\n opts?: ContentFieldsQuery\n ): Promise<SiteGroupEntry> {\n throwIfNotDefined(siteId, 'siteId');\n throwIfNotDefined(siteMembershipBodyCreate, 'siteMembershipBodyCreate');\n\n const pathParams = {\n siteId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/sites/{siteId}/group-members',\n pathParams,\n queryParams,\n bodyParam: siteMembershipBodyCreate,\n returnType: SiteGroupEntry\n });\n }\n\n /**\n * List group membership for site\n *\n * **Note:** this endpoint is available in Alfresco 7.0.0 and newer versions.\n *\n * @param siteId The identifier of a site.\n * @param opts Optional parameters\n * @returns Promise<SiteGroupPaging>\n */\n listSiteGroups(siteId: string, opts?: ContentPagingQuery & ContentFieldsQuery): Promise<SiteGroupPaging> {\n throwIfNotDefined(siteId, 'siteId');\n\n const pathParams = {\n siteId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/sites/{siteId}/group-members',\n pathParams,\n queryParams,\n returnType: SiteGroupPaging\n });\n }\n\n /**\n * Get information about site membership of group\n * **Note:** this endpoint is available in Alfresco 7.0.0 and newer versions.\n * Gets site membership information for group **groupId** on site **siteId**.\n *\n * @param siteId The identifier of a site.\n * @param groupId The authorityId of a group.\n * @param opts Optional parameters\n * @returns Promise<SiteGroupEntry>\n */\n getSiteGroupMembership(siteId: string, groupId: string, opts?: ContentFieldsQuery): Promise<SiteGroupEntry> {\n throwIfNotDefined(siteId, 'siteId');\n throwIfNotDefined(groupId, 'groupId');\n\n const pathParams = {\n siteId,\n groupId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/sites/{siteId}/group-members/{groupId}',\n pathParams,\n queryParams,\n returnType: SiteGroupEntry\n });\n }\n\n /**\n * Update site membership of group\n *\n * **Note:** this endpoint is available in Alfresco 7.0.0 and newer versions.\n *\n * You can set the **role** to one of four types:\n * - SiteConsumer\n * - SiteCollaborator\n * - SiteContributor\n * - SiteManager\n *\n * @param siteId The identifier of a site.\n * @param groupId The authorityId of a group.\n * @param siteMembershipBodyUpdate The group new role\n * @param opts Optional parameters\n * @returns Promise<SiteGroupEntry>\n */\n updateSiteGroupMembership(\n siteId: string,\n groupId: string,\n siteMembershipBodyUpdate: SiteMembershipBodyUpdate,\n opts?: ContentFieldsQuery\n ): Promise<SiteGroupEntry> {\n throwIfNotDefined(siteId, 'siteId');\n throwIfNotDefined(groupId, 'groupId');\n throwIfNotDefined(siteMembershipBodyUpdate, 'siteMembershipBodyUpdate');\n\n const pathParams = {\n siteId,\n groupId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/sites/{siteId}/group-members/{groupId}',\n pathParams,\n queryParams,\n bodyParam: siteMembershipBodyUpdate,\n returnType: SiteGroupEntry\n });\n }\n\n /**\n * Delete a group membership for site\n *\n * @param siteId The identifier of a site.\n * @param groupId The authorityId of a group.\n * @returns Promise<{}>\n */\n deleteSiteGroupMembership(siteId: string, groupId: string): Promise<void> {\n throwIfNotDefined(siteId, 'siteId');\n throwIfNotDefined(groupId, 'groupId');\n\n const pathParams = {\n siteId,\n groupId\n };\n\n return this.delete({\n path: '/sites/{siteId}/group-members/{groupId}',\n pathParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TagBody } from '../model/tagBody';\nimport { TagEntry } from '../model/tagEntry';\nimport { TagPaging } from '../model/tagPaging';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentIncludeQuery, ContentPagingQuery } from './types';\n\n/**\n * Tags service.\n */\nexport class TagsApi extends BaseApi {\n /**\n * Create a tag for a node\n *\n * @param nodeId The identifier of a node.\n * @param tagBodyCreate The new tag\n * @param opts Optional parameters\n * @returns Promise<TagEntry>\n */\n createTagForNode(nodeId: string, tagBodyCreate: TagBody[], opts?: ContentFieldsQuery): Promise<TagEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(tagBodyCreate, 'tagBodyCreate');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/nodes/{nodeId}/tags',\n pathParams,\n queryParams,\n bodyParam: tagBodyCreate,\n returnType: TagEntry\n });\n }\n\n /**\n * Delete a tag from a node\n *\n * @param nodeId The identifier of a node.\n * @param tagId The identifier of a tag.\n * @returns Promise<{}>\n */\n deleteTagFromNode(nodeId: string, tagId: string): Promise<void> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(tagId, 'tagId');\n\n const pathParams = {\n nodeId,\n tagId\n };\n\n return this.delete({\n path: '/nodes/{nodeId}/tags/{tagId}',\n pathParams\n });\n }\n\n /**\n * Get a tag\n *\n * @param tagId The identifier of a tag.\n * @param opts Optional parameters\n * @returns Promise<TagEntry>\n */\n getTag(tagId: string, opts?: ContentFieldsQuery): Promise<TagEntry> {\n throwIfNotDefined(tagId, 'tagId');\n\n const pathParams = {\n tagId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/tags/{tagId}',\n pathParams,\n queryParams,\n returnType: TagEntry\n });\n }\n\n /**\n * List tags\n *\n * @param opts Optional parameters\n * @param opts.tag Name or pattern for which tag is returned. Example of pattern: *test* which returns tags like 'my test 1'\n * @param opts.matching Switches filtering to pattern mode instead of exact mode.\n * @returns Promise<TagPaging>\n */\n listTags(opts?: { tag?: string; matching?: boolean } & ContentPagingQuery & ContentIncludeQuery & ContentFieldsQuery): Promise<TagPaging> {\n opts = opts || {};\n\n const pathParams = {};\n\n let where: string;\n if (opts?.tag) {\n where = opts.matching ? `(tag matches ('${opts.tag}'))` : `(tag='${opts.tag}')`;\n }\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n fields: buildCollectionParam(opts?.fields, 'csv'),\n include: buildCollectionParam(opts?.include, 'csv'),\n where\n };\n\n return this.get({\n path: '/tags',\n pathParams,\n queryParams,\n returnType: TagPaging\n });\n }\n\n /**\n * List tags for a node\n *\n * @param nodeId The identifier of a node.\n * @param opts Optional parameters\n * @returns Promise<TagPaging>\n */\n listTagsForNode(nodeId: string, opts?: ContentPagingQuery & ContentFieldsQuery): Promise<TagPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/nodes/{nodeId}/tags',\n pathParams,\n queryParams,\n returnType: TagPaging\n });\n }\n\n /**\n * Update a tag\n *\n * @param tagId The identifier of a tag.\n * @param tagBodyUpdate The updated tag\n * @param opts Optional parameters\n * @returns Promise<TagEntry>\n */\n updateTag(tagId: string, tagBodyUpdate: TagBody, opts?: ContentFieldsQuery): Promise<TagEntry> {\n throwIfNotDefined(tagId, 'tagId');\n throwIfNotDefined(tagBodyUpdate, 'tagBodyUpdate');\n\n const pathParams = {\n tagId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/tags/{tagId}',\n pathParams,\n queryParams,\n bodyParam: tagBodyUpdate,\n returnType: TagEntry\n });\n }\n\n /**\n * Deletes a tag by **tagId**. This will cause the tag to be removed from all nodes.\n *\n * @param tagId The identifier of a tag.\n * @returns Promise<{}>\n */\n deleteTag(tagId: string): Promise<void> {\n throwIfNotDefined(tagId, 'tagId');\n\n const pathParams = {\n tagId\n };\n\n return this.delete({\n path: '/tags/{tagId}',\n pathParams\n });\n }\n\n /**\n * Create specified by **tags** list of tags.\n *\n * @param tags List of tags to create.\n * @returns Promise<TagEntry[]>\n */\n createTags(tags: TagBody[]): Promise<TagEntry[]> {\n throwIfNotDefined(tags, 'tags');\n\n return this.post({\n path: '/tags',\n bodyParam: tags\n });\n }\n\n /**\n * Assign tags to node. If tag is new then tag is also created additionally, if tag already exists then it is just assigned.\n *\n * @param nodeId Id of node to which tags should be assigned.\n * @param tags List of tags to create and assign or just assign if they already exist.\n * @returns Promise<TagPaging>\n */\n assignTagsToNode(nodeId: string, tags: TagBody[]): Promise<TagPaging> {\n return this.post({\n path: '/nodes/{nodeId}/tags',\n pathParams: { nodeId },\n bodyParam: tags,\n returnType: TagPaging\n });\n }\n\n /**\n * Assign tags to node. If tag is new then tag is also created additionally, if tag already exists then it is just assigned.\n *\n * @param nodeId Id of node to which tags should be assigned.\n * @param tag List of tags to create and assign or just assign if they already exist.\n * @returns Promise<TagEntry>\n */\n assignTagToNode(nodeId: string, tag: TagBody): Promise<TagEntry> {\n return this.post({\n path: '/nodes/{nodeId}/tags',\n pathParams: { nodeId },\n bodyParam: tag,\n returnType: TagEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DeletedNodeEntry } from '../model/deletedNodeEntry';\nimport { DeletedNodesPaging } from '../model/deletedNodesPaging';\nimport { DirectAccessUrlEntry } from '../model/directAccessUrlEntry';\nimport { NodeEntry } from '../model/nodeEntry';\nimport { RenditionEntry } from '../model/renditionEntry';\nimport { RenditionPaging } from '../model/renditionPaging';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentIncludeQuery, ContentPagingQuery } from './types';\n\n/**\n * Trashcan service.\n *\n * @module TrashcanApi\n */\nexport class TrashcanApi extends BaseApi {\n /**\n * Permanently delete a deleted node\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @returns Promise<{}>\n */\n deleteDeletedNode(nodeId: string): Promise<void> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n return this.delete({\n path: '/deleted-nodes/{nodeId}',\n pathParams\n });\n }\n\n /**\n * Get rendition information for a deleted node\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param renditionId The name of a thumbnail rendition, for example *doclib*, or *pdf*.\n * @returns Promise<RenditionEntry>\n */\n getArchivedNodeRendition(nodeId: string, renditionId: string): Promise<RenditionEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(renditionId, 'renditionId');\n\n const pathParams = {\n nodeId,\n renditionId\n };\n\n return this.get({\n path: '/deleted-nodes/{nodeId}/renditions/{renditionId}',\n pathParams,\n returnType: RenditionEntry\n });\n }\n\n /**\n * Get rendition content of a deleted node\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param renditionId The name of a thumbnail rendition, for example *doclib*, or *pdf*.\n * @param opts Optional parameters\n * @param opts.attachment **true** enables a web browser to download the file as an attachment.\n * **false** means a web browser may preview the file in a new tab or window, but not download the file.\n * You can only set this parameter to **false** if the content type of the file is in the supported list;\n * for example, certain image files and PDF files.\n * If the content type is not supported for preview, then a value of **false** is ignored, and\n * the attachment will be returned in the response. (default to true)\n * @param opts.ifModifiedSince Only returns the content if it has been modified since the date provided.\n * Use the date format defined by HTTP. For example, Wed, 09 Mar 2016 16:56:34 GMT.\n * @param opts.range The Range header indicates the part of a document that the server should return.\n * Single part request supported, for example: bytes=1-10.\n * @param opts.placeholder If **true** and there is no rendition for this **nodeId** and **renditionId**,\n * then the placeholder image for the mime type of this rendition is returned, rather than a 404 response. (default to false)\n * @returns Promise<Blob>\n */\n getArchivedNodeRenditionContent(\n nodeId: string,\n renditionId: string,\n opts?: {\n attachment?: boolean;\n placeholder?: boolean;\n ifModifiedSince?: string;\n range?: string;\n }\n ): Promise<Blob> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(renditionId, 'renditionId');\n opts = opts || {};\n\n const pathParams = {\n nodeId,\n renditionId\n };\n\n const queryParams = {\n attachment: opts?.attachment,\n placeholder: opts?.placeholder\n };\n\n const headerParams = {\n 'If-Modified-Since': opts?.ifModifiedSince,\n Range: opts?.range\n };\n\n return this.get({\n path: '/deleted-nodes/{nodeId}/renditions/{renditionId}/content',\n pathParams,\n queryParams,\n headerParams,\n accepts: ['application/octet-stream']\n });\n }\n\n /**\n * Get a deleted node\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param opts Optional parameters\n * @returns Promise<DeletedNodeEntry>\n */\n getDeletedNode(nodeId: string, opts?: ContentIncludeQuery): Promise<DeletedNodeEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv')\n };\n\n return this.get({\n path: '/deleted-nodes/{nodeId}',\n pathParams,\n queryParams,\n returnType: DeletedNodeEntry\n });\n }\n\n /**\n * Get deleted node content\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param opts Optional parameters\n * @param opts.attachment **true** enables a web browser to download the file as an attachment.\n * **false** means a web browser may preview the file in a new tab or window, but not download the file.\n * You can only set this parameter to **false** if the content type of the file is in the supported list;\n * for example, certain image files and PDF files.\n * If the content type is not supported for preview, then a value of **false** is ignored, and\n * the attachment will be returned in the response. (default to true)\n * @param opts.ifModifiedSince Only returns the content if it has been modified since the date provided.\n * Use the date format defined by HTTP. For example, Wed, 09 Mar 2016 16:56:34 GMT.\n * @param opts.range The Range header indicates the part of a document that the server should return.\n * Single part request supported, for example: bytes=1-10.\n * @returns Promise<Blob>\n */\n getDeletedNodeContent(\n nodeId: string,\n opts?: {\n attachment?: boolean;\n ifModifiedSince?: string;\n range?: string;\n }\n ): Promise<Blob> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n attachment: opts?.attachment\n };\n\n const headerParams = {\n 'If-Modified-Since': opts?.ifModifiedSince,\n Range: opts?.range\n };\n\n const accepts = ['application/octet-stream'];\n\n return this.get({\n path: '/deleted-nodes/{nodeId}/content',\n pathParams,\n queryParams,\n headerParams,\n accepts,\n returnType: 'blob'\n });\n }\n\n /**\n * List renditions for a deleted node\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Each rendition returned has a **status**: `CREATED` means it is available to view or download,\n * `NOT_CREATED` means the rendition can be requested.\n *\n * You can use the **where** parameter to filter the returned renditions by **status**. For example, the following **where**\n * clause will return just the CREATED renditions:\n *\n * - (status='CREATED')\n *\n * @param nodeId The identifier of a node.\n * @param opts Optional parameters\n * @param opts.where A string to restrict the returned objects by using a predicate.\n * @returns Promise<RenditionPaging>\n */\n listDeletedNodeRenditions(nodeId: string, opts?: { where?: string }): Promise<RenditionPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n where: opts?.where\n };\n\n return this.get({\n path: '/deleted-nodes/{nodeId}/renditions',\n pathParams,\n queryParams,\n returnType: RenditionPaging\n });\n }\n\n /**\n * List deleted nodes\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Gets a list of deleted nodes for the current user.\n * If the current user is an administrator deleted nodes for all users will be returned.\n * The list of deleted nodes will be ordered with the most recently deleted node at the top of the list.\n *\n * @param opts Optional parameters\n * @returns Promise<DeletedNodesPaging>\n */\n listDeletedNodes(opts?: ContentPagingQuery & ContentIncludeQuery): Promise<DeletedNodesPaging> {\n const queryParams = {\n ...(opts || {}),\n include: buildCollectionParam(opts?.include, 'csv')\n };\n\n return this.get({\n path: '/deleted-nodes',\n queryParams,\n returnType: DeletedNodesPaging\n });\n }\n\n /**\n * Restore a deleted node\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Attempts to restore the deleted node **nodeId** to its original location or to a new location.\n *\n * If the node is successfully restored to its former primary parent, then only the\n * primary child association will be restored, including recursively for any primary\n * children. It should be noted that no other secondary child associations or peer\n * associations will be restored, for any of the nodes within the primary parent-child\n * hierarchy of restored nodes, irrespective of whether these associations were to\n * nodes within or outside the restored hierarchy.\n *\n * Also, any previously shared link will not be restored since it is deleted at the time\n * of delete of each node.\n *\n * @param nodeId The identifier of a node.\n * @param opts Optional parameters\n * @param opts.deletedNodeBodyRestore The targetParentId if the node is restored to a new location.\n * @returns Promise<NodeEntry>\n */\n restoreDeletedNode(\n nodeId: string,\n opts?: {\n deletedNodeBodyRestore?: {\n targetParentId?: string;\n assocType?: string;\n };\n } & ContentFieldsQuery\n ): Promise<NodeEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/deleted-nodes/{nodeId}/restore',\n pathParams,\n queryParams,\n bodyParam: opts?.deletedNodeBodyRestore,\n returnType: NodeEntry\n });\n }\n\n /**\n * Generate a direct access content url for a given deleted node\n *\n * **Note:** this endpoint is available in Alfresco 7.1 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @returns Promise<DirectAccessUrlEntry>\n */\n requestDirectAccessUrl(nodeId: string): Promise<DirectAccessUrlEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n return this.post({\n path: '/deleted-nodes/{nodeId}/request-direct-access-url',\n pathParams,\n returnType: DirectAccessUrlEntry\n });\n }\n\n /**\n * Generate a direct access content url for a given rendition of a deleted node\n *\n * **Note:** this endpoint is available in Alfresco 7.1 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param renditionId The identifier of a version\n * @returns Promise<DirectAccessUrlEntry>\n */\n requestRenditionDirectAccessUrl(nodeId: string, renditionId: string): Promise<DirectAccessUrlEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(renditionId, 'renditionId');\n\n const pathParams = {\n nodeId,\n renditionId\n };\n\n return this.post({\n path: '/deleted-nodes/{nodeId}/renditions/{renditionId}/request-direct-access-url',\n pathParams,\n returnType: DirectAccessUrlEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DirectAccessUrlEntry, RenditionBodyCreate, RenditionEntry, RenditionPaging, RevertBody, VersionEntry, VersionPaging } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { ContentFieldsQuery, ContentIncludeQuery, ContentPagingQuery } from './types';\n\n/**\n * Versions service.\n *\n * @module VersionsApi\n */\nexport class VersionsApi extends BaseApi {\n /**\n * Create rendition for a file version\n *\n * **Note:** this endpoint is available in Alfresco 7.0.0 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param versionId The identifier of a version, ie. version label, within the version history of a node.\n * @param renditionBodyCreate The rendition \\\"id\\\".\n * @returns Promise<{}>\n */\n createVersionRendition(nodeId: string, versionId: string, renditionBodyCreate: RenditionBodyCreate): Promise<any> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(versionId, 'versionId');\n throwIfNotDefined(renditionBodyCreate, 'renditionBodyCreate');\n\n const pathParams = {\n nodeId,\n versionId\n };\n\n return this.post({\n path: '/nodes/{nodeId}/versions/{versionId}/renditions',\n pathParams,\n bodyParam: renditionBodyCreate\n });\n }\n\n /**\n * Delete a version\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Delete the version identified by **versionId** and **nodeId*.\n *\n * If the version is successfully deleted then the content and metadata for that versioned node\n * will be deleted and will no longer appear in the version history. This operation cannot be undone.\n *\n * If the most recent version is deleted the live node will revert to the next most recent version.\n *\n * We currently do not allow the last version to be deleted. If you wish to clear the history then you\n * can remove the \\\"cm:versionable\\\" aspect (via update node) which will also disable versioning. In this\n * case, you can re-enable versioning by adding back the \\\"cm:versionable\\\" aspect or using the version\n * params (majorVersion and comment) on a subsequent file content update.\n *\n * @param nodeId The identifier of a node.\n * @param versionId The identifier of a version, ie. version label, within the version history of a node.\n * @returns Promise<{}>\n */\n deleteVersion(nodeId: string, versionId: string): Promise<void> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(versionId, 'versionId');\n\n const pathParams = {\n nodeId,\n versionId\n };\n\n return this.delete({\n path: '/nodes/{nodeId}/versions/{versionId}',\n pathParams\n });\n }\n\n /**\n * Get version information\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param versionId The identifier of a version, ie. version label, within the version history of a node.\n * @returns Promise<VersionEntry>\n */\n getVersion(nodeId: string, versionId: string): Promise<VersionEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(versionId, 'versionId');\n\n const pathParams = {\n nodeId,\n versionId\n };\n\n return this.get({\n path: '/nodes/{nodeId}/versions/{versionId}',\n pathParams,\n returnType: VersionEntry\n });\n }\n\n /**\n * Get version content\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param versionId The identifier of a version, ie. version label, within the version history of a node.\n * @param opts Optional parameters\n * @param opts.attachment **true** enables a web browser to download the file as an attachment.\n * **false** means a web browser may preview the file in a new tab or window, but not download the file.\n * You can only set this parameter to **false** if the content type of the file is in the supported list;\n * for example, certain image files and PDF files.\n * If the content type is not supported for preview, then a value of **false** is ignored, and\n * the attachment will be returned in the response.\n * (default to true)\n * @param opts.ifModifiedSince Only returns the content if it has been modified since the date provided.\n * Use the date format defined by HTTP. For example, Wed, 09 Mar 2016 16:56:34 GMT.\n * @param opts.range The Range header indicates the part of a document that the server should return.\n * Single part request supported, for example: bytes=1-10.\n * @returns Promise<Blob>\n */\n getVersionContent(\n nodeId: string,\n versionId: string,\n opts?: {\n attachment?: boolean;\n ifModifiedSince?: string;\n range?: string;\n }\n ): Promise<Blob> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(versionId, 'versionId');\n\n const pathParams = {\n nodeId,\n versionId\n };\n\n const queryParams = {\n attachment: opts?.attachment\n };\n\n const headerParams = {\n 'If-Modified-Since': opts?.ifModifiedSince,\n Range: opts?.range\n };\n\n const accepts = ['application/octet-stream'];\n\n return this.get({\n path: '/nodes/{nodeId}/versions/{versionId}/content',\n pathParams,\n queryParams,\n headerParams,\n accepts,\n returnType: 'blob'\n });\n }\n /**\n * Get rendition information for a file version\n *\n * **Note:** this endpoint is available in Alfresco 7.0.0 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param versionId The identifier of a version, ie. version label, within the version history of a node.\n * @param renditionId The name of a thumbnail rendition, for example *doclib*, or *pdf*.\n * @returns Promise<RenditionEntry>\n */\n getVersionRendition(nodeId: string, versionId: string, renditionId: string): Promise<RenditionEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(versionId, 'versionId');\n throwIfNotDefined(renditionId, 'renditionId');\n\n const pathParams = {\n nodeId,\n versionId,\n renditionId\n };\n\n return this.get({\n path: '/nodes/{nodeId}/versions/{versionId}/renditions/{renditionId}',\n pathParams,\n returnType: RenditionEntry\n });\n }\n\n /**\n * Get rendition content for a file version\n *\n * **Note:** this endpoint is available in Alfresco 7.0.0 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param versionId The identifier of a version, ie. version label, within the version history of a node.\n * @param renditionId The name of a thumbnail rendition, for example *doclib*, or *pdf*.\n * @param opts Optional parameters\n * @param opts.attachment **true** enables a web browser to download the file as an attachment.\n * **false** means a web browser may preview the file in a new tab or window, but not\n * download the file.\n * You can only set this parameter to **false** if the content type of the file is in the supported list;\n * for example, certain image files and PDF files.\n * If the content type is not supported for preview, then a value of **false** is ignored, and\n * the attachment will be returned in the response.\n * (default to true)\n * @param opts.ifModifiedSince Only returns the content if it has been modified since the date provided.\n * Use the date format defined by HTTP. For example, Wed, 09 Mar 2016 16:56:34 GMT.\n * @param opts.range The Range header indicates the part of a document that the server should return.\n * Single part request supported, for example: bytes=1-10.\n * @param opts.placeholder If **true** and there is no rendition for this **nodeId** and **renditionId**,\n * then the placeholder image for the mime type of this rendition is returned, rather than a 404 response.\n * (default to false)\n * @returns Promise<Blob>\n */\n getVersionRenditionContent(\n nodeId: string,\n versionId: string,\n renditionId: string,\n opts?: {\n attachment?: boolean;\n placeholder?: boolean;\n ifModifiedSince?: string;\n range?: string;\n }\n ): Promise<Blob> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(versionId, 'versionId');\n throwIfNotDefined(renditionId, 'renditionId');\n\n opts = opts || {};\n\n const pathParams = {\n nodeId,\n versionId,\n renditionId\n };\n\n const queryParams = {\n attachment: opts?.attachment,\n placeholder: opts?.placeholder\n };\n\n const headerParams = {\n 'If-Modified-Since': opts?.ifModifiedSince,\n Range: opts?.range\n };\n\n const accepts = ['application/octet-stream'];\n\n return this.get({\n path: '/nodes/{nodeId}/versions/{versionId}/renditions/{renditionId}/content',\n pathParams,\n queryParams,\n headerParams,\n accepts,\n returnType: 'blob'\n });\n }\n\n /**\n * List version history\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Gets the version history as an ordered list of versions for the specified **nodeId**.\n *\n * The list is ordered in descending modified order. So the most recent version is first and\n * the original version is last in the list.\n *\n * @param nodeId The identifier of a node.\n * @param opts Optional parameters\n * @returns Promise<VersionPaging>\n */\n listVersionHistory(nodeId: string, opts?: ContentPagingQuery & ContentIncludeQuery & ContentFieldsQuery): Promise<VersionPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv'),\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems\n };\n\n return this.get({\n path: '/nodes/{nodeId}/versions',\n pathParams,\n queryParams,\n returnType: VersionPaging\n });\n }\n\n /**\n * List renditions for a file version\n *\n * **Note:** this endpoint is available in Alfresco 7.0.0 and newer versions.\n *\n * Gets a list of the rendition information for each rendition of the version of file **nodeId** and **versionId**, including the rendition id.\n * Each rendition returned has a **status**: CREATED means it is available to view or download, NOT_CREATED means the rendition can be requested.\n * You can use the **where** parameter to filter the returned renditions by **status**. For example, the following **where**\n * clause will return just the CREATED renditions: (status='CREATED')\n *\n * @param nodeId The identifier of a node.\n * @param versionId The identifier of a version, ie. version label, within the version history of a node.\n * @param opts Optional parameters\n * @param opts.where A string to restrict the returned objects by using a predicate.\n * @returns Promise<RenditionPaging>\n */\n listVersionRenditions(nodeId: string, versionId: string, opts?: { where?: string }): Promise<RenditionPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(versionId, 'versionId');\n\n const pathParams = {\n nodeId,\n versionId\n };\n\n return this.get({\n path: '/nodes/{nodeId}/versions/{versionId}/renditions',\n pathParams,\n queryParams: opts,\n returnType: RenditionPaging\n });\n }\n\n /**\n * Revert a version\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Attempts to revert the version identified by **versionId** and **nodeId** to the live node.\n * If the node is successfully reverted then the content and metadata for that versioned node\n * will be promoted to the live node and a new version will appear in the version history.\n *\n * @param nodeId The identifier of a node.\n * @param versionId The identifier of a version, ie. version label, within the version history of a node.\n * @param revertBody Optionally, specify a version comment and whether this should be a major version, or not.\n * @param opts Optional parameters\n * @returns Promise<VersionEntry>\n */\n revertVersion(nodeId: string, versionId: string, revertBody: RevertBody, opts?: ContentFieldsQuery): Promise<VersionEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(versionId, 'versionId');\n throwIfNotDefined(revertBody, 'revertBody');\n\n const pathParams = {\n nodeId,\n versionId\n };\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/nodes/{nodeId}/versions/{versionId}/revert',\n pathParams,\n queryParams,\n bodyParam: revertBody,\n returnType: VersionEntry\n });\n }\n\n /**\n * Generate a direct access content url for a given version of a node\n *\n * **Note:** this endpoint is available in Alfresco 7.1 and newer versions.\n *\n * @param nodeId The identifier of a node.\n * @param versionId The identifier of a version\n * @returns Promise<DirectAccessUrlEntry>\n */\n requestDirectAccessUrl(nodeId: string, versionId: string): Promise<DirectAccessUrlEntry> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(versionId, 'versionId');\n\n const pathParams = {\n nodeId,\n versionId\n };\n\n return this.post({\n path: '/nodes/{nodeId}/versions/{versionId}/request-direct-access-url',\n pathParams,\n returnType: DirectAccessUrlEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './types';\nexport * from './actions.api';\nexport * from './activities.api';\nexport * from './audit.api';\nexport * from './categories.api';\nexport * from './comments.api';\nexport * from './downloads.api';\nexport * from './favorites.api';\nexport * from './groups.api';\nexport * from './networks.api';\nexport * from './nodes.api';\nexport * from './people.api';\nexport * from './preferences.api';\nexport * from './probes.api';\nexport * from './queries.api';\nexport * from './ratings.api';\nexport * from './renditions.api';\nexport * from './sharedlinks.api';\nexport * from './sites.api';\nexport * from './tags.api';\nexport * from './trashcan.api';\nexport * from './versions.api';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './api';\nexport * from './model';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class EntitlementsInfo {\n maxUsers?: number;\n maxDocs?: number;\n isClusterEnabled?: boolean;\n isCryptodocEnabled?: boolean;\n\n constructor(input?: Partial<EntitlementsInfo>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api/model/dateAlfresco';\nimport { EntitlementsInfo } from './entitlementsInfo';\n\nexport class LicenseInfo {\n issuedAt: Date;\n expiresAt: Date;\n remainingDays: number;\n holder: string;\n mode: string;\n entitlements?: EntitlementsInfo;\n\n constructor(input?: Partial<LicenseInfo>) {\n if (input) {\n Object.assign(this, input);\n this.issuedAt = input.issuedAt ? DateAlfresco.parseDate(input.issuedAt) : undefined;\n this.expiresAt = input.expiresAt ? DateAlfresco.parseDate(input.expiresAt) : undefined;\n this.entitlements = input.entitlements ? new EntitlementsInfo(input.entitlements) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api/model/dateAlfresco';\n\nexport class ModuleInfo {\n id?: string;\n title?: string;\n description?: string;\n version?: string;\n installDate?: Date;\n installState?: string;\n versionMin?: string;\n versionMax?: string;\n\n constructor(input?: Partial<ModuleInfo>) {\n if (input) {\n Object.assign(this, input);\n this.installDate = input.installDate ? DateAlfresco.parseDate(input.installDate) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class StatusInfo {\n isReadOnly: boolean;\n isAuditEnabled: boolean;\n isQuickShareEnabled: boolean;\n isThumbnailGenerationEnabled: boolean;\n isDirectAccessUrlEnabled: boolean;\n\n constructor(input?: Partial<StatusInfo>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class VersionInfo {\n major: string;\n minor: string;\n patch: string;\n hotfix: string;\n schema: number;\n label: string;\n display: string;\n\n constructor(input?: Partial<VersionInfo>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { LicenseInfo } from './licenseInfo';\nimport { ModuleInfo } from './moduleInfo';\nimport { StatusInfo } from './statusInfo';\nimport { VersionInfo } from './versionInfo';\n\nexport class RepositoryInfo {\n edition: string;\n version: VersionInfo;\n status: StatusInfo;\n license?: LicenseInfo;\n modules?: ModuleInfo[];\n\n constructor(input?: Partial<RepositoryInfo>) {\n if (input) {\n Object.assign(this, input);\n this.version = input.version ? new VersionInfo(input.version) : undefined;\n this.status = input.status ? new StatusInfo(input.status) : undefined;\n this.license = input.license ? new LicenseInfo(input.license) : undefined;\n if (input.modules) {\n this.modules = input.modules.map((item) => new ModuleInfo(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RepositoryInfo } from './repositoryInfo';\n\nexport class RepositoryEntry {\n repository: RepositoryInfo;\n\n constructor(input?: Partial<RepositoryEntry>) {\n if (input) {\n Object.assign(this, input);\n this.repository = input.repository ? new RepositoryInfo(input.repository) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RepositoryEntry } from './repositoryEntry';\n\nexport class DiscoveryEntry {\n entry: RepositoryEntry;\n\n constructor(input?: Partial<DiscoveryEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new RepositoryEntry(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ApiClient } from '../../../api-clients/api-client';\nimport { LegacyHttpClient } from '../../../api-clients/http-client.interface';\n\nexport abstract class BaseApi extends ApiClient {\n override get apiClient(): LegacyHttpClient {\n return this.httpClient ?? this.alfrescoApi.discoveryClient;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DiscoveryEntry } from '../model/discoveryEntry';\nimport { BaseApi } from './base.api';\n\n/**\n * Discovery service.\n */\nexport class DiscoveryApi extends BaseApi {\n /**\n * Get repository information\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @returns Promise<DiscoveryEntry>\n */\n getRepositoryInformation(): Promise<DiscoveryEntry> {\n return this.get({\n path: '/discovery',\n returnType: DiscoveryEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './discovery.api';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './discoveryEntry';\nexport * from './entitlementsInfo';\nexport * from './licenseInfo';\nexport * from './moduleInfo';\nexport * from './repositoryEntry';\nexport * from './repositoryInfo';\nexport * from './statusInfo';\nexport * from './versionInfo';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './api';\nexport * from './model';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ClassificationGuideInTopic } from './classificationGuideInTopic';\nimport { DateAlfresco } from '../../content-custom-api';\nimport { Instruction } from './instruction';\nimport { Path } from './path';\n\nexport class Topic {\n id: string;\n name: string;\n description?: string;\n /**\n * Flag indicating whether the topic has an instruction or not.\n */\n hasInstruction: boolean;\n instruction?: Instruction;\n createdAt: Date;\n /**\n * Flag indicating whether the topic has subtopics. This field is only included when requested.\n */\n hasSubtopics?: boolean;\n path?: Path;\n classificationGuide?: ClassificationGuideInTopic;\n\n constructor(input?: Partial<Topic>) {\n if (input) {\n Object.assign(this, input);\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Topic } from './topic';\n\nexport class TopicEntry {\n entry: Topic;\n\n constructor(input?: Partial<TopicEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Topic(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from '../../content-rest-api';\nimport { TopicEntry } from './topicEntry';\n\nexport class TopicPagingList {\n pagination?: Pagination;\n entries?: TopicEntry[];\n\n constructor(input?: Partial<TopicPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new TopicEntry(item));\n }\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TopicPagingList } from './topicPagingList';\n\nexport class SubtopicPaging {\n list?: TopicPagingList;\n\n constructor(input?: Partial<SubtopicPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new TopicPagingList(input.list) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TopicPagingList } from './topicPagingList';\n\nexport class TopicPaging {\n list?: TopicPagingList;\n\n constructor(input?: Partial<TopicPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new TopicPagingList(input.list) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './authorityClearanceGroupEntry';\nexport * from './authorityClearanceGroupPaging';\nexport * from './authorityClearanceGroupPagingList';\nexport * from './authorityClearanceGroup';\nexport * from './authorityClearanceMark';\nexport * from './classificationGuideEntry';\nexport * from './classificationGuidePaging';\nexport * from './classificationGuidePagingList';\nexport * from './classificationGuideBody';\nexport * from './classificationGuidesBody';\nexport * from './classificationGuidesEntry';\nexport * from './classificationInformation';\nexport * from './classificationReason';\nexport * from './classificationReasonBody';\nexport * from './classificationReasonEntry';\nexport * from './classificationReasonsPaging';\nexport * from './classificationReasonsPagingList';\nexport * from './declassificationDate';\nexport * from './declassificationExemption';\nexport * from './declassificationExemptionBody';\nexport * from './declassificationExemptionEntry';\nexport * from './declassificationExemptionsPaging';\nexport * from './declassificationExemptionsPagingList';\nexport * from './instruction';\nexport * from './instructionBody';\nexport * from './instructionEntry';\nexport * from './path';\nexport * from './securityControlSetting';\nexport * from './securityControlSettingBody';\nexport * from './securityControlSettingEntry';\nexport * from './securityGroup';\nexport * from './securityGroupBody';\nexport * from './securityGroupEntry';\nexport * from './securityGroupPaging';\nexport * from './securityGroupPagingList';\nexport * from './securityMark';\nexport * from './securityMarkBody';\nexport * from './securityMarkEntry';\nexport * from './securityMarkInformation';\nexport * from './securityMarkInformationBody';\nexport * from './securityMarkPaging';\nexport * from './securityMarkPagingList';\nexport * from './securityMarks';\nexport * from './securityMarksBody';\nexport * from './subtopicPaging';\nexport * from './topic';\nexport * from './topicBody';\nexport * from './topicEntry';\nexport * from './topicPaging';\nexport * from './topicPagingList';\nexport * from './classificationGuideInTopic';\nexport * from './classificationGuidesInTopic';\nexport * from './combinedInstructionBody';\nexport * from './classificationGuide';\nexport * from './classificationGuides';\nexport * from './nodeSecurityMarkBody';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ApiClient } from '../../../api-clients/api-client';\nimport { LegacyHttpClient } from '../../../api-clients/http-client.interface';\n\nexport abstract class BaseApi extends ApiClient {\n override get apiClient(): LegacyHttpClient {\n return this.httpClient ?? this.alfrescoApi.gsClient;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n ClassificationGuideBody,\n ClassificationGuideEntry,\n ClassificationGuidePaging,\n InstructionEntry,\n SubtopicPaging,\n TopicBody,\n TopicEntry,\n TopicPaging\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { throwIfNotDefined } from '../../../assert';\nimport { GsIncludeQuery, GsPagingQuery } from './types';\n\nexport interface CombinedInstructionsOpts {\n instructions?: any;\n}\n\n/**\n * ClassificationGuidesApi service.\n */\nexport class ClassificationGuidesApi extends BaseApi {\n /**\n * Combines instructions from the given topics and the user defined instruction, if any.\n *\n * @param opts Optional parameters\n * @param opts.instructions Instructions\n * @returns Promise<InstructionEntry>\n */\n combinedInstructions(opts?: CombinedInstructionsOpts): Promise<InstructionEntry> {\n return this.post({\n path: '/combined-instructions',\n bodyParam: opts?.instructions\n });\n }\n\n /**\n * Create a classification guide\n *\n * @param classificationGuide Classification guide\n * @returns Promise<ClassificationGuideEntry>\n */\n createClassificationGuide(classificationGuide: ClassificationGuideBody): Promise<ClassificationGuideEntry> {\n throwIfNotDefined(classificationGuide, 'classificationGuide');\n\n return this.post({\n path: '/classification-guides',\n bodyParam: classificationGuide\n });\n }\n\n /**\n * Create a subtopic\n *\n * @param topicId The identifier for the topic\n * @param topic Subtopic\n * @param opts Optional parameters\n * @returns Promise<TopicEntry>\n */\n createSubtopic(topicId: string, topic: TopicBody, opts?: GsIncludeQuery): Promise<TopicEntry> {\n throwIfNotDefined(topicId, 'topicId');\n throwIfNotDefined(topic, 'topic');\n\n const pathParams = {\n topicId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv')\n };\n\n return this.post({\n path: '/topics/{topicId}/subtopics',\n pathParams,\n queryParams,\n bodyParam: topic,\n returnType: TopicEntry\n });\n }\n\n /**\n * Create a topic\n *\n * @param classificationGuideId The identifier for the classification guide\n * @param topic Topic\n * @param opts Optional parameters\n * @returns Promise<TopicEntry>\n */\n createTopic(classificationGuideId: string, topic: TopicBody, opts?: GsIncludeQuery): Promise<TopicEntry> {\n throwIfNotDefined(classificationGuideId, 'classificationGuideId');\n throwIfNotDefined(topic, 'topic');\n\n const pathParams = {\n classificationGuideId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv')\n };\n\n return this.post({\n path: '/classification-guides/{classificationGuideId}/topics',\n pathParams,\n queryParams,\n bodyParam: topic,\n returnType: TopicEntry\n });\n }\n\n /**\n * Delete a classification guide\n *\n * @param classificationGuideId The identifier for the classification guide\n * @returns Promise<{}>\n */\n deleteClassificationGuide(classificationGuideId: string): Promise<void> {\n throwIfNotDefined(classificationGuideId, 'classificationGuideId');\n\n const pathParams = {\n classificationGuideId\n };\n\n return this.delete({\n path: '/classification-guides/{classificationGuideId}',\n pathParams\n });\n }\n\n /**\n * Delete a topic\n *\n * @param topicId The identifier for the topic\n * @returns Promise<{}>\n */\n deleteTopic(topicId: string): Promise<void> {\n throwIfNotDefined(topicId, 'topicId');\n\n const pathParams = {\n topicId\n };\n\n return this.delete({\n path: '/topics/{topicId}',\n pathParams\n });\n }\n\n /**\n * List all classification guides\n *\n * @param opts Optional parameters\n * @param opts.orderBy A string to control the order of the entities returned in a list. You can use the **orderBy** parameter to sort the list by one or more fields.\n * Each field has a default sort order, which is normally ascending order. Read the API method implementation notes\n * above to check if any fields used in this method have a descending default search order.\n * To sort the entities in a specific order, you can use the **ASC** and **DESC** keywords for any field.\n * @param opts.where A string to restrict the returned objects by using a predicate. Supported operations are AND, NOT, and OR. Fields to filter on:\n * enabled - e.g. (enabled = true OR enabled = false)\n * @returns Promise<ClassificationGuidePaging>\n */\n listClassificationGuides(opts?: { orderBy?: string[]; where?: string } & GsPagingQuery & GsIncludeQuery): Promise<ClassificationGuidePaging> {\n opts = opts || {};\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n where: opts?.where\n };\n\n return this.get({\n path: '/classification-guides',\n queryParams\n });\n }\n\n /**\n * List all subtopics\n *\n * @param topicId The identifier for the topic\n * @param opts Optional parameters\n * @param opts.orderBy A string to control the order of the entities returned in a list. You can use the **orderBy** parameter to\n * sort the list by one or more fields.\n * Each field has a default sort order, which is normally ascending order. Read the API method implementation notes\n * above to check if any fields used in this method have a descending default search order.\n * To sort the entities in a specific order, you can use the **ASC** and **DESC** keywords for any field.\n * @param opts.where A string to restrict the returned objects by using a predicate. Supported operations are AND, NOT, and OR. Fields to filter on:\n * - hasInstruction\n * - hasSubtopics\n * @param opts.includeSource Also include **source** in addition to **entries** with folder information on the parent guide/topic\n * @returns Promise<SubtopicPaging>\n */\n listSubtopics(\n topicId: string,\n opts?: {\n orderBy?: string[];\n where?: string;\n includeSource?: boolean;\n } & GsPagingQuery &\n GsIncludeQuery\n ): Promise<SubtopicPaging> {\n throwIfNotDefined(topicId, 'topicId');\n opts = opts || {};\n\n const pathParams = {\n topicId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n where: opts?.where,\n includeSource: opts?.includeSource\n };\n\n return this.get({\n path: '/topics/{topicId}/subtopics',\n pathParams,\n queryParams,\n returnType: SubtopicPaging\n });\n }\n\n /**\n * List all topics\n *\n * @param classificationGuideId The identifier for the classification guide\n * @param opts Optional parameters\n * @param opts.orderBy A string to control the order of the entities returned in a list. You can use the **orderBy** parameter to\n * sort the list by one or more fields.\n * Each field has a default sort order, which is normally ascending order. Read the API method implementation notes\n * above to check if any fields used in this method have a descending default search order.\n * To sort the entities in a specific order, you can use the **ASC** and **DESC** keywords for any field.\n * @param opts.where A string to restrict the returned objects by using a predicate. Supported operations are AND, NOT, and OR e.g. (instruction=true and hasSubtopics=false). Fields to filter on:\n * - hasInstruction\n * - hasSubtopics\n * @param opts.includeSource Also include **source** in addition to **entries** with folder information on the parent guide/topic\n * @returns Promise<TopicPaging>\n */\n listTopics(\n classificationGuideId: string,\n opts?: {\n orderBy?: string[];\n where?: string;\n includeSource?: boolean;\n } & GsPagingQuery &\n GsIncludeQuery\n ): Promise<TopicPaging> {\n throwIfNotDefined(classificationGuideId, 'classificationGuideId');\n opts = opts || {};\n\n const pathParams = {\n classificationGuideId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n orderBy: buildCollectionParam(opts?.orderBy, 'csv'),\n where: opts?.where,\n includeSource: opts?.includeSource\n };\n\n return this.get({\n path: '/classification-guides/{classificationGuideId}/topics',\n pathParams,\n queryParams,\n returnType: TopicPaging\n });\n }\n\n /**\n * Get classification guide information\n *\n * @param classificationGuideId The identifier for the classification guide\n * @returns Promise<ClassificationGuideEntry>\n */\n showClassificationGuideById(classificationGuideId: string): Promise<ClassificationGuideEntry> {\n throwIfNotDefined(classificationGuideId, 'classificationGuideId');\n\n const pathParams = {\n classificationGuideId\n };\n\n return this.get({\n path: '/classification-guides/{classificationGuideId}',\n pathParams\n });\n }\n\n /**\n * Get topic information\n *\n * @param topicId The identifier for the topic\n * @param opts Optional parameters\n * @returns Promise<TopicEntry>\n */\n showTopicById(topicId: string, opts?: GsIncludeQuery): Promise<TopicEntry> {\n throwIfNotDefined(topicId, 'topicId');\n\n const pathParams = {\n topicId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv')\n };\n\n return this.post({\n path: '/topics/{topicId}',\n pathParams,\n queryParams,\n returnType: TopicEntry\n });\n }\n\n /**\n * Update a classification guide\n *\n * Updates the classification guide with id **classificationGuideId**. For example, you can rename a classification guide.\n *\n * @param classificationGuideId The identifier for the classification guide\n * @param classificationGuide Classification guide\n * @returns Promise<ClassificationGuideEntry>\n */\n updateClassificationGuide(classificationGuideId: string, classificationGuide: ClassificationGuideBody): Promise<ClassificationGuideEntry> {\n throwIfNotDefined(classificationGuideId, 'classificationGuideId');\n throwIfNotDefined(classificationGuide, 'classificationGuide');\n\n const pathParams = {\n classificationGuideId\n };\n\n return this.put({\n path: '/classification-guides/{classificationGuideId}',\n pathParams,\n bodyParam: classificationGuide\n });\n }\n\n /**\n * Update a topic\n *\n * Updates the topic with id **topicId**.\n * Use this to rename a topic or to add, edit, or remove the instruction associated with it.\n *\n * @param topicId The identifier for the topic\n * @param topic Topic\n * @param opts Optional parameters\n * @returns Promise<TopicEntry>\n */\n updateTopic(topicId: string, topic: TopicBody, opts?: GsIncludeQuery): Promise<TopicEntry> {\n throwIfNotDefined(topicId, 'topicId');\n throwIfNotDefined(topic, 'topic');\n\n const pathParams = {\n topicId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv')\n };\n\n return this.put({\n path: '/topics/{topicId}',\n pathParams,\n queryParams,\n bodyParam: topic,\n returnType: TopicEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ClassificationReasonBody, ClassificationReasonEntry, ClassificationReasonsPaging } from '../model';\nimport { BaseApi } from './base.api';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { throwIfNotDefined } from '../../../assert';\nimport { GsFieldsQuery, GsPagingQuery } from './types';\n\n/**\n * ClassificationReasonsApi service.\n */\nexport class ClassificationReasonsApi extends BaseApi {\n /**\n * Creates a new classification reason.\n *\n * **Note:** You can create more than one reason by specifying a list of reasons in the JSON body.\n *\n * @param classificationReason Classification reason\n * @returns Promise<ClassificationReasonEntry>\n */\n createClassificationReason(classificationReason: ClassificationReasonBody): Promise<ClassificationReasonEntry> {\n throwIfNotDefined(classificationReason, 'classificationReason');\n\n return this.post({\n path: '/classification-reasons',\n bodyParam: classificationReason\n });\n }\n\n /**\n * Deletes the classification reason **classificationReasonId**.\n *\n * You can't delete a classification reason that is being used to classify content.\n * There must be at least one classification reason.\n *\n * @param classificationReasonId The identifier for the classification reason\n * @returns Promise<{}>\n */\n deleteClassificationReason(classificationReasonId: string): Promise<void> {\n throwIfNotDefined(classificationReasonId, 'classificationReasonId');\n\n const pathParams = {\n classificationReasonId\n };\n\n return this.delete({\n path: '/classification-reasons/{classificationReasonId}',\n pathParams\n });\n }\n\n /**\n * List all classification reasons\n *\n * @param opts Optional parameters\n * @returns Promise<ClassificationReasonsPaging>\n */\n listClassificationReasons(opts?: GsPagingQuery & GsFieldsQuery): Promise<ClassificationReasonsPaging> {\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/classification-reasons',\n queryParams\n });\n }\n\n /**\n * Get classification reason information\n *\n * @param classificationReasonId The identifier for the classification reason\n * @returns Promise<ClassificationReasonEntry>\n */\n showClassificationReasonById(classificationReasonId: string): Promise<ClassificationReasonEntry> {\n throwIfNotDefined(classificationReasonId, 'classificationReasonId');\n\n const pathParams = {\n classificationReasonId\n };\n\n return this.get({\n path: '/classification-reasons/{classificationReasonId}',\n pathParams\n });\n }\n\n /**\n * Updates the classification reason with id **classificationReasonId**. For example, you can change a classification reason code or description.\n *\n * @param classificationReasonId The identifier for the classification reason\n * @param classificationReason Classification reason\n * @returns Promise<ClassificationReasonEntry>\n */\n updateClassificationReason(classificationReasonId: string, classificationReason: ClassificationReasonBody): Promise<ClassificationReasonEntry> {\n throwIfNotDefined(classificationReasonId, 'classificationReasonId');\n throwIfNotDefined(classificationReason, 'classificationReason');\n\n const pathParams = {\n classificationReasonId\n };\n\n return this.put({\n path: '/classification-reasons/{classificationReasonId}',\n pathParams,\n bodyParam: classificationReason\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DeclassificationExemptionBody, DeclassificationExemptionEntry, DeclassificationExemptionsPaging } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { GsPagingQuery } from './types';\n\n/**\n * DeclassificationExemptionsApi service.\n */\nexport class DeclassificationExemptionsApi extends BaseApi {\n /**\n * Create a declassification exemption\n *\n * @param declassificationExemption Declassification exemption\n * @returns Promise<DeclassificationExemptionEntry>\n */\n createDeclassificationExemption(declassificationExemption: DeclassificationExemptionBody): Promise<DeclassificationExemptionEntry> {\n throwIfNotDefined(declassificationExemption, 'declassificationExemption');\n\n return this.post({\n path: '/declassification-exemptions',\n bodyParam: declassificationExemption\n });\n }\n\n /**\n * Deletes the declassification exemption with id **declassificationExemptionId**.\n * You can't delete a classification exemption that is being used to classify content.\n *\n * @param declassificationExemptionId The identifier for the declassification exemption\n * @returns Promise<{}>\n */\n deleteDeclassificationExemption(declassificationExemptionId: string): Promise<void> {\n throwIfNotDefined(declassificationExemptionId, 'declassificationExemptionId');\n\n const pathParams = {\n declassificationExemptionId\n };\n\n return this.delete({\n path: '/declassification-exemptions/{declassificationExemptionId}',\n pathParams\n });\n }\n\n /**\n * List all declassification exemptions\n *\n * @param opts Optional parameters\n * @returns Promise<DeclassificationExemptionsPaging>\n */\n listDeclassificationExemptions(opts?: GsPagingQuery): Promise<DeclassificationExemptionsPaging> {\n return this.get({\n path: '/declassification-exemptions',\n queryParams: opts\n });\n }\n\n /**\n * Get declassification exemption information\n *\n * @param declassificationExemptionId The identifier for the declassification exemption\n * @returns Promise<DeclassificationExemptionEntry>\n */\n showDeclassificationExemptionById(declassificationExemptionId: string): Promise<DeclassificationExemptionEntry> {\n throwIfNotDefined(declassificationExemptionId, 'declassificationExemptionId');\n\n const pathParams = {\n declassificationExemptionId\n };\n\n return this.get({\n path: '/declassification-exemptions/{declassificationExemptionId}',\n pathParams\n });\n }\n\n /**\n * Update a declassification exemption\n *\n * @param declassificationExemptionId The identifier for the declassification exemption\n * @param declassificationExemption Declassification exemption\n * @returns Promise<DeclassificationExemptionEntry>\n */\n updateDeclassificationExemption(\n declassificationExemptionId: string,\n declassificationExemption: DeclassificationExemptionBody\n ): Promise<DeclassificationExemptionEntry> {\n throwIfNotDefined(declassificationExemptionId, 'declassificationExemptionId');\n throwIfNotDefined(declassificationExemption, 'declassificationExemption');\n\n const pathParams = {\n declassificationExemptionId\n };\n\n return this.put({\n path: '/declassification-exemptions/{declassificationExemptionId}',\n pathParams,\n bodyParam: declassificationExemption\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DeclassificationDate } from '../model';\nimport { BaseApi } from './base.api';\nimport { DateAlfresco } from '../../content-custom-api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * DefaultClassificationValuesApi service.\n */\nexport class DefaultClassificationValuesApi extends BaseApi {\n /**\n * Calculates the default declassification date for **nodeId** based on the properties of the node and the current declassification time frame.\n *\n * @param nodeId The identifier of a node.\n * @returns Promise<DeclassificationDate>\n */\n calculateDefaultDeclassificationDate(nodeId: string): Promise<DeclassificationDate> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n return this.post({\n path: '/default-classification-values/{nodeId}/calculate-declassification-date',\n pathParams,\n returnType: DateAlfresco\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SecurityControlSettingBody, SecurityControlSettingEntry } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * SecurityControlSettingsApi service.\n *\n * @module SecurityControlSettingsApi\n */\nexport class SecurityControlSettingsApi extends BaseApi {\n /**\n * Get security control setting value\n *\n * @param securityControlSettingKey The key for the security control setting. You can use one of the following settings:\n * -declassificationTimeFrame- for the declassification time frame value set in alfresco-global.properties file\n * @returns Promise<SecurityControlSettingEntry>\n */\n getSecurityControlSetting(securityControlSettingKey: string): Promise<SecurityControlSettingEntry> {\n throwIfNotDefined(securityControlSettingKey, 'securityControlSettingKey');\n\n const pathParams = {\n securityControlSettingKey\n };\n\n return this.get({\n path: '/security-control-settings/{securityControlSettingKey}',\n pathParams\n });\n }\n\n /**\n * Update security control setting value\n *\n * @param securityControlSettingKey The key for the security control setting. You can use one of the following settings:\n * -declassificationTimeFrame- for the declassification time frame value set in alfresco-global.properties file\n * @param securityControlSettingValue The new value for the security control setting. This can be a string or number, depending on the setting key.\n * @returns Promise<SecurityControlSettingEntry>\n */\n updateSecurityControlSetting(\n securityControlSettingKey: string,\n securityControlSettingValue: SecurityControlSettingBody\n ): Promise<SecurityControlSettingEntry> {\n throwIfNotDefined(securityControlSettingKey, 'securityControlSettingKey');\n throwIfNotDefined(securityControlSettingValue, 'securityControlSettingValue');\n\n const pathParams = {\n securityControlSettingKey\n };\n\n return this.put({\n path: '/security-control-settings/{securityControlSettingKey}',\n pathParams,\n bodyParam: securityControlSettingValue\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { SecurityMarkBody, SecurityMarkEntry, SecurityMarkPaging } from '../model';\nimport { GsPagingQuery } from './types';\n\n/**\n * Security Marks API.\n *\n * @module SecurityMarksApi\n */\nexport class SecurityMarksApi extends BaseApi {\n /**\n * Get security mark value\n *\n * @param securityGroupId The key for the security group id.\n * @param opts Options\n * @returns Promise<SecurityMarkPaging>\n */\n getSecurityMarks(securityGroupId: string, opts?: GsPagingQuery): Promise<SecurityMarkPaging> {\n throwIfNotDefined(securityGroupId, 'securityGroupId');\n\n const pathParams = {\n securityGroupId\n };\n\n return this.get({\n path: '/security-groups/{securityGroupId}/security-marks',\n pathParams,\n queryParams: opts\n });\n }\n\n /**\n * Create security marks\n *\n * @param securityGroupId The key for the security group id.\n * @param securityMarkBody securityMarkBody[].\n * @returns Promise<SecurityMarkEntry|SecurityMarkPaging>\n */\n createSecurityMarks(securityGroupId: string, securityMarkBody: SecurityMarkBody[]): Promise<SecurityMarkPaging | SecurityMarkEntry> {\n throwIfNotDefined(securityGroupId, 'securityGroupId');\n throwIfNotDefined(securityMarkBody, 'securityMarkBody');\n\n const pathParams = { securityGroupId };\n\n return this.post({\n path: '/security-groups/{securityGroupId}/security-marks',\n pathParams,\n bodyParam: securityMarkBody\n });\n }\n\n /**\n * Get security mark value information\n *\n * @param securityGroupId The key for the security group id.\n * @param securityMarkId The key for the security mark id\n * @returns Promise<SecurityMarkEntry>\n */\n getSecurityMark(securityGroupId: string, securityMarkId: string): Promise<SecurityMarkEntry> {\n throwIfNotDefined(securityGroupId, 'securityGroupId');\n throwIfNotDefined(securityMarkId, 'securityMarkId');\n\n const pathParams = {\n securityGroupId,\n securityMarkId\n };\n\n return this.get({\n path: '/security-groups/{securityGroupId}/security-marks/{securityMarkId}',\n pathParams\n });\n }\n\n /**\n * Updates Security Mark value\n *\n * @param securityGroupId The key for the security group id.\n * @param securityMarkId The key for the security mark is in use or not.\n * @param securityMarkBody securityMarkBody.\n * @returns Promise<SecurityMarkEntry>\n */\n updateSecurityMark(securityGroupId: string, securityMarkId: string, securityMarkBody: SecurityMarkBody): Promise<SecurityMarkEntry> {\n throwIfNotDefined(securityGroupId, 'securityGroupId');\n throwIfNotDefined(securityMarkId, 'securityMarkId');\n throwIfNotDefined(securityMarkBody, 'securityMarkBody');\n\n const pathParams = {\n securityGroupId,\n securityMarkId\n };\n\n return this.put({\n path: '/security-groups/{securityGroupId}/security-marks/{securityMarkId}',\n pathParams,\n bodyParam: securityMarkBody\n });\n }\n\n /**\n * Delete security mark\n *\n * @param securityGroupId The key for the security group id.\n * @param securityMarkId The key for the security mark id.\n * @returns Promise<any>\n */\n deleteSecurityMark(securityGroupId: string, securityMarkId: string): Promise<SecurityMarkEntry> {\n throwIfNotDefined(securityGroupId, 'securityGroupId');\n throwIfNotDefined(securityMarkId, 'securityMarkId');\n\n const pathParams = {\n securityGroupId,\n securityMarkId\n };\n\n return this.delete({\n path: '/security-groups/{securityGroupId}/security-marks/{securityMarkId}',\n pathParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\nimport { SecurityGroupBody, SecurityGroupEntry, SecurityGroupPaging } from '../model';\nimport { GsGroupInclude, GsPagingQuery } from './types';\n\n/**\n * SecurityGroupsApi service.\n *\n * @module SecurityGroupsApi\n */\nexport class SecurityGroupsApi extends BaseApi {\n /**\n * Get All security groups\n *\n * @param opts Optional parameters\n * @returns Promise<SecurityGroupPaging>\n */\n getSecurityGroups(opts?: GsPagingQuery & GsGroupInclude): Promise<SecurityGroupPaging> {\n return this.get({\n path: '/security-groups',\n queryParams: opts\n });\n }\n\n /**\n * Create security group\n *\n * @param securityGroupBody securityGroupBody.\n * @param opts Optional parameters\n * @returns Promise<SecurityGroupEntry>\n */\n createSecurityGroup(securityGroupBody: SecurityGroupBody, opts?: GsGroupInclude): Promise<SecurityGroupEntry> {\n return this.post({\n path: '/security-groups',\n queryParams: opts,\n bodyParam: securityGroupBody\n });\n }\n\n /**\n * Get a security groups information\n *\n * @param securityGroupId The Key of Security Group id for which info is required\n * @param opts Optional parameters\n * @returns Promise<SecurityGroupEntry>\n */\n getSecurityGroupInfo(securityGroupId: string, opts?: GsGroupInclude): Promise<SecurityGroupEntry> {\n const pathParams = {\n securityGroupId\n };\n\n return this.get({\n path: '/security-groups/{securityGroupId}',\n pathParams,\n queryParams: opts\n });\n }\n\n /**\n * Update a security groups information\n *\n * @param securityGroupId The Key of Security Group id for which info is required\n * @param securityGroupBody SecurityGroupBody\n * @param opts Optional parameters\n * @returns Promise<SecurityGroupEntry>\n */\n updateSecurityGroup(securityGroupId: string, securityGroupBody: SecurityGroupBody, opts?: GsGroupInclude): Promise<SecurityGroupEntry> {\n const pathParams = {\n securityGroupId\n };\n\n return this.put({\n path: '/security-groups/{securityGroupId}',\n pathParams,\n queryParams: opts,\n bodyParam: securityGroupBody\n });\n }\n\n /**\n * Delete security group\n *\n * @param securityGroupId The key for the security group id.\n * @returns Promise<SecurityMarkEntry>\n */\n deleteSecurityGroup(securityGroupId: string): Promise<void> {\n const pathParams = { securityGroupId };\n return this.delete({\n path: '/security-groups/{securityGroupId}',\n pathParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { NodeSecurityMarkBody } from '../model/nodeSecurityMarkBody';\nimport { SecurityMarkPaging } from '../model/securityMarkPaging';\nimport { GsPagingQuery } from './types';\n\n/**\n * NodeSecurityMarksApi\n */\nexport class NodeSecurityMarksApi extends BaseApi {\n /**\n * Add/Remove security mark on a node\n *\n * @param nodeId The key for the node id.\n * @param dataBody Array of NodeSecurityMarkBody.\n * @returns Promise<SecurityMarkPaging>\n */\n manageSecurityMarksOnNode(nodeId: string, dataBody: Array<NodeSecurityMarkBody>): Promise<SecurityMarkPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n throwIfNotDefined(dataBody, 'dataBody');\n\n const pathParams = {\n nodeId\n };\n\n return this.post({\n path: '/secured-nodes/{nodeId}/securing-marks',\n pathParams,\n bodyParam: dataBody\n });\n }\n\n /**\n * Get security marks on a node\n *\n * @param nodeId The key for the node id.\n * @param opts Optional parameters\n * @returns Promise<SecurityMarkPaging>\n */\n getSecurityMarksOnNode(nodeId: string, opts?: GsPagingQuery): Promise<SecurityMarkPaging> {\n throwIfNotDefined(nodeId, 'nodeId');\n\n const pathParams = {\n nodeId\n };\n\n return this.get({\n path: '/secured-nodes/{nodeId}/securing-marks',\n pathParams,\n queryParams: opts\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\nimport { AuthorityClearanceGroupPaging, NodeSecurityMarkBody, SecurityMarkEntry, SecurityMarkPaging } from '../model';\nimport { GsPagingQuery } from './types';\n\n/**\n * AuthorityClearanceApi service.\n */\nexport class AuthorityClearanceApi extends BaseApi {\n /**\n * Get the authority clearances for a single user/group\n *\n * @param authorityId The name for the authority for which the clearance is to be fetched. Can be left blank in which case it will fetch it for all users with pagination\n * @param opts Optional parameters\n * @returns Promise<AuthorityClearanceGroupPaging>\n */\n getAuthorityClearanceForAuthority(authorityId: string, opts?: GsPagingQuery): Promise<AuthorityClearanceGroupPaging> {\n const pathParams = {\n authorityId\n };\n\n return this.get({\n path: '/cleared-authorities/{authorityId}/clearing-marks',\n pathParams,\n queryParams: opts\n });\n }\n\n /**\n * Updates the authority clearance.\n *\n * @param authorityId The name for the authority for which the clearance is to be updated\n * @param authorityClearance AuthorityClearanceBody\n * @returns Promise<SecurityMarkEntry | SecurityMarkPaging>\n */\n updateAuthorityClearance(authorityId: string, authorityClearance: NodeSecurityMarkBody[]): Promise<SecurityMarkEntry | SecurityMarkPaging> {\n const pathParams = {\n authorityId\n };\n\n return this.post({\n path: '/cleared-authorities/{authorityId}/clearing-marks',\n pathParams,\n bodyParam: authorityClearance\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './types';\nexport * from './classificationGuides.api';\nexport * from './classificationReasons.api';\nexport * from './declassificationExemptions.api';\nexport * from './defaultClassificationValues.api';\nexport * from './securityControlSettings.api';\nexport * from './securityMarks.api';\nexport * from './securityGroups.api';\nexport * from './nodeSecurityMarks.api';\nexport * from './authorityClearance.api';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './api';\nexport * from './model';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { PathInfo, UserInfo } from '../../content-rest-api';\n\nexport class FilePlan {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n\n constructor(input?: Partial<FilePlan>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { FilePlan } from './filePlan';\n\nexport class FilePlanEntry {\n entry: FilePlan;\n\n constructor(input?: Partial<FilePlanEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new FilePlan(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { PathInfo, UserInfo } from '../../content-rest-api';\n\nexport class RecordCategory {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n /**\n * Indicates if the record category has a retention schedule defined\n */\n hasRetentionSchedule?: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n\n constructor(input?: Partial<RecordCategory>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RecordCategory } from './recordCategory';\n\nexport class RecordCategoryEntry {\n entry: RecordCategory;\n\n constructor(input?: Partial<RecordCategoryEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new RecordCategory(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { FilePlan } from './filePlan';\nimport { Pagination } from '../../content-rest-api';\nimport { RecordCategoryEntry } from './recordCategoryEntry';\n\nexport class RecordCategoryPagingList {\n pagination?: Pagination;\n entries?: RecordCategoryEntry[];\n source?: FilePlan;\n\n constructor(input?: Partial<RecordCategoryPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new RecordCategoryEntry(item));\n }\n this.source = input.source ? new FilePlan(input.source) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RecordCategoryPagingList } from './recordCategoryPagingList';\n\nexport class RecordCategoryPaging {\n list?: RecordCategoryPagingList;\n\n constructor(input?: Partial<RecordCategoryPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new RecordCategoryPagingList(input.list) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ApiClient } from '../../../api-clients/api-client';\nimport { LegacyHttpClient } from '../../../api-clients/http-client.interface';\n\nexport abstract class BaseApi extends ApiClient {\n override get apiClient(): LegacyHttpClient {\n return this.httpClient ?? this.alfrescoApi.gsClient;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { FilePlanBodyUpdate } from '../model/filePlanBodyUpdate';\nimport { FilePlanEntry } from '../model/filePlanEntry';\nimport { RecordCategoryEntry } from '../model/recordCategoryEntry';\nimport { RecordCategoryPaging } from '../model/recordCategoryPaging';\nimport { RootCategoryBodyCreate } from '../model/rootCategoryBodyCreate';\nimport { BaseApi } from './base.api';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { throwIfNotDefined } from '../../../assert';\nimport { RecordsIncludeQuery, RecordsPagingQuery, RecordsSourceQuery } from './types';\n\n/**\n * FilePlansApi service.\n */\nexport class FilePlansApi extends BaseApi {\n /**\n * Create record categories for a file plan\n *\n * @param filePlanId The identifier of a file plan. You can also use the -filePlan- alias.\n * @param nodeBodyCreate The node information to create.\n * @param opts Optional parameters\n * @param opts.autoRename If `true`, then a name clash will cause an attempt to auto rename by finding a unique name using an integer suffix.\n * @returns Promise<RecordCategoryEntry>\n */\n createFilePlanCategories(\n filePlanId: string,\n nodeBodyCreate: RootCategoryBodyCreate,\n opts?: {\n autoRename?: boolean;\n } & RecordsIncludeQuery\n ): Promise<RecordCategoryEntry> {\n throwIfNotDefined(filePlanId, 'filePlanId');\n throwIfNotDefined(nodeBodyCreate, 'nodeBodyCreate');\n\n const pathParams = {\n filePlanId\n };\n\n const queryParams = {\n autoRename: opts?.autoRename,\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/file-plans/{filePlanId}/categories',\n pathParams,\n queryParams,\n contentTypes: ['application/json', 'multipart/form-data'],\n bodyParam: nodeBodyCreate,\n returnType: RecordCategoryEntry\n });\n }\n\n /**\n * Get a file plan\n *\n * Mandatory fields and the file plan's aspects and properties are returned by default.\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * @param filePlanId The identifier of a file plan. You can also use the -filePlan- alias.\n * @param opts Optional parameters\n * @returns Promise<FilePlanEntry>\n */\n getFilePlan(filePlanId: string, opts?: RecordsIncludeQuery): Promise<FilePlanEntry> {\n throwIfNotDefined(filePlanId, 'filePlanId');\n\n const pathParams = {\n filePlanId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/file-plans/{filePlanId}',\n pathParams,\n queryParams,\n returnType: FilePlanEntry\n });\n }\n\n /**\n * List file plans's children\n *\n * Minimal information for each child is returned by default.\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * @param filePlanId The identifier of a file plan. You can also use the -filePlan- alias.\n * @param opts Optional parameters\n * @returns Promise<RecordCategoryPaging>\n */\n getFilePlanCategories(filePlanId: string, opts?: RecordsIncludeQuery & RecordsPagingQuery & RecordsSourceQuery): Promise<RecordCategoryPaging> {\n throwIfNotDefined(filePlanId, 'filePlanId');\n\n const pathParams = {\n filePlanId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n include: buildCollectionParam(opts?.include, 'csv'),\n includeSource: opts?.includeSource,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/file-plans/{filePlanId}/categories',\n pathParams,\n queryParams,\n returnType: RecordCategoryPaging\n });\n }\n\n /**\n * Update a file plan\n *\n * **Note:** Currently there is no optimistic locking for updates, so they are applied in \\\"last one wins\\\" order.\n *\n * @param filePlanId The identifier of a file plan. You can also use the -filePlan- alias.\n * @param filePlanBodyUpdate The file plan information to update.\n * @param opts Optional parameters\n * @returns Promise<FilePlanEntry>\n */\n updateFilePlan(filePlanId: string, filePlanBodyUpdate: FilePlanBodyUpdate, opts?: RecordsIncludeQuery): Promise<FilePlanEntry> {\n throwIfNotDefined(filePlanId, 'filePlanId');\n throwIfNotDefined(filePlanBodyUpdate, 'filePlanBodyUpdate');\n\n const pathParams = {\n filePlanId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/file-plans/{filePlanId}',\n pathParams,\n queryParams,\n bodyParam: filePlanBodyUpdate,\n returnType: FilePlanEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ContentInfo, PathInfo, UserInfo } from '../../content-rest-api';\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class Record {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n /**\n * Present only for record nodes. Indicates if the record is completed\n */\n isCompleted?: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n content?: ContentInfo;\n path?: PathInfo;\n\n constructor(input?: Partial<Record>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.content = input.content ? new ContentInfo(input.content) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Record } from './record';\n\nexport class RecordEntry {\n entry: Record;\n\n constructor(input?: Partial<RecordEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Record(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RecordEntry } from '../model/recordEntry';\nimport { BaseApi } from './base.api';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { throwIfNotDefined } from '../../../assert';\nimport { RecordsIncludeQuery } from './types';\n\n/**\n * Files service.\n *\n * @module FilesApi\n */\nexport class FilesApi extends BaseApi {\n /**\n * Declare as record\n *\n * Declares the file **fileId** in the unfiled records container. The original file is moved to the Records Management site and a secondary parent association is created in the file's original site.\n *\n * @param fileId The identifier of a non-record file.\n * @param opts Optional parameters\n * @param opts.hideRecord Flag to indicate whether the record should be hidden from the current parent folder. (default to false)\n * @returns Promise<RecordEntry>\n */\n declareRecord(\n fileId: string,\n opts?: {\n hideRecord?: boolean;\n parentId?: string;\n } & RecordsIncludeQuery\n ): Promise<RecordEntry> {\n throwIfNotDefined(fileId, 'fileId');\n\n const pathParams = {\n fileId\n };\n\n const queryParams = {\n hideRecord: opts?.hideRecord,\n parentId: opts?.parentId,\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/files/{fileId}/declare',\n pathParams,\n queryParams,\n returnType: RecordEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RMSiteBodyCreate, RMSiteBodyUpdate, RMSiteEntry } from '../model';\nimport { BaseApi } from './base.api';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { throwIfNotDefined } from '../../../assert';\nimport { RecordsFieldsQuery } from './types';\n\n/**\n * GsSitesApi service.\n */\nexport class GsSitesApi extends BaseApi {\n /**\n * Create the Records Management (RM) site\n *\n * The creator will be added as a member with Site Manager role.\n * When you create the RM site, the **filePlan** structure is also created including special containers, such as containers for transfers, holds and, unfiled records.\n *\n * @param siteBodyCreate The site details\n * @param opts Optional parameters\n * @param opts.skipAddToFavorites Flag to indicate whether the RM site should not be added to the user's site favorites. (default to false)\n * @returns Promise<RMSiteEntry>\n */\n createRMSite(siteBodyCreate: RMSiteBodyCreate, opts?: { skipAddToFavorites?: boolean }): Promise<RMSiteEntry> {\n throwIfNotDefined(siteBodyCreate, 'siteBodyCreate');\n\n return this.post({\n path: '/gs-sites',\n queryParams: opts,\n bodyParam: siteBodyCreate\n });\n }\n\n /**\n * Delete the Records Management (RM) site\n *\n * @returns Promise<{}>\n */\n deleteRMSite(): Promise<void> {\n return this.delete({\n path: '/gs-sites/rm'\n });\n }\n\n /**\n * Get the Records Management (RM) site\n *\n * @param opts Optional parameters\n * @returns Promise<RMSiteEntry>\n */\n getRMSite(opts?: RecordsFieldsQuery): Promise<RMSiteEntry> {\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/gs-sites/rm',\n queryParams\n });\n }\n\n /**\n * Update the Records Management (RM) site\n *\n * Update the details for the RM site. Site Manager or other (site) admin can update title or description.\n * **Note**: the id, site visibility, or compliance of the RM site cannot be updated once the site has been created.\n *\n * @param siteBodyUpdate The RM site information to update.\n * @param opts Optional parameters\n * @returns Promise<RMSiteEntry>\n */\n updateRMSite(siteBodyUpdate: RMSiteBodyUpdate, opts?: RecordsFieldsQuery): Promise<RMSiteEntry> {\n throwIfNotDefined(siteBodyUpdate, 'siteBodyUpdate');\n\n const queryParams = {\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/gs-sites/rm',\n queryParams,\n bodyParam: siteBodyUpdate\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { PathInfo, UserInfo } from '../../content-rest-api';\n\nexport class RecordCategoryChild {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n /**\n * Indicates if the record category has a retention schedule defined\n */\n hasRetentionSchedule?: boolean;\n /**\n * Indicates if the record folder is closed\n */\n isClosed?: boolean;\n isRecordCategory?: boolean;\n isRecordFolder?: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n\n constructor(input?: Partial<RecordCategoryChild>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RecordCategoryChild } from './recordCategoryChild';\n\nexport class RecordCategoryChildEntry {\n entry: RecordCategoryChild;\n\n constructor(input?: Partial<RecordCategoryChildEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new RecordCategoryChild(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from '../../content-rest-api';\nimport { RecordCategory } from './recordCategory';\nimport { RecordCategoryChildEntry } from './recordCategoryChildEntry';\n\nexport class RecordCategoryChildPagingList {\n pagination?: Pagination;\n entries?: RecordCategoryChildEntry[];\n source?: RecordCategory;\n\n constructor(input?: Partial<RecordCategoryChildPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new RecordCategoryChildEntry(item));\n }\n this.source = input.source ? new RecordCategory(input.source) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RecordCategoryChildPagingList } from './recordCategoryChildPagingList';\n\nexport class RecordCategoryChildPaging {\n list?: RecordCategoryChildPagingList;\n\n constructor(input?: Partial<RecordCategoryChildPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new RecordCategoryChildPagingList(input.list) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api/model/dateAlfresco';\nimport { PathInfo } from '../../content-rest-api/model/pathInfo';\nimport { UserInfo } from '../../content-rest-api/model/userInfo';\n\nexport class RecordFolder {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n /**\n * Indicates if the record folder is closed\n */\n isClosed?: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n\n constructor(input?: Partial<RecordFolder>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ChildAssociationInfo, ContentInfo, PathInfo, UserInfo } from '../../content-rest-api';\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class RecordFolderChildAssociation {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n /**\n * Present only for record nodes. Indicates if the record is completed\n */\n isCompleted?: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n content?: ContentInfo;\n path?: PathInfo;\n association?: ChildAssociationInfo;\n\n constructor(input?: Partial<RecordFolderChildAssociation>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.content = input.content ? new ContentInfo(input.content) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n this.association = input.association ? new ChildAssociationInfo(input.association) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RecordFolderChildAssociation } from './recordFolderChildAssociation';\n\nexport class RecordFolderChildAssociationEntry {\n entry: RecordFolderChildAssociation;\n\n constructor(input?: Partial<RecordFolderChildAssociationEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new RecordFolderChildAssociation(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from '../../content-rest-api';\nimport { RecordFolder } from './recordFolder';\nimport { RecordFolderChildAssociationEntry } from './recordFolderChildAssociationEntry';\n\nexport class RecordFolderAssociationPagingList {\n pagination?: Pagination;\n entries?: RecordFolderChildAssociationEntry[];\n source?: RecordFolder;\n\n constructor(input?: Partial<RecordFolderAssociationPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new RecordFolderChildAssociationEntry(item));\n }\n this.source = input.source ? new RecordFolder(input.source) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RecordFolderAssociationPagingList } from './recordFolderAssociationPagingList';\n\nexport class RecordFolderAssociationPaging {\n list?: RecordFolderAssociationPagingList;\n\n constructor(input?: Partial<RecordFolderAssociationPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new RecordFolderAssociationPagingList(input.list) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RecordFolder } from './recordFolder';\n\nexport class RecordFolderEntry {\n entry: RecordFolder;\n\n constructor(input?: Partial<RecordFolderEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new RecordFolder(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { UserInfo } from '../../content-rest-api';\n\nexport class Transfer {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n createdAt: Date;\n createdByUser: UserInfo;\n /**\n * Present only for transfer nodes.\n */\n transferPDFIndicator?: boolean;\n /**\n * Present only for transfer nodes.\n */\n transferLocation?: string;\n /**\n * Present only for transfer nodes.\n */\n transferAccessionIndicator?: boolean;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n\n constructor(input?: Partial<Transfer>) {\n if (input) {\n Object.assign(this, input);\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ChildAssociationInfo, PathInfo, UserInfo } from '../../content-rest-api';\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class TransferChildAssociation {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n isRecordFolder?: boolean;\n isRecord?: boolean;\n /**\n * Indicates if the record folder is closed\n */\n isClosed?: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n association?: ChildAssociationInfo;\n\n constructor(input?: Partial<TransferChildAssociation>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n this.association = input.association ? new ChildAssociationInfo(input.association) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TransferChildAssociation } from './transferChildAssociation';\n\nexport class TransferChildAssociationEntry {\n entry: TransferChildAssociation;\n\n constructor(input?: Partial<TransferChildAssociationEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new TransferChildAssociation(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from '../../content-rest-api/model/pagination';\nimport { Transfer } from './transfer';\nimport { TransferChildAssociationEntry } from './transferChildAssociationEntry';\n\nexport class TransferAssociationPagingList {\n pagination?: Pagination;\n entries?: TransferChildAssociationEntry[];\n source?: Transfer;\n\n constructor(input?: Partial<TransferAssociationPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new TransferChildAssociationEntry(item));\n }\n this.source = input.source ? new Transfer(input.source) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TransferAssociationPagingList } from './transferAssociationPagingList';\n\nexport class TransferAssociationPaging {\n list?: TransferAssociationPagingList;\n\n constructor(input?: Partial<TransferAssociationPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new TransferAssociationPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { PathInfo, UserInfo } from '../../content-rest-api';\n\nexport class TransferChild {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n isRecordFolder?: boolean;\n isRecord?: boolean;\n /**\n * Indicates if the record folder is closed\n */\n isClosed?: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n\n constructor(input?: Partial<TransferChild>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { UserInfo } from '../../content-rest-api';\n\nexport class TransferContainer {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n\n constructor(input?: Partial<TransferContainer>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ChildAssociationInfo, UserInfo } from '../../content-rest-api';\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class TransferContainerChildAssociation {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n createdAt: Date;\n createdByUser: UserInfo;\n /**\n * Present only for transfer nodes.\n */\n transferPDFIndicator?: boolean;\n /**\n * Present only for transfer nodes.\n */\n transferLocation?: string;\n /**\n * Present only for transfer nodes.\n */\n transferAccessionIndicator?: boolean;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n association?: ChildAssociationInfo;\n\n constructor(input?: Partial<TransferContainerChildAssociation>) {\n if (input) {\n Object.assign(this, input);\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.association = input.association ? new ChildAssociationInfo(input.association) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TransferContainerChildAssociation } from './transferContainerChildAssociation';\n\nexport class TransferContainerChildAssociationEntry {\n entry: TransferContainerChildAssociation;\n\n constructor(input?: Partial<TransferContainerChildAssociationEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new TransferContainerChildAssociation(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from '../../content-rest-api';\nimport { TransferContainer } from './transferContainer';\nimport { TransferContainerChildAssociationEntry } from './transferContainerChildAssociationEntry';\n\nexport class TransferContainerAssociationPagingList {\n pagination?: Pagination;\n entries?: TransferContainerChildAssociationEntry[];\n source?: TransferContainer;\n\n constructor(input?: Partial<TransferContainerAssociationPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new TransferContainerChildAssociationEntry(item));\n }\n this.source = input.source ? new TransferContainer(input.source) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TransferContainerAssociationPagingList } from './transferContainerAssociationPagingList';\n\nexport class TransferContainerAssociationPaging {\n list?: TransferContainerAssociationPagingList;\n\n constructor(input?: Partial<TransferContainerAssociationPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new TransferContainerAssociationPagingList(input.list) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { UserInfo } from '../../content-rest-api';\n\nexport class TransferContainerChild {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n createdAt: Date;\n createdByUser: UserInfo;\n /**\n * Present only for transfer nodes.\n */\n transferPDFIndicator?: boolean;\n /**\n * Present only for transfer nodes.\n */\n transferLocation?: string;\n /**\n * Present only for transfer nodes.\n */\n transferAccessionIndicator?: boolean;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n\n constructor(input?: Partial<TransferContainerChild>) {\n if (input) {\n Object.assign(this, input);\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TransferContainer } from './transferContainer';\n\nexport class TransferContainerEntry {\n entry: TransferContainer;\n\n constructor(input?: Partial<TransferContainerEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new TransferContainer(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Transfer } from './transfer';\n\nexport class TransferEntry {\n entry: Transfer;\n\n constructor(input?: Partial<TransferEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Transfer(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { PathInfo, UserInfo } from '../../content-rest-api';\n\nexport class UnfiledContainer {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n\n constructor(input?: Partial<UnfiledContainer>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ChildAssociationInfo, PathInfo, UserInfo } from '../../content-rest-api';\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class UnfiledContainerChildAssociation {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n isUnfiledRecordFolder: boolean;\n isRecord: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n association?: ChildAssociationInfo;\n\n constructor(input?: Partial<UnfiledContainerChildAssociation>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n this.association = input.association ? new ChildAssociationInfo(input.association) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { UnfiledContainerChildAssociation } from './unfiledContainerChildAssociation';\n\nexport class UnfiledContainerChildAssociationEntry {\n entry: UnfiledContainerChildAssociation;\n\n constructor(input?: Partial<UnfiledContainerChildAssociationEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new UnfiledContainerChildAssociation(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from '../../content-rest-api';\nimport { UnfiledContainer } from './unfiledContainer';\nimport { UnfiledContainerChildAssociationEntry } from './unfiledContainerChildAssociationEntry';\n\nexport class UnfiledContainerAssociationPagingList {\n pagination?: Pagination;\n entries?: UnfiledContainerChildAssociationEntry[];\n source?: UnfiledContainer;\n\n constructor(input?: Partial<UnfiledContainerAssociationPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new UnfiledContainerChildAssociationEntry(item));\n }\n this.source = input.source ? new UnfiledContainer(input.source) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { UnfiledContainerAssociationPagingList } from './unfiledContainerAssociationPagingList';\n\nexport class UnfiledContainerAssociationPaging {\n list?: UnfiledContainerAssociationPagingList;\n\n constructor(input?: Partial<UnfiledContainerAssociationPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new UnfiledContainerAssociationPagingList(input.list) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { PathInfo, UserInfo } from '../../content-rest-api';\n\nexport class UnfiledContainerChild {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n isUnfiledRecordFolder: boolean;\n isRecord: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n\n constructor(input?: Partial<UnfiledContainerChild>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { UnfiledContainer } from './unfiledContainer';\n\nexport class UnfiledContainerEntry {\n entry: UnfiledContainer;\n\n constructor(input?: Partial<UnfiledContainerEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new UnfiledContainer(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { PathInfo, UserInfo } from '../../content-rest-api';\n\nexport class UnfiledRecordFolder {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n isUnfiledRecordFolder: boolean;\n isRecord: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n\n constructor(input?: Partial<UnfiledRecordFolder>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ChildAssociationInfo, PathInfo, UserInfo } from '../../content-rest-api';\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class UnfiledRecordFolderChildAssociation {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n isUnfiledRecordFolder: boolean;\n isRecord: boolean;\n modifiedAt: Date;\n modifiedByUser: UserInfo;\n createdAt: Date;\n createdByUser: UserInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n association?: ChildAssociationInfo;\n\n constructor(input?: Partial<UnfiledRecordFolderChildAssociation>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n this.association = input.association ? new ChildAssociationInfo(input.association) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { UnfiledRecordFolderChildAssociation } from './unfiledRecordFolderChildAssociation';\n\nexport class UnfiledRecordFolderChildAssociationEntry {\n entry: UnfiledRecordFolderChildAssociation;\n\n constructor(input?: Partial<UnfiledRecordFolderChildAssociationEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new UnfiledRecordFolderChildAssociation(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from '../../content-rest-api';\nimport { UnfiledRecordFolder } from './unfiledRecordFolder';\nimport { UnfiledRecordFolderChildAssociationEntry } from './unfiledRecordFolderChildAssociationEntry';\n\nexport class UnfiledRecordFolderAssociationPagingList {\n pagination?: Pagination;\n entries?: UnfiledRecordFolderChildAssociationEntry[];\n source?: UnfiledRecordFolder;\n\n constructor(input?: Partial<UnfiledRecordFolderAssociationPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new UnfiledRecordFolderChildAssociationEntry(item));\n }\n this.source = input.source ? new UnfiledRecordFolder(input.source) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { UnfiledRecordFolderAssociationPagingList } from './unfiledRecordFolderAssociationPagingList';\n\nexport class UnfiledRecordFolderAssociationPaging {\n list?: UnfiledRecordFolderAssociationPagingList;\n\n constructor(input?: Partial<UnfiledRecordFolderAssociationPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new UnfiledRecordFolderAssociationPagingList(input.list) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { PathInfo, UserInfo } from '../../content-rest-api';\n\nexport class UnfiledRecordFolderChild {\n id: string;\n parentId: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n isUnfiledRecordFolder: boolean;\n isRecord: boolean;\n modifiedAt?: Date;\n modifiedByUser?: UserInfo;\n createdAt?: Date;\n createdByUser?: UserInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n\n constructor(input?: Partial<UnfiledRecordFolderChild>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { UnfiledRecordFolder } from './unfiledRecordFolder';\n\nexport class UnfiledRecordFolderEntry {\n entry: UnfiledRecordFolder;\n\n constructor(input?: Partial<UnfiledRecordFolderEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new UnfiledRecordFolder(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './filePlan';\nexport * from './filePlanBodyUpdate';\nexport * from './filePlanComponentBodyUpdate';\nexport * from './filePlanEntry';\nexport * from './rMNodeBodyCreate';\nexport * from './rMNodeBodyCreateWithRelativePath';\nexport * from './rMSite';\nexport * from './rMSiteBodyCreate';\nexport * from './rMSiteBodyUpdate';\nexport * from './rMSiteEntry';\nexport * from './record';\nexport * from './recordCategory';\nexport * from './recordCategoryChild';\nexport * from './recordCategoryChildEntry';\nexport * from './recordCategoryChildPaging';\nexport * from './recordCategoryChildPagingList';\nexport * from './recordCategoryEntry';\nexport * from './recordCategoryPaging';\nexport * from './recordCategoryPagingList';\nexport * from './recordEntry';\nexport * from './recordFolder';\nexport * from './recordFolderAssociationPaging';\nexport * from './recordFolderAssociationPagingList';\nexport * from './recordFolderChildAssociationEntry';\nexport * from './recordFolderEntry';\nexport * from './requestBodyFile';\nexport * from './rootCategoryBodyCreate';\nexport * from './transfer';\nexport * from './transferAssociationPaging';\nexport * from './transferAssociationPagingList';\nexport * from './transferChild';\nexport * from './transferChildAssociationEntry';\nexport * from './transferContainer';\nexport * from './transferContainerAssociationPaging';\nexport * from './transferContainerAssociationPagingList';\nexport * from './transferContainerBodyUpdate';\nexport * from './transferContainerChild';\nexport * from './transferContainerChildAssociationEntry';\nexport * from './transferContainerEntry';\nexport * from './transferEntry';\nexport * from './unfiledContainer';\nexport * from './unfiledContainerAssociationPaging';\nexport * from './unfiledContainerAssociationPagingList';\nexport * from './unfiledContainerChild';\nexport * from './unfiledContainerChildAssociationEntry';\nexport * from './unfiledContainerEntry';\nexport * from './unfiledRecordContainerBodyUpdate';\nexport * from './unfiledRecordFolder';\nexport * from './unfiledRecordFolderAssociationPaging';\nexport * from './unfiledRecordFolderAssociationPagingList';\nexport * from './unfiledRecordFolderBodyUpdate';\nexport * from './unfiledRecordFolderChild';\nexport * from './unfiledRecordFolderChildAssociationEntry';\nexport * from './unfiledRecordFolderEntry';\nexport * from './recordFolderChildAssociation';\nexport * from './transferChildAssociation';\nexport * from './transferContainerChildAssociation';\nexport * from './unfiledContainerChildAssociation';\nexport * from './unfiledRecordFolderChildAssociation';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n FilePlanComponentBodyUpdate,\n RecordCategoryChildEntry,\n RecordCategoryChildPaging,\n RecordCategoryEntry,\n RMNodeBodyCreateWithRelativePath\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { throwIfNotDefined } from '../../../assert';\nimport { RecordsIncludeQuery, RecordsPagingQuery, RecordsSourceQuery } from './types';\n\n/**\n * RecordCategoriesApi service.\n */\nexport class RecordCategoriesApi extends BaseApi {\n /**\n * Create a record category or a record folder\n *\n * @param recordCategoryId The identifier of a record category.\n * @param nodeBodyCreate The node information to create.\n * @param opts Optional parameters\n * @param opts.autoRename If `true`, then a name clash will cause an attempt to auto rename by finding a unique name using an integer suffix.\n * @returns Promise<RecordCategoryChildEntry>\n */\n createRecordCategoryChild(\n recordCategoryId: string,\n nodeBodyCreate: RMNodeBodyCreateWithRelativePath,\n opts?: {\n autoRename?: boolean;\n } & RecordsIncludeQuery\n ): Promise<RecordCategoryChildEntry> {\n throwIfNotDefined(recordCategoryId, 'recordCategoryId');\n throwIfNotDefined(nodeBodyCreate, 'nodeBodyCreate');\n\n const pathParams = {\n recordCategoryId\n };\n\n const queryParams = {\n autoRename: opts?.autoRename,\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/record-categories/{recordCategoryId}/children',\n pathParams,\n queryParams,\n bodyParam: nodeBodyCreate,\n returnType: RecordCategoryChildEntry\n });\n }\n\n /**\n * Delete a record category\n *\n * @param recordCategoryId The identifier of a record category.\n * @returns Promise<{}>\n */\n deleteRecordCategory(recordCategoryId: string): Promise<void> {\n throwIfNotDefined(recordCategoryId, 'recordCategoryId');\n\n const pathParams = {\n recordCategoryId\n };\n\n return this.delete({\n path: '/record-categories/{recordCategoryId}',\n pathParams\n });\n }\n\n /**\n * Get a record category\n *\n * Mandatory fields and the record category's aspects and properties are returned by default.\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * @param recordCategoryId The identifier of a record category.\n * @param opts Optional parameters\n * @param opts.relativePath Return information on children in the record category resolved by this path. The path is relative to **recordCategoryId**.\n * @returns Promise<RecordCategoryEntry>\n */\n getRecordCategory(\n recordCategoryId: string,\n opts?: {\n relativePath?: string;\n } & RecordsIncludeQuery\n ): Promise<RecordCategoryEntry> {\n throwIfNotDefined(recordCategoryId, 'recordCategoryId');\n\n const pathParams = {\n recordCategoryId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n relativePath: opts?.relativePath,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/record-categories/{recordCategoryId}',\n pathParams,\n queryParams,\n returnType: RecordCategoryEntry\n });\n }\n\n /**\n * List record category's children\n *\n * Minimal information for each child is returned by default.\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * The list of child nodes includes primary children and secondary children, if there are any.\n *\n * @param recordCategoryId The identifier of a record category.\n * @param opts Optional parameters\n * @param opts.where Optionally filter the list. Here are some examples:\n * where=(nodeType='rma:recordFolder')\n * where=(nodeType='rma:recordCategory')\n * where=(isRecordFolder=true AND isClosed=false)\n * @param opts.relativePath Return information on children in the record category resolved by this path. The path is relative to **recordCategoryId**.\n * @returns Promise<RecordCategoryChildPaging>\n */\n listRecordCategoryChildren(\n recordCategoryId: string,\n opts?: {\n where?: string;\n relativePath?: string;\n } & RecordsIncludeQuery &\n RecordsPagingQuery &\n RecordsSourceQuery\n ): Promise<RecordCategoryChildPaging> {\n throwIfNotDefined(recordCategoryId, 'recordCategoryId');\n\n const pathParams = {\n recordCategoryId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n where: opts?.where,\n include: buildCollectionParam(opts?.include, 'csv'),\n relativePath: opts?.relativePath,\n includeSource: opts?.includeSource,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/record-categories/{recordCategoryId}/children',\n pathParams,\n queryParams,\n returnType: RecordCategoryChildPaging\n });\n }\n\n /**\n * Update a record category\n *\n * **Note:** If you want to add or remove aspects, then you must use **GET /record-categories/{recordCategoryId}** first to get the complete set of *aspectNames*.\n * **Note:** Currently there is no optimistic locking for updates, so they are applied in \\\"last one wins\\\" order.\n *\n * @param recordCategoryId The identifier of a record category.\n * @param recordCategoryBodyUpdate The record category information to update.\n * @param opts Optional parameters\n * @returns Promise<RecordCategoryEntry>\n */\n updateRecordCategory(\n recordCategoryId: string,\n recordCategoryBodyUpdate: FilePlanComponentBodyUpdate,\n opts?: RecordsIncludeQuery\n ): Promise<RecordCategoryEntry> {\n throwIfNotDefined(recordCategoryId, 'recordCategoryId');\n throwIfNotDefined(recordCategoryBodyUpdate, 'recordCategoryBodyUpdate');\n\n const pathParams = {\n recordCategoryId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/record-categories/{recordCategoryId}',\n pathParams,\n queryParams,\n bodyParam: recordCategoryBodyUpdate,\n returnType: RecordCategoryEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { FilePlanComponentBodyUpdate, RecordEntry, RecordFolderAssociationPaging, RecordFolderEntry, RMNodeBodyCreate } from '../model';\nimport { BaseApi } from './base.api';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { throwIfNotDefined } from '../../../assert';\nimport { RecordsIncludeQuery, RecordsPagingQuery, RecordsSourceQuery } from './types';\n\n/**\n * Record Folders service.\n */\nexport class RecordFoldersApi extends BaseApi {\n /**\n * Create a record\n *\n * Create a record as a primary child of **recordFolderId**.\n * This endpoint supports both JSON and multipart/form-data (file upload).\n *\n * @param recordFolderId The identifier of a record folder.\n * @param recordBodyCreate The record information to create. This field is ignored for multipart/form-data content uploads.\n * @param opts Optional parameters\n * @returns Promise<RecordEntry>\n */\n createRecordFolderChild(recordFolderId: string, recordBodyCreate: RMNodeBodyCreate, opts?: RecordsIncludeQuery): Promise<RecordEntry> {\n throwIfNotDefined(recordFolderId, 'recordFolderId');\n throwIfNotDefined(recordBodyCreate, 'recordBodyCreate');\n\n const pathParams = {\n recordFolderId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/record-folders/{recordFolderId}/records',\n pathParams,\n queryParams,\n bodyParam: recordBodyCreate,\n returnType: RecordEntry\n });\n }\n\n /**\n * Deletes record folder **recordFolderId**.\n * Deleted file plan components cannot be recovered, they are deleted permanently.\n *\n * @param recordFolderId The identifier of a record folder.\n * @returns Promise<{}>\n */\n deleteRecordFolder(recordFolderId: string): Promise<void> {\n throwIfNotDefined(recordFolderId, 'recordFolderId');\n\n const pathParams = {\n recordFolderId\n };\n\n return this.delete({\n path: '/record-folders/{recordFolderId}',\n pathParams\n });\n }\n\n /**\n * Get a record folder\n *\n * Mandatory fields and the record folder's aspects and properties are returned by default.\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * @param recordFolderId The identifier of a record folder.\n * @param opts Optional parameters\n * @returns Promise<RecordFolderEntry>\n */\n getRecordFolder(recordFolderId: string, opts?: RecordsIncludeQuery): Promise<RecordFolderEntry> {\n throwIfNotDefined(recordFolderId, 'recordFolderId');\n\n const pathParams = {\n recordFolderId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/record-folders/{recordFolderId}',\n pathParams,\n queryParams,\n returnType: RecordFolderEntry\n });\n }\n\n /**\n * List records\n *\n * Minimal information for each record is returned by default.\n * The list of records includes primary children and secondary children, if there are any.\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * @param recordFolderId The identifier of a record folder.\n * @param opts Optional parameters\n * @param opts.where Optionally filter the list. Here are some examples:\n * - where=(nodeType='my:specialNodeType')\n * - where=(nodeType='my:specialNodeType INCLUDESUBTYPES')\n * - where=(isPrimary=true)\n * @returns Promise<RecordFolderAssociationPaging>\n */\n listRecordFolderChildren(\n recordFolderId: string,\n opts?: {\n where?: string;\n } & RecordsPagingQuery &\n RecordsIncludeQuery &\n RecordsSourceQuery\n ): Promise<RecordFolderAssociationPaging> {\n throwIfNotDefined(recordFolderId, 'recordFolderId');\n\n const pathParams = {\n recordFolderId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n where: opts?.where,\n include: buildCollectionParam(opts?.include, 'csv'),\n includeSource: opts?.includeSource,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/record-folders/{recordFolderId}/records',\n pathParams,\n queryParams,\n returnType: RecordFolderAssociationPaging\n });\n }\n\n /**\n * Updates record folder **recordFolderId**. For example, you can rename a record folder:\n *\n * **Note:** if you want to add or remove aspects, then you must use **GET /record-folders/{recordFolderId}** first to get the complete set of *aspectNames*.\n * **Note:** Currently there is no optimistic locking for updates, so they are applied in \\\"last one wins\\\" order.\n *\n * @param recordFolderId The identifier of a record folder.\n * @param recordFolderBodyUpdate The record folder information to update.\n * @param opts Optional parameters\n * @returns Promise<RecordFolderEntry>\n */\n updateRecordFolder(\n recordFolderId: string,\n recordFolderBodyUpdate: FilePlanComponentBodyUpdate,\n opts?: RecordsIncludeQuery\n ): Promise<RecordFolderEntry> {\n throwIfNotDefined(recordFolderId, 'recordFolderId');\n throwIfNotDefined(recordFolderBodyUpdate, 'recordFolderBodyUpdate');\n\n const pathParams = {\n recordFolderId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/record-folders/{recordFolderId}',\n pathParams,\n queryParams,\n bodyParam: recordFolderBodyUpdate,\n returnType: RecordFolderEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { FilePlanComponentBodyUpdate } from '../model/filePlanComponentBodyUpdate';\nimport { RecordEntry } from '../model/recordEntry';\nimport { RequestBodyFile } from '../model/requestBodyFile';\nimport { BaseApi } from './base.api';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { throwIfNotDefined } from '../../../assert';\nimport { RecordsIncludeQuery } from './types';\n\n/**\n * Records service.\n *\n * @module RecordsApi\n */\nexport class RecordsApi extends BaseApi {\n /**\n * Complete a record\n *\n * @param recordId The identifier of a record.\n * @param opts Optional parameters\n * @returns Promise<RecordEntry>\n */\n completeRecord(recordId: string, opts?: RecordsIncludeQuery): Promise<RecordEntry> {\n throwIfNotDefined(recordId, 'recordId');\n\n const pathParams = {\n recordId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/records/{recordId}/complete',\n pathParams,\n queryParams,\n returnType: RecordEntry\n });\n }\n\n /**\n * Delete a record. Deleted file plan components cannot be recovered, they are deleted permanently.\n *\n * @param recordId The identifier of a record.\n * @returns Promise<{}>\n */\n deleteRecord(recordId: string): Promise<void> {\n throwIfNotDefined(recordId, 'recordId');\n\n const pathParams = {\n recordId\n };\n\n return this.delete({\n path: '/records/{recordId}',\n pathParams\n });\n }\n\n /**\n * File a record\n *\n * You need to specify the target record folder by providing its id **targetParentId**\n * If the record is already filed, a link to the target record folder is created.\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * @param recordId The identifier of a record.\n * @param nodeBodyFile The target record folder id\n * @param opts Optional parameters\n * @returns Promise<RecordEntry>\n */\n fileRecord(recordId: string, nodeBodyFile: RequestBodyFile, opts?: RecordsIncludeQuery): Promise<RecordEntry> {\n throwIfNotDefined(recordId, 'recordId');\n throwIfNotDefined(nodeBodyFile, 'nodeBodyFile');\n\n const pathParams = {\n recordId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/records/{recordId}/file',\n pathParams,\n queryParams,\n bodyParam: nodeBodyFile,\n returnType: RecordEntry\n });\n }\n\n /**\n * Get a record\n *\n * Mandatory fields and the record's aspects and properties are returned by default.\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * @param recordId The identifier of a record.\n * @param opts Optional parameters\n * @returns Promise<RecordEntry>\n */\n getRecord(recordId: string, opts?: RecordsIncludeQuery): Promise<RecordEntry> {\n throwIfNotDefined(recordId, 'recordId');\n\n const pathParams = {\n recordId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/records/{recordId}',\n pathParams,\n queryParams,\n returnType: RecordEntry\n });\n }\n\n /**\n * Get record content\n *\n * @param recordId The identifier of a record.\n * @param opts Optional parameters\n * @param opts.attachment **true** enables a web browser to download the file as an attachment.\n * **false** means a web browser may preview the file in a new tab or window, but not download the file.\n *\n * You can only set this parameter to **false** if the content type of the file is in the supported list;\n * for example, certain image files and PDF files.\n *\n * If the content type is not supported for preview, then a value of **false** is ignored, and\n * the attachment will be returned in the response. (default to true)\n * @param opts.ifModifiedSince Only returns the content if it has been modified since the date provided.\n * Use the date format defined by HTTP. For example, Wed, 09 Mar 2016 16:56:34 GMT.\n * @returns Promise<{}>\n */\n getRecordContent(\n recordId: string,\n opts?: {\n attachment?: boolean;\n ifModifiedSince?: string;\n }\n ): Promise<any> {\n throwIfNotDefined(recordId, 'recordId');\n\n const pathParams = {\n recordId\n };\n\n const queryParams = {\n attachment: opts?.attachment\n };\n\n const headerParams = {\n 'If-Modified-Since': opts?.ifModifiedSince\n };\n\n return this.get({\n path: '/records/{recordId}/content',\n pathParams,\n queryParams,\n headerParams\n });\n }\n\n /**\n * Update record\n *\n * Updates the record **recordId**. For example, you can rename a record:\n * JSON\n * {\n * \\\"name\\\":\\\"My new name\\\"\n * }\n *\n * You can also set or update one or more properties:\n * JSON\n * {\n * \\\"properties\\\":\n * {\n * \\\"cm:title\\\":\\\"New title\\\",\n * \\\"cm:description\\\":\\\"New description\\\"\n * }\n * }\n *\n * **Note:** if you want to add or remove aspects, then you must use **GET /records/{recordId}** first to get the complete set of *aspectNames*.\n * **Note:** Currently there is no optimistic locking for updates, so they are applied in \\\"last one wins\\\" order.\n *\n * @param recordId The identifier of a record.\n * @param recordBodyUpdate The record information to update.\n * @param opts Optional parameters\n * @returns Promise<RecordEntry>\n */\n updateRecord(recordId: string, recordBodyUpdate: FilePlanComponentBodyUpdate, opts?: RecordsIncludeQuery): Promise<RecordEntry> {\n throwIfNotDefined(recordId, 'recordId');\n throwIfNotDefined(recordBodyUpdate, 'recordBodyUpdate');\n\n const pathParams = {\n recordId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/records/{recordId}',\n pathParams,\n queryParams,\n bodyParam: recordBodyUpdate,\n returnType: RecordEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TransferContainerAssociationPaging } from '../model/transferContainerAssociationPaging';\nimport { TransferContainerBodyUpdate } from '../model/transferContainerBodyUpdate';\nimport { TransferContainerEntry } from '../model/transferContainerEntry';\nimport { BaseApi } from './base.api';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { throwIfNotDefined } from '../../../assert';\nimport { RecordsIncludeQuery, RecordsPagingQuery, RecordsSourceQuery } from './types';\n\n/**\n * TransferContainersApi service.\n */\nexport class TransferContainersApi extends BaseApi {\n /**\n * Get a transfer container\n *\n * Mandatory fields and the transfer container's aspects and properties are returned by default.\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * @param transferContainerId The identifier of a transfer container. You can also use the -transfers- alias.\n * @param opts Optional parameters\n * @returns Promise<TransferContainerEntry>\n */\n getTransferContainer(transferContainerId: string, opts?: RecordsIncludeQuery): Promise<TransferContainerEntry> {\n throwIfNotDefined(transferContainerId, 'transferContainerId');\n\n const pathParams = {\n transferContainerId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/transfer-containers/{transferContainerId}',\n pathParams,\n queryParams,\n returnType: TransferContainerEntry\n });\n }\n\n /**\n * List transfer container's children\n *\n * Minimal information for each child is returned by default.\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * @param transferContainerId The identifier of a transfer container. You can also use the -transfers- alias.\n * @param opts Optional parameters\n * @returns Promise<TransferContainerAssociationPaging>\n */\n listTransfers(\n transferContainerId: string,\n opts?: RecordsSourceQuery & RecordsIncludeQuery & RecordsPagingQuery\n ): Promise<TransferContainerAssociationPaging> {\n throwIfNotDefined(transferContainerId, 'transferContainerId');\n opts = opts || {};\n\n const pathParams = {\n transferContainerId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n include: buildCollectionParam(opts?.include, 'csv'),\n includeSource: opts?.includeSource,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/transfer-containers/{transferContainerId}/transfers',\n pathParams,\n queryParams,\n returnType: TransferContainerAssociationPaging\n });\n }\n\n /**\n * Update transfer container\n *\n * @param transferContainerId The identifier of a transfer container. You can also use the -transfers- alias.\n * @param nodeBodyUpdate The node information to update.\n * @param opts Optional parameters\n * @returns Promise<TransferContainerEntry>\n */\n updateTransferContainer(\n transferContainerId: string,\n nodeBodyUpdate: TransferContainerBodyUpdate,\n opts?: RecordsIncludeQuery\n ): Promise<TransferContainerEntry> {\n throwIfNotDefined(transferContainerId, 'transferContainerId');\n throwIfNotDefined(nodeBodyUpdate, 'nodeBodyUpdate');\n opts = opts || {};\n\n const pathParams = {\n transferContainerId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/transfer-containers/{transferContainerId}',\n pathParams,\n queryParams,\n bodyParam: nodeBodyUpdate,\n returnType: TransferContainerEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TransferAssociationPaging } from '../model/transferAssociationPaging';\nimport { TransferEntry } from '../model/transferEntry';\nimport { BaseApi } from './base.api';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { throwIfNotDefined } from '../../../assert';\nimport { RecordsIncludeQuery, RecordsPagingQuery, RecordsSourceQuery } from './types';\n\n/**\n * Transfers service.\n *\n * @module TransfersApi\n */\nexport class TransfersApi extends BaseApi {\n /**\n * Get a transfer\n *\n * Mandatory fields and the transfer's aspects and properties are returned by default.\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * @param transferId The identifier of a transfer.\n * @param opts Optional parameters\n * @returns Promise<TransferEntry>\n */\n getTransfer(transferId: string, opts?: RecordsIncludeQuery): Promise<TransferEntry> {\n throwIfNotDefined(transferId, 'transferId');\n\n const pathParams = {\n transferId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/transfers/{transferId}',\n pathParams,\n queryParams,\n returnType: TransferEntry\n });\n }\n\n /**\n * List transfer's children\n *\n * Minimal information for each child is returned by default.\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * @param transferId The identifier of a transfer.\n * @param opts Optional parameters\n * @returns Promise<TransferAssociationPaging>\n */\n listTransfersChildren(\n transferId: string,\n opts?: RecordsSourceQuery & RecordsIncludeQuery & RecordsPagingQuery\n ): Promise<TransferAssociationPaging> {\n throwIfNotDefined(transferId, 'transferId');\n\n const pathParams = {\n transferId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n include: buildCollectionParam(opts?.include, 'csv'),\n includeSource: opts?.includeSource,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/transfers/{transferId}/children',\n pathParams,\n queryParams,\n returnType: TransferAssociationPaging\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RMNodeBodyCreate, UnfiledContainerAssociationPaging, UnfiledContainerEntry, UnfiledRecordContainerBodyUpdate } from '../model';\nimport { BaseApi } from './base.api';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { throwIfNotDefined } from '../../../assert';\nimport { RecordsIncludeQuery, RecordsPagingQuery, RecordsSourceQuery } from './types';\n\n/**\n * Unfiled containers service.\n *\n * @module UnfiledContainersApi\n */\nexport class UnfiledContainersApi extends BaseApi {\n /**\n * Creates a record or an unfiled record folder as a primary child of **unfiledContainerId**.\n *\n * @param unfiledContainerId The identifier of an unfiled records container. You can use the **-unfiled-** alias.\n * @param nodeBodyCreate The node information to create.\n * @param opts Optional parameters\n * @param opts.autoRename If true, then a name clash will cause an attempt to auto rename by finding a unique name using an integer suffix.\n * @returns Promise<UnfiledContainerAssociationPaging>\n */\n createUnfiledContainerChildren(\n unfiledContainerId: string,\n nodeBodyCreate: RMNodeBodyCreate,\n opts?: {\n autoRename?: boolean;\n } & RecordsIncludeQuery\n ): Promise<UnfiledContainerAssociationPaging> {\n throwIfNotDefined(unfiledContainerId, 'unfiledContainerId');\n throwIfNotDefined(nodeBodyCreate, 'nodeBodyCreate');\n\n const pathParams = {\n unfiledContainerId\n };\n\n const queryParams = {\n autoRename: opts?.autoRename,\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n const contentTypes = ['application/json', 'multipart/form-data'];\n\n return this.post({\n path: '/unfiled-containers/{unfiledContainerId}/children',\n pathParams,\n queryParams,\n contentTypes,\n bodyParam: nodeBodyCreate,\n returnType: UnfiledContainerAssociationPaging\n });\n }\n\n /**\n * Get the unfiled records container\n *\n * Gets information for unfiled records container **unfiledContainerId**\n * Mandatory fields and the unfiled records container's aspects and properties are returned by default.\n *\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * @param unfiledContainerId The identifier of an unfiled records container. You can use the **-unfiled-** alias.\n * @param opts Optional parameters\n * @returns Promise<UnfiledContainerEntry>\n */\n getUnfiledContainer(unfiledContainerId: string, opts?: RecordsIncludeQuery): Promise<UnfiledContainerEntry> {\n throwIfNotDefined(unfiledContainerId, 'unfiledContainerId');\n\n const pathParams = {\n unfiledContainerId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/unfiled-containers/{unfiledContainerId}',\n pathParams,\n queryParams,\n returnType: UnfiledContainerEntry\n });\n }\n\n /**\n * List unfiled record container's children\n *\n * Returns a list of records or unfiled record folders.\n *\n * Minimal information for each child is returned by default.\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * @param unfiledContainerId The identifier of an unfiled records container. You can use the **-unfiled-** alias.\n * @param opts Optional parameters\n * @param opts.where Optionally filter the list. Here are some examples:\n * - where=(isRecord=true)\n * - where=(isUnfiledRecordFolder=false)\n * - where=(nodeType='cm:content INCLUDESUBTYPES')\n * @param opts.includeSource Also include **source** (in addition to **entries**) with folder information on the parent node – the specified parent **unfiledContainerId**\n * @returns Promise<UnfiledContainerAssociationPaging>\n */\n listUnfiledContainerChildren(\n unfiledContainerId: string,\n opts?: {\n where?: string;\n } & RecordsSourceQuery &\n RecordsIncludeQuery &\n RecordsPagingQuery\n ): Promise<UnfiledContainerAssociationPaging> {\n throwIfNotDefined(unfiledContainerId, 'unfiledContainerId');\n\n const pathParams = {\n unfiledContainerId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n where: opts?.where,\n include: buildCollectionParam(opts?.include, 'csv'),\n includeSource: opts?.includeSource,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/unfiled-containers/{unfiledContainerId}/children',\n pathParams,\n queryParams,\n returnType: UnfiledContainerAssociationPaging\n });\n }\n\n /**\n * Update an unfiled record container\n *\n * **Note:** Currently there is no optimistic locking for updates, so they are applied in \\\"last one wins\\\" order.\n *\n * @param unfiledContainerId The identifier of an unfiled records container. You can use the **-unfiled-** alias.\n * @param unfiledContainerBodyUpdate The unfiled record container information to update.\n * @param opts Optional parameters\n * @returns Promise<UnfiledContainerEntry>\n */\n updateUnfiledContainer(\n unfiledContainerId: string,\n unfiledContainerBodyUpdate: UnfiledRecordContainerBodyUpdate,\n opts?: RecordsIncludeQuery\n ): Promise<UnfiledContainerEntry> {\n throwIfNotDefined(unfiledContainerId, 'unfiledContainerId');\n throwIfNotDefined(unfiledContainerBodyUpdate, 'unfiledContainerBodyUpdate');\n\n const pathParams = {\n unfiledContainerId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/unfiled-containers/{unfiledContainerId}',\n pathParams,\n queryParams,\n bodyParam: unfiledContainerBodyUpdate,\n returnType: UnfiledContainerEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RMNodeBodyCreateWithRelativePath } from '../model/rMNodeBodyCreateWithRelativePath';\nimport { UnfiledRecordFolderAssociationPaging } from '../model/unfiledRecordFolderAssociationPaging';\nimport { UnfiledRecordFolderBodyUpdate } from '../model/unfiledRecordFolderBodyUpdate';\nimport { UnfiledRecordFolderEntry } from '../model/unfiledRecordFolderEntry';\nimport { BaseApi } from './base.api';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { throwIfNotDefined } from '../../../assert';\nimport { RecordsIncludeQuery, RecordsPagingQuery, RecordsSourceQuery } from './types';\n\n/**\n * UnfiledRecordFoldersApi service.\n *\n * @module UnfiledRecordFoldersApi\n */\nexport class UnfiledRecordFoldersApi extends BaseApi {\n /**\n * Create a record or an unfiled record folder\n *\n * @param unfiledRecordFolderId The identifier of an unfiled record folder.\n * @param nodeBodyCreate The node information to create.\n * @param opts Optional parameters\n * @param opts.autoRename If true, then a name clash will cause an attempt to auto rename by finding a unique name using an integer suffix.\n * @returns Promise<UnfiledRecordFolderAssociationPaging>\n */\n createUnfiledRecordFolderChildren(\n unfiledRecordFolderId: string,\n nodeBodyCreate: RMNodeBodyCreateWithRelativePath,\n opts?: {\n autoRename?: boolean;\n } & RecordsIncludeQuery\n ): Promise<UnfiledRecordFolderAssociationPaging> {\n throwIfNotDefined(unfiledRecordFolderId, 'unfiledRecordFolderId');\n throwIfNotDefined(nodeBodyCreate, 'nodeBodyCreate');\n\n const pathParams = {\n unfiledRecordFolderId\n };\n\n const queryParams = {\n autoRename: opts?.autoRename,\n include: buildCollectionParam(opts?.include, 'csv'),\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.post({\n path: '/unfiled-record-folders/{unfiledRecordFolderId}/children',\n pathParams,\n queryParams,\n bodyParam: nodeBodyCreate,\n contentTypes: ['application/json', 'multipart/form-data'],\n returnType: UnfiledRecordFolderAssociationPaging\n });\n }\n\n /**\n * Delete an unfiled record folder. Deleted file plan components cannot be recovered, they are deleted permanently.\n *\n * @param unfiledRecordFolderId The identifier of an unfiled record folder.\n * @returns Promise<{}>\n */\n deleteUnfiledRecordFolder(unfiledRecordFolderId: string): Promise<void> {\n throwIfNotDefined(unfiledRecordFolderId, 'unfiledRecordFolderId');\n\n const pathParams = {\n unfiledRecordFolderId\n };\n\n return this.delete({\n path: '/unfiled-record-folders/{unfiledRecordFolderId}',\n pathParams\n });\n }\n\n /**\n * Get the unfiled record folder\n *\n * Mandatory fields and the unfiled record folder's aspects and properties are returned by default.\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * @param unfiledRecordFolderId The identifier of an unfiled record folder.\n * @param opts Optional parameters\n * @param opts.relativePath Return information on children in the unfiled records container resolved by this path. The path is relative to **unfiledRecordFolderId**.\n * @returns Promise<UnfiledRecordFolderEntry>\n */\n getUnfiledRecordFolder(\n unfiledRecordFolderId: string,\n opts?: {\n relativePath?: string;\n } & RecordsIncludeQuery\n ): Promise<UnfiledRecordFolderEntry> {\n throwIfNotDefined(unfiledRecordFolderId, 'unfiledRecordFolderId');\n\n const pathParams = {\n unfiledRecordFolderId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n relativePath: opts?.relativePath,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/unfiled-record-folders/{unfiledRecordFolderId}',\n pathParams,\n queryParams,\n returnType: UnfiledRecordFolderEntry\n });\n }\n\n /**\n * List unfiled record folder's children\n *\n * Minimal information for each child is returned by default.\n * You can use the **include** parameter (include=allowableOperations) to return additional information.\n *\n * @param unfiledRecordFolderId The identifier of an unfiled record folder.\n * @param opts Optional parameters\n * @param opts.where Optionally filter the list. Here are some examples:\n * - where=(isRecord=true)\n * - where=(isUnfiledRecordFolder=false)\n * - where=(nodeType='cm:content INCLUDESUBTYPES')\n * @param opts.relativePath Return information on children in the unfiled records container resolved by this path. The path is relative to **unfiledRecordFolderId**.\n * @returns Promise<UnfiledRecordFolderAssociationPaging>\n */\n listUnfiledRecordFolderChildren(\n unfiledRecordFolderId: string,\n opts?: {\n where?: string;\n relativePath?: string[];\n } & RecordsIncludeQuery &\n RecordsPagingQuery &\n RecordsSourceQuery\n ): Promise<UnfiledRecordFolderAssociationPaging> {\n throwIfNotDefined(unfiledRecordFolderId, 'unfiledRecordFolderId');\n opts = opts || {};\n\n const pathParams = {\n unfiledRecordFolderId\n };\n\n const queryParams = {\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n where: opts?.where,\n include: buildCollectionParam(opts?.include, 'csv'),\n relativePath: opts?.relativePath,\n includeSource: opts?.includeSource,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.get({\n path: '/unfiled-record-folders/{unfiledRecordFolderId}/children',\n pathParams,\n queryParams,\n returnType: UnfiledRecordFolderAssociationPaging\n });\n }\n\n /**\n * Updates unfiled record folder **unfiledRecordFolderId**.\n * For example, you can rename a record folder:\n *\n * @param unfiledRecordFolderId The identifier of an unfiled record folder.\n * @param unfiledRecordFolderBodyUpdate The record folder information to update.\n * @param opts Optional parameters\n * @returns Promise<UnfiledRecordFolderEntry>\n */\n updateUnfiledRecordFolder(\n unfiledRecordFolderId: string,\n unfiledRecordFolderBodyUpdate: UnfiledRecordFolderBodyUpdate,\n opts?: RecordsIncludeQuery & RecordsSourceQuery\n ): Promise<UnfiledRecordFolderEntry> {\n throwIfNotDefined(unfiledRecordFolderId, 'unfiledRecordFolderId');\n throwIfNotDefined(unfiledRecordFolderBodyUpdate, 'unfiledRecordFolderBodyUpdate');\n\n const pathParams = {\n unfiledRecordFolderId\n };\n\n const queryParams = {\n include: buildCollectionParam(opts?.include, 'csv'),\n includeSource: opts?.includeSource,\n fields: buildCollectionParam(opts?.fields, 'csv')\n };\n\n return this.put({\n path: '/unfiled-record-folders/{unfiledRecordFolderId}',\n pathParams,\n queryParams,\n bodyParam: unfiledRecordFolderBodyUpdate,\n returnType: UnfiledRecordFolderEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './types';\nexport * from './filePlans.api';\nexport * from './files.api';\nexport * from './gsSites.api';\nexport * from './recordCategories.api';\nexport * from './recordFolders.api';\nexport * from './records.api';\nexport * from './transferContainers.api';\nexport * from './transfers.api';\nexport * from './unfiledContainers.api';\nexport * from './unfiledRecordFolders.api';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './api';\nexport * from './model';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class Ticket {\n id?: string;\n userId?: string;\n\n constructor(input?: Partial<Ticket>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Ticket } from './ticket';\n\nexport class TicketEntry {\n entry: Ticket;\n\n constructor(input?: Partial<TicketEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Ticket(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class ValidTicket {\n id?: string;\n\n constructor(input?: Partial<ValidTicket>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ValidTicket } from './validTicket';\n\nexport class ValidTicketEntry {\n entry: ValidTicket;\n\n constructor(input?: Partial<ValidTicketEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new ValidTicket(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ApiClient } from '../../../api-clients/api-client';\nimport { LegacyHttpClient } from '../../../api-clients/http-client.interface';\n\nexport abstract class BaseApi extends ApiClient {\n override get apiClient(): LegacyHttpClient {\n return this.httpClient ?? this.alfrescoApi.authClient;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TicketBody } from '../model/ticketBody';\nimport { TicketEntry } from '../model/ticketEntry';\nimport { ValidTicketEntry } from '../model/validTicketEntry';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * Authentication service.\n */\nexport class AuthenticationApi extends BaseApi {\n /**\n * Create ticket (login)\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param ticketBodyCreate The user credential.\n * @returns Promise<TicketEntry>\n */\n createTicket(ticketBodyCreate: TicketBody): Promise<TicketEntry> {\n throwIfNotDefined(ticketBodyCreate, 'ticketBodyCreate');\n\n return this.post({\n path: '/tickets',\n bodyParam: ticketBodyCreate,\n returnType: TicketEntry\n });\n }\n\n /**\n * Get ticket (login)\n *\n * @returns Promise<TicketEntry>\n */\n getTicket(): Promise<TicketEntry> {\n return this.get({\n path: '/tickets/-me-',\n returnType: TicketEntry\n });\n }\n\n /**\n * Delete ticket (logout)\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @returns Promise<{}>\n */\n deleteTicket(): Promise<void> {\n return this.delete({\n path: '/tickets/-me-'\n });\n }\n\n /**\n * Validate ticket\n *\n * **Note:** this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * Validates the specified ticket (derived from Authorization header) is still valid.\n * For example, you can pass the Authorization request header using Javascript:\n * Javascript\n * request.setRequestHeader (\\\"Authorization\\\", \\\"Basic \\\" + btoa(ticket));\n *\n * @returns Promise<ValidTicketEntry>\n */\n validateTicket(): Promise<ValidTicketEntry> {\n return this.get({\n path: '/tickets/-me-',\n returnType: ValidTicketEntry\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './authentication.api';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class TicketBody {\n userId?: string;\n password?: string;\n\n constructor(input?: Partial<TicketBody>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './ticket';\nexport * from './ticketBody';\nexport * from './ticketEntry';\nexport * from './validTicket';\nexport * from './validTicketEntry';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './api';\nexport * from './model';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ApiClient } from '../../../api-clients/api-client';\nimport { LegacyHttpClient } from '../../../api-clients/http-client.interface';\n\nexport abstract class BaseApi extends ApiClient {\n override get apiClient(): LegacyHttpClient {\n return this.httpClient ?? this.alfrescoApi.processClient;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\n\n/**\n * About service.\n */\nexport class AboutApi extends BaseApi {\n /**\n * Get server type and version\n * Provides information about the running Alfresco Process Services Suite. The response payload object has the properties type, majorVersion, minorVersion, revisionVersion and edition.\n *\n * @return Promise<{ [key: string]: string; }>\n */\n getAppVersion(): Promise<{ [key: string]: string }> {\n return this.get({\n path: '/api/enterprise/app-version'\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ResultListDataRepresentationAccountRepresentation } from '../model';\nimport { BaseApi } from './base.api';\n\n/**\n * AccountIntegrationApi service.\n */\nexport class AccountIntegrationApi extends BaseApi {\n /**\n * Retrieve external account information\n * Accounts are used to integrate with third party apps and clients\n *\n * @return Promise<ResultListDataRepresentationAccountRepresentation>\n */\n getAccounts(): Promise<ResultListDataRepresentationAccountRepresentation> {\n return this.get({\n path: '/api/enterprise/account/integration'\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class AlfrescoEndpointRepresentation {\n accountUsername?: string;\n alfrescoTenantId?: string;\n created?: Date;\n id?: number;\n lastUpdated?: Date;\n name?: string;\n repositoryUrl?: string;\n secret?: string;\n shareUrl?: string;\n tenantId?: number;\n useShareConnector?: boolean;\n version?: string;\n\n constructor(input?: Partial<AlfrescoEndpointRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.created = input.created ? DateAlfresco.parseDate(input.created) : undefined;\n this.lastUpdated = input.lastUpdated ? DateAlfresco.parseDate(input.lastUpdated) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class AppModelDefinition {\n createdBy?: number;\n createdByFullName?: string;\n description?: string;\n id?: number;\n lastUpdated?: Date;\n lastUpdatedBy?: number;\n lastUpdatedByFullName?: string;\n modelType?: number;\n name?: string;\n stencilSetId?: number;\n version?: number;\n\n constructor(input?: Partial<AppModelDefinition>) {\n if (input) {\n Object.assign(this, input);\n this.lastUpdated = input.lastUpdated ? DateAlfresco.parseDate(input.lastUpdated) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AppModelDefinition } from './appModelDefinition';\nimport { PublishIdentityInfoRepresentation } from './publishIdentityInfoRepresentation';\n\nexport class AppDefinition {\n icon?: string;\n models?: AppModelDefinition[];\n publishIdentityInfo?: PublishIdentityInfoRepresentation[];\n theme?: string;\n\n constructor(input?: Partial<AppDefinition>) {\n if (input) {\n Object.assign(this, input);\n if (input.models) {\n this.models = input.models.map((item: any) => new AppModelDefinition(item));\n }\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AppDefinitionRepresentation } from './appDefinitionRepresentation';\nimport { DateAlfresco } from '../../content-custom-api';\nimport { LightUserRepresentation } from './lightUserRepresentation';\n\nexport class AppDeploymentRepresentation {\n appDefinition?: AppDefinitionRepresentation;\n created?: Date;\n createdBy?: LightUserRepresentation;\n deploymentId?: string;\n dmnDeploymentId?: number;\n id?: number;\n\n constructor(input?: Partial<AppDeploymentRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.created = input.created ? DateAlfresco.parseDate(input.created) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class BoxUserAccountCredentialsRepresentation {\n authenticationURL?: string;\n expireDate?: Date;\n ownerEmail?: string;\n\n constructor(input?: Partial<BoxUserAccountCredentialsRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.expireDate = input.expireDate ? DateAlfresco.parseDate(input.expireDate) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { LightUserRepresentation } from './lightUserRepresentation';\n\nexport class CommentRepresentation {\n created?: Date;\n createdBy?: LightUserRepresentation;\n id?: number;\n message?: string;\n\n constructor(input?: Partial<CommentRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.created = input.created ? DateAlfresco.parseDate(input.created) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class DecisionAuditRepresentation {\n activityId?: string;\n activityName?: string;\n auditTrailJson?: string;\n created?: Date;\n decisionExecutionFailed?: boolean;\n decisionKey?: string;\n decisionModelJson?: string;\n decisionName?: string;\n dmnDeploymentId?: number;\n executionId?: string;\n id?: number;\n processDefinitionId?: string;\n processInstanceId?: string;\n renderedVariables?: any;\n\n constructor(input?: Partial<DecisionAuditRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.created = input.created ? DateAlfresco.parseDate(input.created) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class DecisionTaskRepresentation {\n activityId?: string;\n activityName?: string;\n decisionExecutionEnded?: Date;\n decisionExecutionFailed?: boolean;\n decisionKey?: string;\n decisionName?: string;\n dmnDeploymentId?: number;\n executionId?: string;\n id?: number;\n processDefinitionId?: string;\n processDefinitionKey?: string;\n processInstanceId?: string;\n\n constructor(input?: Partial<DecisionTaskRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.decisionExecutionEnded = input.decisionExecutionEnded ? DateAlfresco.parseDate(input.decisionExecutionEnded) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class EndpointBasicAuthRepresentation {\n created?: Date;\n id?: number;\n lastUpdated?: Date;\n name?: string;\n tenantId?: number;\n username?: string;\n\n constructor(input?: Partial<EndpointBasicAuthRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.created = input.created ? DateAlfresco.parseDate(input.created) : undefined;\n this.lastUpdated = input.lastUpdated ? DateAlfresco.parseDate(input.lastUpdated) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { FormDefinitionRepresentation } from './formDefinitionRepresentation';\n\nexport class FormRepresentation {\n description?: string;\n formDefinition?: FormDefinitionRepresentation;\n id?: number;\n lastUpdated?: Date;\n lastUpdatedBy?: number;\n lastUpdatedByFullName?: string;\n name?: string;\n referenceId?: number;\n stencilSetId?: number;\n version?: number;\n\n constructor(input?: Partial<FormRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.lastUpdated = input.lastUpdated ? DateAlfresco.parseDate(input.lastUpdated) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { FormRepresentation } from './formRepresentation';\nimport { ProcessScopeIdentifierRepresentation } from './processScopeIdentifierRepresentation';\n\nexport class FormSaveRepresentation {\n comment?: string;\n formImageBase64?: string;\n formRepresentation?: FormRepresentation;\n newVersion?: boolean;\n processScopeIdentifiers?: ProcessScopeIdentifierRepresentation[];\n reusable?: boolean;\n\n constructor(input?: Partial<FormSaveRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.formRepresentation = input.formRepresentation ? new FormRepresentation(input.formRepresentation) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api/model/dateAlfresco';\nimport { LightAppRepresentation } from './lightAppRepresentation';\n\nexport class UserRepresentationGroup {\n apps?: LightAppRepresentation[];\n capabilities?: string[];\n company?: string;\n created?: Date;\n email?: string;\n externalId?: string;\n firstName?: string;\n fullname?: string;\n groups?: any[];\n id?: number;\n lastName?: string;\n lastUpdate?: Date;\n latestSyncTimeStamp?: Date;\n password?: string;\n pictureId?: number;\n primaryGroup?: any;\n status?: string;\n tenantId?: number;\n tenantName?: string;\n tenantPictureId?: number;\n type?: string;\n\n constructor(input?: Partial<UserRepresentationGroup>) {\n if (input) {\n Object.assign(this, input);\n this.created = input.created ? DateAlfresco.parseDate(input.created) : undefined;\n this.lastUpdate = input.lastUpdate ? DateAlfresco.parseDate(input.lastUpdate) : undefined;\n this.latestSyncTimeStamp = input.latestSyncTimeStamp ? DateAlfresco.parseDate(input.latestSyncTimeStamp) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { GroupCapabilityRepresentation } from './groupCapabilityRepresentation';\nimport { UserRepresentationGroup } from './userRepresentationGroup';\n\nexport class GroupRepresentation {\n capabilities?: GroupCapabilityRepresentation[];\n externalId?: string;\n groups?: any[];\n id?: number;\n lastSyncTimeStamp?: Date;\n manager?: UserRepresentationGroup;\n name?: string;\n parentGroupId?: number;\n status?: string;\n tenantId?: number;\n type?: number;\n userCount?: number;\n users?: UserRepresentationGroup[];\n\n constructor(input?: Partial<GroupRepresentation>) {\n if (input) {\n Object.assign(this, input);\n\n if (input.groups) {\n this.groups = input.groups.map((item) => new GroupRepresentation(item));\n }\n this.lastSyncTimeStamp = input.lastSyncTimeStamp ? DateAlfresco.parseDate(input.lastSyncTimeStamp) : undefined;\n this.manager = input.manager ? new UserRepresentationGroup(input.manager) : undefined;\n if (input.users) {\n this.users = input.users.map((item) => new UserRepresentationGroup(item));\n }\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { QueryVariable } from './queryVariable';\n\nexport class HistoricProcessInstanceQueryRepresentation {\n excludeSubprocesses?: boolean;\n finished?: boolean;\n finishedAfter?: Date;\n finishedBefore?: Date;\n includeProcessVariables?: boolean;\n involvedUser?: string;\n order?: string;\n processBusinessKey?: string;\n processDefinitionId?: string;\n processDefinitionKey?: string;\n processInstanceId?: string;\n processInstanceIds?: string[];\n size?: number;\n sort?: string;\n start?: number;\n startedAfter?: Date;\n startedBefore?: Date;\n startedBy?: string;\n superProcessInstanceId?: string;\n tenantId?: string;\n tenantIdLike?: string;\n variables?: QueryVariable[];\n withoutTenantId?: boolean;\n\n constructor(input?: Partial<HistoricProcessInstanceQueryRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.finishedAfter = input.finishedAfter ? DateAlfresco.parseDate(input.finishedAfter) : undefined;\n this.finishedBefore = input.finishedBefore ? DateAlfresco.parseDate(input.finishedBefore) : undefined;\n this.startedAfter = input.startedAfter ? DateAlfresco.parseDate(input.startedAfter) : undefined;\n this.startedBefore = input.startedBefore ? DateAlfresco.parseDate(input.startedBefore) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { QueryVariable } from './queryVariable';\n\nexport class HistoricTaskInstanceQueryRepresentation {\n dueDate?: Date;\n dueDateAfter?: Date;\n dueDateBefore?: Date;\n executionId?: string;\n finished?: boolean;\n includeProcessVariables?: boolean;\n includeTaskLocalVariables?: boolean;\n order?: string;\n parentTaskId?: string;\n processBusinessKey?: string;\n processBusinessKeyLike?: string;\n processDefinitionId?: string;\n processDefinitionKey?: string;\n processDefinitionKeyLike?: string;\n processDefinitionName?: string;\n processDefinitionNameLike?: string;\n processFinished?: boolean;\n processInstanceId?: string;\n processVariables?: QueryVariable[];\n size?: number;\n sort?: string;\n start?: number;\n taskAssignee?: string;\n taskAssigneeLike?: string;\n taskCandidateGroup?: string;\n taskCompletedAfter?: Date;\n taskCompletedBefore?: Date;\n taskCompletedOn?: Date;\n taskCreatedAfter?: Date;\n taskCreatedBefore?: Date;\n taskCreatedOn?: Date;\n taskDefinitionKey?: string;\n taskDefinitionKeyLike?: string;\n taskDeleteReason?: string;\n taskDeleteReasonLike?: string;\n taskDescription?: string;\n taskDescriptionLike?: string;\n taskId?: string;\n taskInvolvedUser?: string;\n taskMaxPriority?: number;\n taskMinPriority?: number;\n taskName?: string;\n taskNameLike?: string;\n taskOwner?: string;\n taskOwnerLike?: string;\n taskPriority?: number;\n taskVariables?: QueryVariable[];\n tenantId?: string;\n tenantIdLike?: string;\n withoutDueDate?: boolean;\n withoutTenantId?: boolean;\n\n constructor(input?: Partial<HistoricTaskInstanceQueryRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.dueDate = input.dueDate ? DateAlfresco.parseDate(input.dueDate) : undefined;\n this.dueDateAfter = input.dueDateAfter ? DateAlfresco.parseDate(input.dueDateAfter) : undefined;\n this.dueDateBefore = input.dueDateBefore ? DateAlfresco.parseDate(input.dueDateBefore) : undefined;\n this.taskCompletedAfter = input.taskCompletedAfter ? DateAlfresco.parseDate(input.taskCompletedAfter) : undefined;\n this.taskCompletedBefore = input.taskCompletedBefore ? DateAlfresco.parseDate(input.taskCompletedBefore) : undefined;\n this.taskCompletedOn = input.taskCompletedOn ? DateAlfresco.parseDate(input.taskCompletedOn) : undefined;\n this.taskCreatedAfter = input.taskCreatedAfter ? DateAlfresco.parseDate(input.taskCreatedAfter) : undefined;\n this.taskCreatedBefore = input.taskCreatedBefore ? DateAlfresco.parseDate(input.taskCreatedBefore) : undefined;\n this.taskCreatedOn = input.taskCreatedOn ? DateAlfresco.parseDate(input.taskCreatedOn) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class ImageUploadRepresentation {\n created?: Date;\n id?: number;\n name?: string;\n userId?: number;\n\n constructor(input?: Partial<ImageUploadRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.created = input.created ? DateAlfresco.parseDate(input.created) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class ModelRepresentation {\n comment?: string;\n createdBy?: number;\n createdByFullName?: string;\n description?: string;\n favorite?: boolean;\n id?: number;\n lastUpdated?: Date;\n lastUpdatedBy?: number;\n lastUpdatedByFullName?: string;\n latestVersion?: boolean;\n modelType?: number;\n name?: string;\n permission?: string;\n referenceId?: number;\n stencilSet?: number;\n tenantId?: number;\n version?: number;\n\n constructor(input?: Partial<ModelRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.lastUpdated = input.lastUpdated ? DateAlfresco.parseDate(input.lastUpdated) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { LightUserRepresentation } from './lightUserRepresentation';\n\nexport class RelatedContentRepresentation {\n contentAvailable?: boolean;\n created?: Date;\n createdBy?: LightUserRepresentation;\n id?: number;\n link?: boolean;\n linkUrl?: string;\n mimeType?: string;\n name?: string;\n previewStatus?: string;\n relatedContent?: boolean;\n simpleType?: string;\n source?: string;\n sourceId?: string;\n thumbnailStatus?: string;\n contentBlob?: Blob;\n\n constructor(input?: Partial<RelatedContentRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.created = input.created ? DateAlfresco.parseDate(input.created) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { NamedObject } from './namedObject';\nimport { RelatedContentRepresentation } from './relatedContentRepresentation';\n\nexport class ProcessContentRepresentation {\n content?: RelatedContentRepresentation[];\n field?: NamedObject;\n\n constructor(input?: Partial<ProcessContentRepresentation>) {\n if (input) {\n Object.assign(this, input);\n if (input.content) {\n this.content = input.content.map((item) => new RelatedContentRepresentation(item));\n }\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { LightUserRepresentation } from './lightUserRepresentation';\nimport { RestVariable } from './restVariable';\n\nexport class ProcessInstanceRepresentation {\n businessKey?: string;\n ended?: Date;\n graphicalNotationDefined?: boolean;\n id?: string;\n name?: string;\n processDefinitionCategory?: string;\n processDefinitionDeploymentId?: string;\n processDefinitionDescription?: string;\n processDefinitionId?: string;\n processDefinitionKey?: string;\n processDefinitionName?: string;\n processDefinitionVersion?: number;\n startFormDefined?: boolean;\n started?: Date;\n startedBy?: LightUserRepresentation;\n suspended?: boolean;\n tenantId?: string;\n variables?: RestVariable[];\n\n constructor(input?: Partial<ProcessInstanceRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.ended = input.ended ? DateAlfresco.parseDate(input.ended) : undefined;\n this.started = input.started ? DateAlfresco.parseDate(input.started) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AlfrescoEndpointRepresentation } from './alfrescoEndpointRepresentation';\n\nexport class ResultListDataRepresentationAlfrescoEndpointRepresentation {\n data?: AlfrescoEndpointRepresentation[];\n size?: number;\n start?: number;\n total?: number;\n\n constructor(input?: Partial<ResultListDataRepresentationAlfrescoEndpointRepresentation>) {\n if (input) {\n Object.assign(this, input);\n if (input.data) {\n this.data = input.data.map((item) => new AlfrescoEndpointRepresentation(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AppDeploymentRepresentation } from './appDeploymentRepresentation';\n\nexport class ResultListDataRepresentationAppDeploymentRepresentation {\n data?: AppDeploymentRepresentation[];\n size?: number;\n start?: number;\n total?: number;\n\n constructor(input?: Partial<ResultListDataRepresentationAppDeploymentRepresentation>) {\n\n if (input) {\n Object.assign(this, input);\n if (input.data) {\n this.data = input.data.map((item) => new AppDeploymentRepresentation(item));\n }\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { CommentRepresentation } from './commentRepresentation';\n\nexport class ResultListDataRepresentationCommentRepresentation {\n data?: CommentRepresentation[];\n size?: number;\n start?: number;\n total?: number;\n\n constructor(input?: Partial<ResultListDataRepresentationCommentRepresentation>) {\n if (input) {\n Object.assign(this, input);\n if (input.data) {\n this.data = input.data.map((item) => new CommentRepresentation(item));\n }\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DecisionAuditRepresentation } from './decisionAuditRepresentation';\n\nexport class ResultListDataRepresentationDecisionAuditRepresentation {\n data?: DecisionAuditRepresentation[];\n size?: number;\n start?: number;\n total?: number;\n\n constructor(input?: Partial<ResultListDataRepresentationDecisionAuditRepresentation>) {\n if (input) {\n Object.assign(this, input);\n if (input.data) {\n this.data = input.data.map((item) => new DecisionAuditRepresentation(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DecisionTaskRepresentation } from './decisionTaskRepresentation';\n\nexport class ResultListDataRepresentationDecisionTaskRepresentation {\n data?: DecisionTaskRepresentation[];\n size?: number;\n start?: number;\n total?: number;\n\n constructor(input?: Partial<ResultListDataRepresentationDecisionTaskRepresentation>) {\n if (input) {\n Object.assign(this, input);\n if (input.data) {\n this.data = input.data.map((item) => new DecisionTaskRepresentation(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { FormRepresentation } from './formRepresentation';\n\nexport class ResultListDataRepresentationFormRepresentation {\n data?: FormRepresentation[];\n size?: number;\n start?: number;\n total?: number;\n\n constructor(input?: Partial<ResultListDataRepresentationFormRepresentation>) {\n if (input) {\n Object.assign(this, input);\n if (input.data) {\n this.data = input.data.map((item) => new FormRepresentation(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ModelRepresentation } from './modelRepresentation';\n\nexport class ResultListDataRepresentationModelRepresentation {\n data?: ModelRepresentation[];\n size?: number;\n start?: number;\n total?: number;\n\n constructor(input?: Partial<ResultListDataRepresentationModelRepresentation>) {\n if (input) {\n Object.assign(this, input);\n if (input.data) {\n this.data = input.data.map((item) => new ModelRepresentation(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ProcessContentRepresentation } from './processContentRepresentation';\n\nexport class ResultListDataRepresentationProcessContentRepresentation {\n data?: ProcessContentRepresentation[];\n size?: number;\n start?: number;\n total?: number;\n\n constructor(input?: Partial<ResultListDataRepresentationProcessContentRepresentation>) {\n if (input) {\n Object.assign(this, input);\n if (input.data) {\n this.data = input.data.map((item) => new ProcessContentRepresentation(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ProcessInstanceRepresentation } from './processInstanceRepresentation';\n\nexport class ResultListDataRepresentationProcessInstanceRepresentation {\n data?: ProcessInstanceRepresentation[];\n size?: number;\n start?: number;\n total?: number;\n\n constructor(input?: Partial<ResultListDataRepresentationProcessInstanceRepresentation>) {\n if (input) {\n Object.assign(this, input);\n if (input.data) {\n this.data = input.data.map((item) => new ProcessInstanceRepresentation(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RelatedContentRepresentation } from './relatedContentRepresentation';\n\nexport class ResultListDataRepresentationRelatedContentRepresentation {\n data?: RelatedContentRepresentation[];\n size?: number;\n start?: number;\n total?: number;\n\n constructor(input?: Partial<ResultListDataRepresentationRelatedContentRepresentation>) {\n if (input) {\n Object.assign(this, input);\n if (input.data) {\n this.data = input.data.map((item) => new RelatedContentRepresentation(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { FormDefinitionRepresentation } from './formDefinitionRepresentation';\nimport { LightUserRepresentation } from './lightUserRepresentation';\n\nexport class SubmittedFormRepresentation {\n form?: FormDefinitionRepresentation;\n formId?: number;\n id?: number;\n name?: string;\n processId?: string;\n submitted?: Date;\n submittedBy?: LightUserRepresentation;\n taskId?: string;\n\n constructor(input?: Partial<SubmittedFormRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.submitted = input.submitted ? DateAlfresco.parseDate(input.submitted) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SubmittedFormRepresentation } from './submittedFormRepresentation';\n\nexport class ResultListDataRepresentationSubmittedFormRepresentation {\n data?: SubmittedFormRepresentation[];\n size?: number;\n start?: number;\n total?: number;\n\n constructor(input?: Partial<ResultListDataRepresentationSubmittedFormRepresentation>) {\n if (input) {\n Object.assign(this, input);\n if (input.data) {\n this.data = input.data.map((item) => new SubmittedFormRepresentation(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { LightGroupRepresentation } from './lightGroupRepresentation';\nimport { LightUserRepresentation } from './lightUserRepresentation';\nimport { RestVariable } from './restVariable';\n\nexport class TaskRepresentation {\n adhocTaskCanBeReassigned?: boolean;\n assignee?: LightUserRepresentation;\n category?: string;\n created?: Date;\n description?: string;\n dueDate?: Date;\n duration?: number;\n endDate?: Date;\n executionId?: string;\n formKey?: string;\n id?: string;\n initiatorCanCompleteTask?: boolean;\n involvedGroups?: LightGroupRepresentation[];\n involvedPeople?: LightUserRepresentation[];\n managerOfCandidateGroup?: boolean;\n memberOfCandidateGroup?: boolean;\n memberOfCandidateUsers?: boolean;\n name?: string;\n parentTaskId?: string;\n parentTaskName?: string;\n priority?: number;\n processDefinitionCategory?: string;\n processDefinitionDeploymentId?: string;\n processDefinitionDescription?: string;\n processDefinitionId?: string;\n processDefinitionKey?: string;\n processDefinitionName?: string;\n processDefinitionVersion?: number;\n processInstanceId?: string;\n processInstanceName?: string;\n processInstanceStartUserId?: string;\n taskDefinitionKey?: string;\n variables?: RestVariable[];\n parentName?: string;\n\n constructor(input?: Partial<TaskRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.created = input.created ? DateAlfresco.parseDate(input.created) : undefined;\n this.dueDate = input.dueDate ? DateAlfresco.parseDate(input.dueDate) : undefined;\n this.endDate = input.endDate ? DateAlfresco.parseDate(input.endDate) : undefined;\n }\n }\n\n getFullName(): string {\n let fullName = '';\n\n if (this.assignee) {\n const firstName: string = this.assignee.firstName ? this.assignee.firstName : '';\n const lastName: string = this.assignee.lastName ? this.assignee.lastName : '';\n fullName = `${firstName} ${lastName}`;\n }\n\n return fullName.trim();\n }\n\n isCompleted(): boolean {\n return !!this.endDate;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TaskRepresentation } from './taskRepresentation';\n\nexport class ResultListDataRepresentationTaskRepresentation {\n data?: TaskRepresentation[];\n size?: number;\n start?: number;\n total?: number;\n length?: number;\n\n constructor(input?: Partial<ResultListDataRepresentationTaskRepresentation>) {\n if (input) {\n Object.assign(this, input);\n if (input.data) {\n this.data = input.data.map((item) => new TaskRepresentation(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class TaskFilterRepresentation {\n asc?: boolean;\n assignment?: string;\n dueAfter?: Date;\n dueBefore?: Date;\n name?: string;\n processDefinitionId?: string;\n processDefinitionKey?: string;\n sort?: string;\n state?: 'active' | 'completed' | 'all' | 'running' | string;\n\n constructor(input?: Partial<TaskFilterRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.dueAfter = input.dueAfter ? DateAlfresco.parseDate(input.dueAfter) : undefined;\n this.dueBefore = input.dueBefore ? DateAlfresco.parseDate(input.dueBefore) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TaskFilterRepresentation } from './taskFilterRepresentation';\n\nexport class UserTaskFilterRepresentation {\n appId?: number;\n filter?: TaskFilterRepresentation;\n icon?: string;\n id?: number;\n index?: number;\n name?: string;\n recent?: boolean;\n\n constructor(input?: Partial<UserTaskFilterRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.filter = input.filter ? new TaskFilterRepresentation(input.filter) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { UserTaskFilterRepresentation } from './userTaskFilterRepresentation';\n\nexport class ResultListDataRepresentationUserTaskFilterRepresentation {\n data?: UserTaskFilterRepresentation[];\n size?: number;\n start?: number;\n total?: number;\n\n constructor(input?: Partial<ResultListDataRepresentationUserTaskFilterRepresentation>) {\n if (input) {\n Object.assign(this, input);\n if (input.data) {\n this.data = input.data.map((item) => new UserTaskFilterRepresentation(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class SyncLogEntryRepresentation {\n id?: number;\n timeStamp?: Date;\n type?: string;\n\n constructor(input?: Partial<SyncLogEntryRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.timeStamp = input.timeStamp ? DateAlfresco.parseDate(input.timeStamp) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TaskFilterRepresentation } from './taskFilterRepresentation';\n\nexport class TaskFilterRequestRepresentation {\n appDefinitionId?: number;\n filter?: TaskFilterRepresentation;\n filterId?: number;\n page?: number;\n size?: number;\n\n constructor(input?: Partial<TaskFilterRequestRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.filter = input.filter ? new TaskFilterRepresentation(input.filter) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class TaskQueryRepresentation {\n appDefinitionId?: number;\n assignment?: string;\n dueAfter?: Date;\n dueBefore?: Date;\n includeProcessInstance?: boolean;\n page?: number;\n processDefinitionId?: string;\n processInstanceId?: string;\n size?: number;\n sort?: 'created-desc' | 'created-asc' | 'due-desc' | 'due-asc' | string;\n start?: number;\n state?: 'active' | 'completed' | 'all' | 'open' | string;\n taskId?: string;\n text?: string;\n\n constructor(input?: Partial<TaskQueryRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.dueAfter = input.dueAfter ? DateAlfresco.parseDate(input.dueAfter) : undefined;\n this.dueBefore = input.dueBefore ? DateAlfresco.parseDate(input.dueBefore) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class TaskUpdateRepresentation {\n category?: string;\n categorySet?: boolean;\n description?: string;\n descriptionSet?: boolean;\n dueDate?: Date;\n dueDateSet?: boolean;\n formKey?: string;\n formKeySet?: boolean;\n name?: string;\n nameSet?: boolean;\n parentTaskId?: string;\n parentTaskIdSet?: boolean;\n priority?: number;\n prioritySet?: boolean;\n\n constructor(input?: Partial<TaskUpdateRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.dueDate = input.dueDate ? DateAlfresco.parseDate(input.dueDate) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class TenantEvent {\n eventTime?: Date;\n eventType?: string;\n extraInfo?: string;\n id?: number;\n tenantId?: number;\n userId?: number;\n userName?: string;\n\n constructor(input?: Partial<TenantEvent>) {\n if (input) {\n Object.assign(this, input);\n this.eventTime = input.eventTime ? DateAlfresco.parseDate(input.eventTime) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\n\nexport class TenantRepresentation {\n active?: boolean;\n created?: Date;\n domain?: string;\n id?: number;\n lastUpdate?: Date;\n logoId?: number;\n maxUsers?: number;\n name?: string;\n\n constructor(input?: Partial<TenantRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.created = input.created ? DateAlfresco.parseDate(input.created) : undefined;\n this.lastUpdate = input.lastUpdate ? DateAlfresco.parseDate(input.lastUpdate) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DateAlfresco } from '../../content-custom-api';\nimport { GroupRepresentation } from './groupRepresentation';\nimport { LightAppRepresentation } from './lightAppRepresentation';\n\nexport class UserRepresentation {\n apps?: LightAppRepresentation[];\n capabilities?: string[];\n company?: string;\n created?: Date;\n email?: string;\n externalId?: string;\n firstName?: string;\n fullname?: string;\n groups?: GroupRepresentation[];\n id?: number;\n lastName?: string;\n lastUpdate?: Date;\n latestSyncTimeStamp?: Date;\n password?: string;\n pictureId?: number;\n primaryGroup?: GroupRepresentation;\n status?: string;\n tenantId?: number;\n tenantName?: string;\n tenantPictureId?: number;\n type?: string;\n\n constructor(input?: Partial<UserRepresentation>) {\n if (input) {\n Object.assign(this, input);\n this.created = input.created ? DateAlfresco.parseDate(input.created) : undefined;\n if (input.groups) {\n this.groups = input.groups.map((item) => new GroupRepresentation(item));\n }\n this.lastUpdate = input.lastUpdate ? DateAlfresco.parseDate(input.lastUpdate) : undefined;\n this.latestSyncTimeStamp = input.latestSyncTimeStamp ? DateAlfresco.parseDate(input.latestSyncTimeStamp) : undefined;\n this.primaryGroup = input.primaryGroup ? new GroupRepresentation(input.primaryGroup) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './abstractGroupRepresentation';\nexport * from './abstractUserRepresentation';\nexport * from './accountRepresentation';\nexport * from './addGroupCapabilitiesRepresentation';\nexport * from './alfrescoContentRepresentation';\nexport * from './alfrescoEndpointRepresentation';\nexport * from './alfrescoNetworkRepresenation';\nexport * from './alfrescoSiteRepresenation';\nexport * from './appDefinition';\nexport * from './appDefinitionPublishRepresentation';\nexport * from './appDefinitionRepresentation';\nexport * from './appDefinitionSaveRepresentation';\nexport * from './appDefinitionUpdateResultRepresentation';\nexport * from './appDeploymentRepresentation';\nexport * from './appModelDefinition';\nexport * from './assigneeIdentifierRepresentation';\nexport * from './auditCalculatedValueRepresentation';\nexport * from './auditDecisionExpressionInfoRepresentation';\nexport * from './auditDecisionInfoRepresentation';\nexport * from './auditDecisionRuleInfoRepresentation';\nexport * from './auditLogEntryRepresentation';\nexport * from './auditLogFormDataRepresentation';\nexport * from './boxContent';\nexport * from './boxUserAccountCredentialsRepresentation';\nexport * from './bulkUserUpdateRepresentation';\nexport * from './changePasswordRepresentation';\nexport * from './checklistOrderRepresentation';\nexport * from './commentAuditInfo';\nexport * from './commentRepresentation';\nexport * from './completeFormRepresentation';\nexport * from './conditionRepresentation';\nexport * from './createEndpointBasicAuthRepresentation';\nexport * from './createProcessInstanceRepresentation';\nexport * from './createTenantRepresentation';\nexport * from './dataSourceConfigRepresentation';\nexport * from './dataSourceRepresentation';\nexport * from './decisionAuditRepresentation';\nexport * from './decisionTaskRepresentation';\nexport * from './endpointBasicAuthRepresentation';\nexport * from './endpointConfigurationRepresentation';\nexport * from './endpointRequestHeaderRepresentation';\nexport * from './entityAttributeScopeRepresentation';\nexport * from './entityVariableScopeRepresentation';\nexport * from './fieldValueInfo';\nexport * from './file';\nexport * from './formDefinitionRepresentation';\nexport * from './formFieldRepresentation';\nexport * from './formIdentifierRepresentation';\nexport * from './formJavascriptEventRepresentation';\nexport * from './formOutcomeRepresentation';\nexport * from './formRepresentation';\nexport * from './formSaveRepresentation';\nexport * from './formScopeRepresentation';\nexport * from './formTabRepresentation';\nexport * from './formValueRepresentation';\nexport * from './formVariableRepresentation';\nexport * from './globalDateFormatRepresentation';\nexport * from './googleDriveContent';\nexport * from './groupCapabilityRepresentation';\nexport * from './groupRepresentation';\nexport * from './historicProcessInstanceQueryRepresentation';\nexport * from './historicTaskInstanceQueryRepresentation';\nexport * from './identityLinkRepresentation';\nexport * from './imageUploadRepresentation';\nexport * from './jsonNode';\nexport * from './layoutRepresentation';\nexport * from './lightAppRepresentation';\nexport * from './lightGroupRepresentation';\nexport * from './lightTenantRepresentation';\nexport * from './lightUserRepresentation';\nexport * from './modelRepresentation';\nexport * from './namedObject';\nexport * from './objectNode';\nexport * from './optionRepresentation';\nexport * from './passwordValidationConstraints';\nexport * from './processContentRepresentation';\nexport * from './processDefinitionMetaDataRepresentation';\nexport * from './processDefinitionRepresentation';\nexport * from './processInstanceAuditInfoRepresentation';\nexport * from './processInstanceFilterRepresentation';\nexport * from './processInstanceFilterRequestRepresentation';\nexport * from './processInstanceQueryRepresentation';\nexport * from './processInstanceRepresentation';\nexport * from './processInstanceVariableRepresentation';\nexport * from './processScopeIdentifierRepresentation';\nexport * from './processScopeRepresentation';\nexport * from './processScopesRequestRepresentation';\nexport * from './publishIdentityInfoRepresentation';\nexport * from './queryVariable';\nexport * from './relatedContentRepresentation';\nexport * from './relatedProcessTask';\nexport * from './resetPasswordRepresentation';\nexport * from './restVariable';\nexport * from './resultListDataRepresentationAbstractUserRepresentation';\nexport * from './resultListDataRepresentationAccountRepresentation';\nexport * from './resultListDataRepresentationAlfrescoContentRepresentation';\nexport * from './resultListDataRepresentationAlfrescoEndpointRepresentation';\nexport * from './resultListDataRepresentationAlfrescoNetworkRepresenation';\nexport * from './resultListDataRepresentationAlfrescoSiteRepresenation';\nexport * from './resultListDataRepresentationAppDefinitionRepresentation';\nexport * from './resultListDataRepresentationAppDeploymentRepresentation';\nexport * from './resultListDataRepresentationBoxContent';\nexport * from './resultListDataRepresentationCommentRepresentation';\nexport * from './resultListDataRepresentationDataSourceRepresentation';\nexport * from './resultListDataRepresentationDecisionAuditRepresentation';\nexport * from './resultListDataRepresentationDecisionTaskRepresentation';\nexport * from './resultListDataRepresentationFormRepresentation';\nexport * from './resultListDataRepresentationGoogleDriveContent';\nexport * from './resultListDataRepresentationLightGroupRepresentation';\nexport * from './resultListDataRepresentationLightUserRepresentation';\nexport * from './resultListDataRepresentationModelRepresentation';\nexport * from './resultListDataRepresentationProcessContentRepresentation';\nexport * from './resultListDataRepresentationProcessDefinitionRepresentation';\nexport * from './resultListDataRepresentationProcessInstanceRepresentation';\nexport * from './resultListDataRepresentationRelatedContentRepresentation';\nexport * from './resultListDataRepresentationRuntimeDecisionTableRepresentation';\nexport * from './resultListDataRepresentationRuntimeFormRepresentation';\nexport * from './resultListDataRepresentationSubmittedFormRepresentation';\nexport * from './resultListDataRepresentationTaskRepresentation';\nexport * from './resultListDataRepresentationUserProcessInstanceFilterRepresentation';\nexport * from './resultListDataRepresentationUserTaskFilterRepresentation';\nexport * from './resultListDataRepresentationRelatedProcessTask';\nexport * from './runtimeAppDefinitionSaveRepresentation';\nexport * from './runtimeDecisionTableRepresentation';\nexport * from './runtimeFormRepresentation';\nexport * from './saveFormRepresentation';\nexport * from './submittedFormRepresentation';\nexport * from './syncLogEntryRepresentation';\nexport * from './systemPropertiesRepresentation';\nexport * from './taskAuditInfoRepresentation';\nexport * from './taskFilterRepresentation';\nexport * from './taskFilterRequestRepresentation';\nexport * from './taskQueryRepresentation';\nexport * from './taskRepresentation';\nexport * from './taskUpdateRepresentation';\nexport * from './tenantEvent';\nexport * from './tenantRepresentation';\nexport * from './userAccountCredentialsRepresentation';\nexport * from './userActionRepresentation';\nexport * from './userFilterOrderRepresentation';\nexport * from './userIdentifierRepresentation';\nexport * from './userProcessInstanceFilterRepresentation';\nexport * from './userRepresentation';\nexport * from './userTaskFilterRepresentation';\nexport * from './validationErrorRepresentation';\nexport * from './variableMappingRepresentation';\nexport * from './variableScopeRepresentation';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { CreateEndpointBasicAuthRepresentation, EndpointBasicAuthRepresentation, EndpointConfigurationRepresentation } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * AdminEndpointsApi service.\n */\nexport class AdminEndpointsApi extends BaseApi {\n /**\n * Add an endpoint authorization\n *\n * @param createRepresentation createRepresentation\n * @return Promise<EndpointBasicAuthRepresentation>\n */\n createBasicAuthConfiguration(createRepresentation: CreateEndpointBasicAuthRepresentation): Promise<EndpointBasicAuthRepresentation> {\n throwIfNotDefined(createRepresentation, 'createRepresentation');\n\n return this.post({\n path: '/api/enterprise/admin/basic-auths',\n bodyParam: createRepresentation,\n returnType: EndpointBasicAuthRepresentation\n });\n }\n\n /**\n * Create an endpoint\n *\n * @param representation representation\n * @return Promise<EndpointConfigurationRepresentation>\n */\n createEndpointConfiguration(representation: EndpointConfigurationRepresentation): Promise<EndpointConfigurationRepresentation> {\n throwIfNotDefined(representation, 'representation');\n\n return this.post({\n path: '/api/enterprise/admin/endpoints',\n bodyParam: representation\n });\n }\n\n /**\n * Get an endpoint authorization\n *\n * @param basicAuthId basicAuthId\n * @param tenantId tenantId\n * @return Promise<EndpointBasicAuthRepresentation>\n */\n getBasicAuthConfiguration(basicAuthId: number, tenantId: number): Promise<EndpointBasicAuthRepresentation> {\n throwIfNotDefined(basicAuthId, 'basicAuthId');\n throwIfNotDefined(tenantId, 'tenantId');\n\n const pathParams = {\n basicAuthId\n };\n\n const queryParams = {\n tenantId\n };\n\n return this.get({\n path: '/api/enterprise/admin/basic-auths/{basicAuthId}',\n pathParams,\n queryParams,\n returnType: EndpointBasicAuthRepresentation\n });\n }\n\n /**\n * List endpoint authorizations\n *\n * @param tenantId tenantId\n * @return Promise<EndpointBasicAuthRepresentation>\n */\n getBasicAuthConfigurations(tenantId: number): Promise<EndpointBasicAuthRepresentation> {\n throwIfNotDefined(tenantId, 'tenantId');\n\n const queryParams = {\n tenantId\n };\n\n return this.get({\n path: '/api/enterprise/admin/basic-auths',\n queryParams,\n returnType: EndpointBasicAuthRepresentation\n });\n }\n\n /**\n * Get an endpoint\n *\n * @param endpointConfigurationId endpointConfigurationId\n * @param tenantId tenantId\n * @return Promise<EndpointConfigurationRepresentation>\n */\n getEndpointConfiguration(endpointConfigurationId: number, tenantId: number): Promise<EndpointConfigurationRepresentation> {\n throwIfNotDefined(endpointConfigurationId, 'endpointConfigurationId');\n throwIfNotDefined(tenantId, 'tenantId');\n\n const pathParams = {\n endpointConfigurationId\n };\n\n const queryParams = {\n tenantId\n };\n\n return this.get({\n path: '/api/enterprise/admin/endpoints/{endpointConfigurationId}',\n pathParams,\n queryParams\n });\n }\n\n /**\n * List endpoints\n *\n * @param tenantId tenantId\n * @return Promise<EndpointConfigurationRepresentation>\n */\n getEndpointConfigurations(tenantId: number): Promise<EndpointConfigurationRepresentation> {\n throwIfNotDefined(tenantId, 'tenantId');\n\n const queryParams = {\n tenantId\n };\n\n return this.get({\n path: '/api/enterprise/admin/endpoints',\n queryParams\n });\n }\n\n /**\n * Delete an endpoint authorization\n *\n * @param basicAuthId basicAuthId\n * @param tenantId tenantId\n * @return Promise<{}>\n */\n removeBasicAuthConfiguration(basicAuthId: number, tenantId: number): Promise<void> {\n throwIfNotDefined(basicAuthId, 'basicAuthId');\n throwIfNotDefined(tenantId, 'tenantId');\n\n const pathParams = {\n basicAuthId\n };\n\n const queryParams = {\n tenantId\n };\n\n return this.delete({\n path: '/api/enterprise/admin/basic-auths/{basicAuthId}',\n pathParams,\n queryParams\n });\n }\n\n /**\n * Delete an endpoint\n *\n * @param endpointConfigurationId endpointConfigurationId\n * @param tenantId tenantId\n * @return Promise<{}>\n */\n removeEndpointConfiguration(endpointConfigurationId: number, tenantId: number): Promise<void> {\n throwIfNotDefined(endpointConfigurationId, 'endpointConfigurationId');\n throwIfNotDefined(tenantId, 'tenantId');\n\n const pathParams = {\n endpointConfigurationId\n };\n\n const queryParams = {\n tenantId\n };\n\n return this.delete({\n path: '/api/enterprise/admin/endpoints/{endpointConfigurationId}',\n pathParams,\n queryParams\n });\n }\n\n /**\n * Update an endpoint authorization\n *\n * @param basicAuthId basicAuthId\n * @param createRepresentation createRepresentation\n * @return Promise<EndpointBasicAuthRepresentation>\n */\n updateBasicAuthConfiguration(\n basicAuthId: number,\n createRepresentation: CreateEndpointBasicAuthRepresentation\n ): Promise<EndpointBasicAuthRepresentation> {\n throwIfNotDefined(basicAuthId, 'basicAuthId');\n throwIfNotDefined(createRepresentation, 'createRepresentation');\n\n const pathParams = {\n basicAuthId\n };\n\n return this.put({\n path: '/api/enterprise/admin/basic-auths/{basicAuthId}',\n pathParams,\n bodyParam: createRepresentation,\n returnType: EndpointBasicAuthRepresentation\n });\n }\n\n /**\n * Update an endpoint\n *\n * @param endpointConfigurationId endpointConfigurationId\n * @param representation representation\n * @return Promise<EndpointConfigurationRepresentation>\n */\n updateEndpointConfiguration(\n endpointConfigurationId: number,\n representation: EndpointConfigurationRepresentation\n ): Promise<EndpointConfigurationRepresentation> {\n throwIfNotDefined(endpointConfigurationId, 'endpointConfigurationId');\n throwIfNotDefined(representation, 'representation');\n\n const pathParams = {\n endpointConfigurationId\n };\n\n return this.put({\n path: '/api/enterprise/admin/endpoints/{endpointConfigurationId}',\n pathParams,\n bodyParam: representation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n AbstractGroupRepresentation,\n AddGroupCapabilitiesRepresentation,\n GroupRepresentation,\n LightGroupRepresentation,\n ResultListDataRepresentationLightUserRepresentation\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * AdminGroupsApi service.\n */\nexport class AdminGroupsApi extends BaseApi {\n /**\n * Activate a group\n *\n * @param groupId groupId\n * @return Promise<{}>\n */\n activate(groupId: number): Promise<any> {\n throwIfNotDefined(groupId, 'groupId');\n\n const pathParams = {\n groupId\n };\n\n return this.post({\n path: '/api/enterprise/admin/groups/{groupId}/action/activate',\n pathParams\n });\n }\n\n /**\n * Add users to a group\n *\n * @param groupId groupId\n * @return Promise<{}>\n */\n addAllUsersToGroup(groupId: number): Promise<any> {\n throwIfNotDefined(groupId, 'groupId');\n\n const pathParams = {\n groupId\n };\n\n return this.post({\n path: '/api/enterprise/admin/groups/{groupId}/add-all-users',\n pathParams\n });\n }\n\n /**\n * Add capabilities to a group\n *\n * @param groupId groupId\n * @param addGroupCapabilitiesRepresentation addGroupCapabilitiesRepresentation\n * @return Promise<{}>\n */\n addGroupCapabilities(groupId: number, addGroupCapabilitiesRepresentation: AddGroupCapabilitiesRepresentation): Promise<any> {\n throwIfNotDefined(groupId, 'groupId');\n throwIfNotDefined(addGroupCapabilitiesRepresentation, 'addGroupCapabilitiesRepresentation');\n\n const pathParams = {\n groupId\n };\n\n return this.post({\n path: '/api/enterprise/admin/groups/{groupId}/capabilities',\n pathParams,\n bodyParam: addGroupCapabilitiesRepresentation\n });\n }\n\n /**\n * Add a user to a group\n *\n * @param groupId groupId\n * @param userId userId\n * @return Promise<{}>\n */\n addGroupMember(groupId: number, userId: number): Promise<any> {\n throwIfNotDefined(groupId, 'groupId');\n throwIfNotDefined(userId, 'userId');\n\n const pathParams = {\n groupId,\n userId\n };\n\n return this.post({\n path: '/api/enterprise/admin/groups/{groupId}/members/{userId}',\n pathParams\n });\n }\n\n /**\n * Get a related group\n *\n * @param groupId groupId\n * @param relatedGroupId relatedGroupId\n * @param type type\n * @return Promise<{}>\n */\n addRelatedGroup(groupId: number, relatedGroupId: number, type: string): Promise<any> {\n throwIfNotDefined(groupId, 'groupId');\n throwIfNotDefined(relatedGroupId, 'relatedGroupId');\n throwIfNotDefined(type, 'type');\n\n const pathParams = {\n groupId,\n relatedGroupId\n };\n\n const queryParams = {\n type\n };\n\n return this.post({\n path: '/api/enterprise/admin/groups/{groupId}/related-groups/{relatedGroupId}',\n pathParams,\n queryParams\n });\n }\n\n /**\n * Create a group\n *\n * @param groupRepresentation groupRepresentation\n * @return Promise<GroupRepresentation>\n */\n createNewGroup(groupRepresentation: GroupRepresentation): Promise<GroupRepresentation> {\n throwIfNotDefined(groupRepresentation, 'groupRepresentation');\n\n return this.post({\n path: '/api/enterprise/admin/groups',\n bodyParam: groupRepresentation,\n returnType: GroupRepresentation\n });\n }\n\n /**\n * Remove a capability from a group\n *\n * @param groupId groupId\n * @param groupCapabilityId groupCapabilityId\n * @return Promise<{}>\n */\n deleteGroupCapability(groupId: number, groupCapabilityId: number): Promise<void> {\n throwIfNotDefined(groupId, 'groupId');\n throwIfNotDefined(groupCapabilityId, 'groupCapabilityId');\n\n const pathParams = {\n groupId,\n groupCapabilityId\n };\n\n return this.delete({\n path: '/api/enterprise/admin/groups/{groupId}/capabilities/{groupCapabilityId}',\n pathParams\n });\n }\n\n /**\n * Delete a member from a group\n *\n * @param groupId groupId\n * @param userId userId\n * @return Promise<{}>\n */\n deleteGroupMember(groupId: number, userId: number): Promise<void> {\n throwIfNotDefined(groupId, 'groupId');\n throwIfNotDefined(userId, 'userId');\n\n const pathParams = {\n groupId,\n userId\n };\n\n return this.delete({\n path: '/api/enterprise/admin/groups/{groupId}/members/{userId}',\n pathParams\n });\n }\n\n /**\n * Delete a group\n *\n * @param groupId groupId\n * @return Promise<{}>\n */\n deleteGroup(groupId: number): Promise<void> {\n throwIfNotDefined(groupId, 'groupId');\n\n const pathParams = {\n groupId\n };\n\n return this.delete({\n path: '/api/enterprise/admin/groups/{groupId}',\n pathParams\n });\n }\n\n /**\n * Delete a related group\n *\n * @param groupId groupId\n * @param relatedGroupId relatedGroupId\n * @return Promise<{}>\n */\n deleteRelatedGroup(groupId: number, relatedGroupId: number): Promise<void> {\n throwIfNotDefined(groupId, 'groupId');\n throwIfNotDefined(relatedGroupId, 'relatedGroupId');\n\n const pathParams = {\n groupId,\n relatedGroupId\n };\n\n return this.delete({\n path: '/api/enterprise/admin/groups/{groupId}/related-groups/{relatedGroupId}',\n pathParams\n });\n }\n\n /**\n * List group capabilities\n *\n * @param groupId groupId\n * @return Promise<string>\n */\n getCapabilities(groupId: number): Promise<string> {\n throwIfNotDefined(groupId, 'groupId');\n\n const pathParams = {\n groupId\n };\n\n return this.get({\n path: '/api/enterprise/admin/groups/{groupId}/potential-capabilities',\n pathParams\n });\n }\n\n /**\n * Get group members\n *\n * @param groupId groupId\n * @param opts Optional parameters\n * @return Promise<ResultListDataRepresentationLightUserRepresentation>\n */\n getGroupUsers(\n groupId: number,\n opts?: { filter?: string; page?: number; pageSize?: number }\n ): Promise<ResultListDataRepresentationLightUserRepresentation> {\n throwIfNotDefined(groupId, 'groupId');\n\n const pathParams = {\n groupId\n };\n\n return this.get({\n path: '/api/enterprise/admin/groups/{groupId}/users',\n pathParams,\n queryParams: opts\n });\n }\n\n /**\n * Get a group\n *\n * @param groupId groupId\n * @param opts Optional parameters\n * @return Promise<AbstractGroupRepresentation>\n */\n getGroup(groupId: number, opts?: { includeAllUsers?: boolean; summary?: boolean }): Promise<AbstractGroupRepresentation> {\n throwIfNotDefined(groupId, 'groupId');\n\n const pathParams = {\n groupId\n };\n\n return this.get({\n path: '/api/enterprise/admin/groups/{groupId}',\n pathParams,\n queryParams: opts\n });\n }\n\n /**\n * Query groups\n *\n * @param opts Optional parameters\n * @return Promise<LightGroupRepresentation>\n */\n getGroups(opts?: { tenantId?: number; functional?: boolean; summary?: boolean }): Promise<LightGroupRepresentation> {\n return this.get({\n path: '/api/enterprise/admin/groups',\n queryParams: opts\n });\n }\n\n /**\n * Get related groups\n *\n * @param groupId groupId\n * @return Promise<LightGroupRepresentation>\n */\n getRelatedGroups(groupId: number): Promise<LightGroupRepresentation> {\n throwIfNotDefined(groupId, 'groupId');\n\n const pathParams = {\n groupId\n };\n\n return this.get({\n path: '/api/enterprise/admin/groups/{groupId}/related-groups',\n pathParams\n });\n }\n\n /**\n * Update a group\n *\n * @param groupId groupId\n * @param groupRepresentation groupRepresentation\n * @return Promise<GroupRepresentation>\n */\n updateGroup(groupId: number, groupRepresentation: GroupRepresentation): Promise<GroupRepresentation> {\n throwIfNotDefined(groupId, 'groupId');\n throwIfNotDefined(groupRepresentation, 'groupRepresentation');\n\n const pathParams = {\n groupId\n };\n\n return this.put({\n path: '/api/enterprise/admin/groups/{groupId}',\n pathParams,\n bodyParam: groupRepresentation,\n returnType: GroupRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { CreateTenantRepresentation, ImageUploadRepresentation, LightTenantRepresentation, TenantEvent, TenantRepresentation } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * AdminTenantsApi service.\n */\nexport class AdminTenantsApi extends BaseApi {\n /**\n * Create a tenant\n * Only a tenant manager may access this endpoint\n *\n * @param createTenantRepresentation createTenantRepresentation\n * @return Promise<LightTenantRepresentation>\n */\n createTenant(createTenantRepresentation: CreateTenantRepresentation): Promise<LightTenantRepresentation> {\n throwIfNotDefined(createTenantRepresentation, 'groupId');\n\n return this.post({\n path: '/api/enterprise/admin/tenants',\n bodyParam: createTenantRepresentation\n });\n }\n\n /**\n * Delete a tenant\n *\n * @param tenantId tenantId\n * @return Promise<{}>\n */\n deleteTenant(tenantId: number): Promise<void> {\n throwIfNotDefined(tenantId, 'tenantId');\n\n const pathParams = {\n tenantId\n };\n\n return this.delete({\n path: '/api/enterprise/admin/tenants/{tenantId}',\n pathParams\n });\n }\n\n /**\n * Get tenant events\n *\n * @param tenantId tenantId\n * @return Promise<TenantEvent>\n */\n getTenantEvents(tenantId: number): Promise<TenantEvent> {\n throwIfNotDefined(tenantId, 'tenantId');\n\n const pathParams = {\n tenantId\n };\n\n return this.get({\n path: '/api/enterprise/admin/tenants/{tenantId}/events',\n pathParams,\n returnType: TenantEvent\n });\n }\n\n /**\n * Get a tenant's logo\n *\n * @param tenantId tenantId\n * @return Promise<{}>\n */\n getTenantLogo(tenantId: number): Promise<any> {\n throwIfNotDefined(tenantId, 'tenantId');\n\n const pathParams = {\n tenantId\n };\n\n return this.get({\n path: '/api/enterprise/admin/tenants/{tenantId}/logo',\n pathParams\n });\n }\n\n /**\n * Get a tenant\n *\n * @param tenantId tenantId\n * @return Promise<TenantRepresentation>\n */\n getTenant(tenantId: number): Promise<TenantRepresentation> {\n throwIfNotDefined(tenantId, 'tenantId');\n\n const pathParams = {\n tenantId\n };\n\n return this.get({\n path: '/api/enterprise/admin/tenants/{tenantId}',\n pathParams,\n returnType: TenantRepresentation\n });\n }\n\n /**\n * List tenants\n * Only a tenant manager may access this endpoint\n *\n * @return Promise<LightTenantRepresentation>\n */\n getTenants(): Promise<LightTenantRepresentation> {\n return this.get({\n path: '/api/enterprise/admin/tenants'\n });\n }\n\n /**\n * Update a tenant\n *\n * @param tenantId tenantId\n * @param createTenantRepresentation createTenantRepresentation\n * @return Promise<TenantRepresentation>\n */\n update(tenantId: number, createTenantRepresentation: CreateTenantRepresentation): Promise<TenantRepresentation> {\n throwIfNotDefined(tenantId, 'tenantId');\n throwIfNotDefined(createTenantRepresentation, 'createTenantRepresentation');\n\n const pathParams = {\n tenantId\n };\n\n return this.put({\n path: '/api/enterprise/admin/tenants/{tenantId}',\n pathParams,\n bodyParam: createTenantRepresentation,\n returnType: TenantRepresentation\n });\n }\n\n /**\n * Update a tenant's logo\n *\n * @param tenantId tenantId\n * @param file file\n * @return Promise<ImageUploadRepresentation>\n */\n uploadTenantLogo(tenantId: number, file: any): Promise<ImageUploadRepresentation> {\n throwIfNotDefined(tenantId, 'tenantId');\n throwIfNotDefined(file, 'file');\n\n const pathParams = {\n tenantId\n };\n\n const formParams = {\n file\n };\n\n return this.post({\n path: '/api/enterprise/admin/tenants/{tenantId}/logo',\n pathParams,\n formParams,\n contentTypes: ['multipart/form-data'],\n returnType: ImageUploadRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n AbstractUserRepresentation,\n BulkUserUpdateRepresentation,\n ResultListDataRepresentationAbstractUserRepresentation,\n UserRepresentation\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\nexport interface GetUsersOpts {\n filter?: string;\n status?: string;\n accountType?: string;\n sort?: string;\n company?: string;\n start?: number;\n page?: number;\n size?: number;\n groupId?: number;\n tenantId?: number;\n summary?: boolean;\n}\n\n/**\n * AdminUsersApi service.\n */\nexport class AdminUsersApi extends BaseApi {\n /**\n * Bulk update a list of users\n *\n * @param update update\n * @return Promise<{}>\n */\n bulkUpdateUsers(update: BulkUserUpdateRepresentation): Promise<any> {\n throwIfNotDefined(update, 'update');\n\n return this.put({\n path: '/api/enterprise/admin/users',\n bodyParam: update\n });\n }\n\n /**\n * Create a user\n *\n * @param userRepresentation userRepresentation\n * @return Promise<UserRepresentation>\n */\n createNewUser(userRepresentation: UserRepresentation): Promise<UserRepresentation> {\n throwIfNotDefined(userRepresentation, 'userRepresentation');\n\n return this.post({\n path: '/api/enterprise/admin/users',\n bodyParam: userRepresentation,\n returnType: UserRepresentation\n });\n }\n\n /**\n * Get a user\n *\n * @param userId userId\n * @param opts Optional parameters\n * @return Promise<AbstractUserRepresentation>\n */\n getUser(userId: number, opts?: { summary?: boolean }): Promise<AbstractUserRepresentation> {\n throwIfNotDefined(userId, 'userId');\n\n const pathParams = {\n userId\n };\n\n return this.get({\n path: '/api/enterprise/admin/users/{userId}',\n pathParams,\n queryParams: opts\n });\n }\n\n /**\n * Query users\n *\n * @param opts Optional parameters\n * @return Promise<ResultListDataRepresentationAbstractUserRepresentation>\n */\n getUsers(opts?: GetUsersOpts): Promise<ResultListDataRepresentationAbstractUserRepresentation> {\n return this.get({\n path: '/api/enterprise/admin/users',\n queryParams: opts\n });\n }\n\n /**\n * Update a user\n *\n * @param userId userId\n * @param userRepresentation userRepresentation\n * @return Promise<{}>\n */\n updateUserDetails(userId: number, userRepresentation: UserRepresentation): Promise<any> {\n throwIfNotDefined(userId, 'userId');\n throwIfNotDefined(userRepresentation, 'userRepresentation');\n\n const pathParams = {\n userId\n };\n\n return this.put({\n path: '/api/enterprise/admin/users/{userId}',\n pathParams,\n bodyParam: userRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n AppDefinitionPublishRepresentation,\n AppDefinitionRepresentation,\n AppDefinitionSaveRepresentation,\n AppDefinitionUpdateResultRepresentation\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * AppDefinitionsApi service.\n */\nexport class AppDefinitionsApi extends BaseApi {\n /**\n * deleteAppDefinition\n *\n * @param appDefinitionId appDefinitionId\n * @return Promise<{}>\n */\n deleteAppDefinition(appDefinitionId: number): Promise<void> {\n throwIfNotDefined(appDefinitionId, 'appDefinitionId');\n\n const pathParams = {\n appDefinitionId\n };\n\n return this.delete({\n path: '/api/enterprise/app-definitions/{appDefinitionId}',\n pathParams\n });\n }\n\n /**\n * Export an app definition\n *\n * This will return a zip file containing the app definition model and all related models (process definitions and forms).\n *\n * @param modelId modelId from a runtime app or the id of an app definition model\n * @return Promise<{}>\n */\n exportAppDefinition(modelId: number): Promise<any> {\n throwIfNotDefined(modelId, 'modelId');\n\n const pathParams = {\n modelId\n };\n\n const contentTypes = ['application/json'];\n const accepts = ['application/json', 'application/zip'];\n\n return this.get({\n path: '/api/enterprise/app-definitions/{modelId}/export',\n pathParams,\n contentTypes,\n accepts\n });\n }\n\n /**\n * Get an app definition\n *\n * @param modelId Application definition ID\n * @return Promise<AppDefinitionRepresentation>\n */\n getAppDefinition(modelId: number): Promise<AppDefinitionRepresentation> {\n throwIfNotDefined(modelId, 'modelId');\n\n const pathParams = {\n modelId\n };\n\n return this.get({\n path: '/api/enterprise/app-definitions/{modelId}',\n pathParams\n });\n }\n\n /**\n * importAndPublishApp\n *\n * @param file file\n * @param opts options\n * @return Promise<AppDefinitionUpdateResultRepresentation>\n */\n importAndPublishApp(file: any, opts?: { renewIdmEntries?: boolean }): Promise<AppDefinitionUpdateResultRepresentation> {\n throwIfNotDefined(file, 'file');\n\n const formParams = {\n file\n };\n\n const queryParams = {\n renewIdmEntries: opts?.renewIdmEntries\n };\n\n return this.post({\n path: '/api/enterprise/app-definitions/publish-app',\n formParams,\n queryParams,\n contentTypes: ['multipart/form-data']\n });\n }\n\n /**\n * Import a new app definition\n *\n * Allows a zip file to be uploaded containing an app definition and any number of included models.\n * <p>This is useful to bootstrap an environment (for users or continuous integration).<p>\n * Before using any processes included in the import the app must be published and deployed.\n *\n * @param file file\n * @param opts Optional parameters\n * @param opts.renewIdmEntries Whether to renew user and group identifiers (default to false)\n * @return Promise<AppDefinitionRepresentation>\n */\n importAppDefinition(file: any, opts?: { renewIdmEntries?: string }): Promise<AppDefinitionRepresentation> {\n throwIfNotDefined(file, 'file');\n\n const formParams = {\n file\n };\n\n return this.post({\n path: '/api/enterprise/app-definitions/import',\n queryParams: opts,\n formParams,\n contentTypes: ['multipart/form-data']\n });\n }\n\n /**\n * Publish an app definition\n *\n * Publishing an app definition makes it available for use. The application must not have any validation errors or an error will be returned.<p>Before an app definition can be used by other users, it must also be deployed for their use\n *\n * @param modelId modelId\n * @param publishModel publishModel\n * @return Promise<AppDefinitionUpdateResultRepresentation>\n */\n publishAppDefinition(modelId: number, publishModel: AppDefinitionPublishRepresentation): Promise<AppDefinitionUpdateResultRepresentation> {\n throwIfNotDefined(modelId, 'modelId');\n throwIfNotDefined(publishModel, 'publishModel');\n\n const pathParams = {\n modelId\n };\n\n return this.post({\n path: '/api/enterprise/app-definitions/{modelId}/publish',\n pathParams,\n bodyParam: publishModel\n });\n }\n\n /**\n * Update an app definition\n *\n * @param modelId Application definition ID\n * @param updatedModel updatedModel |\n * @return Promise<AppDefinitionUpdateResultRepresentation>\n */\n updateAppDefinition(modelId: number, updatedModel: AppDefinitionSaveRepresentation | any): Promise<any> {\n throwIfNotDefined(modelId, 'modelId');\n throwIfNotDefined(updatedModel, 'updatedModel');\n\n const pathParams = {\n modelId\n };\n\n if (!updatedModel['appDefinition']) {\n const formParams = {\n file: updatedModel\n };\n\n return this.post({\n path: '/api/enterprise/app-definitions/{modelId}/import',\n pathParams,\n formParams,\n bodyParam: updatedModel,\n contentTypes: ['multipart/form-data']\n });\n } else {\n return this.put({\n path: '/api/enterprise/app-definitions/{modelId}',\n pathParams,\n bodyParam: updatedModel\n });\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ChecklistOrderRepresentation } from '../model/checklistOrderRepresentation';\nimport { ResultListDataRepresentationTaskRepresentation } from '../model/resultListDataRepresentationTaskRepresentation';\nimport { TaskRepresentation } from '../model/taskRepresentation';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * Checklists service.\n */\nexport class ChecklistsApi extends BaseApi {\n /**\n * Create a task checklist\n *\n * @param taskId taskId\n * @param taskRepresentation taskRepresentation\n * @return Promise<TaskRepresentation>\n */\n addSubtask(taskId: string, taskRepresentation: TaskRepresentation): Promise<TaskRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(taskRepresentation, 'taskRepresentation');\n\n const pathParams = {\n taskId\n };\n\n return this.post({\n path: '/api/enterprise/tasks/{taskId}/checklist',\n pathParams,\n bodyParam: taskRepresentation,\n returnType: TaskRepresentation\n });\n }\n\n /**\n * Get checklist for a task\n *\n * @param taskId taskId\n * @return Promise<ResultListDataRepresentationTaskRepresentation>\n */\n getChecklist(taskId: string): Promise<ResultListDataRepresentationTaskRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.get({\n path: '/api/enterprise/tasks/{taskId}/checklist',\n pathParams,\n returnType: ResultListDataRepresentationTaskRepresentation\n });\n }\n\n /**\n * Change the order of items on a checklist\n *\n * @param taskId taskId\n * @param orderRepresentation orderRepresentation\n * @return Promise<{}>\n */\n orderChecklist(taskId: string, orderRepresentation: ChecklistOrderRepresentation): Promise<any> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(orderRepresentation, 'orderRepresentation');\n\n const pathParams = {\n taskId\n };\n\n return this.put({\n path: '/api/enterprise/tasks/{taskId}/checklist',\n bodyParam: orderRepresentation,\n pathParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { CommentRepresentation } from '../model/commentRepresentation';\nimport { ResultListDataRepresentationCommentRepresentation } from '../model/resultListDataRepresentationCommentRepresentation';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * Comments service.\n */\nexport class ActivitiCommentsApi extends BaseApi {\n /**\n * Add a comment to a process instance\n *\n * @param commentRequest commentRequest\n * @param processInstanceId processInstanceId\n * @return Promise<CommentRepresentation>\n */\n addProcessInstanceComment(commentRequest: CommentRepresentation, processInstanceId: string): Promise<CommentRepresentation> {\n throwIfNotDefined(commentRequest, 'commentRequest');\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.post({\n path: '/api/enterprise/process-instances/{processInstanceId}/comments',\n pathParams,\n bodyParam: commentRequest,\n returnType: CommentRepresentation\n });\n }\n\n /**\n * Add a comment to a task\n *\n * @param commentRequest commentRequest\n * @param taskId taskId\n * @return Promise<CommentRepresentation>\n */\n addTaskComment(commentRequest: CommentRepresentation, taskId: string): Promise<CommentRepresentation> {\n throwIfNotDefined(commentRequest, 'commentRequest');\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.post({\n path: '/api/enterprise/tasks/{taskId}/comments',\n pathParams,\n bodyParam: commentRequest,\n returnType: CommentRepresentation\n });\n }\n\n /**\n * Get comments for a process\n *\n * @param processInstanceId processInstanceId\n * @param opts Optional parameters\n * @return Promise<ResultListDataRepresentationCommentRepresentation>\n */\n getProcessInstanceComments(\n processInstanceId: string,\n opts?: { latestFirst?: boolean }\n ): Promise<ResultListDataRepresentationCommentRepresentation> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.get({\n path: '/api/enterprise/process-instances/{processInstanceId}/comments',\n pathParams,\n queryParams: opts,\n returnType: ResultListDataRepresentationCommentRepresentation\n });\n }\n\n /**\n * Get comments for a task\n *\n * @param taskId taskId\n * @param opts Optional parameters\n * @return Promise<ResultListDataRepresentationCommentRepresentation>\n */\n getTaskComments(taskId: string, opts?: { latestFirst?: boolean }): Promise<ResultListDataRepresentationCommentRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.get({\n path: '/api/enterprise/tasks/{taskId}/comments',\n pathParams,\n queryParams: opts,\n returnType: ResultListDataRepresentationCommentRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n RelatedContentRepresentation,\n ResultListDataRepresentationRelatedContentRepresentation,\n ResultListDataRepresentationRelatedProcessTask\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * Content service.\n */\nexport class ContentApi extends BaseApi {\n /**\n * Attach existing content to a process instance\n *\n * @param processInstanceId processInstanceId\n * @param relatedContent relatedContent\n * @param opts Optional parameters\n * @return Promise<RelatedContentRepresentation>\n */\n createRelatedContentOnProcessInstance(\n processInstanceId: string,\n relatedContent: RelatedContentRepresentation | any,\n opts?: { isRelatedContent?: boolean }\n ): Promise<RelatedContentRepresentation> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n throwIfNotDefined(relatedContent, 'relatedContent');\n\n opts = opts || {};\n\n const pathParams = {\n processInstanceId\n };\n\n if (relatedContent instanceof RelatedContentRepresentation) {\n return this.post({\n path: '/api/enterprise/process-instances/{processInstanceId}/content',\n pathParams,\n queryParams: opts,\n bodyParam: relatedContent,\n returnType: RelatedContentRepresentation\n });\n } else {\n const formParams = {\n file: relatedContent\n };\n\n return this.post({\n path: '/api/enterprise/process-instances/{processInstanceId}/raw-content',\n pathParams,\n formParams,\n queryParams: opts,\n contentTypes: ['multipart/form-data'],\n returnType: RelatedContentRepresentation\n });\n }\n }\n\n /**\n * Attach existing content to a task\n *\n * @param taskId taskId\n * @param relatedContent relatedContent\n * @param opts Optional parameters\n * @return Promise<RelatedContentRepresentation>\n */\n createRelatedContentOnTask(\n taskId: string,\n relatedContent: RelatedContentRepresentation | any,\n opts?: { isRelatedContent?: boolean }\n ): Promise<RelatedContentRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(relatedContent, 'relatedContent');\n\n const pathParams = {\n taskId\n };\n\n if (relatedContent instanceof RelatedContentRepresentation) {\n return this.post({\n path: '/api/enterprise/tasks/{taskId}/content',\n pathParams,\n queryParams: opts,\n bodyParam: relatedContent,\n returnType: RelatedContentRepresentation\n });\n } else {\n const formParams = {\n file: relatedContent\n };\n\n return this.post({\n path: '/api/enterprise/tasks/{taskId}/raw-content',\n pathParams,\n queryParams: opts,\n formParams,\n contentTypes: ['multipart/form-data'],\n returnType: RelatedContentRepresentation\n });\n }\n }\n\n /**\n * Upload content and create a local representation\n *\n * @param file file\n * @return Promise<RelatedContentRepresentation>\n */\n createTemporaryRawRelatedContent(file: any): Promise<RelatedContentRepresentation> {\n throwIfNotDefined(file, 'file');\n\n const formParams = {\n file\n };\n\n return this.post({\n path: '/api/enterprise/content/raw',\n formParams,\n contentTypes: ['multipart/form-data'],\n returnType: RelatedContentRepresentation\n });\n }\n\n /**\n * Create a local representation of content from a remote repository\n *\n * @param relatedContent relatedContent\n * @return Promise<RelatedContentRepresentation>\n */\n createTemporaryRelatedContent(relatedContent: RelatedContentRepresentation): Promise<RelatedContentRepresentation> {\n throwIfNotDefined(relatedContent, 'relatedContent');\n\n return this.post({\n path: '/api/enterprise/content',\n bodyParam: relatedContent,\n returnType: RelatedContentRepresentation\n });\n }\n\n /**\n * Remove a local content representation\n *\n * @param contentId contentId\n * @return Promise<{}>\n */\n deleteContent(contentId: number): Promise<void> {\n throwIfNotDefined(contentId, 'contentId');\n\n const pathParams = {\n contentId\n };\n\n return this.delete({\n path: '/api/enterprise/content/{contentId}',\n pathParams\n });\n }\n\n /**\n * Get a local content representation\n *\n * @param contentId contentId\n * @return Promise<RelatedContentRepresentation>\n */\n getContent(contentId: number): Promise<RelatedContentRepresentation> {\n throwIfNotDefined(contentId, 'contentId');\n\n const pathParams = {\n contentId\n };\n\n return this.get({\n path: '/api/enterprise/content/{contentId}',\n pathParams,\n returnType: RelatedContentRepresentation\n });\n }\n\n /**\n * Get content Raw URL for the given contentId\n *\n * @param contentId contentId\n */\n getRawContentUrl(contentId: number): string {\n return `${this.apiClient.basePath}/api/enterprise/content/${contentId}/raw`;\n }\n\n /**\n * Stream content rendition\n *\n * @param contentId contentId\n * @param renditionType renditionType\n * @return Promise<{}>\n */\n getRawContent(contentId: number, renditionType?: string): Promise<any> {\n throwIfNotDefined(contentId, 'contentId');\n\n if (renditionType) {\n const pathParams = {\n contentId,\n renditionType\n };\n\n return this.get({\n path: '/api/enterprise/content/{contentId}/rendition/{renditionType}',\n pathParams,\n returnType: 'blob',\n responseType: 'blob'\n });\n } else {\n const pathParams = {\n contentId\n };\n\n return this.get({\n path: '/api/enterprise/content/{contentId}/raw',\n pathParams,\n returnType: 'blob',\n responseType: 'blob'\n });\n }\n }\n\n /**\n * List content attached to a process instance\n *\n * @param processInstanceId processInstanceId\n * @param opts Optional parameters\n * @return Promise<ResultListDataRepresentationRelatedContentRepresentation>\n */\n getRelatedContentForProcessInstance(\n processInstanceId: string,\n opts?: { isRelatedContent?: boolean }\n ): Promise<ResultListDataRepresentationRelatedContentRepresentation> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n opts = opts || {};\n\n const pathParams = {\n processInstanceId\n };\n\n return this.get({\n path: '/api/enterprise/process-instances/{processInstanceId}/content',\n pathParams,\n queryParams: opts,\n returnType: ResultListDataRepresentationRelatedContentRepresentation\n });\n }\n\n /**\n * List content attached to a task\n *\n * @param taskId taskId\n * @param opts Optional parameters\n * @return Promise<ResultListDataRepresentationRelatedContentRepresentation>\n */\n getRelatedContentForTask(\n taskId: string,\n opts?: { isRelatedContent?: boolean }\n ): Promise<ResultListDataRepresentationRelatedContentRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.get({\n path: '/api/enterprise/tasks/{taskId}/content',\n pathParams,\n queryParams: opts,\n returnType: ResultListDataRepresentationRelatedContentRepresentation\n });\n }\n\n /**\n * Lists processes and tasks on workflow started with provided document\n *\n * @param sourceId - id of the document that workflow or task has been started with\n * @param source - source of the document that workflow or task has been started with\n * @param size - size of the entries to get\n * @param page - page number\n * @return Promise<ResultListDataRepresentationRelatedProcessTask>\n */\n getProcessesAndTasksOnContent(\n sourceId: string,\n source: string,\n size?: number,\n page?: number\n ): Promise<ResultListDataRepresentationRelatedProcessTask> {\n throwIfNotDefined(sourceId, 'sourceId');\n throwIfNotDefined(source, 'source');\n\n return this.get({\n path: '/api/enterprise/document-runtime',\n queryParams: {\n sourceId,\n source,\n size,\n page\n }\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ResultListDataRepresentationDataSourceRepresentation } from '../model';\nimport { BaseApi } from './base.api';\n\n/**\n * DataSourcesApi service.\n */\nexport class DataSourcesApi extends BaseApi {\n /**\n * Get data sources\n *\n * @param opts Optional parameters\n * @return Promise<ResultListDataRepresentationDataSourceRepresentation>\n */\n getDataSources(opts?: { tenantId?: number }): Promise<ResultListDataRepresentationDataSourceRepresentation> {\n return this.get({\n path: '/api/enterprise/editor/data-sources',\n queryParams: opts\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { DecisionAuditRepresentation } from '../model/decisionAuditRepresentation';\nimport { ResultListDataRepresentationDecisionAuditRepresentation } from '../model/resultListDataRepresentationDecisionAuditRepresentation';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * DecisionAuditsApi service.\n */\nexport class DecisionAuditsApi extends BaseApi {\n /**\n * Get an audit trail\n *\n * @param auditTrailId auditTrailId\n * @return Promise<DecisionAuditRepresentation>\n */\n getAuditTrail(auditTrailId: number): Promise<DecisionAuditRepresentation> {\n throwIfNotDefined(auditTrailId, 'taskId');\n\n const pathParams = {\n auditTrailId\n };\n\n return this.get({\n path: '/api/enterprise/decisions/audits/{auditTrailId}',\n pathParams,\n returnType: DecisionAuditRepresentation\n });\n }\n\n /**\n * Query decision table audit trails\n *\n * @param decisionKey decisionKey\n * @param dmnDeploymentId dmnDeploymentId\n * @return Promise<ResultListDataRepresentationDecisionAuditRepresentation>\n */\n getAuditTrails(decisionKey: string, dmnDeploymentId: number): Promise<ResultListDataRepresentationDecisionAuditRepresentation> {\n throwIfNotDefined(decisionKey, 'decisionKey');\n throwIfNotDefined(dmnDeploymentId, 'dmnDeploymentId');\n\n const queryParams = {\n decisionKey,\n dmnDeploymentId\n };\n\n return this.get({\n path: '/api/enterprise/decisions/audits',\n queryParams,\n returnType: ResultListDataRepresentationDecisionAuditRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { JsonNode, ResultListDataRepresentationRuntimeDecisionTableRepresentation, RuntimeDecisionTableRepresentation } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\nexport interface GetDecisionTablesOpts {\n nameLike?: string;\n keyLike?: string;\n tenantIdLike?: string;\n deploymentId?: number;\n sort?: string;\n order?: string;\n start?: number;\n size?: number;\n}\n\n/**\n * DecisionTablesApi service.\n */\nexport class DecisionTablesApi extends BaseApi {\n /**\n * Get definition for a decision table\n *\n * @param decisionTableId decisionTableId\n * @return Promise<JsonNode>\n */\n getDecisionTableEditorJson(decisionTableId: number): Promise<JsonNode> {\n throwIfNotDefined(decisionTableId, 'decisionTableId');\n\n const pathParams = {\n decisionTableId\n };\n\n return this.get({\n path: '/api/enterprise/decisions/decision-tables/{decisionTableId}/editorJson',\n pathParams\n });\n }\n\n /**\n * Get a decision table\n *\n * @param decisionTableId decisionTableId\n * @return Promise<RuntimeDecisionTableRepresentation>\n */\n getDecisionTable(decisionTableId: number): Promise<RuntimeDecisionTableRepresentation> {\n throwIfNotDefined(decisionTableId, 'decisionTableId');\n\n const pathParams = {\n decisionTableId\n };\n\n return this.get({\n path: '/api/enterprise/decisions/decision-tables/{decisionTableId}',\n pathParams\n });\n }\n\n /**\n * Query decision tables\n *\n * @param opts Optional parameters\n * @return Promise<ResultListDataRepresentationRuntimeDecisionTableRepresentation>\n */\n getDecisionTables(opts?: GetDecisionTablesOpts): Promise<ResultListDataRepresentationRuntimeDecisionTableRepresentation> {\n return this.get({\n path: '/api/enterprise/decisions/decision-tables',\n queryParams: opts\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { EndpointConfigurationRepresentation } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * Endpoints service.\n */\nexport class EndpointsApi extends BaseApi {\n /**\n * Get an endpoint configuration\n *\n * @param endpointConfigurationId endpointConfigurationId\n * @return Promise<EndpointConfigurationRepresentation>\n */\n getEndpointConfiguration(endpointConfigurationId: number): Promise<EndpointConfigurationRepresentation> {\n throwIfNotDefined(endpointConfigurationId, 'endpointConfigurationId');\n\n const pathParams = {\n endpointConfigurationId\n };\n\n return this.get({\n path: '/api/enterprise/editor/endpoints/{endpointConfigurationId}',\n pathParams\n });\n }\n\n /**\n * List endpoint configurations\n *\n * @return Promise<EndpointConfigurationRepresentation>\n */\n getEndpointConfigurations(): Promise<EndpointConfigurationRepresentation> {\n return this.get({\n path: '/api/enterprise/editor/endpoints'\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n FormDefinitionRepresentation,\n FormRepresentation,\n FormSaveRepresentation,\n ResultListDataRepresentationFormRepresentation,\n ResultListDataRepresentationRuntimeFormRepresentation,\n ValidationErrorRepresentation\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\nimport { throwIfNotDefined } from '../../../assert';\n\nexport interface GetFormsOpts {\n nameLike?: string;\n appId?: number;\n tenantId?: number;\n start?: number;\n sort?: string;\n order?: string;\n size?: number;\n}\n\n/**\n * FormModelsApi service.\n */\nexport class FormModelsApi extends BaseApi {\n /**\n * Get form content\n *\n * @param formId formId\n * @return Promise<FormDefinitionRepresentation>\n */\n getFormEditorJson(formId: number): Promise<FormDefinitionRepresentation> {\n throwIfNotDefined(formId, 'formId');\n\n const pathParams = {\n formId\n };\n\n return this.get({\n path: '/api/enterprise/forms/{formId}/editorJson',\n pathParams\n });\n }\n\n /**\n * Get form history\n *\n * @param formId formId\n * @param formHistoryId formHistoryId\n * @return Promise<FormRepresentation>\n */\n getFormHistory(formId: number, formHistoryId: number): Promise<FormRepresentation> {\n throwIfNotDefined(formId, 'formId');\n throwIfNotDefined(formHistoryId, 'formHistoryId');\n\n const pathParams = {\n formId,\n formHistoryId\n };\n\n return this.get({\n path: '/api/enterprise/editor/form-models/{formId}/history/{formHistoryId}',\n pathParams,\n returnType: FormRepresentation\n });\n }\n\n /**\n * Get a form model\n *\n * @param formId {number} formId\n * @return Promise<FormRepresentation>\n */\n getForm(formId: number): Promise<FormRepresentation> {\n throwIfNotDefined(formId, 'formId');\n\n const pathParams = {\n formId\n };\n\n return this.get({\n path: '/api/enterprise/editor/form-models/{formId}',\n pathParams,\n returnType: FormRepresentation\n });\n }\n\n /**\n * Get forms\n *\n * @param input input\n * @return Promise<FormRepresentation>\n */\n getForms(\n input: string[] | GetFormsOpts\n ): Promise<FormRepresentation | ResultListDataRepresentationRuntimeFormRepresentation | ResultListDataRepresentationFormRepresentation> {\n if (typeof input === 'string') {\n const queryParams = {\n formId: buildCollectionParam(input, 'multi')\n };\n\n return this.get({\n path: '/api/enterprise/editor/form-models/values',\n queryParams,\n returnType: FormRepresentation\n });\n } else if (typeof input === 'object') {\n return this.get({\n path: '/api/enterprise/forms',\n queryParams: input\n });\n } else {\n return this.get({\n path: '/api/enterprise/editor/form-models',\n returnType: ResultListDataRepresentationFormRepresentation\n });\n }\n }\n\n /**\n * Update form model content\n *\n * @param formId ID of the form to update\n * @param saveRepresentation saveRepresentation\n * @return Promise<FormRepresentation>\n */\n saveForm(formId: number, saveRepresentation: FormSaveRepresentation): Promise<FormRepresentation> {\n throwIfNotDefined(formId, 'formId');\n throwIfNotDefined(saveRepresentation, 'saveRepresentation');\n\n const pathParams = {\n formId\n };\n\n return this.put({\n path: '/api/enterprise/editor/form-models/{formId}',\n pathParams,\n bodyParam: saveRepresentation,\n returnType: FormRepresentation\n });\n }\n\n /**\n * Validate form model content\n *\n * The model content to be validated must be specified in the POST body\n *\n * @param formId formId\n * @param saveRepresentation saveRepresentation\n * @return Promise<ValidationErrorRepresentation>\n */\n validateModel(formId: number, saveRepresentation: FormSaveRepresentation): Promise<ValidationErrorRepresentation> {\n throwIfNotDefined(formId, 'formId');\n throwIfNotDefined(saveRepresentation, 'saveRepresentation');\n\n const pathParams = {\n formId\n };\n\n return this.get({\n path: '/api/enterprise/editor/form-models/{formId}/validate',\n pathParams,\n bodyParam: saveRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ResultListDataRepresentationLightGroupRepresentation, ResultListDataRepresentationLightUserRepresentation } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\nexport interface GetGroupsOpts {\n filter?: string;\n groupId?: number;\n externalId?: string;\n externalIdCaseInsensitive?: string;\n tenantId?: string;\n}\n\n/**\n * Groups service.\n */\nexport class ActivitiGroupsApi extends BaseApi {\n /**\n * Query groups\n *\n * @param opts Optional parameters\n * @return Promise<ResultListDataRepresentationLightGroupRepresentation>\n */\n getGroups(opts?: GetGroupsOpts): Promise<ResultListDataRepresentationLightGroupRepresentation> {\n return this.get({\n path: '/api/enterprise/groups',\n queryParams: opts\n });\n }\n\n /**\n * List members of a group\n *\n * @param groupId groupId\n * @return Promise<ResultListDataRepresentationLightUserRepresentation>\n */\n getUsersForGroup(groupId: number): Promise<ResultListDataRepresentationLightUserRepresentation> {\n throwIfNotDefined(groupId, 'formId');\n\n const pathParams = {\n groupId\n };\n\n return this.get({\n path: '/api/enterprise/groups/{groupId}/users',\n pathParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SyncLogEntryRepresentation } from '../model/syncLogEntryRepresentation';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * IDMSyncApi service.\n */\nexport class IDMSyncApi extends BaseApi {\n /**\n * Get log file for a sync log entry\n *\n * @param syncLogEntryId syncLogEntryId\n * @return Promise<{}>\n */\n getLogFile(syncLogEntryId: number): Promise<any> {\n throwIfNotDefined(syncLogEntryId, 'syncLogEntryId');\n\n const pathParams = {\n syncLogEntryId\n };\n\n return this.get({\n path: '/api/enterprise/idm-sync-log-entries/{syncLogEntryId}/logfile',\n pathParams\n });\n }\n\n /**\n * List sync log entries\n *\n * @param opts Optional parameters\n * @param opts.tenantId {number} tenantId\n * @param opts.page {number} page\n * @param opts.start {number} start\n * @param opts.size {number} size\n * @return Promise<SyncLogEntryRepresentation>\n */\n getSyncLogEntries(opts?: { tenantId?: number; page?: number; start?: number; size?: number }): Promise<SyncLogEntryRepresentation> {\n return this.get({\n path: '/api/enterprise/idm-sync-log-entries',\n queryParams: opts,\n returnType: SyncLogEntryRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n ResultListDataRepresentationAlfrescoContentRepresentation,\n ResultListDataRepresentationAlfrescoNetworkRepresenation,\n ResultListDataRepresentationAlfrescoSiteRepresenation\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * IntegrationAlfrescoCloudApi service.\n */\nexport class IntegrationAlfrescoCloudApi extends BaseApi {\n /**\n * Alfresco Cloud Authorization\n * Returns Alfresco OAuth HTML Page\n *\n * @param code code\n * @return Promise<{}>\n */\n confirmAuthorisation(code: string): Promise<any> {\n throwIfNotDefined(code, 'code');\n\n const queryParams = {\n code\n };\n\n return this.get({\n path: '/api/enterprise/integration/alfresco-cloud/confirm-auth-request',\n queryParams,\n accepts: ['text/html']\n });\n }\n\n /**\n * List Alfresco networks\n *\n * @return Promise<ResultListDataRepresentationAlfrescoNetworkRepresenation>\n */\n getAllNetworks(): Promise<ResultListDataRepresentationAlfrescoNetworkRepresenation> {\n return this.get({\n path: '/api/enterprise/integration/alfresco-cloud/networks'\n });\n }\n\n /**\n * List Alfresco sites\n * Returns ALL Sites\n *\n * @param networkId networkId\n * @return Promise<ResultListDataRepresentationAlfrescoSiteRepresenation>\n */\n getAllSites(networkId: string): Promise<ResultListDataRepresentationAlfrescoSiteRepresenation> {\n throwIfNotDefined(networkId, 'networkId');\n\n const pathParams = {\n networkId\n };\n\n return this.get({\n path: '/api/enterprise/integration/alfresco-cloud/networks/{networkId}/sites',\n pathParams\n });\n }\n\n /**\n * List files and folders inside a specific folder identified by path\n *\n * @param networkId networkId\n * @param opts Optional parameters\n * @param opts.siteId {string} siteId\n * @param opts.path {string} path\n * @return Promise<ResultListDataRepresentationAlfrescoContentRepresentation>\n */\n getContentInFolderPath(\n networkId: string,\n opts?: { siteId?: string; path?: string }\n ): Promise<ResultListDataRepresentationAlfrescoContentRepresentation> {\n throwIfNotDefined(networkId, 'networkId');\n\n const pathParams = {\n networkId\n };\n\n return this.get({\n path: '/api/enterprise/integration/alfresco-cloud/networks/{networkId}/sites/{siteId}/folderpath/{folderPath}/content',\n pathParams,\n queryParams: opts\n });\n }\n\n /**\n * List files and folders inside a specific folder\n *\n * @param networkId networkId\n * @param folderId folderId\n * @return Promise<ResultListDataRepresentationAlfrescoContentRepresentation>\n */\n getContentInFolder(networkId: string, folderId: string): Promise<ResultListDataRepresentationAlfrescoContentRepresentation> {\n throwIfNotDefined(networkId, 'networkId');\n throwIfNotDefined(folderId, 'folderId');\n\n const pathParams = {\n networkId,\n folderId\n };\n\n return this.get({\n path: '/api/enterprise/integration/alfresco-cloud/networks/{networkId}/folders/{folderId}/content',\n pathParams\n });\n }\n\n /**\n * List files and folders inside a specific site\n *\n * @param networkId networkId\n * @param siteId siteId\n * @return Promise<ResultListDataRepresentationAlfrescoContentRepresentation>\n */\n getContentInSite(networkId: string, siteId: string): Promise<ResultListDataRepresentationAlfrescoContentRepresentation> {\n throwIfNotDefined(networkId, 'networkId');\n throwIfNotDefined(siteId, 'siteId');\n\n const pathParams = {\n networkId,\n siteId\n };\n\n return this.get({\n path: '/api/enterprise/integration/alfresco-cloud/networks/{networkId}/sites/{siteId}/content',\n pathParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n ResultListDataRepresentationAlfrescoContentRepresentation,\n ResultListDataRepresentationAlfrescoEndpointRepresentation,\n ResultListDataRepresentationAlfrescoSiteRepresenation\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * IntegrationAlfrescoOnPremiseApi service.\n */\nexport class IntegrationAlfrescoOnPremiseApi extends BaseApi {\n /**\n * List Alfresco sites\n * Returns ALL Sites\n *\n * @param repositoryId repositoryId\n * @return Promise<ResultListDataRepresentationAlfrescoSiteRepresenation>\n */\n getAllSites(repositoryId: string): Promise<ResultListDataRepresentationAlfrescoSiteRepresenation> {\n throwIfNotDefined(repositoryId, 'networkId');\n\n const pathParams = {\n repositoryId\n };\n\n return this.get({\n path: '/api/enterprise/integration/alfresco/{repositoryId}/sites',\n pathParams\n });\n }\n\n /**\n * List files and folders inside a specific folder identified by folder path\n *\n * @param repositoryId repositoryId\n * @param siteId siteId\n * @param folderPath folderPath\n * @return Promise<ResultListDataRepresentationAlfrescoContentRepresentation>\n */\n getContentInFolderPath(\n repositoryId: string,\n siteId: string,\n folderPath: string\n ): Promise<ResultListDataRepresentationAlfrescoContentRepresentation> {\n throwIfNotDefined(repositoryId, 'networkId');\n throwIfNotDefined(siteId, 'siteId');\n throwIfNotDefined(folderPath, 'folderPath');\n\n const pathParams = {\n repositoryId,\n siteId,\n folderPath\n };\n\n return this.get({\n path: '/api/enterprise/rest/integration/alfresco/{repositoryId}/sites/{siteId}/folderpath/{folderPath}/content',\n pathParams\n });\n }\n\n /**\n * List files and folders inside a specific folder\n *\n * @param repositoryId repositoryId\n * @param folderId folderId\n * @return Promise<ResultListDataRepresentationAlfrescoContentRepresentation>\n */\n getContentInFolder(repositoryId: string, folderId: string): Promise<ResultListDataRepresentationAlfrescoContentRepresentation> {\n throwIfNotDefined(repositoryId, 'networkId');\n throwIfNotDefined(folderId, 'folderId');\n\n const pathParams = {\n repositoryId,\n folderId\n };\n\n return this.get({\n path: '/api/enterprise/integration/alfresco/{repositoryId}/folders/{folderId}/content',\n pathParams\n });\n }\n\n /**\n * List files and folders inside a specific site\n *\n * @param repositoryId repositoryId\n * @param siteId siteId\n * @return Promise<ResultListDataRepresentationAlfrescoContentRepresentation>\n */\n getContentInSite(repositoryId: string, siteId: string): Promise<ResultListDataRepresentationAlfrescoContentRepresentation> {\n throwIfNotDefined(repositoryId, 'networkId');\n throwIfNotDefined(siteId, 'siteId');\n\n const pathParams = {\n repositoryId,\n siteId\n };\n\n return this.get({\n path: '/api/enterprise/integration/alfresco/{repositoryId}/sites/{siteId}/content',\n pathParams\n });\n }\n\n /**\n * List Alfresco repositories\n *\n * A tenant administrator can configure one or more Alfresco repositories to use when working with content.\n *\n * @param opts Optional parameters\n * @param opts.tenantId {string} tenantId\n * @param opts.includeAccounts {boolean} includeAccounts (default to true)\n * @return Promise<ResultListDataRepresentationAlfrescoEndpointRepresentation>\n */\n getRepositories(opts?: { tenantId?: string; includeAccounts?: boolean }): Promise<ResultListDataRepresentationAlfrescoEndpointRepresentation> {\n return this.get({\n path: '/api/enterprise/profile/accounts/alfresco',\n queryParams: opts,\n returnType: ResultListDataRepresentationAlfrescoEndpointRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ResultListDataRepresentationBoxContent, UserAccountCredentialsRepresentation } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * IntegrationBoxApi service.\n */\nexport class IntegrationBoxApi extends BaseApi {\n /**\n * Box Authorization\n * Returns Box OAuth HTML Page\n *\n * @return Promise<{}>\n */\n confirmAuthorisation(): Promise<any> {\n return this.get({\n path: '/api/enterprise/integration/box/confirm-auth-request',\n accepts: ['text/html']\n });\n }\n\n /**\n * Add Box account\n *\n * @param userId userId\n * @param credentials credentials\n * @return Promise<{}>\n */\n createRepositoryAccount(userId: number, credentials: UserAccountCredentialsRepresentation): Promise<any> {\n throwIfNotDefined(userId, 'userId');\n throwIfNotDefined(credentials, 'credentials');\n\n const pathParams = {\n userId\n };\n\n return this.post({\n path: '/api/enterprise/integration/box/{userId}/account',\n pathParams,\n bodyParam: credentials\n });\n }\n\n /**\n * Delete account information\n *\n * @param userId userId\n * @return Promise<{}>\n */\n deleteRepositoryAccount(userId: number): Promise<void> {\n throwIfNotDefined(userId, 'userId');\n\n const pathParams = {\n userId\n };\n\n const accepts = ['*/*'];\n\n return this.delete({\n path: '/api/enterprise/integration/box/{userId}/account',\n pathParams,\n accepts\n });\n }\n\n /**\n * Get status information\n *\n * @return Promise<boolean>\n */\n getBoxPluginStatus(): Promise<boolean> {\n return this.get({\n path: '/api/enterprise/integration/box/status',\n accepts: ['*/*']\n });\n }\n\n /**\n * List file and folders\n *\n * @param opts Optional parameters\n * @param opts.filter filter\n * @param opts.parent parent\n * @return Promise<ResultListDataRepresentationBoxContent>\n */\n getFiles(opts?: { filter?: string; parent?: string }): Promise<ResultListDataRepresentationBoxContent> {\n opts = opts || {};\n\n return this.get({\n path: '/api/enterprise/integration/box/files',\n queryParams: opts,\n accepts: ['*/*']\n });\n }\n\n /**\n * Get account information\n *\n * @param userId userId\n * @return Promise<{}>\n */\n getRepositoryAccount(userId: number): Promise<any> {\n throwIfNotDefined(userId, 'userId');\n\n const pathParams = {\n userId\n };\n\n return this.get({\n path: '/api/enterprise/integration/box/{userId}/account',\n pathParams,\n accepts: ['*/*']\n });\n }\n\n /**\n * Update account information\n *\n * @param userId userId\n * @param credentials credentials\n * @return Promise<{}>\n */\n updateRepositoryAccount(userId: number, credentials: UserAccountCredentialsRepresentation): Promise<any> {\n throwIfNotDefined(userId, 'userId');\n throwIfNotDefined(credentials, 'credentials');\n\n const pathParams = {\n userId\n };\n\n return this.put({\n path: '/api/enterprise/integration/box/{userId}/account',\n pathParams,\n bodyParam: credentials,\n accepts: ['*/*']\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ResultListDataRepresentationGoogleDriveContent } from '../model';\nimport { BaseApi } from './base.api';\n\n/**\n * IntegrationDriveApi service.\n */\nexport class IntegrationDriveApi extends BaseApi {\n /**\n * Drive Authorization\n * Returns Drive OAuth HTML Page\n *\n * @return Promise<{}>\n */\n confirmAuthorisation(): Promise<any> {\n return this.get({\n path: '/api/enterprise/integration/google-drive/confirm-auth-request',\n accepts: ['text/html']\n });\n }\n\n /**\n * List files and folders\n *\n * @param opts Optional parameters\n * @param opts.filter {string} filter\n * @param opts.parent {string} parent\n * @param opts.currentFolderOnly {boolean} currentFolderOnly\n * @return Promise<ResultListDataRepresentationGoogleDriveContent>\n */\n getFiles(opts?: { filter?: string; parent?: string; currentFolderOnly?: boolean }): Promise<ResultListDataRepresentationGoogleDriveContent> {\n return this.get({\n path: '/api/enterprise/integration/google-drive/files',\n queryParams: opts\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ModelRepresentation, ObjectNode, ResultListDataRepresentationModelRepresentation, ValidationErrorRepresentation } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\nexport interface GetModelsQuery {\n filter?: string;\n sort?: string;\n modelType?: number;\n referenceId?: number;\n}\n\n/**\n * Models service.\n */\nexport class ModelsApi extends BaseApi {\n /**\n * Create a new model\n *\n * @param modelRepresentation modelRepresentation\n * @return Promise<ModelRepresentation>\n */\n createModel(modelRepresentation: ModelRepresentation): Promise<ModelRepresentation> {\n throwIfNotDefined(modelRepresentation, 'modelRepresentation');\n\n return this.post({\n path: '/api/enterprise/models',\n bodyParam: modelRepresentation,\n returnType: ModelRepresentation\n });\n }\n\n /**\n * Delete a model\n *\n * @param modelId modelId\n * @param opts Optional parameters\n * @param opts.cascade cascade\n * @param opts.deleteRuntimeApp deleteRuntimeApp\n * @return Promise<{}>\n */\n deleteModel(modelId: number, opts?: { cascade?: boolean; deleteRuntimeApp?: boolean }): Promise<any> {\n throwIfNotDefined(modelId, 'modelId');\n\n const pathParams = {\n modelId\n };\n\n const queryParams = {\n cascade: opts?.cascade,\n deleteRuntimeApp: opts?.deleteRuntimeApp\n };\n\n return this.delete({\n path: '/api/enterprise/models/{modelId}',\n pathParams,\n queryParams\n });\n }\n\n /**\n * Duplicate an existing model\n *\n * @param modelId modelId\n * @param modelRepresentation modelRepresentation\n * @return Promise<ModelRepresentation>\n */\n duplicateModel(modelId: number, modelRepresentation: ModelRepresentation): Promise<ModelRepresentation> {\n throwIfNotDefined(modelId, 'modelId');\n throwIfNotDefined(modelRepresentation, 'modelRepresentation');\n\n const pathParams = {\n modelId\n };\n\n return this.post({\n path: '/api/enterprise/models/{modelId}/clone',\n pathParams,\n bodyParam: modelRepresentation,\n returnType: ModelRepresentation\n });\n }\n\n /**\n * Get model content\n *\n * @param modelId modelId\n * @return Promise<ObjectNode>\n */\n getModelJSON(modelId: number): Promise<ObjectNode> {\n throwIfNotDefined(modelId, 'modelId');\n\n const pathParams = {\n modelId\n };\n\n return this.get({\n path: '/api/enterprise/models/{modelId}/editor/json',\n pathParams\n });\n }\n\n /**\n * Get a model's thumbnail image\n *\n * @param modelId modelId\n * @return Promise<string>\n */\n getModelThumbnail(modelId: number): Promise<string> {\n throwIfNotDefined(modelId, 'modelId');\n\n const pathParams = {\n modelId\n };\n\n return this.get({\n path: '/api/enterprise/models/{modelId}/thumbnail',\n pathParams,\n accepts: ['image/png']\n });\n }\n\n /**\n * Get a model\n *\n * Models act as containers for process, form, decision table and app definitions\n *\n * @param modelId modelId\n * @param opts Optional parameters\n * @return Promise<ModelRepresentation>\n */\n getModel(modelId: number, opts?: { includePermissions?: boolean }): Promise<ModelRepresentation> {\n throwIfNotDefined(modelId, 'modelId');\n\n const pathParams = {\n modelId\n };\n\n const queryParams = {\n includePermissions: opts?.includePermissions\n };\n\n return this.get({\n path: '/api/enterprise/models/{modelId}',\n pathParams,\n queryParams,\n returnType: ModelRepresentation\n });\n }\n\n /**\n * List process definition models shared with the current user\n *\n * @return Promise<ResultListDataRepresentationModelRepresentation>\n */\n getModelsToIncludeInAppDefinition(): Promise<ResultListDataRepresentationModelRepresentation> {\n return this.get({\n path: '/api/enterprise/models-for-app-definition',\n returnType: ResultListDataRepresentationModelRepresentation\n });\n }\n\n /**\n * List models (process, form, decision rule or app)\n *\n * @param opts Optional parameters\n * @return Promise<ResultListDataRepresentationModelRepresentation>\n */\n getModels(opts?: GetModelsQuery): Promise<ResultListDataRepresentationModelRepresentation> {\n return this.get({\n path: '/api/enterprise/models',\n queryParams: opts,\n returnType: ResultListDataRepresentationModelRepresentation\n });\n }\n\n /**\n * Create a new version of a model\n *\n * @param modelId modelId\n * @param file file\n * @return Promise<ModelRepresentation>\n */\n importNewVersion(modelId: number, file: any): Promise<ModelRepresentation> {\n throwIfNotDefined(modelId, 'modelId');\n throwIfNotDefined(file, 'file');\n\n const pathParams = {\n modelId\n };\n\n const formParams = {\n file\n };\n\n return this.post({\n path: '/api/enterprise/models/{modelId}/newversion',\n pathParams,\n formParams,\n contentTypes: ['multipart/form-data'],\n returnType: ModelRepresentation\n });\n }\n\n /**\n * Import a BPMN 2.0 XML file\n *\n * @param file file\n * @return Promise<ModelRepresentation>\n */\n importProcessModel(file: any): Promise<ModelRepresentation> {\n throwIfNotDefined(file, 'file');\n\n const formParams = {\n file\n };\n\n return this.post({\n path: '/api/enterprise/process-models/import',\n contentTypes: ['multipart/form-data'],\n formParams,\n returnType: ModelRepresentation\n });\n }\n\n /**\n * Update model content\n *\n * @param modelId modelId\n * @param values values\n * @return Promise<ModelRepresentation>\n */\n saveModel(modelId: number, values: any): Promise<ModelRepresentation> {\n throwIfNotDefined(modelId, 'modelId');\n throwIfNotDefined(values, 'values');\n\n const pathParams = {\n modelId\n };\n\n return this.post({\n path: '/api/enterprise/models/{modelId}/editor/json',\n pathParams,\n bodyParam: values,\n returnType: ModelRepresentation\n });\n }\n\n /**\n * Update a model\n *\n * This method allows you to update the metadata of a model. In order to update the content of the model you will need to call the specific endpoint for that model type.\n *\n * @param modelId modelId\n * @param updatedModel updatedModel\n * @return Promise<ModelRepresentation>\n */\n updateModel(modelId: number, updatedModel: ModelRepresentation): Promise<ModelRepresentation> {\n throwIfNotDefined(modelId, 'modelId');\n throwIfNotDefined(updatedModel, 'updatedModel');\n\n const pathParams = {\n modelId\n };\n\n return this.put({\n path: '/api/enterprise/models/{modelId}',\n pathParams,\n bodyParam: updatedModel,\n returnType: ModelRepresentation\n });\n }\n\n /**\n * Validate model content\n *\n * @param modelId modelId\n * @param opts Optional parameters\n * @param opts.values values\n * @return Promise<ValidationErrorRepresentation>\n */\n validateModel(modelId: number, opts?: { values?: any }): Promise<ValidationErrorRepresentation> {\n throwIfNotDefined(modelId, 'modelId');\n\n const postBody = opts?.values;\n\n const pathParams = {\n modelId\n };\n\n return this.post({\n path: '/api/enterprise/models/{modelId}/editor/validate',\n pathParams,\n bodyParam: postBody,\n contentTypes: ['application/x-www-form-urlencoded']\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * ModelsBpmnApi service.\n */\nexport class ModelsBpmnApi extends BaseApi {\n /**\n * Export a historic version of a process definition as BPMN 2.0 XML\n *\n * @param processModelId processModelId\n * @param processModelHistoryId processModelHistoryId\n * @return Promise<{}>\n */\n getHistoricProcessModelBpmn20Xml(processModelId: number, processModelHistoryId: number): Promise<any> {\n throwIfNotDefined(processModelId, 'processModelId');\n throwIfNotDefined(processModelHistoryId, 'processModelHistoryId');\n\n const pathParams = {\n processModelId,\n processModelHistoryId\n };\n\n const accepts = ['application/xml'];\n\n return this.get({\n path: '/api/enterprise/models/{processModelId}/history/{processModelHistoryId}/bpmn20',\n pathParams,\n accepts\n });\n }\n\n /**\n * Export a process definition as BPMN 2.0 XML\n *\n * @param processModelId processModelId\n * @return Promise<{}>\n */\n getProcessModelBpmn20Xml(processModelId: number): Promise<any> {\n throwIfNotDefined(processModelId, 'processModelId');\n\n const pathParams = {\n processModelId\n };\n\n const accepts = ['application/xml'];\n\n return this.get({\n path: '/api/enterprise/models/{processModelId}/bpmn20',\n pathParams,\n accepts\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ModelRepresentation } from '../model/modelRepresentation';\nimport { ResultListDataRepresentationModelRepresentation } from '../model/resultListDataRepresentationModelRepresentation';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * ModelsHistoryApi service.\n */\nexport class ModelsHistoryApi extends BaseApi {\n /**\n * List a model's historic versions\n *\n * @param modelId modelId\n * @param opts Optional parameters\n * @param opts.includeLatestVersion includeLatestVersion\n * @return Promise<ResultListDataRepresentationModelRepresentation>\n */\n getModelHistoryCollection(modelId: number, opts?: { includeLatestVersion?: boolean }): Promise<ResultListDataRepresentationModelRepresentation> {\n throwIfNotDefined(modelId, 'modelId');\n\n const pathParams = {\n modelId\n };\n\n const queryParams = {\n includeLatestVersion: opts?.includeLatestVersion\n };\n\n return this.get({\n path: '/api/enterprise/models/{modelId}/history',\n pathParams,\n queryParams,\n returnType: ResultListDataRepresentationModelRepresentation\n });\n }\n\n /**\n * Get a historic version of a model\n *\n * @param modelId modelId\n * @param modelHistoryId modelHistoryId\n * @return Promise<ModelRepresentation>\n */\n getProcessModelHistory(modelId: number, modelHistoryId: number): Promise<ModelRepresentation> {\n throwIfNotDefined(modelId, 'modelId');\n throwIfNotDefined(modelHistoryId, 'modelHistoryId');\n\n const pathParams = {\n modelId,\n modelHistoryId\n };\n\n return this.get({\n path: '/api/enterprise/models/{modelId}/history/{modelHistoryId}',\n pathParams,\n returnType: ModelRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n FormDefinitionRepresentation,\n FormValueRepresentation,\n IdentityLinkRepresentation,\n ResultListDataRepresentationProcessDefinitionRepresentation,\n ResultListDataRepresentationRuntimeDecisionTableRepresentation,\n ResultListDataRepresentationRuntimeFormRepresentation\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * ProcessDefinitionsApi service.\n */\nexport class ProcessDefinitionsApi extends BaseApi {\n /**\n * Add a user or group involvement to a process definition\n *\n * @param processDefinitionId processDefinitionId\n * @param identityLinkRepresentation identityLinkRepresentation\n * @return Promise<IdentityLinkRepresentation>\n */\n createIdentityLink(processDefinitionId: string, identityLinkRepresentation: IdentityLinkRepresentation): Promise<IdentityLinkRepresentation> {\n throwIfNotDefined(processDefinitionId, 'processDefinitionId');\n throwIfNotDefined(identityLinkRepresentation, 'identityLinkRepresentation');\n\n const pathParams = {\n processDefinitionId\n };\n\n return this.post({\n path: '/api/enterprise/process-definitions/{processDefinitionId}/identitylinks',\n pathParams,\n bodyParam: identityLinkRepresentation\n });\n }\n\n /**\n * Remove a user or group involvement from a process definition\n *\n * @param processDefinitionId Process definition ID\n * @param family Identity type\n * @param identityId User or group ID\n * @return Promise<{}>\n */\n deleteIdentityLink(processDefinitionId: string, family: string, identityId: string): Promise<void> {\n throwIfNotDefined(processDefinitionId, 'processDefinitionId');\n throwIfNotDefined(family, 'family');\n throwIfNotDefined(identityId, 'identityId');\n\n const pathParams = {\n processDefinitionId,\n family,\n identityId\n };\n\n return this.delete({\n path: '/api/enterprise/process-definitions/{processDefinitionId}/identitylinks/{family}/{identityId}',\n pathParams\n });\n }\n\n /**\n * Get a user or group involvement with a process definition\n *\n * @param processDefinitionId Process definition ID\n * @param family Identity type\n * @param identityId User or group ID\n * @return Promise<IdentityLinkRepresentation>\n */\n getIdentityLinkType(processDefinitionId: string, family: string, identityId: string): Promise<IdentityLinkRepresentation> {\n throwIfNotDefined(processDefinitionId, 'processDefinitionId');\n throwIfNotDefined(family, 'family');\n throwIfNotDefined(identityId, 'identityId');\n\n const pathParams = {\n processDefinitionId,\n family,\n identityId\n };\n\n return this.get({\n path: '/api/enterprise/process-definitions/{processDefinitionId}/identitylinks/{family}/{identityId}',\n pathParams\n });\n }\n\n /**\n * List either the users or groups involved with a process definition\n *\n * @param processDefinitionId processDefinitionId\n * @param family Identity type\n * @return Promise<IdentityLinkRepresentation>\n */\n getIdentityLinksForFamily(processDefinitionId: string, family: string): Promise<IdentityLinkRepresentation> {\n throwIfNotDefined(processDefinitionId, 'processDefinitionId');\n throwIfNotDefined(family, 'family');\n\n const pathParams = {\n processDefinitionId,\n family\n };\n\n return this.get({\n path: '/api/enterprise/process-definitions/{processDefinitionId}/identitylinks/{family}',\n pathParams\n });\n }\n\n /**\n * List the users and groups involved with a process definition\n *\n * @param processDefinitionId processDefinitionId\n * @return Promise<IdentityLinkRepresentation>\n */\n getIdentityLinks(processDefinitionId: string): Promise<IdentityLinkRepresentation> {\n throwIfNotDefined(processDefinitionId, 'processDefinitionId');\n\n const pathParams = {\n processDefinitionId\n };\n\n return this.get({\n path: '/api/enterprise/process-definitions/{processDefinitionId}/identitylinks',\n pathParams\n });\n }\n\n /**\n * List the decision tables associated with a process definition\n *\n * @param processDefinitionId processDefinitionId\n * @return Promise<ResultListDataRepresentationRuntimeDecisionTableRepresentation>\n */\n getProcessDefinitionDecisionTables(processDefinitionId: string): Promise<ResultListDataRepresentationRuntimeDecisionTableRepresentation> {\n throwIfNotDefined(processDefinitionId, 'processDefinitionId');\n\n const pathParams = {\n processDefinitionId\n };\n\n return this.get({\n path: '/api/enterprise/process-definitions/{processDefinitionId}/decision-tables',\n pathParams\n });\n }\n\n /**\n * List the forms associated with a process definition\n *\n * @param processDefinitionId processDefinitionId\n * @return Promise<ResultListDataRepresentationRuntimeFormRepresentation>\n */\n getProcessDefinitionForms(processDefinitionId: string): Promise<ResultListDataRepresentationRuntimeFormRepresentation> {\n throwIfNotDefined(processDefinitionId, 'processDefinitionId');\n\n const pathParams = {\n processDefinitionId\n };\n\n return this.get({\n path: '/api/enterprise/process-definitions/{processDefinitionId}/forms',\n pathParams\n });\n }\n\n /**\n * Retrieve the start form for a process definition\n *\n * @param processDefinitionId processDefinitionId\n * @return Promise<FormDefinitionRepresentation>\n */\n getProcessDefinitionStartForm(processDefinitionId: string): Promise<FormDefinitionRepresentation> {\n const pathParams = {\n processDefinitionId\n };\n\n return this.get({\n path: '/api/enterprise/process-definitions/{processDefinitionId}/start-form',\n pathParams\n });\n }\n\n /**\n * Retrieve a list of process definitions\n *\n * Get a list of process definitions (visible within the tenant of the user)\n *\n * @param opts Optional parameters\n * @return Promise<ResultListDataRepresentationProcessDefinitionRepresentation>\n */\n getProcessDefinitions(opts?: {\n latest?: boolean;\n appDefinitionId?: number;\n deploymentId?: string;\n }): Promise<ResultListDataRepresentationProcessDefinitionRepresentation> {\n return this.get({\n path: '/api/enterprise/process-definitions',\n queryParams: opts\n });\n }\n\n /**\n * Retrieve field values (e.g. the typeahead field)\n *\n * @param processDefinitionId processDefinitionId\n * @param field field\n * @return Promise<FormValueRepresentation[]>\n */\n getRestFieldValues(processDefinitionId: string, field: string): Promise<FormValueRepresentation[]> {\n const pathParams = {\n processDefinitionId,\n field\n };\n\n return this.get({\n path: '/api/enterprise/process-definitions/{processDefinitionId}/start-form-values/{field}',\n pathParams\n });\n }\n\n /**\n * Retrieve field values (eg. the table field)\n *\n * @param processDefinitionId processDefinitionId\n * @param field field\n * @param column column\n * @return Promise<FormValueRepresentation []>\n */\n getRestTableFieldValues(processDefinitionId: string, field: string, column: string): Promise<FormValueRepresentation[]> {\n const pathParams = {\n processDefinitionId,\n field,\n column\n };\n\n return this.get({\n path: '/api/enterprise/process-definitions/{processDefinitionId}/start-form-values/{field}/{column}',\n pathParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n CreateProcessInstanceRepresentation,\n FormDefinitionRepresentation,\n HistoricProcessInstanceQueryRepresentation,\n IdentityLinkRepresentation,\n ProcessInstanceAuditInfoRepresentation,\n ProcessInstanceFilterRequestRepresentation,\n ProcessInstanceQueryRepresentation,\n ProcessInstanceRepresentation,\n ProcessInstanceVariableRepresentation,\n ResultListDataRepresentationDecisionTaskRepresentation,\n ResultListDataRepresentationProcessContentRepresentation,\n ResultListDataRepresentationProcessInstanceRepresentation\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * Process Instances service.\n */\nexport class ProcessInstancesApi extends BaseApi {\n /**\n * Activate a process instance\n *\n * @param processInstanceId processInstanceId\n * @return Promise<ProcessInstanceRepresentation>\n */\n activateProcessInstance(processInstanceId: string): Promise<ProcessInstanceRepresentation> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.put({\n path: '/api/enterprise/process-instances/{processInstanceId}/activate',\n pathParams,\n returnType: ProcessInstanceRepresentation\n });\n }\n\n /**\n * Add a user or group involvement to a process instance\n *\n * @param processInstanceId processInstanceId\n * @param identityLinkRepresentation identityLinkRepresentation\n * @return Promise<IdentityLinkRepresentation>\n */\n createIdentityLink(processInstanceId: string, identityLinkRepresentation: IdentityLinkRepresentation): Promise<IdentityLinkRepresentation> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n throwIfNotDefined(identityLinkRepresentation, 'identityLinkRepresentation');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.post({\n path: '/api/enterprise/process-instances/{processInstanceId}/identitylinks',\n pathParams,\n bodyParam: identityLinkRepresentation\n });\n }\n\n /**\n * Remove a user or group involvement from a process instance\n *\n * @param processInstanceId processInstanceId\n * @param family family\n * @param identityId identityId\n * @param type type\n * @return Promise<{}>\n */\n deleteIdentityLink(processInstanceId: string, family: string, identityId: string, type: string): Promise<void> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n throwIfNotDefined(family, 'family');\n throwIfNotDefined(identityId, 'identityId');\n throwIfNotDefined(type, 'type');\n\n const pathParams = {\n processInstanceId,\n family,\n identityId,\n type\n };\n\n return this.delete({\n path: '/api/enterprise/process-instances/{processInstanceId}/identitylinks/{family}/{identityId}/{type}',\n pathParams\n });\n }\n\n /**\n * Cancel or remove a process instance\n *\n * If the process instance has not yet been completed, it will be cancelled. If it has already finished or been cancelled then the process instance will be removed and will no longer appear in queries.\n *\n * @param processInstanceId processInstanceId\n * @return Promise<{}>\n */\n deleteProcessInstance(processInstanceId: string): Promise<void> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.delete({\n path: '/api/enterprise/process-instances/{processInstanceId}',\n pathParams\n });\n }\n\n /**\n * List process instances using a filter\n *\n * The request body provided must define either a valid filterId value or filter object\n *\n * @param filterRequest filterRequest\n * @return Promise<ResultListDataRepresentationProcessInstanceRepresentation>\n */\n filterProcessInstances(\n filterRequest: ProcessInstanceFilterRequestRepresentation\n ): Promise<ResultListDataRepresentationProcessInstanceRepresentation> {\n throwIfNotDefined(filterRequest, 'filterRequest');\n\n return this.post({\n path: '/api/enterprise/process-instances/filter',\n bodyParam: filterRequest,\n returnType: ResultListDataRepresentationProcessInstanceRepresentation\n });\n }\n\n /**\n * Get decision tasks in a process instance\n *\n * @param processInstanceId processInstanceId\n * @return Promise<ResultListDataRepresentationDecisionTaskRepresentation>\n */\n getHistoricProcessInstanceDecisionTasks(processInstanceId: string): Promise<ResultListDataRepresentationDecisionTaskRepresentation> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.get({\n path: '/api/enterprise/process-instances/{processInstanceId}/decision-tasks',\n pathParams,\n returnType: ResultListDataRepresentationDecisionTaskRepresentation\n });\n }\n\n /**\n * Get historic variables for a process instance\n *\n * @param processInstanceId processInstanceId\n * @return Promise<ProcessInstanceVariableRepresentation>\n */\n getHistoricProcessInstanceVariables(processInstanceId: string): Promise<ProcessInstanceVariableRepresentation> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.get({\n path: '/api/enterprise/process-instances/{processInstanceId}/historic-variables',\n pathParams\n });\n }\n\n /**\n * Query historic process instances\n *\n * @param queryRequest queryRequest\n * @return Promise<ResultListDataRepresentationProcessInstanceRepresentation>\n */\n getHistoricProcessInstances(\n queryRequest: HistoricProcessInstanceQueryRepresentation\n ): Promise<ResultListDataRepresentationProcessInstanceRepresentation> {\n throwIfNotDefined(queryRequest, 'queryRequest');\n\n return this.post({\n path: '/api/enterprise/historic-process-instances/query',\n bodyParam: queryRequest,\n returnType: ResultListDataRepresentationProcessInstanceRepresentation\n });\n }\n\n /**\n * Get a user or group involvement with a process instance\n *\n * @param processInstanceId processInstanceId\n * @param family family\n * @param identityId identityId\n * @param type type\n * @return Promise<IdentityLinkRepresentation>\n */\n getIdentityLinkType(processInstanceId: string, family: string, identityId: string, type: string): Promise<IdentityLinkRepresentation> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n throwIfNotDefined(family, 'family');\n throwIfNotDefined(identityId, 'identityId');\n throwIfNotDefined(type, 'type');\n\n const pathParams = {\n processInstanceId,\n family,\n identityId,\n type\n };\n\n return this.get({\n path: '/api/enterprise/process-instances/{processInstanceId}/identitylinks/{family}/{identityId}/{type}',\n pathParams\n });\n }\n\n /**\n * List either the users or groups involved with a process instance\n *\n * @param processInstanceId processInstanceId\n * @param family family\n * @return Promise<IdentityLinkRepresentation>\n */\n getIdentityLinksForFamily(processInstanceId: string, family: string): Promise<IdentityLinkRepresentation> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n throwIfNotDefined(family, 'family');\n\n const pathParams = {\n processInstanceId,\n family\n };\n\n return this.get({\n path: '/api/enterprise/process-instances/{processInstanceId}/identitylinks/{family}',\n pathParams\n });\n }\n\n /**\n * List the users and groups involved with a process instance\n *\n * @param processInstanceId processInstanceId\n * @return Promise<IdentityLinkRepresentation>\n */\n getIdentityLinks(processInstanceId: string): Promise<IdentityLinkRepresentation> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.get({\n path: '/api/enterprise/process-instances/{processInstanceId}/identitylinks',\n pathParams\n });\n }\n\n /**\n * List content attached to process instance fields\n *\n * @param processInstanceId processInstanceId\n * @return Promise<ResultListDataRepresentationProcessContentRepresentation>\n */\n getProcessInstanceContent(processInstanceId: string): Promise<ResultListDataRepresentationProcessContentRepresentation> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.get({\n path: '/api/enterprise/process-instances/{processInstanceId}/field-content',\n pathParams,\n returnType: ResultListDataRepresentationProcessContentRepresentation\n });\n }\n\n /**\n * Get the process diagram for the process instance\n *\n * @param processInstanceId processInstanceId\n * @return Promise<string>\n */\n getProcessInstanceDiagram(processInstanceId: string): Promise<string> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n const accepts = ['image/png'];\n\n return this.get({\n path: '/api/enterprise/process-instances/{processInstanceId}/diagram',\n pathParams,\n accepts\n });\n }\n\n /**\n * Get a process instance start form\n *\n * The start form for a process instance can be retrieved when the process definition has a start form defined (hasStartForm = true on the process instance)\n *\n * @param processInstanceId processInstanceId\n * @return Promise<FormDefinitionRepresentation>\n */\n getProcessInstanceStartForm(processInstanceId: string): Promise<FormDefinitionRepresentation> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.get({\n path: '/api/enterprise/process-instances/{processInstanceId}/start-form',\n pathParams\n });\n }\n\n /**\n * Get a process instance\n *\n * @param processInstanceId processInstanceId\n * @return Promise<ProcessInstanceRepresentation>\n */\n getProcessInstance(processInstanceId: string): Promise<ProcessInstanceRepresentation> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.get({\n path: '/api/enterprise/process-instances/{processInstanceId}',\n pathParams,\n returnType: ProcessInstanceRepresentation\n });\n }\n\n /**\n * Query process instances\n *\n * @param processInstancesQuery processInstancesQuery\n * @return Promise<ResultListDataRepresentationProcessInstanceRepresentation>\n */\n getProcessInstances(\n processInstancesQuery: ProcessInstanceQueryRepresentation\n ): Promise<ResultListDataRepresentationProcessInstanceRepresentation> {\n throwIfNotDefined(processInstancesQuery, 'processInstancesQuery');\n\n return this.post({\n path: '/api/enterprise/process-instances/query',\n bodyParam: processInstancesQuery,\n returnType: ResultListDataRepresentationProcessInstanceRepresentation\n });\n }\n\n /**\n * Get the audit log for a process instance\n *\n * @param processInstanceId processInstanceId\n * @return Promise<ProcessInstanceAuditInfoRepresentation>\n */\n getTaskAuditLog(processInstanceId: string): Promise<ProcessInstanceAuditInfoRepresentation> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.get({\n path: '/api/enterprise/process-instances/{processInstanceId}/audit-log',\n pathParams\n });\n }\n\n /**\n * Retrieve the process audit in the PDF format\n *\n * @param processInstanceId processId\n * @returns process audit\n */\n getProcessAuditPdf(processInstanceId: string): Promise<Blob> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n const responseType = 'blob';\n\n return this.get({\n path: '/app/rest/process-instances/{processInstanceId}/audit',\n pathParams,\n responseType\n });\n }\n\n /**\n * Start a process instance\n *\n * @param startRequest startRequest\n * @return Promise<ProcessInstanceRepresentation>\n */\n startNewProcessInstance(startRequest: CreateProcessInstanceRepresentation): Promise<ProcessInstanceRepresentation> {\n throwIfNotDefined(startRequest, 'startRequest');\n\n return this.post({\n path: '/api/enterprise/process-instances',\n bodyParam: startRequest,\n returnType: ProcessInstanceRepresentation\n });\n }\n\n /**\n * Suspend a process instance\n *\n * @param processInstanceId processInstanceId\n * @return Promise<ProcessInstanceRepresentation>\n */\n suspendProcessInstance(processInstanceId: string): Promise<ProcessInstanceRepresentation> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.put({\n path: '/api/enterprise/process-instances/{processInstanceId}/suspend',\n pathParams,\n returnType: ProcessInstanceRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RestVariable } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * ProcessInstanceVariablesApi service.\n */\nexport class ProcessInstanceVariablesApi extends BaseApi {\n /**\n * Create or update variables\n *\n * @param processInstanceId Process instance ID\n * @param restVariables restVariables\n * @return Promise<RestVariable>\n */\n createOrUpdateProcessInstanceVariables(processInstanceId: string, restVariables: RestVariable[]): Promise<RestVariable[]> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n throwIfNotDefined(restVariables, 'restVariables');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.put({\n path: '/api/enterprise/process-instances/{processInstanceId}/variables',\n pathParams,\n bodyParam: restVariables\n });\n }\n\n /**\n * Delete a variable\n *\n * @param processInstanceId processInstanceId\n * @param variableName variableName\n * @return Promise<{}>\n */\n deleteProcessInstanceVariable(processInstanceId: string, variableName: string): Promise<void> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n throwIfNotDefined(variableName, 'variableName');\n\n const pathParams = {\n processInstanceId,\n variableName\n };\n\n return this.delete({\n path: '/api/enterprise/process-instances/{processInstanceId}/variables/{variableName}',\n pathParams\n });\n }\n\n /**\n * Get a variable\n *\n * @param processInstanceId processInstanceId\n * @param variableName variableName\n * @return Promise<RestVariable>\n */\n getProcessInstanceVariable(processInstanceId: string, variableName: string): Promise<RestVariable> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n throwIfNotDefined(variableName, 'variableName');\n\n const pathParams = {\n processInstanceId,\n variableName\n };\n\n return this.get({\n path: '/api/enterprise/process-instances/{processInstanceId}/variables/{variableName}',\n pathParams\n });\n }\n\n /**\n * List variables\n *\n * @param processInstanceId Process instance ID\n * @return Promise<RestVariable>\n */\n getProcessInstanceVariables(processInstanceId: string): Promise<RestVariable[]> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.get({\n path: '/api/enterprise/process-instances/{processInstanceId}/variables',\n pathParams\n });\n }\n\n /**\n * Update a variable\n *\n * @param processInstanceId processInstanceId\n * @param variableName variableName\n * @param restVariable restVariable\n * @return Promise<RestVariable>\n */\n updateProcessInstanceVariable(processInstanceId: string, variableName: string, restVariable: RestVariable): Promise<RestVariable> {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n throwIfNotDefined(variableName, 'variableName');\n throwIfNotDefined(restVariable, 'restVariable');\n\n const pathParams = {\n processInstanceId,\n variableName\n };\n\n return this.put({\n path: '/api/enterprise/process-instances/{processInstanceId}/variables/{variableName}',\n pathParams,\n bodyParam: restVariable\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ProcessScopeRepresentation, ProcessScopesRequestRepresentation } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * ProcessScopesApi service.\n */\nexport class ProcessScopesApi extends BaseApi {\n /**\n * List runtime process scopes\n *\n * @param processScopesRequest processScopesRequest\n * @return Promise<ProcessScopeRepresentation>\n */\n getRuntimeProcessScopes(processScopesRequest: ProcessScopesRequestRepresentation): Promise<ProcessScopeRepresentation> {\n throwIfNotDefined(processScopesRequest, 'processScopesRequest');\n\n return this.post({\n path: '/api/enterprise/process-scopes',\n bodyParam: processScopesRequest\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n AppDefinitionRepresentation,\n ResultListDataRepresentationAppDefinitionRepresentation,\n RuntimeAppDefinitionSaveRepresentation\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * RuntimeAppDefinitionsApi service.\n */\nexport class RuntimeAppDefinitionsApi extends BaseApi {\n /**\n * Deploy a published app\n *\n * Deploying an app allows the user to see it on his/her landing page. Apps must be published before they can be deployed.\n *\n * @param saveObject saveObject\n * @return Promise<{}>\n */\n deployAppDefinitions(saveObject: RuntimeAppDefinitionSaveRepresentation): Promise<any> {\n throwIfNotDefined(saveObject, 'saveObject');\n\n return this.post({\n path: '/api/enterprise/runtime-app-definitions',\n bodyParam: saveObject\n });\n }\n\n /**\n * Get a runtime app\n *\n * @param appDefinitionId appDefinitionId\n * @return Promise<AppDefinitionRepresentation>\n */\n getAppDefinition(appDefinitionId: number): Promise<AppDefinitionRepresentation> {\n throwIfNotDefined(appDefinitionId, 'appDefinitionId');\n\n const pathParams = {\n appDefinitionId\n };\n\n return this.get({\n path: '/api/enterprise/runtime-app-definitions/{appDefinitionId}',\n pathParams\n });\n }\n\n /**\n * List runtime apps\n *\n * When a user logs in into Alfresco Process Services Suite, a landing page is displayed containing all the apps that the user is allowed to see and use. These are referred to as runtime apps.\n *\n * @return Promise<ResultListDataRepresentationAppDefinitionRepresentation>\n */\n getAppDefinitions(): Promise<ResultListDataRepresentationAppDefinitionRepresentation> {\n return this.get({\n path: '/api/enterprise/runtime-app-definitions'\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AppDeploymentRepresentation } from '../model/appDeploymentRepresentation';\nimport { ResultListDataRepresentationAppDeploymentRepresentation } from '../model/resultListDataRepresentationAppDeploymentRepresentation';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * RuntimeAppDeploymentsApi service.\n */\nexport class RuntimeAppDeploymentsApi extends BaseApi {\n /**\n * Remove an app deployment\n *\n * @param appDeploymentId appDeploymentId\n * @return Promise<{}>\n */\n deleteAppDeployment(appDeploymentId: number): Promise<any> {\n throwIfNotDefined(appDeploymentId, 'appDeploymentId');\n\n const pathParams = {\n appDeploymentId\n };\n\n return this.delete({\n path: '/api/enterprise/runtime-app-deployments/{appDeploymentId}',\n pathParams\n });\n }\n\n /**\n * Export the app archive for a deployment\n *\n * @param deploymentId deploymentId\n * @return Promise<{}>\n */\n exportAppDefinition(deploymentId: string): Promise<any> {\n throwIfNotDefined(deploymentId, 'deploymentId');\n\n const pathParams = {\n deploymentId\n };\n\n const accepts = ['application/zip'];\n\n return this.get({\n path: '/api/enterprise/export-app-deployment/{deploymentId}',\n pathParams,\n accepts\n });\n }\n\n /**\n * Query app deployments\n *\n * @param opts Optional parameters\n * @return Promise<ResultListDataRepresentationAppDeploymentRepresentation>\n */\n getAppDefinitions(opts?: {\n nameLike?: string;\n tenantId?: number;\n latest?: boolean;\n start?: number;\n sort?: string;\n order?: string;\n size?: number;\n }): Promise<ResultListDataRepresentationAppDeploymentRepresentation> {\n return this.get({\n path: '/api/enterprise/runtime-app-deployments',\n queryParams: opts,\n returnType: ResultListDataRepresentationAppDeploymentRepresentation\n });\n }\n\n /**\n * Get an app deployment\n *\n * @param appDeploymentId appDeploymentId\n * @return Promise<AppDeploymentRepresentation>\n */\n getAppDeployment(appDeploymentId: number): Promise<AppDeploymentRepresentation> {\n throwIfNotDefined(appDeploymentId, 'appDeploymentId');\n\n const pathParams = {\n appDeploymentId\n };\n\n return this.get({\n path: '/api/enterprise/runtime-app-deployments/{appDeploymentId}',\n pathParams,\n returnType: AppDeploymentRepresentation\n });\n }\n\n /**\n * Get an app by deployment ID or DMN deployment ID\n * Either a deploymentId or a dmnDeploymentId must be provided\n *\n * @param opts Optional parameters\n * @return Promise<AppDeploymentRepresentation>\n */\n getRuntimeAppDeploymentByDeployment(opts?: { deploymentId?: string; dmnDeploymentId?: number }): Promise<AppDeploymentRepresentation> {\n return this.get({\n path: '/api/enterprise/runtime-app-deployment',\n queryParams: opts,\n returnType: AppDeploymentRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\n\n/**\n * ScriptFilesApi service.\n */\nexport class ScriptFilesApi extends BaseApi {\n /**\n * getControllers\n *\n * @returns Promise<string>\n */\n getControllers(): Promise<string> {\n const accepts = ['text/html'];\n\n return this.get({\n path: '/api/enterprise/script-files/controllers',\n accepts\n });\n }\n\n /**\n * getLibraries\n *\n * @returns Promise<string>\n */\n getLibraries(): Promise<string> {\n const accepts = ['text/html'];\n\n return this.get({\n path: '/api/enterprise/script-files/libraries',\n accepts\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ResultListDataRepresentationSubmittedFormRepresentation } from '../model/resultListDataRepresentationSubmittedFormRepresentation';\nimport { SubmittedFormRepresentation } from '../model/submittedFormRepresentation';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * SubmittedFormsApi service.\n */\nexport class SubmittedFormsApi extends BaseApi {\n /**\n * List submissions for a form\n *\n * @param formId formId\n * @param opts Optional parameters\n * @return Promise<ResultListDataRepresentationSubmittedFormRepresentation>\n */\n getFormSubmittedForms(\n formId: number,\n opts?: { submittedBy?: number; start?: number; size?: number }\n ): Promise<ResultListDataRepresentationSubmittedFormRepresentation> {\n throwIfNotDefined(formId, 'formId');\n\n const pathParams = {\n formId\n };\n\n return this.get({\n path: '/api/enterprise/form-submitted-forms/{formId}',\n pathParams,\n queryParams: opts,\n returnType: ResultListDataRepresentationSubmittedFormRepresentation\n });\n }\n\n /**\n * List submissions for a process instance\n *\n * @param processId processId\n * @return Promise<ResultListDataRepresentationSubmittedFormRepresentation>\n */\n getProcessSubmittedForms(processId: string): Promise<ResultListDataRepresentationSubmittedFormRepresentation> {\n throwIfNotDefined(processId, 'processId');\n\n const pathParams = {\n processId\n };\n\n return this.get({\n path: '/api/enterprise/process-submitted-forms/{processId}',\n pathParams,\n returnType: ResultListDataRepresentationSubmittedFormRepresentation\n });\n }\n\n /**\n * Get a form submission\n *\n * @param submittedFormId submittedFormId\n * @return Promise<SubmittedFormRepresentation>\n */\n getSubmittedFrom(submittedFormId: number): Promise<SubmittedFormRepresentation> {\n throwIfNotDefined(submittedFormId, 'submittedFormId');\n\n const pathParams = {\n submittedFormId\n };\n\n return this.get({\n path: '/api/enterprise/submitted-forms/{submittedFormId}',\n pathParams,\n returnType: SubmittedFormRepresentation\n });\n }\n\n /**\n * Get the submitted form for a task\n *\n * @param taskId taskId\n * @return Promise<SubmittedFormRepresentation>\n */\n getTaskSubmittedForms(taskId: string): Promise<SubmittedFormRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.get({\n path: '/api/enterprise/task-submitted-form/{taskId}',\n pathParams,\n returnType: SubmittedFormRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { GlobalDateFormatRepresentation, PasswordValidationConstraints, SystemPropertiesRepresentation } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * SystemPropertiesApi service.\n */\nexport class SystemPropertiesApi extends BaseApi {\n /**\n * Get global date format\n *\n * @param tenantId tenantId\n * @return Promise<GlobalDateFormatRepresentation>\n */\n getGlobalDateFormat(tenantId: number): Promise<GlobalDateFormatRepresentation> {\n throwIfNotDefined(tenantId, 'tenantId');\n\n const pathParams = {\n tenantId\n };\n\n return this.get({\n path: '/api/enterprise/system/properties/global-date-format/{tenantId}',\n pathParams\n });\n }\n\n /**\n * Get password validation constraints\n *\n * @param tenantId tenantId\n * @return Promise<PasswordValidationConstraints>\n */\n getPasswordValidationConstraints(tenantId: number): Promise<PasswordValidationConstraints> {\n throwIfNotDefined(tenantId, 'tenantId');\n\n const pathParams = {\n tenantId\n };\n\n return this.get({\n path: '/api/enterprise/system/properties/password-validation-constraints/{tenantId}',\n pathParams\n });\n }\n\n /**\n * Retrieve system properties\n *\n * Typical value is AllowInvolveByEmail\n *\n * @return Promise<SystemPropertiesRepresentation>\n */\n getProperties(): Promise<SystemPropertiesRepresentation> {\n return this.get({\n path: '/api/enterprise/system/properties'\n });\n }\n\n /**\n * Get involved users who can edit forms\n *\n * @param tenantId tenantId\n * @return Promise<boolean>\n */\n involvedUsersCanEditForms(tenantId: number): Promise<boolean> {\n throwIfNotDefined(tenantId, 'tenantId');\n\n const pathParams = {\n tenantId\n };\n\n return this.get({\n path: '/api/enterprise/system/properties/involved-users-can-edit-forms/{tenantId}',\n pathParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AssigneeIdentifierRepresentation, FormIdentifierRepresentation, TaskRepresentation, UserIdentifierRepresentation } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * TaskActionsApi service.\n */\nexport class TaskActionsApi extends BaseApi {\n /**\n * Assign a task to a user\n *\n * @param taskId taskId\n * @param userIdentifier userIdentifier\n * @return Promise<TaskRepresentation>\n */\n assignTask(taskId: string, userIdentifier: AssigneeIdentifierRepresentation): Promise<TaskRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(userIdentifier, 'userIdentifier');\n\n const pathParams = {\n taskId\n };\n\n return this.put({\n path: '/api/enterprise/tasks/{taskId}/action/assign',\n pathParams,\n bodyParam: userIdentifier,\n returnType: TaskRepresentation\n });\n }\n\n /**\n * Attach a form to a task\n *\n * @param taskId taskId\n * @param formIdentifier formIdentifier\n * @return Promise<{}>\n */\n attachForm(taskId: string, formIdentifier: FormIdentifierRepresentation): Promise<any> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(formIdentifier, 'formIdentifier');\n\n const pathParams = {\n taskId\n };\n\n return this.put({\n path: '/api/enterprise/tasks/{taskId}/action/attach-form',\n pathParams,\n bodyParam: formIdentifier\n });\n }\n\n /**\n * Claim a task\n *\n * To claim a task (in case the task is assigned to a group)\n *\n * @param taskId taskId\n * @return Promise<{}>\n */\n claimTask(taskId: string): Promise<any> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.put({\n path: '/api/enterprise/tasks/{taskId}/action/claim',\n pathParams\n });\n }\n\n /**\n * Complete a task\n *\n * Use this endpoint to complete a standalone task or task without a form\n *\n * @param taskId taskId\n * @return Promise<{}>\n */\n completeTask(taskId: string): Promise<any> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.put({\n path: '/api/enterprise/tasks/{taskId}/action/complete',\n pathParams\n });\n }\n\n /**\n * Delegate a task\n *\n * @param taskId taskId\n * @param userIdentifier userIdentifier\n * @return Promise<{}>\n */\n delegateTask(taskId: string, userIdentifier: UserIdentifierRepresentation): Promise<any> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(userIdentifier, 'userIdentifier');\n\n const pathParams = {\n taskId\n };\n\n return this.put({\n path: '/api/enterprise/tasks/{taskId}/action/delegate',\n pathParams,\n bodyParam: userIdentifier\n });\n }\n\n /**\n * Involve a group with a task\n *\n * @param taskId taskId\n * @param groupId groupId\n * @return Promise<{}>\n */\n involveGroup(taskId: string, groupId: string): Promise<any> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(groupId, 'groupId');\n\n const pathParams = {\n taskId,\n groupId\n };\n\n return this.post({\n path: '/api/enterprise/tasks/{taskId}/groups/{groupId}',\n pathParams\n });\n }\n\n /**\n * Involve a user with a task\n *\n * @param taskId taskId\n * @param userIdentifier userIdentifier\n * @return Promise<{}>\n */\n involveUser(taskId: string, userIdentifier: UserIdentifierRepresentation): Promise<any> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(userIdentifier, 'userIdentifier');\n\n const pathParams = {\n taskId\n };\n\n return this.put({\n path: '/api/enterprise/tasks/{taskId}/action/involve',\n pathParams,\n bodyParam: userIdentifier\n });\n }\n\n /**\n * Remove a form from a task\n *\n * @param taskId taskId\n * @return Promise<{}>\n */\n removeForm(taskId: string): Promise<any> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.delete({\n path: '/api/enterprise/tasks/{taskId}/action/remove-form',\n pathParams\n });\n }\n\n /**\n * Remove an involved group from a task\n *\n * @param taskId taskId\n * @param identifier identifier\n * @return Promise<{}>\n */\n removeInvolvedUser(taskId: string, identifier: string | UserIdentifierRepresentation): Promise<any> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(identifier, 'identifier');\n\n const pathParams = {\n taskId,\n identifier\n };\n\n if (identifier instanceof String) {\n return this.delete({\n path: '/api/enterprise/tasks/{taskId}/groups/{groupId}',\n pathParams\n });\n } else {\n return this.put({\n path: '/api/enterprise/tasks/{taskId}/action/remove-involved',\n pathParams,\n bodyParam: identifier\n });\n }\n }\n\n /**\n * Resolve a task\n *\n *\n *\n * @param taskId taskId\n * @return Promise<{}>\n */\n resolveTask(taskId: string): Promise<any> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.put({\n path: '/api/enterprise/tasks/{taskId}/action/resolve',\n pathParams\n });\n }\n\n /**\n * Unclaim a task\n *\n * To unclaim a task (in case the task was assigned to a group)\n *\n * @param taskId taskId\n * @return Promise<{}>\n */\n unclaimTask(taskId: string): Promise<any> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.put({\n path: '/api/enterprise/tasks/{taskId}/action/unclaim',\n pathParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n CompleteFormRepresentation,\n FormDefinitionRepresentation,\n FormValueRepresentation,\n ProcessInstanceVariableRepresentation,\n SaveFormRepresentation\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * TaskFormsApi service.\n */\nexport class TaskFormsApi extends BaseApi {\n /**\n * Complete a task form\n *\n * @param taskId taskId\n * @param completeTaskFormRepresentation completeTaskFormRepresentation\n * @return Promise<{}>\n */\n completeTaskForm(taskId: string, completeTaskFormRepresentation: CompleteFormRepresentation): Promise<any> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(completeTaskFormRepresentation, 'completeTaskFormRepresentation');\n\n const pathParams = {\n taskId\n };\n\n return this.post({\n path: '/api/enterprise/task-forms/{taskId}',\n pathParams,\n bodyParam: completeTaskFormRepresentation\n });\n }\n\n /**\n * Get task variables\n *\n * @param taskId taskId\n * @return Promise<ProcessInstanceVariableRepresentation>\n */\n getProcessInstanceVariables(taskId: string): Promise<ProcessInstanceVariableRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.get({\n path: '/api/enterprise/task-forms/{taskId}/variables',\n pathParams\n });\n }\n\n /**\n * Retrieve Column Field Values\n * Specific case to retrieve information on a specific column\n *\n * @param taskId taskId\n * @param field field\n * @param column column\n */\n getRestFieldColumnValues(taskId: string, field: string, column: string) {\n // verify the required parameter 'taskId' is set\n if (taskId === undefined || taskId === null) {\n throw new Error(`Missing param 'taskId' in getRestFieldValues`);\n }\n\n // verify the required parameter 'field' is set\n if (field === undefined || field === null) {\n throw new Error(`Missing param 'field' in getRestFieldValues`);\n }\n\n // verify the required parameter 'column' is set\n if (column === undefined || column === null) {\n throw new Error(`Missing param 'column' in getRestFieldValues`);\n }\n\n const pathParams = {\n taskId,\n field,\n column\n };\n\n return this.get({\n path: '/api/enterprise/task-forms/{taskId}/form-values/{field}/{column}',\n pathParams\n });\n }\n\n /**\n * Retrieve populated field values\n *\n * Form field values that are populated through a REST backend, can be retrieved via this service\n *\n * @param taskId taskId\n * @param field field\n * @return Promise<FormValueRepresentation []>\n */\n getRestFieldValues(taskId: string, field: string): Promise<FormValueRepresentation[]> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(field, 'field');\n\n const pathParams = {\n taskId,\n field\n };\n\n return this.get({\n path: '/api/enterprise/task-forms/{taskId}/form-values/{field}',\n pathParams\n });\n }\n\n /**\n * Get a task form\n *\n * @param taskId taskId\n * @returns Promise<FormDefinitionRepresentation>\n */\n getTaskForm(taskId: string): Promise<FormDefinitionRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.get({\n path: '/api/enterprise/task-forms/{taskId}',\n pathParams\n });\n }\n\n /**\n * Save a task form\n *\n * @param taskId taskId\n * @param saveTaskFormRepresentation saveTaskFormRepresentation\n * @return Promise<{}>\n */\n saveTaskForm(taskId: string, saveTaskFormRepresentation: SaveFormRepresentation): Promise<any> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(saveTaskFormRepresentation, 'saveTaskFormRepresentation');\n\n const pathParams = {\n taskId\n };\n\n return this.post({\n path: '/api/enterprise/task-forms/{taskId}/save-form',\n pathParams,\n bodyParam: saveTaskFormRepresentation\n });\n }\n\n /**\n * Retrieve Task Form Variables\n *\n * @param taskId taskId\n */\n getTaskFormVariables(taskId: string) {\n // verify the required parameter 'taskId' is set\n if (taskId === undefined || taskId === null) {\n throw new Error(`Missing param 'taskId' in getTaskFormVariables`);\n }\n\n const pathParams = {\n taskId\n };\n\n return this.get({\n path: '/api/enterprise/task-forms/{taskId}/variables',\n pathParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n HistoricTaskInstanceQueryRepresentation,\n IdentityLinkRepresentation,\n ResultListDataRepresentationTaskRepresentation,\n TaskAuditInfoRepresentation,\n TaskFilterRequestRepresentation,\n TaskQueryRepresentation,\n TaskRepresentation,\n TaskUpdateRepresentation\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * Tasks service.\n */\nexport class TasksApi extends BaseApi {\n /**\n * List the users and groups involved with a task\n *\n * @param taskId taskId\n * @param identityLinkRepresentation identityLinkRepresentation\n * @returns Promise<IdentityLinkRepresentation>\n */\n createIdentityLink(taskId: string, identityLinkRepresentation: IdentityLinkRepresentation): Promise<IdentityLinkRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(identityLinkRepresentation, 'identityLinkRepresentation');\n\n const pathParams = {\n taskId\n };\n\n return this.post({\n path: '/api/enterprise/tasks/{taskId}/identitylinks',\n pathParams,\n bodyParam: identityLinkRepresentation\n });\n }\n\n /**\n * Create a standalone task\n *\n * A standalone task is one which is not associated with any process instance.\n *\n * @param taskRepresentation taskRepresentation\n * @returns Promise<TaskRepresentation>\n */\n createNewTask(taskRepresentation: TaskRepresentation): Promise<TaskRepresentation> {\n throwIfNotDefined(taskRepresentation, 'taskRepresentation');\n\n return this.post({\n path: '/api/enterprise/tasks',\n bodyParam: taskRepresentation,\n returnType: TaskRepresentation\n });\n }\n\n /**\n * Remove a user or group involvement from a task\n *\n * @param taskId taskId\n * @param family family\n * @param identityId identityId\n * @param type type\n * @returns Promise<{}>\n */\n deleteIdentityLink(taskId: string, family: string, identityId: string, type: string): Promise<any> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(family, 'family');\n throwIfNotDefined(identityId, 'identityId');\n throwIfNotDefined(type, 'type');\n\n const pathParams = {\n taskId,\n family,\n identityId,\n type\n };\n\n return this.delete({\n path: '/api/enterprise/tasks/{taskId}/identitylinks/{family}/{identityId}/{type}',\n pathParams\n });\n }\n\n /**\n * Delete a task\n *\n * @param taskId taskId\n * @returns Promise<{}>\n */\n deleteTask(taskId: string): Promise<void> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.delete({\n path: '/api/enterprise/tasks/{taskId}',\n pathParams\n });\n }\n\n /**\n * Filter a list of tasks\n *\n * @param tasksFilter tasksFilter\n * @returns Promise<ResultListDataRepresentationTaskRepresentation>\n */\n filterTasks(tasksFilter: TaskFilterRequestRepresentation): Promise<ResultListDataRepresentationTaskRepresentation> {\n throwIfNotDefined(tasksFilter, 'tasksFilter');\n\n return this.post({\n path: '/api/enterprise/tasks/filter',\n bodyParam: tasksFilter,\n returnType: ResultListDataRepresentationTaskRepresentation\n });\n }\n\n /**\n * Get a user or group involvement with a task\n *\n * @param taskId taskId\n * @param family family\n * @param identityId identityId\n * @param type type\n * @returns Promise<IdentityLinkRepresentation>\n */\n getIdentityLinkType(taskId: string, family: string, identityId: string, type: string): Promise<IdentityLinkRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(family, 'family');\n throwIfNotDefined(identityId, 'identityId');\n throwIfNotDefined(type, 'type');\n\n const pathParams = {\n taskId,\n family,\n identityId,\n type\n };\n\n return this.get({\n path: '/api/enterprise/tasks/{taskId}/identitylinks/{family}/{identityId}/{type}',\n pathParams\n });\n }\n\n /**\n * List either the users or groups involved with a process instance\n *\n * @param taskId taskId\n * @param family family\n * @returns Promise<IdentityLinkRepresentation>\n */\n getIdentityLinksForFamily(taskId: string, family: string): Promise<IdentityLinkRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(family, 'family');\n\n const pathParams = {\n taskId,\n family\n };\n\n return this.get({\n path: '/api/enterprise/tasks/{taskId}/identitylinks/{family}',\n pathParams\n });\n }\n\n /**\n * getIdentityLinks\n *\n * @param taskId taskId\n * @returns Promise<IdentityLinkRepresentation>\n */\n getIdentityLinks(taskId: string): Promise<IdentityLinkRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.get({\n path: '/api/enterprise/tasks/{taskId}/identitylinks',\n pathParams\n });\n }\n\n /**\n * Get the audit log for a task\n *\n * @param taskId taskId\n * @returns Promise<TaskAuditInfoRepresentation>\n */\n getTaskAuditLog(taskId: string): Promise<TaskAuditInfoRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.get({\n path: '/api/enterprise/tasks/{taskId}/audit',\n pathParams\n });\n }\n\n /**\n * Get the audit log for a task\n *\n * @param taskId taskId\n * @returns Promise<Blob> task audit in blob\n */\n getTaskAuditPdf(taskId: string): Promise<Blob> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.get({\n // Todo: update url once ACTIVITI-4191 fixed\n path: 'app/rest/tasks/{taskId}/audit',\n pathParams,\n returnType: 'blob'\n });\n }\n\n /**\n * Get a task\n *\n * @param taskId taskId\n * @returns Promise<TaskRepresentation>\n */\n getTask(taskId: string): Promise<TaskRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.get({\n path: '/api/enterprise/tasks/{taskId}',\n pathParams,\n returnType: TaskRepresentation\n });\n }\n\n /**\n * Query historic tasks\n *\n * @param queryRequest queryRequest\n * @returns Promise<ResultListDataRepresentationTaskRepresentation>\n */\n listHistoricTasks(queryRequest: HistoricTaskInstanceQueryRepresentation): Promise<ResultListDataRepresentationTaskRepresentation> {\n throwIfNotDefined(queryRequest, 'queryRequest');\n\n return this.post({\n path: '/api/enterprise/historic-tasks/query',\n bodyParam: queryRequest,\n returnType: ResultListDataRepresentationTaskRepresentation\n });\n }\n\n /**\n * List tasks\n *\n * @param tasksQuery tasksQuery\n * @returns Promise<ResultListDataRepresentationTaskRepresentation>\n */\n listTasks(tasksQuery: TaskQueryRepresentation): Promise<ResultListDataRepresentationTaskRepresentation> {\n throwIfNotDefined(tasksQuery, 'tasksQuery');\n\n return this.post({\n path: '/api/enterprise/tasks/query',\n bodyParam: tasksQuery,\n returnType: ResultListDataRepresentationTaskRepresentation\n });\n }\n\n /**\n * Update a task\n *\n * You can edit only name, description and dueDate (ISO 8601 string).\n *\n * @param taskId taskId\n * @param updated updated\n * @returns Promise<TaskRepresentation>\n */\n updateTask(taskId: string, updated: TaskUpdateRepresentation): Promise<TaskRepresentation> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(updated, 'updated');\n\n const pathParams = {\n taskId\n };\n\n return this.put({\n path: '/api/enterprise/tasks/{taskId}',\n pathParams,\n bodyParam: updated,\n returnType: TaskRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { RestVariable } from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { ScopeQuery } from './types';\n\n/**\n * TaskVariablesApi service.\n */\nexport class TaskVariablesApi extends BaseApi {\n /**\n * Create variables\n *\n * @param taskId taskId\n * @param restVariables restVariables\n * @return Promise<RestVariable>\n */\n createTaskVariable(taskId: string, restVariables: RestVariable): Promise<RestVariable> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(restVariables, 'restVariables');\n\n const pathParams = {\n taskId\n };\n\n return this.post({\n path: '/api/enterprise/tasks/{taskId}/variables',\n pathParams,\n bodyParam: restVariables\n });\n }\n\n /**\n * Create or update variables\n *\n * @param taskId taskId\n * @return Promise<{}>\n */\n deleteAllLocalTaskVariables(taskId: string): Promise<void> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.delete({\n path: '/api/enterprise/tasks/{taskId}/variables',\n pathParams\n });\n }\n\n /**\n * Delete a variable\n *\n * @param taskId taskId\n * @param variableName variableName\n * @param opts Optional parameters\n * @return Promise<{}>\n */\n deleteVariable(taskId: string, variableName: string, opts?: ScopeQuery): Promise<void> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(variableName, 'variableName');\n\n const pathParams = {\n taskId,\n variableName\n };\n\n return this.delete({\n path: '/api/enterprise/tasks/{taskId}/variables/{variableName}',\n pathParams,\n queryParams: opts\n });\n }\n /**\n * Get a variable\n *\n * @param taskId taskId\n * @param variableName variableName\n * @param opts Optional parameters\n * @return Promise<RestVariable>\n */\n getVariable(taskId: string, variableName: string, opts?: ScopeQuery): Promise<RestVariable> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(variableName, 'variableName');\n\n const pathParams = {\n taskId,\n variableName\n };\n\n return this.get({\n path: '/api/enterprise/tasks/{taskId}/variables/{variableName}',\n pathParams,\n queryParams: opts\n });\n }\n\n /**\n * List variables\n *\n * @param taskId taskId\n * @param opts Optional parameters\n * @return Promise<RestVariable>\n */\n getVariables(taskId: string, opts?: ScopeQuery): Promise<RestVariable> {\n throwIfNotDefined(taskId, 'taskId');\n\n const pathParams = {\n taskId\n };\n\n return this.get({\n path: '/api/enterprise/tasks/{taskId}/variables',\n pathParams,\n queryParams: opts\n });\n }\n\n /**\n * Update a variable\n *\n * @param taskId taskId\n * @param variableName variableName\n * @param restVariable restVariable\n * @return Promise<RestVariable>\n */\n updateVariable(taskId: string, variableName: string, restVariable: RestVariable): Promise<RestVariable> {\n throwIfNotDefined(taskId, 'taskId');\n throwIfNotDefined(variableName, 'variableName');\n throwIfNotDefined(restVariable, 'restVariable');\n\n const pathParams = {\n taskId,\n variableName\n };\n\n return this.put({\n path: '/api/enterprise/tasks/{taskId}/variables/{variableName}',\n pathParams,\n bodyParam: restVariable\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n ResultListDataRepresentationUserProcessInstanceFilterRepresentation,\n ResultListDataRepresentationUserTaskFilterRepresentation,\n UserFilterOrderRepresentation,\n UserProcessInstanceFilterRepresentation,\n UserTaskFilterRepresentation\n} from '../model';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { AppIdQuery } from './types';\n\n/**\n * UserFiltersApi service.\n */\nexport class UserFiltersApi extends BaseApi {\n /**\n * Create a process instance filter\n *\n * @param userProcessInstanceFilterRepresentation userProcessInstanceFilterRepresentation\n * @returns Promise<UserProcessInstanceFilterRepresentation>\n */\n createUserProcessInstanceFilter(\n userProcessInstanceFilterRepresentation: UserProcessInstanceFilterRepresentation\n ): Promise<UserProcessInstanceFilterRepresentation> {\n throwIfNotDefined(userProcessInstanceFilterRepresentation, 'userProcessInstanceFilterRepresentation');\n\n return this.post({\n path: '/api/enterprise/filters/processes',\n bodyParam: userProcessInstanceFilterRepresentation\n });\n }\n\n /**\n * Create a task filter\n *\n * @param userTaskFilterRepresentation userTaskFilterRepresentation\n * @returns Promise<UserTaskFilterRepresentation>\n */\n createUserTaskFilter(userTaskFilterRepresentation: UserTaskFilterRepresentation): Promise<UserTaskFilterRepresentation> {\n throwIfNotDefined(userTaskFilterRepresentation, 'userTaskFilterRepresentation');\n\n return this.post({\n path: '/api/enterprise/filters/tasks',\n bodyParam: userTaskFilterRepresentation,\n returnType: UserTaskFilterRepresentation\n });\n }\n\n /**\n * Delete a process instance filter\n *\n * @param userFilterId userFilterId\n * @returns Promise<{}>\n */\n deleteUserProcessInstanceFilter(userFilterId: number): Promise<void> {\n throwIfNotDefined(userFilterId, 'userFilterId');\n\n const pathParams = {\n userFilterId\n };\n\n return this.delete({\n path: '/api/enterprise/filters/processes/{userFilterId}',\n pathParams\n });\n }\n\n /**\n * Delete a task filter\n *\n * @param userFilterId userFilterId\n * @returns Promise<{}>\n */\n deleteUserTaskFilter(userFilterId: number): Promise<void> {\n throwIfNotDefined(userFilterId, 'userFilterId');\n\n const pathParams = {\n userFilterId\n };\n\n return this.delete({\n path: '/api/enterprise/filters/tasks/{userFilterId}',\n pathParams\n });\n }\n\n /**\n * Get a process instance filter\n *\n * @param userFilterId userFilterId\n * @returns Promise<UserProcessInstanceFilterRepresentation>\n */\n getUserProcessInstanceFilter(userFilterId: number): Promise<UserProcessInstanceFilterRepresentation> {\n throwIfNotDefined(userFilterId, 'userFilterId');\n\n const pathParams = {\n userFilterId\n };\n\n return this.get({\n path: '/api/enterprise/filters/processes/{userFilterId}',\n pathParams\n });\n }\n\n /**\n * List process instance filters\n *\n * Returns filters for the current user, optionally filtered by *appId*.\n *\n * @param opts Optional parameters\n * @returns Promise<ResultListDataRepresentationUserProcessInstanceFilterRepresentation>\n */\n getUserProcessInstanceFilters(opts?: AppIdQuery): Promise<ResultListDataRepresentationUserProcessInstanceFilterRepresentation> {\n return this.get({\n path: '/api/enterprise/filters/processes',\n queryParams: opts\n });\n }\n\n /**\n * Get a task filter\n *\n * @param userFilterId userFilterId\n * @returns Promise<UserTaskFilterRepresentation>\n */\n getUserTaskFilter(userFilterId: number): Promise<UserTaskFilterRepresentation> {\n throwIfNotDefined(userFilterId, 'userFilterId');\n\n const pathParams = {\n userFilterId\n };\n\n return this.get({\n path: '/api/enterprise/filters/tasks/{userFilterId}',\n pathParams,\n returnType: UserTaskFilterRepresentation\n });\n }\n\n /**\n * List task filters\n *\n * Returns filters for the current user, optionally filtered by *appId*.\n *\n * @param opts Optional parameters\n * @returns Promise<ResultListDataRepresentationUserTaskFilterRepresentation>\n */\n getUserTaskFilters(opts?: AppIdQuery): Promise<ResultListDataRepresentationUserTaskFilterRepresentation> {\n return this.get({\n path: '/api/enterprise/filters/tasks',\n queryParams: opts,\n returnType: ResultListDataRepresentationUserTaskFilterRepresentation\n });\n }\n\n /**\n * Re-order the list of user process instance filters\n *\n * @param filterOrderRepresentation filterOrderRepresentation\n * @returns Promise<{}>\n */\n orderUserProcessInstanceFilters(filterOrderRepresentation: UserFilterOrderRepresentation): Promise<any> {\n throwIfNotDefined(filterOrderRepresentation, 'filterOrderRepresentation');\n\n return this.put({\n path: '/api/enterprise/filters/processes',\n bodyParam: filterOrderRepresentation\n });\n }\n\n /**\n * Re-order the list of user task filters\n *\n * @param filterOrderRepresentation filterOrderRepresentation\n * @returns Promise<{}>\n */\n orderUserTaskFilters(filterOrderRepresentation: UserFilterOrderRepresentation): Promise<any> {\n throwIfNotDefined(filterOrderRepresentation, 'filterOrderRepresentation');\n\n return this.put({\n path: '/api/enterprise/filters/tasks',\n bodyParam: filterOrderRepresentation\n });\n }\n\n /**\n * Update a process instance filter\n *\n * @param userFilterId userFilterId\n * @param userProcessInstanceFilterRepresentation userProcessInstanceFilterRepresentation\n * @returns Promise<UserProcessInstanceFilterRepresentation>\n */\n updateUserProcessInstanceFilter(\n userFilterId: number,\n userProcessInstanceFilterRepresentation: UserProcessInstanceFilterRepresentation\n ): Promise<UserProcessInstanceFilterRepresentation> {\n throwIfNotDefined(userFilterId, 'userFilterId');\n throwIfNotDefined(userProcessInstanceFilterRepresentation, 'userProcessInstanceFilterRepresentation');\n\n const pathParams = {\n userFilterId\n };\n\n return this.put({\n path: '/api/enterprise/filters/processes/{userFilterId}',\n pathParams,\n bodyParam: userProcessInstanceFilterRepresentation\n });\n }\n\n /**\n * Update a task filter\n *\n * @param userFilterId userFilterId\n * @param userTaskFilterRepresentation userTaskFilterRepresentation\n * @returns Promise<UserTaskFilterRepresentation>\n */\n updateUserTaskFilter(userFilterId: number, userTaskFilterRepresentation: UserTaskFilterRepresentation): Promise<UserTaskFilterRepresentation> {\n throwIfNotDefined(userFilterId, 'userFilterId');\n throwIfNotDefined(userTaskFilterRepresentation, 'userTaskFilterRepresentation');\n\n const pathParams = {\n userFilterId\n };\n\n return this.put({\n path: '/api/enterprise/filters/tasks/{userFilterId}',\n pathParams,\n bodyParam: userTaskFilterRepresentation,\n returnType: UserTaskFilterRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ChangePasswordRepresentation } from '../model/changePasswordRepresentation';\nimport { ImageUploadRepresentation } from '../model/imageUploadRepresentation';\nimport { UserRepresentation } from '../model/userRepresentation';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\n/**\n * Userprofile service.\n */\nexport class UserProfileApi extends BaseApi {\n /**\n * Change user password\n *\n * @param changePasswordRepresentation changePasswordRepresentation\n * @return Promise<{}>\n */\n changePassword(changePasswordRepresentation: ChangePasswordRepresentation): Promise<any> {\n throwIfNotDefined(changePasswordRepresentation, 'changePasswordRepresentation');\n\n return this.post({\n path: '/api/enterprise/profile-password',\n bodyParam: changePasswordRepresentation\n });\n }\n\n /**\n * Retrieve user profile picture\n * Generally returns an image file\n *\n * @return Promise<Blob>\n */\n getProfilePicture(): Promise<any> {\n return this.get({\n path: '/api/enterprise/profile-picture',\n accepts: ['application/json', '*/*']\n });\n }\n\n /**\n * Retrieve user URL profile picture\n * Generally returns an image file\n */\n getProfilePictureUrl() {\n return this.apiClient.basePath + '/app/rest/admin/profile-picture';\n }\n\n /**\n * Get user profile\n * This operation returns account information for the current user.\n * This is useful to get the name, email, the groups that the user is part of, the user picture, etc.\n *\n * @return Promise<UserRepresentation>\n */\n getProfile(): Promise<UserRepresentation> {\n return this.get({\n path: '/api/enterprise/profile',\n returnType: UserRepresentation\n });\n }\n\n /**\n * Update user profile.\n * Only a first name, last name, email and company can be updated\n *\n * @param userRepresentation userRepresentation\n * @return Promise<UserRepresentation>\n */\n updateProfile(userRepresentation: UserRepresentation): Promise<UserRepresentation> {\n throwIfNotDefined(userRepresentation, 'userRepresentation');\n\n return this.post({\n path: '/api/enterprise/profile',\n bodyParam: userRepresentation,\n returnType: UserRepresentation\n });\n }\n\n /**\n * Change user profile picture\n *\n * @param file file\n * @return Promise<ImageUploadRepresentation>\n */\n uploadProfilePicture(file: any): Promise<ImageUploadRepresentation> {\n throwIfNotDefined(file, 'file');\n\n const formParams = {\n file\n };\n\n return this.post({\n path: '/api/enterprise/profile-picture',\n formParams,\n returnType: ImageUploadRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ResetPasswordRepresentation } from '../model/resetPasswordRepresentation';\nimport { ResultListDataRepresentationLightUserRepresentation } from '../model/resultListDataRepresentationLightUserRepresentation';\nimport { UserActionRepresentation } from '../model/userActionRepresentation';\nimport { UserRepresentation } from '../model/userRepresentation';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\nexport type GetUsersQuery = {\n filter?: string;\n email?: string;\n externalId?: string;\n externalIdCaseInsensitive?: string;\n excludeTaskId?: string;\n excludeProcessId?: string;\n groupId?: number;\n tenantId?: number;\n};\n\n/**\n * Users service.\n */\nexport class UsersApi extends BaseApi {\n /**\n * Execute an action for a specific user\n *\n * Typical action is updating/reset password\n *\n * @param userId userId\n * @param actionRequest actionRequest\n * @returns Promise<{}>\n */\n executeAction(userId: number, actionRequest: UserActionRepresentation): Promise<any> {\n throwIfNotDefined(userId, 'userId');\n throwIfNotDefined(actionRequest, 'actionRequest');\n\n const pathParams = {\n userId\n };\n\n return this.post({\n path: '/api/enterprise/users/{userId}',\n pathParams,\n bodyParam: actionRequest\n });\n }\n\n /**\n * Stream user profile picture\n *\n * @param userId userId\n * @returns Promise<{}>\n */\n getUserProfilePictureUrl(userId: string): string {\n return this.apiClient.basePath + '/app/rest/users/' + userId + '/picture';\n }\n\n /**\n * Get a user\n *\n * @param userId userId\n * @returns Promise<UserRepresentation>\n */\n getUser(userId: number): Promise<UserRepresentation> {\n throwIfNotDefined(userId, 'userId');\n\n const pathParams = {\n userId\n };\n\n return this.get({\n path: '/api/enterprise/users/{userId}',\n pathParams,\n returnType: UserRepresentation\n });\n }\n\n /**\n * Query users\n *\n * A common use case is that a user wants to select another user (eg. when assigning a task) or group.\n *\n * @param opts Optional parameters\n * @returns Promise<ResultListDataRepresentationLightUserRepresentation>\n */\n getUsers(opts?: GetUsersQuery): Promise<ResultListDataRepresentationLightUserRepresentation> {\n opts = opts || {};\n\n const queryParams = {\n filter: opts['filter'],\n email: opts['email'],\n externalId: opts['externalId'],\n externalIdCaseInsensitive: opts['externalIdCaseInsensitive'],\n excludeTaskId: opts['excludeTaskId'],\n excludeProcessId: opts['excludeProcessId'],\n groupId: opts['groupId'],\n tenantId: opts['tenantId']\n };\n\n return this.get({\n path: '/api/enterprise/users',\n queryParams\n });\n }\n\n /**\n * Request a password reset\n *\n * @param resetPassword resetPassword\n * @returns Promise<{}>\n */\n requestPasswordReset(resetPassword: ResetPasswordRepresentation): Promise<any> {\n throwIfNotDefined(resetPassword, 'resetPassword');\n\n return this.post({\n path: '/api/enterprise/idm/passwords',\n bodyParam: resetPassword\n });\n }\n\n /**\n * Update a user\n *\n * @param userId userId\n * @param userRequest userRequest\n * @returns Promise<UserRepresentation>\n */\n updateUser(userId: number, userRequest: UserRepresentation): Promise<UserRepresentation> {\n throwIfNotDefined(userId, 'userId');\n throwIfNotDefined(userRequest, 'userRequest');\n\n const pathParams = {\n userId\n };\n\n return this.put({\n path: '/api/enterprise/users/{userId}',\n pathParams,\n bodyParam: userRequest,\n returnType: UserRepresentation\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\nexport class ReportApi extends BaseApi {\n /**\n * Create the default reports\n */\n createDefaultReports() {\n return this.post({\n path: '/app/rest/reporting/default-reports'\n });\n }\n\n getTasksByProcessDefinitionId(reportId: string, processDefinitionId: string) {\n throwIfNotDefined(reportId, 'reportId');\n throwIfNotDefined(processDefinitionId, 'processDefinitionId');\n\n const pathParams = {\n reportId\n };\n const queryParams = {\n processDefinitionId\n };\n\n return this.get({\n path: '/app/rest/reporting/report-params/{reportId}/tasks',\n pathParams,\n queryParams\n });\n }\n\n getReportsByParams(reportId: string, bodyParam: any) {\n throwIfNotDefined(reportId, 'reportId');\n\n const pathParams = {\n reportId\n };\n\n return this.post({\n path: '/app/rest/reporting/report-params/{reportId}',\n pathParams,\n bodyParam\n });\n }\n\n getProcessDefinitions() {\n return this.get({\n path: '/app/rest/reporting/process-definitions'\n });\n }\n\n getReportParams(reportId: string) {\n throwIfNotDefined(reportId, 'reportId');\n\n const pathParams = {\n reportId\n };\n\n return this.get({\n path: '/app/rest/reporting/report-params/{reportId}',\n pathParams\n });\n }\n\n getReportList() {\n return this.get({\n path: '/app/rest/reporting/reports'\n });\n }\n\n updateReport(reportId: string, name: string) {\n throwIfNotDefined(reportId, 'reportId');\n\n const postBody = {\n name\n };\n\n const pathParams = {\n reportId\n };\n\n return this.put({\n path: '/app/rest/reporting/reports/{reportId}',\n pathParams,\n bodyParam: postBody\n });\n }\n\n /**\n * Export a report\n *\n * @param reportId report id\n * @param bodyParam body parameters\n */\n exportToCsv(reportId: string, bodyParam: { reportName?: string }) {\n throwIfNotDefined(reportId, 'reportId');\n throwIfNotDefined(bodyParam, 'bodyParam');\n throwIfNotDefined(bodyParam.reportName, 'reportName');\n\n const pathParams = {\n reportId\n };\n\n return this.post({\n path: '/app/rest/reporting/reports/{reportId}/export-to-csv',\n pathParams,\n bodyParam\n });\n }\n\n /**\n * Save a report\n *\n * @param reportId report id\n * @param opts Optional parameters\n */\n saveReport(reportId: string, opts: { reportName?: string }) {\n throwIfNotDefined(reportId, 'reportId');\n throwIfNotDefined(opts, 'opts');\n throwIfNotDefined(opts.reportName, 'reportName');\n\n const bodyParam = {\n reportName: opts.reportName,\n __reportName: opts.reportName\n };\n\n const pathParams = {\n reportId\n };\n\n return this.post({\n path: '/app/rest/reporting/reports/{reportId}',\n pathParams,\n bodyParam\n });\n }\n\n /**\n * Delete a report\n *\n * @param reportId report id\n */\n deleteReport(reportId: string) {\n throwIfNotDefined(reportId, 'reportId');\n\n const pathParams = {\n reportId\n };\n\n return this.delete({\n path: '/app/rest/reporting/reports/{reportId}',\n pathParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\n\nexport class ModelJsonBpmnApi extends BaseApi {\n /**\n * Export a previous process definition model to a JSON\n *\n * @param processModelId processModelId\n * @param processModelHistoryId processModelHistoryId\n */\n getHistoricEditorDisplayJsonClient(processModelId: number, processModelHistoryId: number) {\n throwIfNotDefined(processModelId, 'processModelId');\n throwIfNotDefined(processModelHistoryId, 'processModelHistoryId');\n\n const pathParams = {\n processModelId,\n processModelHistoryId\n };\n\n return this.get({\n path: '/app/rest/models/{processModelId}/history/{processModelHistoryId}/model-json',\n pathParams\n });\n }\n\n /**\n * Export a process definition model to a JSON\n *\n * @param processModelId processModelId\n */\n getEditorDisplayJsonClient(processModelId: number) {\n throwIfNotDefined(processModelId, 'processModelId');\n\n const pathParams = {\n processModelId\n };\n\n return this.get({\n path: '/app/rest/models/{processModelId}/model-json',\n pathParams\n });\n }\n\n /**\n * Function to receive the result of the getModelJSONForProcessDefinition operation.\n *\n * @param processDefinitionId processDefinitionId\n */\n getModelJSON(processDefinitionId: string) {\n throwIfNotDefined(processDefinitionId, 'processDefinitionId');\n\n const pathParams = {\n processDefinitionId\n };\n\n return this.get({\n path: '/app/rest/process-definitions/{processDefinitionId}/model-json',\n pathParams\n });\n }\n\n /**\n * Function to receive the result of the getModelHistoryJSON operation.\n *\n * @param processInstanceId processInstanceId\n */\n getModelJSONForProcessDefinition(processInstanceId: string) {\n throwIfNotDefined(processInstanceId, 'processInstanceId');\n\n const pathParams = {\n processInstanceId\n };\n\n return this.get({\n path: '/app/rest/process-instances/{processInstanceId}/model-json',\n pathParams\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { BaseApi } from './base.api';\n\n/**\n * Temporary service.\n */\nexport class TemporaryApi extends BaseApi {\n /**\n * completeTasks\n *\n * @param userId userId\n * @param processDefinitionKey processDefinitionKey\n */\n completeTasks(userId: number, processDefinitionKey: string) {\n // verify the required parameter 'userId' is set\n if (userId === undefined || userId === null) {\n throw new Error(`Missing param 'userId' in completeTasks`);\n }\n\n // verify the required parameter 'processDefinitionKey' is set\n if (processDefinitionKey === undefined || processDefinitionKey === null) {\n throw new Error(`Missing param 'processDefinitionKey' in completeTasks`);\n }\n\n const queryParams = {\n userId,\n processDefinitionKey\n };\n\n return this.get({\n path: '/api/enterprise/temporary/generate-report-data/complete-tasks',\n queryParams\n });\n }\n\n /**\n * generateData\n *\n * @param userId userId\n * @param processDefinitionKey processDefinitionKey\n */\n generateData(userId: number, processDefinitionKey: string) {\n // verify the required parameter 'userId' is set\n if (userId === undefined || userId === null) {\n throw new Error(`Missing param 'userId' in generateData`);\n }\n\n // verify the required parameter 'processDefinitionKey' is set\n if (processDefinitionKey === undefined || processDefinitionKey === null) {\n throw new Error(`Missing param 'processDefinitionKey' in generateData`);\n }\n\n const queryParams = {\n userId,\n processDefinitionKey\n };\n\n return this.get({\n path: '/api/enterprise/temporary/generate-report-data/start-process',\n queryParams\n });\n }\n\n /**\n * Function to receive the result of the getHeaders operation.\n */\n getHeaders() {\n return this.get({\n path: '/api/enterprise/temporary/example-headers'\n });\n }\n\n /**\n * Function to receive the result of the getOptions operation.\n */\n getOptions() {\n return this.get({\n path: '/api/enterprise/temporary/example-options'\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './about.api';\nexport * from './accountIntegration.api';\nexport * from './adminEndpoints.api';\nexport * from './adminGroups.api';\nexport * from './adminTenants.api';\nexport * from './adminUsers.api';\nexport * from './appDefinitions.api';\nexport * from './checklists.api';\nexport * from './comments.api';\nimport { ContentApi as ActivitiContentApi } from './content.api';\nexport { ActivitiContentApi };\nexport * from './dataSources.api';\nexport * from './decisionAudits.api';\nexport * from './decisionTables.api';\nexport * from './endpoints.api';\nexport * from './formModels.api';\nexport * from './groups.api';\nexport * from './iDMSync.api';\nexport * from './integrationAlfrescoCloud.api';\nexport * from './integrationAlfrescoOnPremise.api';\nexport * from './integrationBox.api';\nexport * from './integrationDrive.api';\nexport * from './models.api';\nexport * from './modelsBpmn.api';\nexport * from './modelsHistory.api';\nexport * from './processDefinitions.api';\nexport * from './processInstances.api';\nexport * from './processInstanceVariables.api';\nexport * from './processScopes.api';\nexport * from './runtimeAppDefinitions.api';\nexport * from './runtimeAppDeployments.api';\nexport * from './scriptFiles.api';\nexport * from './submittedForms.api';\nexport * from './systemProperties.api';\nexport * from './taskActions.api';\nexport * from './taskForms.api';\nexport * from './tasks.api';\nexport * from './taskVariables.api';\nexport * from './userFilters.api';\nexport * from './userProfile.api';\nexport * from './users.api';\nexport * from './report.api';\nexport * from './modelJsonBpmn.api';\nexport * from './temporary.api';\nexport * from './types';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './api';\nexport * from './model';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ContentInfo, PathInfo, UserInfo } from '../../content-rest-api';\nimport { DateAlfresco } from '../../content-custom-api';\nimport { SearchEntry } from './searchEntry';\n\nexport class ResultNode {\n id: string;\n /**\n * The name must not contain spaces or the following special characters: * \\\" < > \\\\ / ? : and |.\n * The character . must not be used at the end of the name.\n */\n name: string;\n nodeType: string;\n isFolder: boolean;\n isFile: boolean;\n isLocked?: boolean;\n modifiedAt?: Date;\n modifiedByUser?: UserInfo;\n createdAt?: Date;\n createdByUser?: UserInfo;\n parentId?: string;\n isLink?: boolean;\n content?: ContentInfo;\n aspectNames?: string[];\n properties?: any;\n allowableOperations?: string[];\n path?: PathInfo;\n search?: SearchEntry;\n archivedByUser?: UserInfo;\n archivedAt?: Date;\n versionLabel?: string;\n versionComment?: string;\n\n constructor(input?: Partial<ResultNode>) {\n if (input) {\n Object.assign(this, input);\n this.modifiedAt = input.modifiedAt ? DateAlfresco.parseDate(input.modifiedAt) : undefined;\n this.modifiedByUser = input.modifiedByUser ? new UserInfo(input.modifiedByUser) : undefined;\n this.createdAt = input.createdAt ? DateAlfresco.parseDate(input.createdAt) : undefined;\n this.createdByUser = input.createdByUser ? new UserInfo(input.createdByUser) : undefined;\n this.content = input.content ? new ContentInfo(input.content) : undefined;\n this.path = input.path ? new PathInfo(input.path) : undefined;\n this.archivedByUser = input.archivedByUser ? new UserInfo(input.archivedByUser) : undefined;\n this.archivedAt = input.archivedAt ? DateAlfresco.parseDate(input.archivedAt) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ResultNode } from './resultNode';\n\n/**\n * A row in the result set\n */\nexport class ResultSetRowEntry {\n entry: ResultNode;\n\n constructor(input?: Partial<ResultSetRowEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new ResultNode(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from '../../content-rest-api';\nimport { ResultSetContext } from './resultSetContext';\nimport { ResultSetRowEntry } from './resultSetRowEntry';\n\nexport class ResultSetPagingList {\n pagination?: Pagination;\n context?: ResultSetContext;\n entries?: ResultSetRowEntry[];\n\n constructor(input?: Partial<ResultSetPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new ResultSetRowEntry(item));\n }\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ResultSetPagingList } from './resultSetPagingList';\n\n/**\n * Query results\n */\nexport class ResultSetPaging {\n list?: ResultSetPagingList;\n\n constructor(input?: Partial<ResultSetPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new ResultSetPagingList(input.list) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ResultSetPaging } from '../model/resultSetPaging';\nimport { SearchRequest } from '../model/searchRequest';\nimport { throwIfNotDefined } from '../../../assert';\nimport { ApiClient } from '../../../api-clients/api-client';\nimport { LegacyHttpClient } from '../../../api-clients/http-client.interface';\n\n/**\n * Search service.\n *\n * @module SearchApi\n */\nexport class SearchApi extends ApiClient {\n override get apiClient(): LegacyHttpClient {\n return this.httpClient ?? this.alfrescoApi.searchClient;\n }\n\n /**\n * Searches Alfresco\n *\n * **Note**: this endpoint is available in Alfresco 5.2 and newer versions.\n *\n * @param queryBody Generic query API\n * @returns Promise<ResultSetPaging>\n */\n search(queryBody: SearchRequest): Promise<ResultSetPaging> {\n throwIfNotDefined(queryBody, 'queryBody');\n\n return this.post({\n path: '/search',\n bodyParam: queryBody,\n returnType: ResultSetPaging\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './search.api';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './genericBucket';\nexport * from './genericBucketBucketInfo';\nexport * from './genericFacetResponse';\nexport * from './genericMetric';\nexport * from './requestDefaults';\nexport * from './requestFacetField';\nexport * from './requestFacetFields';\nexport * from './requestFacetIntervals';\nexport * from './requestFacetIntervalsIntervals';\nexport * from './requestFacetQueries';\nexport * from './requestFacetQueriesInner';\nexport * from './requestFacetSet';\nexport * from './requestFields';\nexport * from './requestFilterQueries';\nexport * from './requestFilterQueriesInner';\nexport * from './requestHighlight';\nexport * from './requestHighlightFields';\nexport * from './requestInclude';\nexport * from './requestLimits';\nexport * from './requestLocalization';\nexport * from './requestPagination';\nexport * from './requestPivot';\nexport * from './requestQuery';\nexport * from './requestRange';\nexport * from './requestScope';\nexport * from './requestSortDefinition';\nexport * from './requestSortDefinitionInner';\nexport * from './requestSpellcheck';\nexport * from './requestStats';\nexport * from './requestTemplates';\nexport * from './requestTemplatesInner';\nexport * from './responseConsistency';\nexport * from './resultBuckets';\nexport * from './resultBucketsBuckets';\nexport * from './resultSetContext';\nexport * from './resultSetContextFacetQueries';\nexport * from './resultSetContextSpellcheck';\nexport * from './resultSetPaging';\nexport * from './resultSetPagingList';\nexport * from './resultSetRowEntry';\nexport * from './searchEntry';\nexport * from './searchEntryHighlight';\nexport * from './searchRequest';\nexport * from './resultNode';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './api';\nexport * from './model';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Property } from '../../content-rest-api';\nimport { AbstractClassAssociation } from './abstractClassAssociation';\nimport { Model } from './model';\n\nexport class AbstractClass {\n id: string;\n title: string;\n description?: string;\n parentId?: string;\n properties?: Property[];\n isContainer?: boolean;\n isArchive?: boolean;\n includedInSupertypeQuery?: boolean;\n mandatoryAspects?: string[];\n associations?: AbstractClassAssociation[];\n model?: Model;\n\n constructor(input?: Partial<AbstractClass>) {\n if (input) {\n Object.assign(this, input);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AbstractClass } from './abstractClass';\n\nexport class Aspect extends AbstractClass {\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Aspect } from './aspect';\n\nexport class AspectEntry {\n entry: Aspect;\n\n constructor(input?: Partial<AspectEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Aspect(input.entry) : undefined;\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AspectEntry } from './aspectEntry';\nimport { Pagination } from '../../content-rest-api';\n\nexport class AspectPagingList {\n pagination?: Pagination;\n entries?: AspectEntry[];\n\n constructor(input?: Partial<AspectPagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new AspectEntry(item));\n }\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AspectPagingList } from './aspectPagingList';\n\nexport class AspectPaging {\n list?: AspectPagingList;\n\n constructor(input?: Partial<AspectPaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new AspectPagingList(input.list) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ApiClient } from '../../../api-clients/api-client';\nimport { LegacyHttpClient } from '../../../api-clients/http-client.interface';\n\nexport abstract class BaseApi extends ApiClient {\n override get apiClient(): LegacyHttpClient {\n return this.httpClient ?? this.alfrescoApi.contentClient;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AspectEntry } from '../model/aspectEntry';\nimport { AspectPaging } from '../model/aspectPaging';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\n\nexport class ListAspectsOpts {\n /**\n * Optionally filter the list. Here are some examples:\n *\n * An aspect should be represented in the following format(prefix:name). e.g 'cm:title'.\n *\n * The following where clause will only return aspects from the namespace1:model and namespace2:model.\n *\n * - where=(modelId in ('namespace1:model','namespace2:model'))\n * - where=(modelId in ('namespace1:model INCLUDESUBASPECTS','namespace2:model'))\n *\n * The following where clause will only return sub aspects for the given parents.\n *\n * - where=(parentId in ('namespace1:parent','namespace2:parent'))\n *\n * The following where clause will only return aspects that match the pattern.\n *\n * - where=(namespaceUri matches('http://www.alfresco.*'))\n *\n * The following where clause will only return aspects that don't match the pattern.\n *\n * - where=(not namespaceUri matches('http://www.alfresco.*'))\n */\n where?: string;\n // The number of entities that exist in the collection before those included in this list.\n // If not supplied then the default value is 0.\n skipCount?: number;\n // The maximum number of items to return in the list.\n // If not supplied then the default value is 100.\n maxItems?: number;\n /**\n * Returns additional information about the aspect. The following optional fields can be requested:\n * - properties\n * - mandatoryAspects\n * - associations\n */\n include?: string[];\n}\n\n/**\n * Aspects service.\n */\nexport class AspectsApi extends BaseApi {\n /**\n * Get an aspect\n *\n * **Note:** This is available in Alfresco 7.0.0 and newer versions.\n *\n * @param aspectId The `Qname` of an aspect(prefix:name) e.g 'cm:title'\n * @returns Promise<AspectEntry>\n */\n getAspect(aspectId: string): Promise<AspectEntry> {\n throwIfNotDefined(aspectId, 'aspectId');\n\n const pathParams = {\n aspectId\n };\n\n return this.get<AspectEntry>({\n path: '/aspects/{aspectId}',\n pathParams,\n returnType: AspectEntry\n });\n }\n\n /**\n * List aspects\n *\n * **Note:** This is available in Alfresco 7.0.0 and newer versions.\n *\n * @param opts Optional parameters\n * @returns Promise<AspectPaging>\n */\n listAspects(opts?: ListAspectsOpts): Promise<AspectPaging> {\n const queryParams = {\n where: opts?.where,\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n include: buildCollectionParam(opts?.include, 'csv')\n };\n\n return this.get<AspectPaging>({\n path: '/aspects',\n queryParams,\n returnType: AspectPaging\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AbstractClass } from './abstractClass';\n\nexport class Type extends AbstractClass {\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Type } from './type';\n\nexport class TypeEntry {\n entry: Type;\n\n constructor(input?: Partial<TypeEntry>) {\n if (input) {\n Object.assign(this, input);\n this.entry = input.entry ? new Type(input.entry) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Pagination } from '../../content-rest-api/model/pagination';\nimport { TypeEntry } from './typeEntry';\n\nexport class TypePagingList {\n pagination?: Pagination;\n entries?: TypeEntry[];\n\n constructor(input?: Partial<TypePagingList>) {\n if (input) {\n Object.assign(this, input);\n this.pagination = input.pagination ? new Pagination(input.pagination) : undefined;\n if (input.entries) {\n this.entries = input.entries.map((item) => new TypeEntry(item));\n }\n }\n }\n\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TypePagingList } from './typePagingList';\n\nexport class TypePaging {\n list?: TypePagingList;\n\n constructor(input?: Partial<TypePaging>) {\n if (input) {\n Object.assign(this, input);\n this.list = input.list ? new TypePagingList(input.list) : undefined;\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { TypeEntry } from '../model/typeEntry';\nimport { TypePaging } from '../model/typePaging';\nimport { BaseApi } from './base.api';\nimport { throwIfNotDefined } from '../../../assert';\nimport { buildCollectionParam } from '../../../alfrescoApiClient';\n\nexport interface ListTypesOpts {\n /**\n * Optionally filter the list. Here are some examples:\n *\n * A type should be represented in the following format(prefix:name). e.g 'cm:content'.\n *\n * The following where clause will only return types from the namespace1:model and namespace2:model.\n * - where=(modelId in ('namespace1:model','namespace2:model'))\n * - where=(modelId in ('namespace1:model INCLUDESUBTYPES','namespace2:model'))\n *\n * The following where clause will only return sub types for the given parents.\n * - where=(parentId in ('namespace1:parent','namespace2:parent'))\n *\n * The following where clause will only return types that match the pattern.\n * - where=(namespaceUri matches('http://www.alfresco.*'))\n *\n * The following where clause will only return types that don't match the pattern.\n * - where=(not namespaceUri matches('http://www.alfresco.*'))\n */\n where?: string;\n // The number of entities that exist in the collection before those included in this list.\n // If not supplied then the default value is 0.\n skipCount?: number;\n // The maximum number of items to return in the list.\n // If not supplied then the default value is 100.\n maxItems?: number;\n /**\n * Returns additional information about the type.\n * The following optional fields can be requested:\n * - properties\n * - mandatoryAspects\n * - associations\n */\n include?: string[];\n}\n\n/**\n * Types service.\n */\nexport class TypesApi extends BaseApi {\n /**\n * Get a type\n *\n * **Note:** This is available in Alfresco 7.0.0 and newer versions.\n *\n * @param typeId The `Qname` of a type(prefix:name) e.g 'cm:content'\n * @returns Promise<TypeEntry>\n */\n getType(typeId: string): Promise<TypeEntry> {\n throwIfNotDefined(typeId, 'typeId');\n\n const pathParams = {\n typeId\n };\n\n return this.get<TypeEntry>({\n path: '/types/{typeId}',\n pathParams,\n returnType: TypeEntry\n });\n }\n\n /**\n * List types\n *\n * **Note:** This is available in Alfresco 7.0.0 and newer versions.\n *\n * @param opts Optional parameters\n * @returns Promise<TypePaging>\n */\n listTypes(opts?: ListTypesOpts): Promise<TypePaging> {\n const queryParams = {\n where: opts?.where,\n skipCount: opts?.skipCount,\n maxItems: opts?.maxItems,\n include: buildCollectionParam(opts?.include, 'csv')\n };\n\n return this.get<TypePaging>({\n path: '/types',\n queryParams,\n returnType: TypePaging\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './aspects.api';\nexport * from './types.api';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './abstractClass';\nexport * from './abstractClassAssociation';\nexport * from './abstractClassAssociationSource';\nexport * from './aspect';\nexport * from './aspectEntry';\nexport * from './aspectPaging';\nexport * from './aspectPagingList';\nexport * from './type';\nexport * from './typeEntry';\nexport * from './typePaging';\nexport * from './typePagingList';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './api';\nexport * from './model';\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport ee from 'event-emitter';\nimport { AuthenticationApi, TicketBody } from '../api/auth-rest-api';\nimport { AlfrescoApiClient } from '../alfrescoApiClient';\nimport { AlfrescoApiConfig } from '../alfrescoApiConfig';\nimport { Authentication } from './authentication';\nimport { Storage } from '../storage';\nimport { AlfrescoApiType } from '../to-deprecate/alfresco-api-type';\nimport { HttpClient } from '../api-clients/http-client.interface';\n\nexport class ContentAuth extends AlfrescoApiClient {\n ticketStorageLabel: string;\n ticket: string;\n\n authApi: AuthenticationApi;\n\n constructor(config: AlfrescoApiConfig, alfrescoApi: AlfrescoApiType, httpClient?: HttpClient) {\n super(undefined, httpClient);\n this.className = 'ContentAuth';\n this.storage = Storage.getInstance();\n this.storage.setDomainPrefix(config.domainPrefix);\n\n this.setConfig(config);\n\n this.authApi = new AuthenticationApi(alfrescoApi);\n }\n\n setConfig(config: AlfrescoApiConfig) {\n this.config = config;\n\n this.basePath = this.config.hostEcm + '/' + this.config.contextRoot + '/api/-default-/public/authentication/versions/1'; //Auth Call\n\n this.ticketStorageLabel = 'ticket-ECM';\n\n if (this.config.ticketEcm) {\n this.setTicket(config.ticketEcm);\n } else if (this.storage.getItem(this.ticketStorageLabel)) {\n this.setTicket(this.storage.getItem(this.ticketStorageLabel));\n }\n }\n\n changeHost() {\n this.basePath = this.config.hostEcm + '/' + this.config.contextRoot + '/api/-default-/public/authentication/versions/1'; //Auth Call\n this.ticket = undefined;\n }\n\n saveUsername(username: string) {\n if (this.storage.supportsStorage()) {\n this.storage.setItem('ACS_USERNAME', username);\n }\n }\n\n /**\n * login Alfresco API\n *\n * @param username Username to login\n * @param password Password to login\n * @returns A promise that returns {new authentication ticket} if resolved and {error} if rejected.\n */\n login(username: string, password: string): Promise<string> {\n this.authentications.basicAuth.username = username;\n this.authentications.basicAuth.password = password;\n\n const loginRequest = new TicketBody({\n userId: this.authentications.basicAuth.username,\n password: this.authentications.basicAuth.password\n });\n\n const promise: any = new Promise<string>((resolve, reject) => {\n this.authApi\n .createTicket(loginRequest)\n .then((data) => {\n this.saveUsername(username);\n this.setTicket(data.entry.id);\n promise.emit('success');\n this.emit('logged-in');\n resolve(data.entry.id);\n })\n .catch((error) => {\n this.saveUsername('');\n if (error.status === 401) {\n promise.emit('unauthorized');\n } else if (error.status === 403) {\n promise.emit('forbidden');\n } else {\n promise.emit('error');\n }\n reject(error);\n });\n });\n\n ee(promise); // jshint ignore:line\n return promise;\n }\n\n /**\n * validate the ticket present in this.config.ticket against the server\n *\n * @returns A promise that returns if resolved and {error} if rejected.\n */\n validateTicket(): Promise<string> {\n this.setTicket(this.config.ticketEcm);\n\n const promise: any = new Promise<string>((resolve, reject) => {\n this.authApi.validateTicket().then(\n (data) => {\n this.setTicket(data.entry.id);\n promise.emit('success');\n this.emit('logged-in');\n resolve(data.entry.id);\n },\n (error) => {\n if (error.status === 401) {\n promise.emit('unauthorized');\n }\n promise.emit('error');\n reject(error);\n }\n );\n });\n\n ee(promise); // jshint ignore:line\n return promise;\n }\n\n /**\n * logout Alfresco API\n *\n * @returns A promise that returns { authentication ticket} if resolved and {error} if rejected.\n */\n logout(): Promise<void> {\n this.saveUsername('');\n const promise: any = new Promise<void>((resolve, reject) => {\n this.authApi.deleteTicket().then(\n () => {\n promise.emit('logout');\n this.invalidateSession();\n resolve();\n },\n (error) => {\n if (error.status === 401) {\n promise.emit('unauthorized');\n }\n promise.emit('error');\n reject(error);\n }\n );\n });\n\n ee(promise); // jshint ignore:line\n return promise;\n }\n\n /**\n * Set the current Ticket\n */\n setTicket(ticket: string) {\n this.authentications.basicAuth.username = 'ROLE_TICKET';\n this.authentications.basicAuth.password = ticket;\n this.config.ticketEcm = ticket;\n this.storage.setItem(this.ticketStorageLabel, ticket);\n this.ticket = ticket;\n }\n\n /**\n * Get the current Ticket\n *\n * @returns ticket value\n */\n getTicket(): string {\n return this.ticket;\n }\n\n invalidateSession() {\n this.storage.removeItem(this.ticketStorageLabel);\n this.authentications.basicAuth.username = null;\n this.authentications.basicAuth.password = null;\n this.config.ticketEcm = null;\n this.ticket = null;\n }\n\n /**\n * If the client is logged in return true\n *\n * @returns `true` if client is logged in, otherwise `false`\n */\n isLoggedIn(): boolean {\n return !!this.ticket;\n }\n\n /**\n * return the Authentication\n *\n * @returns authentication object\n */\n getAuthentication(): Authentication {\n return this.authentications;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport ee from 'event-emitter';\nimport { AlfrescoApiClient, AlfrescoApiClientPromise } from '../alfrescoApiClient';\nimport { AlfrescoApiConfig } from '../alfrescoApiConfig';\nimport { Authentication } from './authentication';\nimport { Storage } from '../storage';\nimport { HttpClient } from '../api-clients/http-client.interface';\nimport { isBrowser } from '../utils';\n\nexport class ProcessAuth extends AlfrescoApiClient {\n ticket: string;\n\n authentications: Authentication = {\n basicAuth: { ticket: '' },\n type: 'activiti'\n };\n\n constructor(config: AlfrescoApiConfig, httpClient?: HttpClient) {\n super(undefined, httpClient);\n this.storage = Storage.getInstance();\n this.storage.setDomainPrefix(config.domainPrefix);\n\n this.className = 'ProcessAuth';\n\n if (!isBrowser()) {\n this.defaultHeaders = {\n 'user-agent': 'alfresco-js-api'\n };\n }\n\n this.setConfig(config);\n }\n\n setConfig(config: AlfrescoApiConfig) {\n this.config = config;\n this.ticket = undefined;\n\n this.basePath = config.hostBpm + '/' + this.config.contextRootBpm; //Activiti Call\n\n if (this.config.ticketBpm) {\n this.setTicket(config.ticketBpm);\n } else if (this.storage.getItem('ticket-BPM')) {\n this.setTicket(this.storage.getItem('ticket-BPM'));\n }\n }\n\n changeHost() {\n this.basePath = this.config.hostBpm + '/' + this.config.contextRootBpm; //Activiti Call\n this.ticket = undefined;\n }\n\n changeCsrfConfig(disableCsrf: boolean) {\n this.config.disableCsrf = disableCsrf;\n }\n\n saveUsername(username: string) {\n if (this.storage.supportsStorage()) {\n this.storage.setItem('APS_USERNAME', username);\n }\n }\n\n /**\n * login Activiti API\n *\n * @param username Username to login\n * @param password Password to login\n * @returns A promise that returns {new authentication ticket} if resolved and {error} if rejected.\n */\n login(username: string, password: string): AlfrescoApiClientPromise<string> {\n this.authentications.basicAuth.username = username;\n this.authentications.basicAuth.password = password;\n\n const headerParams = {\n 'Content-Type': 'application/x-www-form-urlencoded',\n 'Cache-Control': 'no-cache'\n };\n const formParams = {\n j_username: this.authentications.basicAuth.username,\n j_password: this.authentications.basicAuth.password,\n _spring_security_remember_me: true,\n submit: 'Login'\n };\n\n const contentTypes = ['application/x-www-form-urlencoded'];\n const accepts = ['application/json'];\n\n const promise: any = new Promise<string>((resolve, reject) => {\n this.callApi('/app/authentication', 'POST', {}, {}, headerParams, formParams, {}, contentTypes, accepts).then(\n () => {\n this.saveUsername(username);\n const ticket = this.basicAuth(this.authentications.basicAuth.username, this.authentications.basicAuth.password);\n this.setTicket(ticket);\n promise.emit('success');\n this.emit('logged-in');\n resolve(ticket);\n },\n (error) => {\n this.saveUsername('');\n if (error.status === 401) {\n promise.emit('unauthorized');\n } else if (error.status === 403) {\n promise.emit('forbidden');\n } else {\n promise.emit('error');\n }\n reject(error);\n }\n );\n });\n\n ee(promise); // jshint ignore:line\n return promise;\n }\n\n /**\n * logout Alfresco API\n *\n * @returns A promise that returns {new authentication ticket} if resolved and {error} if rejected.\n */\n logout(): AlfrescoApiClientPromise<void> {\n this.saveUsername('');\n\n const contentTypes = ['application/json'];\n const accepts = ['application/json'];\n\n const promise: any = new Promise<void>((resolve, reject) => {\n this.callApi('/app/logout', 'GET', {}, {}, {}, {}, {}, contentTypes, accepts).then(\n () => {\n this.invalidateSession();\n promise.emit('logout');\n resolve();\n },\n (error) => {\n if (error.status === 401) {\n promise.emit('unauthorized');\n }\n promise.emit('error');\n reject(error);\n }\n );\n });\n\n ee(promise);\n return promise;\n }\n\n /**\n * Set the current Ticket\n *\n * @param ticket Ticket value\n */\n setTicket(ticket: string) {\n this.authentications.basicAuth.ticket = ticket;\n this.authentications.basicAuth.password = null;\n this.config.ticketBpm = ticket;\n this.storage.setItem('ticket-BPM', ticket);\n this.ticket = ticket;\n }\n\n invalidateSession() {\n this.storage.removeItem('ticket-BPM');\n this.authentications.basicAuth.ticket = null;\n this.authentications.basicAuth.password = null;\n this.authentications.basicAuth.username = null;\n this.config.ticketBpm = null;\n this.ticket = null;\n }\n\n /**\n * Get the current Ticket\n *\n * @returns ticket\n */\n getTicket(): string {\n return this.ticket;\n }\n\n /**\n * If the client is logged in return true\n *\n * @returns `true` if logged in, otherwise `false`\n */\n isLoggedIn(): boolean {\n return !!this.ticket;\n }\n\n /**\n * return the Authentication\n *\n * @returns authentication object\n */\n getAuthentication(): Authentication {\n return this.authentications;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport class PathMatcher {\n match(path: string, pattern: string): boolean {\n return new RegExp(\n `^${pattern\n .replace(/(^|[^*])\\*(?!\\*)/g, '$1([^\\\\/]*)')\n .replace(/\\/\\*\\*\\//g, '/(.+)/|/')\n .replace(/\\*\\*/g, '(.*)')}$`\n ).test(path);\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport ee from 'event-emitter';\nimport { AlfrescoApiClient } from '../alfrescoApiClient';\nimport { AlfrescoApiConfig } from '../alfrescoApiConfig';\nimport { Authentication } from './authentication';\nimport { AuthenticationApi } from '../api/auth-rest-api';\nimport { AlfrescoApi } from '../alfrescoApi';\nimport { Storage } from '../storage';\nimport { HttpClient } from '../api-clients/http-client.interface';\nimport { PathMatcher } from '../utils/path-matcher';\n\ndeclare const Buffer: any;\n\ndeclare let window: Window;\n\ninterface Userinfo {\n name: string;\n given_name?: string;\n family_name?: string;\n preferred_username?: string;\n email?: string;\n picture?: string;\n}\n\nexport class Oauth2Auth extends AlfrescoApiClient {\n static readonly DEFAULT_AUTHORIZATION_URL = '/protocol/openid-connect/auth';\n static readonly DEFAULT_TOKEN_URL = '/protocol/openid-connect/token';\n static readonly DEFAULT_USER_INFO_ENDPOINT = '/protocol/openid-connect/userinfo';\n static readonly DEFAULT_LOGOUT_URL = '/protocol/openid-connect/logout';\n\n private refreshTokenIntervalPolling: any;\n private refreshTokenTimeoutIframe: any;\n private checkAccessToken = true;\n\n hashFragmentParams: any;\n token: string;\n discovery: {\n loginUrl?: string;\n logoutUrl?: string;\n tokenEndpoint?: string;\n userinfoEndpoint?: string;\n } = {\n loginUrl: undefined,\n logoutUrl: undefined,\n tokenEndpoint: undefined,\n userinfoEndpoint: undefined\n };\n\n authentications: Authentication = {\n oauth2: { accessToken: '' },\n type: 'oauth2',\n basicAuth: {}\n };\n\n iFrameHashListener: any;\n pathMatcher = new PathMatcher();\n\n constructor(config: AlfrescoApiConfig, alfrescoApi: AlfrescoApi, httpClient?: HttpClient) {\n super(undefined, httpClient);\n this.storage = Storage.getInstance();\n\n this.className = 'Oauth2Auth';\n\n if (config) {\n this.setConfig(config, alfrescoApi);\n }\n }\n\n setConfig(config: AlfrescoApiConfig, alfrescoApi: AlfrescoApi) {\n this.config = config;\n this.storage.setDomainPrefix(config.domainPrefix);\n\n if (this.config.oauth2) {\n if (this.config.oauth2.host === undefined || this.config.oauth2.host === null) {\n throw new Error('Missing the required oauth2 host parameter');\n }\n\n if (this.config.oauth2.clientId === undefined || this.config.oauth2.clientId === null) {\n throw new Error('Missing the required oauth2 clientId parameter');\n }\n\n if (this.config.oauth2.scope === undefined || this.config.oauth2.scope === null) {\n throw new Error('Missing the required oauth2 scope parameter');\n }\n\n if (this.config.oauth2.secret === undefined || this.config.oauth2.secret === null) {\n this.config.oauth2.secret = '';\n }\n\n if ((this.config.oauth2.redirectUri === undefined || this.config.oauth2.redirectUri === null) && this.config.oauth2.implicitFlow) {\n throw new Error('Missing redirectUri required parameter');\n }\n\n if (!this.config.oauth2.refreshTokenTimeout) {\n this.config.oauth2.refreshTokenTimeout = 300000;\n }\n\n if (!this.config.oauth2.redirectSilentIframeUri) {\n let context = '';\n if (typeof window !== 'undefined') {\n context = window.location.origin;\n }\n this.config.oauth2.redirectSilentIframeUri = context + '/assets/silent-refresh.html';\n }\n\n this.basePath = this.config.oauth2.host; //Auth Call\n\n this.host = this.config.oauth2.host;\n\n this.discoveryUrls();\n\n if (this.hasContentProvider()) {\n this.exchangeTicketListener(alfrescoApi);\n }\n\n this.initOauth();\n }\n }\n\n initOauth() {\n if (!this.config.oauth2.implicitFlow && this.isValidAccessToken()) {\n const accessToken = this.storage.getItem('access_token');\n this.setToken(accessToken, null);\n }\n\n if (this.config.oauth2.implicitFlow) {\n this.checkFragment('nonce');\n }\n }\n\n discoveryUrls() {\n this.discovery.loginUrl = this.config.oauth2.authorizationUrl || this.host + Oauth2Auth.DEFAULT_AUTHORIZATION_URL;\n this.discovery.logoutUrl = this.config.oauth2.logoutUrl || this.host + Oauth2Auth.DEFAULT_LOGOUT_URL;\n this.discovery.tokenEndpoint = this.config.oauth2.tokenUrl || this.host + Oauth2Auth.DEFAULT_TOKEN_URL;\n this.discovery.userinfoEndpoint = this.config.oauth2.userinfoEndpoint || this.host + Oauth2Auth.DEFAULT_USER_INFO_ENDPOINT;\n }\n\n getProfile(): Promise<Userinfo> {\n const postBody = {};\n const pathParams = {};\n const queryParams = {};\n\n const headerParams = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n };\n\n const formParams = {};\n\n const contentTypes = ['application/x-www-form-urlencoded'];\n const accepts = ['application/json'];\n\n return this.callCustomApi(\n this.discovery.userinfoEndpoint,\n 'GET',\n pathParams,\n queryParams,\n headerParams,\n formParams,\n postBody,\n contentTypes,\n accepts\n );\n }\n\n hasContentProvider(): boolean {\n return this.config.provider === 'ECM' || this.config.provider === 'ALL';\n }\n\n checkFragment(nonceKey?: string, externalHash?: any): any {\n // jshint ignore:line\n this.hashFragmentParams = this.getHashFragmentParams(externalHash);\n\n if (this.hashFragmentParams && this.hashFragmentParams.error === undefined) {\n this.useFragmentTimeLogin(nonceKey);\n } else {\n this.refreshBrowserLogin();\n }\n }\n\n private refreshBrowserLogin() {\n if (this.config.oauth2.silentLogin && !this.isPublicUrl()) {\n this.implicitLogin();\n }\n\n if (this.isValidToken() && this.isValidAccessToken()) {\n const accessToken = this.storage.getItem('access_token');\n this.setToken(accessToken, null);\n this.silentRefresh();\n }\n }\n\n private useFragmentTimeLogin(nonceKey: string) {\n const accessToken = this.hashFragmentParams.access_token;\n const idToken = this.hashFragmentParams.id_token;\n const sessionState = this.hashFragmentParams.session_state;\n const expiresIn = this.hashFragmentParams.expires_in;\n\n if (!sessionState) {\n throw new Error('session state not present');\n }\n\n try {\n const jwt = this.processJWTToken(idToken, nonceKey);\n if (jwt) {\n this.storeIdToken(idToken, jwt.payload.exp);\n this.storeAccessToken(accessToken, expiresIn);\n this.authentications.basicAuth.username = jwt.payload.preferred_username;\n this.saveUsername(jwt.payload.preferred_username);\n this.silentRefresh();\n return accessToken;\n }\n } catch (error) {\n throw new Error('Validation JWT error' + error);\n }\n }\n\n isPublicUrl(): boolean {\n const publicUrls = this.config.oauth2.publicUrls || [];\n\n if (Array.isArray(publicUrls)) {\n return publicUrls.length > 0 && publicUrls.some((urlPattern: string) => this.pathMatcher.match(window.location.href, urlPattern));\n }\n return false;\n }\n\n padBase64(base64data: any) {\n while (base64data.length % 4 !== 0) {\n base64data += '=';\n }\n return base64data;\n }\n\n processJWTToken(jwt: any, nonceKey: string): any {\n if (jwt) {\n const jwtArray = jwt.split('.');\n const headerBase64 = this.padBase64(jwtArray[0]);\n const headerJson = this.b64DecodeUnicode(headerBase64);\n const header = JSON.parse(headerJson);\n\n const payloadBase64 = this.padBase64(jwtArray[1]);\n const payloadJson = this.b64DecodeUnicode(payloadBase64);\n const payload = JSON.parse(payloadJson);\n\n const savedNonce = this.storage.getItem(nonceKey);\n\n if (!payload.sub) {\n throw new Error('Missing sub in JWT');\n }\n\n if (payload.nonce !== savedNonce) {\n return;\n }\n\n return {\n idToken: jwt,\n payload,\n header\n };\n }\n }\n\n b64DecodeUnicode(b64string: string) {\n const base64 = b64string.replace(/-/g, '+').replace(/_/g, '/');\n return decodeURIComponent(\n atob(base64)\n .split('')\n .map((c) => '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2))\n .join('')\n );\n }\n\n storeIdToken(idToken: string, exp: number) {\n this.storage.setItem('id_token', idToken);\n this.storage.setItem('id_token_expires_at', Number(exp * 1000).toString());\n this.storage.setItem('id_token_stored_at', Date.now().toString());\n }\n\n storeAccessToken(accessToken: string, expiresIn: number, refreshToken?: string) {\n this.storage.setItem('access_token', accessToken);\n\n const expiresInMilliSeconds = expiresIn * 1000;\n const now = new Date();\n const expiresAt = now.getTime() + expiresInMilliSeconds;\n\n this.storage.setItem('access_token_expires_in', expiresAt);\n this.storage.setItem('access_token_stored_at', Date.now().toString());\n this.setToken(accessToken, refreshToken);\n }\n\n saveUsername(username: string) {\n if (this.storage.supportsStorage()) {\n this.storage.setItem('USERNAME', username);\n }\n }\n\n implicitLogin() {\n if (!this.isValidToken() || !this.isValidAccessToken()) {\n this.redirectLogin();\n }\n }\n\n isValidToken(): boolean {\n let validToken = false;\n if (this.getIdToken()) {\n const expiresAt = this.storage.getItem('id_token_expires_at');\n const now = new Date();\n if (expiresAt && parseInt(expiresAt, 10) >= now.getTime()) {\n validToken = true;\n }\n }\n\n return validToken;\n }\n\n isValidAccessToken(): boolean {\n let validAccessToken = false;\n\n if (this.getAccessToken()) {\n const expiresAt = this.storage.getItem('access_token_expires_in');\n const now = new Date();\n if (expiresAt && parseInt(expiresAt, 10) >= now.getTime()) {\n validAccessToken = true;\n }\n }\n\n return validAccessToken;\n }\n\n getIdToken(): string {\n return this.storage.getItem('id_token');\n }\n\n getAccessToken(): string {\n return this.storage.getItem('access_token');\n }\n\n redirectLogin(): void {\n if (this.config.oauth2.implicitFlow && typeof window !== 'undefined') {\n const href = this.composeImplicitLoginUrl();\n window.location.href = href;\n this.emit('implicit_redirect', href);\n }\n }\n\n isRedirectionUrl() {\n return window.location.hash && window.location.hash.split('&')[0].indexOf('session_state') === -1;\n }\n\n genNonce(): string {\n let text = '';\n const possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';\n\n for (let i = 0; i < 40; i++) {\n text += possible.charAt(Math.floor(Math.random() * possible.length));\n }\n\n return text;\n }\n\n composeImplicitLoginUrl(): string {\n const nonce = this.genNonce();\n\n this.storage.setItem('nonce', nonce);\n\n const afterLoginUriSegment = this.isRedirectionUrl() ? window.location.hash : '';\n if (afterLoginUriSegment && afterLoginUriSegment !== '/') {\n this.storage.setItem('loginFragment', afterLoginUriSegment.replace('#', '').trim());\n }\n\n const separation = this.discovery.loginUrl.indexOf('?') > -1 ? '&' : '?';\n\n return (\n this.discovery.loginUrl +\n separation +\n 'client_id=' +\n encodeURIComponent(this.config.oauth2.clientId) +\n '&redirect_uri=' +\n encodeURIComponent(this.config.oauth2.redirectUri) +\n '&scope=' +\n encodeURIComponent(this.config.oauth2.scope) +\n '&response_type=' +\n encodeURIComponent('id_token token') +\n '&nonce=' +\n encodeURIComponent(nonce)\n );\n }\n\n composeIframeLoginUrl(): string {\n const nonce = this.genNonce();\n\n this.storage.setItem('refresh_nonce', nonce);\n\n const separation = this.discovery.loginUrl.indexOf('?') > -1 ? '&' : '?';\n\n return (\n this.discovery.loginUrl +\n separation +\n 'client_id=' +\n encodeURIComponent(this.config.oauth2.clientId) +\n '&redirect_uri=' +\n encodeURIComponent(this.config.oauth2.redirectSilentIframeUri) +\n '&scope=' +\n encodeURIComponent(this.config.oauth2.scope) +\n '&response_type=' +\n encodeURIComponent('id_token token') +\n '&nonce=' +\n encodeURIComponent(nonce) +\n '&prompt=none'\n );\n }\n\n hasHashCharacter(hash: string): boolean {\n return hash.indexOf('#') === 0;\n }\n\n startWithHashRoute(hash: string) {\n return hash.startsWith('#/');\n }\n\n getHashFragmentParams(externalHash: string): string {\n let hashFragmentParams = null;\n\n if (typeof window !== 'undefined') {\n let hash: string;\n\n if (!externalHash) {\n hash = decodeURIComponent(window.location.hash);\n if (!this.startWithHashRoute(hash)) {\n window.location.hash = '';\n }\n } else {\n hash = decodeURIComponent(externalHash);\n this.removeHashFromSilentIframe();\n this.destroyIframe();\n }\n\n if (this.hasHashCharacter(hash) && !this.startWithHashRoute(hash)) {\n const questionMarkPosition = hash.indexOf('?');\n\n if (questionMarkPosition > -1) {\n hash = hash.substring(questionMarkPosition + 1);\n } else {\n hash = hash.substring(1);\n }\n hashFragmentParams = this.parseQueryString(hash);\n }\n }\n return hashFragmentParams;\n }\n\n parseQueryString(queryString: string): any {\n const data: { [key: string]: any } = {};\n let pairs: string[];\n let pair: string;\n let separatorIndex: number;\n let escapedKey: string;\n let escapedValue: string;\n let key: string;\n let value: string;\n\n if (queryString !== null) {\n pairs = queryString.split('&');\n\n for (const item of pairs) {\n pair = item;\n separatorIndex = pair.indexOf('=');\n\n if (separatorIndex === -1) {\n escapedKey = pair;\n escapedValue = null;\n } else {\n escapedKey = pair.substring(0, separatorIndex);\n escapedValue = pair.substring(separatorIndex + 1);\n }\n\n key = decodeURIComponent(escapedKey);\n value = decodeURIComponent(escapedValue);\n\n if (key.startsWith('/')) {\n key = key.substring(1);\n }\n\n data[key] = value;\n }\n }\n\n return data;\n }\n\n silentRefresh(): void {\n if (typeof document === 'undefined') {\n this.pollingRefreshToken();\n return;\n }\n\n if (this.checkAccessToken) {\n this.destroyIframe();\n this.createIframe();\n this.checkAccessToken = false;\n return;\n }\n\n this.refreshTokenTimeoutIframe = setTimeout(() => {\n this.destroyIframe();\n this.createIframe();\n }, this.config.oauth2.refreshTokenTimeout);\n }\n\n removeHashFromSilentIframe() {\n const iframe = document.getElementById('silent_refresh_token_iframe') as HTMLIFrameElement;\n if (iframe?.contentWindow.location.hash) {\n iframe.contentWindow.location.hash = '';\n }\n }\n\n createIframe() {\n const iframe = document.createElement('iframe');\n iframe.id = 'silent_refresh_token_iframe';\n const loginUrl = this.composeIframeLoginUrl();\n iframe.setAttribute('src', loginUrl);\n iframe.style.display = 'none';\n document.body.appendChild(iframe);\n\n this.iFrameHashListener = () => {\n const silentRefreshTokenIframe: any = document.getElementById('silent_refresh_token_iframe');\n const hash = silentRefreshTokenIframe.contentWindow.location.hash;\n try {\n this.checkFragment('refresh_nonce', hash);\n } catch {\n this.logOut();\n }\n };\n\n iframe.addEventListener('load', this.iFrameHashListener);\n }\n\n destroyIframe() {\n const iframe = document.getElementById('silent_refresh_token_iframe');\n\n if (iframe) {\n iframe.removeEventListener('load', this.iFrameHashListener);\n document.body.removeChild(iframe);\n }\n }\n\n /**\n * login Alfresco API\n *\n * @returns A promise that returns {new authentication token} if resolved and {error} if rejected.\n */\n login(username: string, password: string): Promise<any> {\n return new Promise((resolve, reject) => {\n this.grantPasswordLogin(username, password, resolve, reject);\n });\n }\n\n grantPasswordLogin(username: string, password: string, resolve: any, reject: any) {\n this.invalidateSession();\n\n const headerParams = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n };\n\n const formParams = {\n username,\n password,\n grant_type: 'password',\n client_id: this.config.oauth2.clientId,\n client_secret: this.config.oauth2.secret\n };\n\n const contentTypes = ['application/x-www-form-urlencoded'];\n const accepts = ['application/json'];\n\n const promise = this.callCustomApi(this.discovery.tokenEndpoint, 'POST', {}, {}, headerParams, formParams, {}, contentTypes, accepts).then(\n (data: any) => {\n this.saveUsername(username);\n this.silentRefresh();\n this.storeAccessToken(data.access_token, data.expires_in, data.refresh_token);\n\n resolve(data);\n },\n (error) => {\n if ((error.error && error.error.status === 401) || error.status === 401) {\n this.emit('unauthorized');\n }\n this.emit('error');\n reject(error.error);\n }\n );\n\n ee(promise); // jshint ignore:line\n }\n\n pollingRefreshToken() {\n this.refreshTokenIntervalPolling = setInterval(async () => {\n try {\n await this.refreshToken();\n } catch {\n /* continue regardless of error */\n }\n }, this.config.oauth2.refreshTokenTimeout);\n\n this.refreshTokenIntervalPolling.unref();\n }\n\n /**\n * Refresh the Token\n *\n * @returns promise of void\n */\n refreshToken(): Promise<any> {\n const auth = 'Basic ' + this.universalBtoa(this.config.oauth2.clientId + ':' + this.config.oauth2.secret);\n const headerParams = {\n 'Content-Type': 'application/x-www-form-urlencoded',\n 'Cache-Control': 'no-cache',\n Authorization: auth\n };\n const formParams = {\n grant_type: 'refresh_token',\n refresh_token: this.authentications.oauth2.refreshToken\n };\n\n const contentTypes = ['application/x-www-form-urlencoded'];\n const accepts = ['application/json'];\n\n const promise = new Promise((resolve, reject) => {\n this.callCustomApi(this.discovery.tokenEndpoint, 'POST', {}, {}, headerParams, formParams, {}, contentTypes, accepts).then(\n (data: any) => {\n this.setToken(data.access_token, data.refresh_token);\n resolve(data);\n },\n (error) => {\n if (error.error && error.error.status === 401) {\n this.emit('unauthorized');\n }\n this.emit('error');\n reject(error.error);\n }\n );\n });\n\n ee(promise); // jshint ignore:line\n\n return promise;\n }\n\n universalBtoa(stringToConvert: string) {\n try {\n return btoa(stringToConvert);\n } catch (err) {\n return Buffer.from(stringToConvert).toString('base64');\n }\n }\n\n /**\n * Set the current Token\n */\n setToken(token: string, refreshToken: string) {\n this.authentications.oauth2.accessToken = token;\n this.authentications.oauth2.refreshToken = refreshToken;\n this.authentications.basicAuth.password = null;\n this.token = token;\n\n if (token) {\n this.emit('token_issued');\n this.emit('logged-in');\n }\n }\n\n /**\n * Get the current Token\n *\n * @returns token value\n */\n getToken(): string {\n return this.token;\n }\n\n /**\n * return the Authentication\n *\n * @returns authentications\n */\n getAuthentication(): Authentication {\n return this.authentications;\n }\n\n /**\n * Change the Host\n */\n changeHost(host: string) {\n this.config.hostOauth2 = host;\n }\n\n /**\n * If the client is logged in return true\n *\n * @returns is logged in\n */\n isLoggedIn(): boolean {\n return !!this.authentications.oauth2.accessToken;\n }\n\n /**\n * Logout\n */\n async logOut() {\n this.checkAccessToken = true;\n\n const id_token = this.getIdToken();\n\n this.invalidateSession();\n this.setToken(null, null);\n\n const separation = this.discovery.logoutUrl.indexOf('?') > -1 ? '&' : '?';\n const redirectLogout = this.config.oauth2.redirectUriLogout || this.config.oauth2.redirectUri;\n const logoutUrl =\n this.discovery.logoutUrl +\n separation +\n 'post_logout_redirect_uri=' +\n encodeURIComponent(redirectLogout) +\n '&id_token_hint=' +\n encodeURIComponent(id_token);\n\n if (id_token != null && this.config.oauth2.implicitFlow && typeof window !== 'undefined') {\n window.location.href = logoutUrl;\n }\n }\n\n invalidateSession() {\n clearTimeout(this.refreshTokenTimeoutIframe);\n clearInterval(this.refreshTokenIntervalPolling);\n\n this.storage.removeItem('access_token');\n this.storage.removeItem('access_token_expires_in');\n this.storage.removeItem('access_token_stored_at');\n\n this.storage.removeItem('id_token');\n this.storage.removeItem('id_token');\n this.storage.removeItem('id_token_claims_obj');\n this.storage.removeItem('id_token_expires_at');\n this.storage.removeItem('id_token_stored_at');\n\n this.storage.removeItem('nonce');\n }\n\n exchangeTicketListener(alfrescoApi: AlfrescoApi) {\n this.on('token_issued', async () => {\n const authContentApi: AuthenticationApi = new AuthenticationApi(alfrescoApi);\n // Legacy stuff, needs deprecation, can not be more specific here because of circular dependency\n (authContentApi.apiClient as unknown as any).authentications = this.authentications;\n try {\n const ticketEntry = await authContentApi.getTicket();\n this.config.ticketEcm = ticketEntry.entry.id;\n this.emit('ticket_exchanged');\n } catch (e) {\n // continue regardless of error\n }\n });\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AlfrescoApiClient } from './alfrescoApiClient';\nimport { AlfrescoApiConfig } from './alfrescoApiConfig';\nimport { Authentication } from './authentication/authentication';\nimport { HttpClient } from './api-clients/http-client.interface';\n\nexport class ContentClient extends AlfrescoApiClient {\n className = 'ContentClient';\n servicePath: string;\n\n constructor(config: AlfrescoApiConfig, servicePath: string, httpClient?: HttpClient) {\n super(undefined, httpClient);\n\n this.setConfig(config, servicePath);\n }\n\n setConfig(config: AlfrescoApiConfig, servicePath: string) {\n this.config = config;\n this.servicePath = servicePath;\n\n this.changeHost();\n }\n\n changeHost() {\n this.host = this.config.hostEcm;\n this.basePath = `${this.config.hostEcm}/${this.config.contextRoot}${this.servicePath}`;\n }\n\n /**\n * set the Authentications\n *\n * @param authentications authentications\n */\n setAuthentications(authentications: Authentication): void {\n this.authentications = authentications;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { AlfrescoApiConfig } from './alfrescoApiConfig';\nimport { AlfrescoApiClient } from './alfrescoApiClient';\nimport { Authentication } from './authentication/authentication';\nimport { HttpClient } from './api-clients/http-client.interface';\n\nexport class ProcessClient extends AlfrescoApiClient {\n className = 'ProcessClient';\n\n constructor(config: AlfrescoApiConfig, httpClient?: HttpClient) {\n super(undefined, httpClient);\n\n this.setConfig(config);\n }\n\n setConfig(config: AlfrescoApiConfig) {\n this.config = config;\n\n this.changeHost();\n }\n\n changeHost() {\n this.host = this.config.hostBpm;\n this.basePath = `${this.config.hostBpm}/${this.config.contextRootBpm}`;\n }\n\n /**\n * set the authentications\n *\n * @param authentications Authentications value\n */\n setAuthentications(authentications: Authentication) {\n this.authentications = authentications;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { Oauth2Config } from './authentication/oauth2Config';\n\nexport class AlfrescoApiConfig {\n ticket?: string;\n hostEcm?: string = 'http://127.0.0.1:8080';\n hostBpm?: string = 'http://127.0.0.1:9999';\n hostOauth2?: string;\n authType?: string = 'BASIC';\n oauth2?: Oauth2Config;\n contextRoot? = 'alfresco';\n tenant?: string = '-default-';\n contextRootBpm?: string = 'activiti-app';\n domainPrefix?: string = '';\n provider?: string = 'ECM';\n ticketEcm?: string;\n ticketBpm?: string;\n accessToken?: string;\n disableCsrf?: boolean = false;\n withCredentials?: boolean = false;\n oauthInit?: boolean = true;\n\n constructor(input: any = { oauth2: {} }) {\n Object.assign(this, input);\n\n this.hostEcm = input.hostEcm ? input.hostEcm : 'http://127.0.0.1:8080';\n this.hostBpm = input.hostBpm ? input.hostBpm : 'http://127.0.0.1:9999';\n this.authType = input.authType ? input.authType : 'BASIC';\n this.contextRoot = input.contextRoot ? input.contextRoot : 'alfresco';\n this.contextRootBpm = input.contextRootBpm ? input.contextRootBpm : 'activiti-app';\n this.tenant = input.tenant ? input.tenant : '-default-';\n this.provider = input.provider ? input.provider : 'ECM';\n this.disableCsrf = input.disableCsrf ? input.disableCsrf : false;\n this.domainPrefix = input.domainPrefix ? input.domainPrefix : '';\n this.withCredentials = input.withCredentials ? input.withCredentials : false;\n this.oauth2 = input.oauth2;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport ee, { EmitterMethod, Emitter } from 'event-emitter';\nimport { ContentAuth } from './authentication/contentAuth';\nimport { ProcessAuth } from './authentication/processAuth';\nimport { Oauth2Auth } from './authentication/oauth2Auth';\nimport { ContentClient } from './contentClient';\nimport { ProcessClient } from './processClient';\nimport { Storage } from './storage';\nimport { AlfrescoApiConfig } from './alfrescoApiConfig';\nimport { Authentication } from './authentication/authentication';\nimport { AlfrescoApiType } from './to-deprecate/alfresco-api-type';\nimport { HttpClient } from './api-clients/http-client.interface';\n\nexport class AlfrescoApi implements Emitter, AlfrescoApiType {\n __type = 'legacy-client';\n storage: Storage;\n config: AlfrescoApiConfig;\n contentClient: ContentClient;\n contentPrivateClient: ContentClient;\n processClient: ProcessClient;\n searchClient: ContentClient;\n discoveryClient: ContentClient;\n gsClient: ContentClient;\n authClient: ContentClient;\n oauth2Auth: Oauth2Auth;\n processAuth: ProcessAuth;\n contentAuth: ContentAuth;\n\n on: EmitterMethod;\n off: EmitterMethod;\n once: EmitterMethod;\n\n bufferEvents: string[] = [];\n\n emit: (type: string, ...args: any[]) => void;\n\n username: string;\n\n constructor(config?: AlfrescoApiConfig, public httpClient?: HttpClient) {\n ee(this);\n\n if (config) {\n this.setConfig(config);\n }\n }\n\n setConfig(config: AlfrescoApiConfig) {\n if (!config) {\n config = {};\n }\n\n this.storage = Storage.getInstance();\n this.storage.setDomainPrefix(config.domainPrefix);\n\n this.config = new AlfrescoApiConfig(config);\n\n this.clientsFactory();\n\n this.errorListeners();\n if (this.config.oauthInit) {\n this.initAuth(config);\n\n if (this.isLoggedIn()) {\n this.emitBuffer('logged-in');\n }\n }\n\n return config;\n }\n\n private initAuth(config: AlfrescoApiConfig): void {\n if (this.isOauthConfiguration()) {\n if (!this.oauth2Auth) {\n this.oauth2Auth = new Oauth2Auth(this.config, this, this.httpClient);\n } else {\n this.oauth2Auth.setConfig(this.config, this);\n }\n\n this.oauth2Auth?.on('logged-in', () => {\n this.emitBuffer('logged-in');\n });\n\n this.setAuthenticationClientECMBPM(this.oauth2Auth.getAuthentication(), this.oauth2Auth.getAuthentication());\n } else {\n if (!this.processAuth) {\n this.processAuth = new ProcessAuth(this.config, this.httpClient);\n } else {\n this.processAuth.setConfig(this.config);\n }\n\n this.processAuth?.on('logged-in', () => {\n this.emitBuffer('logged-in');\n });\n\n if (!this.contentAuth) {\n this.contentAuth = new ContentAuth(this.config, this, this.httpClient);\n } else {\n this.contentAuth.setConfig(config);\n }\n\n this.contentAuth?.on('logged-in', () => {\n this.emitBuffer('logged-in');\n });\n\n this.setAuthenticationClientECMBPM(this.contentAuth.getAuthentication(), this.processAuth.getAuthentication());\n }\n }\n\n private clientsFactory() {\n if (!this.contentPrivateClient) {\n this.contentPrivateClient = new ContentClient(this.config, `/api/${this.config.tenant}/private/alfresco/versions/1`, this.httpClient);\n } else {\n this.contentPrivateClient.setConfig(this.config, `/api/${this.config.tenant}/private/alfresco/versions/1`);\n }\n\n if (!this.contentClient) {\n this.contentClient = new ContentClient(this.config, `/api/${this.config.tenant}/public/alfresco/versions/1`, this.httpClient);\n } else {\n this.contentClient.setConfig(this.config, `/api/${this.config.tenant}/public/alfresco/versions/1`);\n }\n\n if (!this.authClient) {\n this.authClient = new ContentClient(this.config, `/api/${this.config.tenant}/public/authentication/versions/1`, this.httpClient);\n } else {\n this.authClient.setConfig(this.config, `/api/${this.config.tenant}/public/authentication/versions/1`);\n }\n\n if (!this.searchClient) {\n this.searchClient = new ContentClient(this.config, `/api/${this.config.tenant}/public/search/versions/1`, this.httpClient);\n } else {\n this.searchClient.setConfig(this.config, `/api/${this.config.tenant}/public/search/versions/1`);\n }\n\n if (!this.discoveryClient) {\n this.discoveryClient = new ContentClient(this.config, `/api`, this.httpClient);\n } else {\n this.discoveryClient.setConfig(this.config, `/api`);\n }\n\n if (!this.gsClient) {\n this.gsClient = new ContentClient(this.config, `/api/${this.config.tenant}/public/gs/versions/1`, this.httpClient);\n } else {\n this.gsClient.setConfig(this.config, `/api/${this.config.tenant}/public/gs/versions/1`);\n }\n\n if (!this.processClient) {\n this.processClient = new ProcessClient(this.config, this.httpClient);\n } else {\n this.processClient.setConfig(this.config);\n }\n }\n\n /**@private? */\n errorListeners() {\n this.contentClient.off('error', () => {});\n this.authClient.off('error', () => {});\n this.contentPrivateClient.off('error', () => {});\n this.processClient.off('error', () => {});\n this.searchClient.off('error', () => {});\n this.discoveryClient.off('error', () => {});\n this.gsClient.off('error', () => {});\n\n this.contentClient.on('error', (error: any) => {\n this.errorHandler(error);\n });\n\n this.authClient.on('error', (error: any) => {\n this.errorHandler(error);\n });\n\n this.contentPrivateClient.on('error', (error: any) => {\n this.errorHandler(error);\n });\n\n this.processClient.on('error', (error: any) => {\n this.errorHandler(error);\n });\n\n this.searchClient.on('error', (error: any) => {\n this.errorHandler(error);\n });\n\n this.discoveryClient.on('error', (error: any) => {\n this.errorHandler(error);\n });\n\n this.gsClient.on('error', (error: any) => {\n this.errorHandler(error);\n });\n }\n\n /**@private? */\n errorHandler(error: { status?: number }) {\n if (error.status === 401) {\n this.invalidateSession();\n }\n\n this.emitBuffer('error', error);\n }\n\n changeWithCredentialsConfig(withCredentials: boolean) {\n this.config.withCredentials = withCredentials;\n }\n\n changeCsrfConfig(disableCsrf: boolean) {\n this.config.disableCsrf = disableCsrf;\n this.processAuth.changeCsrfConfig(disableCsrf);\n }\n\n changeEcmHost(hostEcm: string) {\n this.config.hostEcm = hostEcm;\n this.contentAuth.changeHost();\n this.contentClient.changeHost();\n this.authClient.changeHost();\n }\n\n changeBpmHost(hostBpm: string) {\n this.config.hostBpm = hostBpm;\n this.processAuth.changeHost();\n this.processClient.changeHost();\n }\n\n /**\n * login Alfresco API\n *\n * @param username Username to login\n * @param password Password to login\n * @returns A promise that returns {new authentication ticket} if resolved and {error} if rejected.\n */\n login(username: string, password: string): Promise<any> {\n if (!this.isCredentialValid(username) || !this.isCredentialValid(password)) {\n return Promise.reject(new Error('missing username or password'));\n }\n\n if (username) {\n username = username.trim();\n }\n\n this.username = username;\n\n if (this.isOauthConfiguration()) {\n const promise = this.oauth2Auth.login(username, password);\n promise.then((accessToken) => {\n this.config.accessToken = accessToken;\n });\n return promise;\n } else {\n if (this.isBpmConfiguration()) {\n const promise = this.processAuth.login(username, password);\n promise.then((ticketBpm) => {\n this.config.ticketBpm = ticketBpm;\n });\n return promise;\n } else if (this.isEcmConfiguration()) {\n const promise = this.contentAuth.login(username, password);\n promise.then((ticketEcm) => {\n this.setAuthenticationClientECMBPM(this.contentAuth.getAuthentication(), null);\n this.config.ticketEcm = ticketEcm;\n });\n return promise;\n } else if (this.isEcmBpmConfiguration()) {\n const contentProcessPromise = this.loginBPMECM(username, password);\n\n contentProcessPromise.then((data) => {\n this.config.ticketEcm = data[0];\n this.config.ticketBpm = data[1];\n });\n\n return contentProcessPromise;\n } else {\n return Promise.reject(new Error('Unknown configuration'));\n }\n }\n }\n\n isCredentialValid(credential: string): boolean {\n return credential !== undefined && credential !== null && credential !== '';\n }\n\n implicitLogin(): Promise<any> {\n if (!this.isOauthConfiguration()) {\n return Promise.reject(new Error('Missing the required oauth2 configuration'));\n }\n\n return new Promise(() => {\n this.oauth2Auth.implicitLogin();\n });\n }\n\n setAuthenticationClientECMBPM(authECM: Authentication, authBPM: Authentication) {\n this.contentClient.setAuthentications(authECM);\n this.authClient.setAuthentications(authECM);\n this.searchClient.setAuthentications(authECM);\n this.contentPrivateClient.setAuthentications(authECM);\n this.processClient.setAuthentications(authBPM);\n this.searchClient.setAuthentications(authECM);\n this.discoveryClient.setAuthentications(authECM);\n this.gsClient.setAuthentications(authECM);\n }\n\n /**\n * login Tickets\n *\n * @param ticketEcm alfresco ticket\n * @param ticketBpm alfresco ticket\n */\n loginTicket(ticketEcm: string, ticketBpm: string): Promise<string> {\n this.config.ticketEcm = ticketEcm;\n this.config.ticketBpm = ticketBpm;\n\n return this.contentAuth.validateTicket();\n }\n\n private loginBPMECM(username: string, password: string): Promise<[string, string]> {\n const contentPromise = this.contentAuth.login(username, password);\n const processPromise = this.processAuth.login(username, password);\n\n const promise: any = new Promise<[string, string]>((resolve, reject) => {\n Promise.all([contentPromise, processPromise]).then(\n (data) => {\n promise.emit('success');\n resolve(data);\n },\n (error) => {\n this.contentAuth.invalidateSession();\n this.processAuth.invalidateSession();\n\n if (error.status === 401) {\n promise.emit('unauthorized');\n }\n promise.emit('error');\n reject(error);\n }\n );\n });\n\n ee(promise); // jshint ignore:line\n return promise;\n }\n\n /**\n * logout Alfresco API\n */\n logout(): Promise<void> {\n this.username = null;\n\n if (this.isOauthConfiguration()) {\n return this.oauth2Auth.logOut();\n }\n\n if (this.isBpmConfiguration()) {\n return this.processAuth.logout();\n }\n\n if (this.isEcmConfiguration()) {\n const contentPromise = this.contentAuth.logout();\n contentPromise.then(\n () => (this.config.ticket = undefined),\n () => {}\n );\n return contentPromise;\n }\n\n if (this.isEcmBpmConfiguration()) {\n return this._logoutBPMECM();\n }\n\n return Promise.resolve();\n }\n\n private _logoutBPMECM(): Promise<void> {\n const contentPromise = this.contentAuth.logout();\n const processPromise = this.processAuth.logout();\n\n const promise: any = new Promise<void>((resolve, reject) => {\n Promise.all([contentPromise, processPromise]).then(\n () => {\n this.config.ticket = undefined;\n promise.emit('logout');\n resolve();\n },\n (error) => {\n if (error.status === 401) {\n promise.emit('unauthorized');\n }\n promise.emit('error');\n reject(error);\n }\n );\n });\n\n ee(promise); // jshint ignore:line\n return promise;\n }\n\n /**\n * If the client is logged in return true\n */\n isLoggedIn(): boolean {\n if (this.isOauthConfiguration()) {\n return this.oauth2Auth.isLoggedIn();\n }\n\n if (this.isBpmConfiguration()) {\n return this.processAuth.isLoggedIn();\n }\n\n if (this.isEcmConfiguration()) {\n return this.config.withCredentials ? true : this.contentAuth.isLoggedIn();\n }\n\n if (this.isEcmBpmConfiguration()) {\n return this.config.withCredentials ? true : this.contentAuth.isLoggedIn() && this.processAuth.isLoggedIn();\n }\n\n return false;\n }\n\n isBpmLoggedIn(): boolean {\n if (this.isBpmConfiguration() || this.isEcmBpmConfiguration()) {\n if (this.isOauthConfiguration()) {\n return this.oauth2Auth.isLoggedIn();\n } else {\n return this.processAuth.isLoggedIn();\n }\n }\n return false;\n }\n\n isEcmLoggedIn(): boolean {\n if (this.isEcmConfiguration() || this.isEcmBpmConfiguration()) {\n if (this.isOauthConfiguration()) {\n return this.oauth2Auth.isLoggedIn();\n } else {\n return this.config.withCredentials ? true : this.contentAuth.isLoggedIn();\n }\n }\n return false;\n }\n\n getBpmUsername(): string {\n if (this.isOauthConfiguration()) {\n return this.username || this.oauth2Auth.storage.getItem('USERNAME');\n } else {\n return this.username || this.processAuth.storage.getItem('APS_USERNAME');\n }\n }\n\n getEcmUsername(): string {\n if (this.isOauthConfiguration()) {\n return this.username || this.oauth2Auth.storage.getItem('USERNAME');\n } else {\n return this.username || this.contentAuth.storage.getItem('ACS_USERNAME');\n }\n }\n\n /**\n * refresh token\n */\n refreshToken(): Promise<any> {\n if (!this.isOauthConfiguration()) {\n return Promise.reject(new Error('Missing the required oauth2 configuration'));\n }\n\n if (this.config.oauth2.implicitFlow) {\n return Promise.reject(new Error('Manual refresh token not possible in implicit flow'));\n }\n\n return this.oauth2Auth.refreshToken();\n }\n\n getTicketAuth(): string {\n return this.oauth2Auth?.getToken();\n }\n\n /**\n * Set the current Ticket\n *\n * @param ticketEcm ecm ticket\n * @param ticketBpm bpm ticket\n */\n setTicket(ticketEcm: string, ticketBpm: string) {\n if (this.contentAuth) {\n this.contentAuth.setTicket(ticketEcm);\n }\n if (this.processAuth) {\n this.processAuth.setTicket(ticketBpm);\n }\n }\n\n /**\n * invalidate the current session\n */\n invalidateSession() {\n if (this.oauth2Auth) {\n this.oauth2Auth.invalidateSession();\n } else {\n this.contentAuth.invalidateSession();\n this.processAuth.invalidateSession();\n }\n }\n\n /**\n * Get the current Ticket for the Bpm\n */\n getTicketBpm(): string {\n return this.processAuth?.getTicket();\n }\n\n /**\n * Get the current Ticket for the Ecm\n */\n getTicketEcm(): string {\n return this.contentAuth?.getTicket();\n }\n\n /**\n * Get the current Ticket for the Ecm and BPM\n */\n getTicket(): [string, string] {\n return [this.contentAuth.getTicket(), this.processAuth.getTicket()];\n }\n\n isBpmConfiguration(): boolean {\n return this.config.provider && this.config.provider.toUpperCase() === 'BPM';\n }\n\n isEcmConfiguration(): boolean {\n return this.config.provider && this.config.provider.toUpperCase() === 'ECM';\n }\n\n isOauthConfiguration(): boolean {\n return this.config.authType === 'OAUTH';\n }\n\n isPublicUrl(): boolean {\n if (this.isOauthConfiguration()) {\n return this.oauth2Auth.isPublicUrl();\n }\n return false;\n }\n\n isEcmBpmConfiguration(): boolean {\n return this.config.provider && this.config.provider.toUpperCase() === 'ALL';\n }\n\n private emitBuffer(event: string, callback?: any): void {\n this.emit(event, callback);\n this.bufferEvents.push(event);\n }\n\n reply(event: string, callback?: any): void {\n if (this.bufferEvents.indexOf(event) >= 0) {\n // eslint-disable-next-line prefer-rest-params\n Function.prototype.apply.call(callback, this, arguments);\n } else {\n this.on(event, callback);\n }\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './api/content-rest-api';\nexport * from './api/content-custom-api';\nexport * from './api/discovery-rest-api';\nexport * from './api/gs-classification-rest-api';\nexport * from './api/gs-core-rest-api';\nexport * from './api/auth-rest-api';\nexport * from './api/activiti-rest-api';\nexport * from './api/search-rest-api';\nexport * from './api/model-rest-api';\n\nexport * from './api/content-custom-api/api/content.api';\nexport * from './authentication/contentAuth';\nexport * from './authentication/processAuth';\nexport * from './authentication/oauth2Auth';\nexport * from './contentClient';\nexport * from './processClient';\nexport * from './storage';\nexport * from './alfrescoApi';\nexport * from './alfrescoApiClient';\nexport * from './alfrescoApiConfig';\n\nexport * from './to-deprecate/alfresco-api-type';\n\nexport * from './api-clients/api-client';\nexport * from './api-clients/http-client.interface';\nexport * from './utils';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["BaseApi","ContentApi"],"mappings":"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"}
|