├── .editorconfig
├── .eslintignore
├── .eslintrc.json
├── .github
├── CODEOWNERS
├── ISSUE_TEMPLATE.md
├── PULL_REQUEST_TEMPLATE.md
└── workflows
│ ├── codeql-analysis.yml
│ └── js-api-build.yml
├── .gitignore
├── .make-packages.js
├── .nvmrc
├── .prettierignore
├── .prettierrc
├── .vscode
└── settings.json
├── LICENSE.txt
├── README.md
├── cspell.json
├── definitions
├── activiti-api.json
├── alfresco-auth.yaml
├── alfresco-core.yaml
├── alfresco-discovery.yaml
├── alfresco-model.yaml
├── alfresco-search.yaml
├── gs-classification-api.yaml
└── gs-core-api.yaml
├── docs
├── audit
│ ├── .gitkeep
│ ├── audit-info-4.10.0.md
│ ├── audit-info-4.11.0.md
│ ├── audit-info-4.7.0.md
│ ├── audit-info-4.8.0.md
│ ├── audit-info-4.9.0.md
│ ├── audit-info-5.0.0.md
│ ├── audit-info-5.1.0.md
│ ├── audit-info-5.2.0.md
│ ├── audit-info-5.3.0.md
│ ├── audit-info-5.4.0.md
│ ├── audit-info-5.5.0.md
│ ├── audit-info-6.0.0.md
│ ├── audit-info-6.1.0.md
│ ├── audit-info-6.2.0.md
│ ├── audit-info-7.0.0.md
│ ├── audit-info-7.1.0.md
│ └── audit-info-7.2.0.md
├── authentication.md
├── bpm-example.md
├── calling-custom-endpoints.md
├── changelog
│ ├── .gitkeep
│ ├── changelog-4.10.0.md
│ ├── changelog-4.11.0.md
│ ├── changelog-4.7.0.md
│ ├── changelog-4.8.0.md
│ ├── changelog-4.9.0.md
│ ├── changelog-5.0.0.md
│ ├── changelog-5.1.0.md
│ ├── changelog-5.2.0.md
│ ├── changelog-5.3.0.md
│ ├── changelog-5.4.0.md
│ ├── changelog-5.5.0.md
│ ├── changelog-6.0.0.md
│ ├── changelog-6.1.0.md
│ ├── changelog-6.2.0.md
│ ├── changelog-7.0.0.md
│ ├── changelog-7.1.0.md
│ └── changelog-7.2.0.md
├── ecm-example.md
├── error-events.md
└── licences
│ ├── .gitkeep
│ ├── license-info-4.10.0.md
│ ├── license-info-4.11.0.md
│ ├── license-info-4.7.0.md
│ ├── license-info-4.8.0.md
│ ├── license-info-4.9.0.md
│ ├── license-info-5.0.0.md
│ ├── license-info-5.1.0.md
│ ├── license-info-5.2.0.md
│ ├── license-info-5.3.0.md
│ ├── license-info-5.4.0.md
│ ├── license-info-5.5.0.md
│ ├── license-info-6.0.0.md
│ ├── license-info-6.1.0.md
│ ├── license-info-6.2.0.md
│ ├── license-info-7.0.0.md
│ ├── license-info-7.1.0.md
│ └── license-info-7.2.0.md
├── index.ts
├── package-lock.json
├── package.json
├── scripts
├── build.sh
├── create-tag.js
├── generate-reports.sh
├── next_version.sh
├── publish.sh
└── update-version.sh
├── src
├── alfrescoApi.ts
├── alfrescoApiClient.ts
├── alfrescoApiConfig.ts
├── api-clients
│ ├── api-client.ts
│ └── http-client.interface.ts
├── api
│ ├── activiti-rest-api
│ │ ├── README.md
│ │ ├── api
│ │ │ ├── about.api.ts
│ │ │ ├── accountIntegration.api.ts
│ │ │ ├── adminEndpoints.api.ts
│ │ │ ├── adminGroups.api.ts
│ │ │ ├── adminTenants.api.ts
│ │ │ ├── adminUsers.api.ts
│ │ │ ├── appDefinitions.api.ts
│ │ │ ├── base.api.ts
│ │ │ ├── checklists.api.ts
│ │ │ ├── comments.api.ts
│ │ │ ├── content.api.ts
│ │ │ ├── dataSources.api.ts
│ │ │ ├── decisionAudits.api.ts
│ │ │ ├── decisionTables.api.ts
│ │ │ ├── endpoints.api.ts
│ │ │ ├── formModels.api.ts
│ │ │ ├── groups.api.ts
│ │ │ ├── iDMSync.api.ts
│ │ │ ├── index.ts
│ │ │ ├── integrationAlfrescoCloud.api.ts
│ │ │ ├── integrationAlfrescoOnPremise.api.ts
│ │ │ ├── integrationBox.api.ts
│ │ │ ├── integrationDrive.api.ts
│ │ │ ├── modelJsonBpmn.api.ts
│ │ │ ├── models.api.ts
│ │ │ ├── modelsBpmn.api.ts
│ │ │ ├── modelsHistory.api.ts
│ │ │ ├── processDefinitions.api.ts
│ │ │ ├── processInstanceVariables.api.ts
│ │ │ ├── processInstances.api.ts
│ │ │ ├── processScopes.api.ts
│ │ │ ├── report.api.ts
│ │ │ ├── runtimeAppDefinitions.api.ts
│ │ │ ├── runtimeAppDeployments.api.ts
│ │ │ ├── scriptFiles.api.ts
│ │ │ ├── submittedForms.api.ts
│ │ │ ├── systemProperties.api.ts
│ │ │ ├── taskActions.api.ts
│ │ │ ├── taskForms.api.ts
│ │ │ ├── taskVariables.api.ts
│ │ │ ├── tasks.api.ts
│ │ │ ├── temporary.api.ts
│ │ │ ├── userFilters.api.ts
│ │ │ ├── userProfile.api.ts
│ │ │ └── users.api.ts
│ │ ├── docs
│ │ │ ├── AboutApi.md
│ │ │ ├── AbstractGroupRepresentation.md
│ │ │ ├── AbstractUserRepresentation.md
│ │ │ ├── AccountIntegrationApi.md
│ │ │ ├── AddGroupCapabilitiesRepresentation.md
│ │ │ ├── AdminEndpointsApi.md
│ │ │ ├── AdminGroupsApi.md
│ │ │ ├── AdminTenantsApi.md
│ │ │ ├── AdminUsersApi.md
│ │ │ ├── AlfrescoContentRepresentation.md
│ │ │ ├── AlfrescoEndpointRepresentation.md
│ │ │ ├── AlfrescoNetworkRepresenation.md
│ │ │ ├── AlfrescoSiteRepresenation.md
│ │ │ ├── AppDefinition.md
│ │ │ ├── AppDefinitionPublishRepresentation.md
│ │ │ ├── AppDefinitionRepresentation.md
│ │ │ ├── AppDefinitionSaveRepresentation.md
│ │ │ ├── AppDefinitionUpdateResultRepresentation.md
│ │ │ ├── AppDefinitionsApi.md
│ │ │ ├── AppDeploymentRepresentation.md
│ │ │ ├── AppModelDefinition.md
│ │ │ ├── AssigneeIdentifierRepresentation.md
│ │ │ ├── AuditCalculatedValueRepresentation.md
│ │ │ ├── AuditDecisionExpressionInfoRepresentation.md
│ │ │ ├── AuditDecisionInfoRepresentation.md
│ │ │ ├── AuditDecisionRuleInfoRepresentation.md
│ │ │ ├── AuditLogEntryRepresentation.md
│ │ │ ├── AuditLogFormDataRepresentation.md
│ │ │ ├── BoxContent.md
│ │ │ ├── BoxUserAccountCredentialsRepresentation.md
│ │ │ ├── BulkUserUpdateRepresentation.md
│ │ │ ├── ChangePasswordRepresentation.md
│ │ │ ├── ChecklistOrderRepresentation.md
│ │ │ ├── ChecklistsApi.md
│ │ │ ├── CommentAuditInfo.md
│ │ │ ├── CommentRepresentation.md
│ │ │ ├── CommentsApi.md
│ │ │ ├── CompleteFormRepresentation.md
│ │ │ ├── ConditionRepresentation.md
│ │ │ ├── ContentApi.md
│ │ │ ├── CreateProcessInstanceRepresentation.md
│ │ │ ├── CreateTenantRepresentation.md
│ │ │ ├── DataSourcesApi.md
│ │ │ ├── DecisionAuditRepresentation.md
│ │ │ ├── DecisionAuditsApi.md
│ │ │ ├── DecisionTablesApi.md
│ │ │ ├── DecisionTaskRepresentation.md
│ │ │ ├── EndpointConfigurationRepresentation.md
│ │ │ ├── EndpointRequestHeaderRepresentation.md
│ │ │ ├── EndpointsApi.md
│ │ │ ├── EntityAttributeScopeRepresentation.md
│ │ │ ├── EntityVariableScopeRepresentation.md
│ │ │ ├── FieldValueInfo.md
│ │ │ ├── File.md
│ │ │ ├── FormDefinitionRepresentation.md
│ │ │ ├── FormFieldRepresentation.md
│ │ │ ├── FormIdentifierRepresentation.md
│ │ │ ├── FormJavascriptEventRepresentation.md
│ │ │ ├── FormModelsApi.md
│ │ │ ├── FormOutcomeRepresentation.md
│ │ │ ├── FormRepresentation.md
│ │ │ ├── FormSaveRepresentation.md
│ │ │ ├── FormScopeRepresentation.md
│ │ │ ├── FormTabRepresentation.md
│ │ │ ├── FormValueRepresentation.md
│ │ │ ├── FormVariableRepresentation.md
│ │ │ ├── GlobalDateFormatRepresentation.md
│ │ │ ├── GoogleDriveContent.md
│ │ │ ├── GroupCapabilityRepresentation.md
│ │ │ ├── GroupRepresentation.md
│ │ │ ├── GroupsApi.md
│ │ │ ├── HistoricProcessInstanceQueryRepresentation.md
│ │ │ ├── HistoricTaskInstanceQueryRepresentation.md
│ │ │ ├── IDMSyncApi.md
│ │ │ ├── IdentityLinkRepresentation.md
│ │ │ ├── ImageUploadRepresentation.md
│ │ │ ├── IntegrationAlfrescoCloudApi.md
│ │ │ ├── IntegrationAlfrescoOnPremiseApi.md
│ │ │ ├── IntegrationBoxApi.md
│ │ │ ├── IntegrationDriveApi.md
│ │ │ ├── LayoutRepresentation.md
│ │ │ ├── LightAppRepresentation.md
│ │ │ ├── LightGroupRepresentation.md
│ │ │ ├── LightTenantRepresentation.md
│ │ │ ├── LightUserRepresentation.md
│ │ │ ├── ModelJsonBpmnApi.md
│ │ │ ├── ModelRepresentation.md
│ │ │ ├── ModelsApi.md
│ │ │ ├── ModelsBpmnApi.md
│ │ │ ├── ModelsHistoryApi.md
│ │ │ ├── NamedObject.md
│ │ │ ├── ObjectNode.md
│ │ │ ├── OptionRepresentation.md
│ │ │ ├── PasswordValidationConstraints.md
│ │ │ ├── ProcessContentRepresentation.md
│ │ │ ├── ProcessDefinitionMetaDataRepresentation.md
│ │ │ ├── ProcessDefinitionRepresentation.md
│ │ │ ├── ProcessDefinitionsApi.md
│ │ │ ├── ProcessInstanceAuditInfoRepresentation.md
│ │ │ ├── ProcessInstanceFilterRepresentation.md
│ │ │ ├── ProcessInstanceFilterRequestRepresentation.md
│ │ │ ├── ProcessInstanceQueryRepresentation.md
│ │ │ ├── ProcessInstanceRepresentation.md
│ │ │ ├── ProcessInstanceVariableRepresentation.md
│ │ │ ├── ProcessInstanceVariablesApi.md
│ │ │ ├── ProcessInstancesApi.md
│ │ │ ├── ProcessScopeIdentifierRepresentation.md
│ │ │ ├── ProcessScopeRepresentation.md
│ │ │ ├── ProcessScopesApi.md
│ │ │ ├── ProcessScopesRequestRepresentation.md
│ │ │ ├── PublishIdentityInfoRepresentation.md
│ │ │ ├── QueryVariable.md
│ │ │ ├── RelatedContentRepresentation.md
│ │ │ ├── RelatedProcessTask.md
│ │ │ ├── ReportApi.md
│ │ │ ├── ResetPasswordRepresentation.md
│ │ │ ├── RestVariable.md
│ │ │ ├── ResultListDataRepresentationRelatedProcessTask.md
│ │ │ ├── ResultListDataRepresentation«AbstractUserRepresentation».md
│ │ │ ├── ResultListDataRepresentation«AlfrescoContentRepresentation».md
│ │ │ ├── ResultListDataRepresentation«AlfrescoEndpointRepresentation».md
│ │ │ ├── ResultListDataRepresentation«AlfrescoNetworkRepresenation».md
│ │ │ ├── ResultListDataRepresentation«AlfrescoSiteRepresenation».md
│ │ │ ├── ResultListDataRepresentation«AppDefinitionRepresentation».md
│ │ │ ├── ResultListDataRepresentation«AppDeploymentRepresentation».md
│ │ │ ├── ResultListDataRepresentation«BoxContent».md
│ │ │ ├── ResultListDataRepresentation«CommentRepresentation».md
│ │ │ ├── ResultListDataRepresentation«DecisionTaskRepresentation».md
│ │ │ ├── ResultListDataRepresentation«FormRepresentation».md
│ │ │ ├── ResultListDataRepresentation«GoogleDriveContent».md
│ │ │ ├── ResultListDataRepresentation«LightGroupRepresentation».md
│ │ │ ├── ResultListDataRepresentation«LightUserRepresentation».md
│ │ │ ├── ResultListDataRepresentation«ModelRepresentation».md
│ │ │ ├── ResultListDataRepresentation«ProcessContentRepresentation».md
│ │ │ ├── ResultListDataRepresentation«ProcessDefinitionRepresentation».md
│ │ │ ├── ResultListDataRepresentation«ProcessInstanceRepresentation».md
│ │ │ ├── ResultListDataRepresentation«RelatedContentRepresentation».md
│ │ │ ├── ResultListDataRepresentation«RuntimeDecisionTableRepresentation».md
│ │ │ ├── ResultListDataRepresentation«RuntimeFormRepresentation».md
│ │ │ ├── ResultListDataRepresentation«SubmittedFormRepresentation».md
│ │ │ ├── ResultListDataRepresentation«TaskRepresentation».md
│ │ │ ├── ResultListDataRepresentation«UserProcessInstanceFilterRepresentation».md
│ │ │ ├── ResultListDataRepresentation«UserTaskFilterRepresentation».md
│ │ │ ├── RuntimeAppDefinitionSaveRepresentation.md
│ │ │ ├── RuntimeAppDefinitionsApi.md
│ │ │ ├── RuntimeAppDeploymentsApi.md
│ │ │ ├── RuntimeDecisionTableRepresentation.md
│ │ │ ├── RuntimeFormRepresentation.md
│ │ │ ├── SaveFormRepresentation.md
│ │ │ ├── ScriptFilesApi.md
│ │ │ ├── SubmittedFormRepresentation.md
│ │ │ ├── SubmittedFormsApi.md
│ │ │ ├── SyncLogEntryRepresentation.md
│ │ │ ├── SystemPropertiesApi.md
│ │ │ ├── SystemPropertiesRepresentation.md
│ │ │ ├── TaskActionsApi.md
│ │ │ ├── TaskAuditInfoRepresentation.md
│ │ │ ├── TaskFilterRepresentation.md
│ │ │ ├── TaskFilterRequestRepresentation.md
│ │ │ ├── TaskFormsApi.md
│ │ │ ├── TaskQueryRepresentation.md
│ │ │ ├── TaskRepresentation.md
│ │ │ ├── TaskUpdateRepresentation.md
│ │ │ ├── TaskVariablesApi.md
│ │ │ ├── TasksApi.md
│ │ │ ├── TemporaryApi.md
│ │ │ ├── TenantEvent.md
│ │ │ ├── TenantRepresentation.md
│ │ │ ├── UserAccountCredentialsRepresentation.md
│ │ │ ├── UserActionRepresentation.md
│ │ │ ├── UserFilterOrderRepresentation.md
│ │ │ ├── UserFiltersApi.md
│ │ │ ├── UserIdentifierRepresentation.md
│ │ │ ├── UserProcessInstanceFilterRepresentation.md
│ │ │ ├── UserProfileApi.md
│ │ │ ├── UserRepresentation.md
│ │ │ ├── UserTaskFilterRepresentation.md
│ │ │ ├── UsersApi.md
│ │ │ ├── ValidationErrorRepresentation.md
│ │ │ ├── VariableMappingRepresentation.md
│ │ │ └── VariableScopeRepresentation.md
│ │ ├── index.ts
│ │ └── model
│ │ │ ├── abstractGroupRepresentation.ts
│ │ │ ├── abstractUserRepresentation.ts
│ │ │ ├── accountRepresentation.ts
│ │ │ ├── addGroupCapabilitiesRepresentation.ts
│ │ │ ├── alfrescoContentRepresentation.ts
│ │ │ ├── alfrescoEndpointRepresentation.ts
│ │ │ ├── alfrescoNetworkRepresenation.ts
│ │ │ ├── alfrescoSiteRepresenation.ts
│ │ │ ├── appDefinition.ts
│ │ │ ├── appDefinitionPublishRepresentation.ts
│ │ │ ├── appDefinitionRepresentation.ts
│ │ │ ├── appDefinitionSaveRepresentation.ts
│ │ │ ├── appDefinitionUpdateResultRepresentation.ts
│ │ │ ├── appDeploymentRepresentation.ts
│ │ │ ├── appModelDefinition.ts
│ │ │ ├── assigneeIdentifierRepresentation.ts
│ │ │ ├── auditCalculatedValueRepresentation.ts
│ │ │ ├── auditDecisionExpressionInfoRepresentation.ts
│ │ │ ├── auditDecisionInfoRepresentation.ts
│ │ │ ├── auditDecisionRuleInfoRepresentation.ts
│ │ │ ├── auditLogEntryRepresentation.ts
│ │ │ ├── auditLogFormDataRepresentation.ts
│ │ │ ├── boxContent.ts
│ │ │ ├── boxUserAccountCredentialsRepresentation.ts
│ │ │ ├── bulkUserUpdateRepresentation.ts
│ │ │ ├── changePasswordRepresentation.ts
│ │ │ ├── checklistOrderRepresentation.ts
│ │ │ ├── commentAuditInfo.ts
│ │ │ ├── commentRepresentation.ts
│ │ │ ├── completeFormRepresentation.ts
│ │ │ ├── conditionRepresentation.ts
│ │ │ ├── createEndpointBasicAuthRepresentation.ts
│ │ │ ├── createProcessInstanceRepresentation.ts
│ │ │ ├── createTenantRepresentation.ts
│ │ │ ├── dataSourceConfigRepresentation.ts
│ │ │ ├── dataSourceRepresentation.ts
│ │ │ ├── decisionAuditRepresentation.ts
│ │ │ ├── decisionTaskRepresentation.ts
│ │ │ ├── endpointBasicAuthRepresentation.ts
│ │ │ ├── endpointConfigurationRepresentation.ts
│ │ │ ├── endpointRequestHeaderRepresentation.ts
│ │ │ ├── entityAttributeScopeRepresentation.ts
│ │ │ ├── entityVariableScopeRepresentation.ts
│ │ │ ├── fieldValueInfo.ts
│ │ │ ├── file.ts
│ │ │ ├── formDefinitionRepresentation.ts
│ │ │ ├── formFieldRepresentation.ts
│ │ │ ├── formIdentifierRepresentation.ts
│ │ │ ├── formJavascriptEventRepresentation.ts
│ │ │ ├── formOutcomeRepresentation.ts
│ │ │ ├── formRepresentation.ts
│ │ │ ├── formSaveRepresentation.ts
│ │ │ ├── formScopeRepresentation.ts
│ │ │ ├── formTabRepresentation.ts
│ │ │ ├── formValueRepresentation.ts
│ │ │ ├── formVariableRepresentation.ts
│ │ │ ├── globalDateFormatRepresentation.ts
│ │ │ ├── googleDriveContent.ts
│ │ │ ├── groupCapabilityRepresentation.ts
│ │ │ ├── groupRepresentation.ts
│ │ │ ├── historicProcessInstanceQueryRepresentation.ts
│ │ │ ├── historicTaskInstanceQueryRepresentation.ts
│ │ │ ├── identityLinkRepresentation.ts
│ │ │ ├── imageUploadRepresentation.ts
│ │ │ ├── index.ts
│ │ │ ├── jsonNode.ts
│ │ │ ├── layoutRepresentation.ts
│ │ │ ├── lightAppRepresentation.ts
│ │ │ ├── lightGroupRepresentation.ts
│ │ │ ├── lightTenantRepresentation.ts
│ │ │ ├── lightUserRepresentation.ts
│ │ │ ├── modelRepresentation.ts
│ │ │ ├── namedObject.ts
│ │ │ ├── objectNode.ts
│ │ │ ├── optionRepresentation.ts
│ │ │ ├── passwordValidationConstraints.ts
│ │ │ ├── processContentRepresentation.ts
│ │ │ ├── processDefinitionMetaDataRepresentation.ts
│ │ │ ├── processDefinitionRepresentation.ts
│ │ │ ├── processInstanceAuditInfoRepresentation.ts
│ │ │ ├── processInstanceFilterRepresentation.ts
│ │ │ ├── processInstanceFilterRequestRepresentation.ts
│ │ │ ├── processInstanceQueryRepresentation.ts
│ │ │ ├── processInstanceRepresentation.ts
│ │ │ ├── processInstanceVariableRepresentation.ts
│ │ │ ├── processScopeIdentifierRepresentation.ts
│ │ │ ├── processScopeRepresentation.ts
│ │ │ ├── processScopesRequestRepresentation.ts
│ │ │ ├── publishIdentityInfoRepresentation.ts
│ │ │ ├── queryVariable.ts
│ │ │ ├── relatedContentRepresentation.ts
│ │ │ ├── relatedProcessTask.ts
│ │ │ ├── resetPasswordRepresentation.ts
│ │ │ ├── restVariable.ts
│ │ │ ├── resultListDataRepresentationAbstractUserRepresentation.ts
│ │ │ ├── resultListDataRepresentationAccountRepresentation.ts
│ │ │ ├── resultListDataRepresentationAlfrescoContentRepresentation.ts
│ │ │ ├── resultListDataRepresentationAlfrescoEndpointRepresentation.ts
│ │ │ ├── resultListDataRepresentationAlfrescoNetworkRepresenation.ts
│ │ │ ├── resultListDataRepresentationAlfrescoSiteRepresenation.ts
│ │ │ ├── resultListDataRepresentationAppDefinitionRepresentation.ts
│ │ │ ├── resultListDataRepresentationAppDeploymentRepresentation.ts
│ │ │ ├── resultListDataRepresentationBoxContent.ts
│ │ │ ├── resultListDataRepresentationCommentRepresentation.ts
│ │ │ ├── resultListDataRepresentationDataSourceRepresentation.ts
│ │ │ ├── resultListDataRepresentationDecisionAuditRepresentation.ts
│ │ │ ├── resultListDataRepresentationDecisionTaskRepresentation.ts
│ │ │ ├── resultListDataRepresentationFormRepresentation.ts
│ │ │ ├── resultListDataRepresentationGoogleDriveContent.ts
│ │ │ ├── resultListDataRepresentationLightGroupRepresentation.ts
│ │ │ ├── resultListDataRepresentationLightUserRepresentation.ts
│ │ │ ├── resultListDataRepresentationModelRepresentation.ts
│ │ │ ├── resultListDataRepresentationProcessContentRepresentation.ts
│ │ │ ├── resultListDataRepresentationProcessDefinitionRepresentation.ts
│ │ │ ├── resultListDataRepresentationProcessInstanceRepresentation.ts
│ │ │ ├── resultListDataRepresentationRelatedContentRepresentation.ts
│ │ │ ├── resultListDataRepresentationRelatedProcessTask.ts
│ │ │ ├── resultListDataRepresentationRuntimeDecisionTableRepresentation.ts
│ │ │ ├── resultListDataRepresentationRuntimeFormRepresentation.ts
│ │ │ ├── resultListDataRepresentationSubmittedFormRepresentation.ts
│ │ │ ├── resultListDataRepresentationTaskRepresentation.ts
│ │ │ ├── resultListDataRepresentationUserProcessInstanceFilterRepresentation.ts
│ │ │ ├── resultListDataRepresentationUserTaskFilterRepresentation.ts
│ │ │ ├── runtimeAppDefinitionSaveRepresentation.ts
│ │ │ ├── runtimeDecisionTableRepresentation.ts
│ │ │ ├── runtimeFormRepresentation.ts
│ │ │ ├── saveFormRepresentation.ts
│ │ │ ├── submittedFormRepresentation.ts
│ │ │ ├── syncLogEntryRepresentation.ts
│ │ │ ├── systemPropertiesRepresentation.ts
│ │ │ ├── taskAuditInfoRepresentation.ts
│ │ │ ├── taskFilterRepresentation.ts
│ │ │ ├── taskFilterRequestRepresentation.ts
│ │ │ ├── taskQueryRepresentation.ts
│ │ │ ├── taskRepresentation.ts
│ │ │ ├── taskUpdateRepresentation.ts
│ │ │ ├── tenantEvent.ts
│ │ │ ├── tenantRepresentation.ts
│ │ │ ├── userAccountCredentialsRepresentation.ts
│ │ │ ├── userActionRepresentation.ts
│ │ │ ├── userFilterOrderRepresentation.ts
│ │ │ ├── userIdentifierRepresentation.ts
│ │ │ ├── userProcessInstanceFilterRepresentation.ts
│ │ │ ├── userRepresentation.ts
│ │ │ ├── userRepresentationGroup.ts
│ │ │ ├── userTaskFilterRepresentation.ts
│ │ │ ├── validationErrorRepresentation.ts
│ │ │ ├── variableMappingRepresentation.ts
│ │ │ └── variableScopeRepresentation.ts
│ ├── auth-rest-api
│ │ ├── README.md
│ │ ├── api
│ │ │ ├── authentication.api.ts
│ │ │ ├── base.api.ts
│ │ │ └── index.ts
│ │ ├── docs
│ │ │ ├── AuthenticationApi.md
│ │ │ ├── Error.md
│ │ │ ├── Error_error.md
│ │ │ ├── Ticket.md
│ │ │ ├── TicketBody.md
│ │ │ ├── TicketEntry.md
│ │ │ ├── ValidTicket.md
│ │ │ └── ValidTicketEntry.md
│ │ ├── index.ts
│ │ └── model
│ │ │ ├── index.ts
│ │ │ ├── ticket.ts
│ │ │ ├── ticketBody.ts
│ │ │ ├── ticketEntry.ts
│ │ │ ├── validTicket.ts
│ │ │ └── validTicketEntry.ts
│ ├── content-custom-api
│ │ ├── api
│ │ │ ├── base.api.ts
│ │ │ ├── classes.api.ts
│ │ │ ├── content.api.ts
│ │ │ ├── customModel.api.ts
│ │ │ ├── index.ts
│ │ │ ├── upload.api.ts
│ │ │ └── webscript.api.ts
│ │ ├── docs
│ │ │ ├── UploadApi.md
│ │ │ └── WebscriptApi.md
│ │ ├── index.ts
│ │ └── model
│ │ │ ├── classDescription.ts
│ │ │ ├── classPropertyDescription.ts
│ │ │ ├── dateAlfresco.ts
│ │ │ ├── index.ts
│ │ │ └── pagination.ts
│ ├── content-rest-api
│ │ ├── README.md
│ │ ├── api
│ │ │ ├── actions.api.ts
│ │ │ ├── activities.api.ts
│ │ │ ├── audit.api.ts
│ │ │ ├── base.api.ts
│ │ │ ├── categories.api.ts
│ │ │ ├── comments.api.ts
│ │ │ ├── downloads.api.ts
│ │ │ ├── favorites.api.ts
│ │ │ ├── groups.api.ts
│ │ │ ├── index.ts
│ │ │ ├── networks.api.ts
│ │ │ ├── nodes.api.ts
│ │ │ ├── people.api.ts
│ │ │ ├── preferences.api.ts
│ │ │ ├── probes.api.ts
│ │ │ ├── queries.api.ts
│ │ │ ├── ratings.api.ts
│ │ │ ├── renditions.api.ts
│ │ │ ├── sharedlinks.api.ts
│ │ │ ├── sites.api.ts
│ │ │ ├── tags.api.ts
│ │ │ ├── trashcan.api.ts
│ │ │ ├── types.ts
│ │ │ └── versions.api.ts
│ │ ├── docs
│ │ │ ├── ActionsApi.md
│ │ │ ├── ActivitiesApi.md
│ │ │ ├── Association.md
│ │ │ ├── AssociationEntry.md
│ │ │ ├── AssociationInfo.md
│ │ │ ├── AuditApi.md
│ │ │ ├── CategoriesApi.md
│ │ │ ├── ChildAssociation.md
│ │ │ ├── ChildAssociationEntry.md
│ │ │ ├── ChildAssociationInfo.md
│ │ │ ├── CommentsApi.md
│ │ │ ├── Company.md
│ │ │ ├── ContentInfo.md
│ │ │ ├── Definition.md
│ │ │ ├── DirectAccessUrl.md
│ │ │ ├── DirectAccessUrlEntry.md
│ │ │ ├── DownloadsApi.md
│ │ │ ├── Error.md
│ │ │ ├── ErrorError.md
│ │ │ ├── FavoritesApi.md
│ │ │ ├── Group.md
│ │ │ ├── GroupMember.md
│ │ │ ├── GroupsApi.md
│ │ │ ├── NetworksApi.md
│ │ │ ├── Node.md
│ │ │ ├── NodeEntry.md
│ │ │ ├── NodesApi.md
│ │ │ ├── Pagination.md
│ │ │ ├── PathElement.md
│ │ │ ├── PathInfo.md
│ │ │ ├── PeopleApi.md
│ │ │ ├── PermissionElement.md
│ │ │ ├── PermissionsInfo.md
│ │ │ ├── Person.md
│ │ │ ├── PersonEntry.md
│ │ │ ├── PersonPaging.md
│ │ │ ├── PreferencesApi.md
│ │ │ ├── ProbesApi.md
│ │ │ ├── Property.md
│ │ │ ├── QueriesApi.md
│ │ │ ├── RatingsApi.md
│ │ │ ├── Rendition.md
│ │ │ ├── RenditionBodyCreate.md
│ │ │ ├── RenditionEntry.md
│ │ │ ├── RenditionPaging.md
│ │ │ ├── RenditionsApi.md
│ │ │ ├── SharedlinksApi.md
│ │ │ ├── Site.md
│ │ │ ├── SiteEntry.md
│ │ │ ├── SiteEntryRelations.md
│ │ │ ├── SitePaging.md
│ │ │ ├── SitesApi.md
│ │ │ ├── TagsApi.md
│ │ │ ├── TrashcanApi.md
│ │ │ ├── UserInfo.md
│ │ │ └── VersionsApi.md
│ │ ├── index.ts
│ │ └── model
│ │ │ ├── CategoryLinkBody.ts
│ │ │ ├── actionBodyExec.ts
│ │ │ ├── actionDefinition.ts
│ │ │ ├── actionDefinitionEntry.ts
│ │ │ ├── actionDefinitionList.ts
│ │ │ ├── actionDefinitionListList.ts
│ │ │ ├── actionExecResult.ts
│ │ │ ├── actionExecResultEntry.ts
│ │ │ ├── actionParameterDefinition.ts
│ │ │ ├── activity.ts
│ │ │ ├── activityEntry.ts
│ │ │ ├── activityPaging.ts
│ │ │ ├── activityPagingList.ts
│ │ │ ├── association.ts
│ │ │ ├── associationBody.ts
│ │ │ ├── associationEntry.ts
│ │ │ ├── associationInfo.ts
│ │ │ ├── auditApp.ts
│ │ │ ├── auditAppEntry.ts
│ │ │ ├── auditAppPaging.ts
│ │ │ ├── auditAppPagingList.ts
│ │ │ ├── auditBodyUpdate.ts
│ │ │ ├── auditEntry.ts
│ │ │ ├── auditEntryEntry.ts
│ │ │ ├── auditEntryPaging.ts
│ │ │ ├── auditEntryPagingList.ts
│ │ │ ├── capabilities.ts
│ │ │ ├── category.ts
│ │ │ ├── categoryBody.ts
│ │ │ ├── categoryEntry.ts
│ │ │ ├── categoryPaging.ts
│ │ │ ├── categoryPagingList.ts
│ │ │ ├── childAssociation.ts
│ │ │ ├── childAssociationBody.ts
│ │ │ ├── childAssociationEntry.ts
│ │ │ ├── childAssociationInfo.ts
│ │ │ ├── clientBody.ts
│ │ │ ├── comment.ts
│ │ │ ├── commentBody.ts
│ │ │ ├── commentEntry.ts
│ │ │ ├── commentPaging.ts
│ │ │ ├── commentPagingList.ts
│ │ │ ├── company.ts
│ │ │ ├── constraint.ts
│ │ │ ├── contentInfo.ts
│ │ │ ├── definition.ts
│ │ │ ├── deletedNode.ts
│ │ │ ├── deletedNodeBodyRestore.ts
│ │ │ ├── deletedNodeEntry.ts
│ │ │ ├── deletedNodesPaging.ts
│ │ │ ├── deletedNodesPagingList.ts
│ │ │ ├── directAccessUrl.ts
│ │ │ ├── directAccessUrlEntry.ts
│ │ │ ├── download.ts
│ │ │ ├── downloadBodyCreate.ts
│ │ │ ├── downloadEntry.ts
│ │ │ ├── errorError.ts
│ │ │ ├── favorite.ts
│ │ │ ├── favoriteBodyCreate.ts
│ │ │ ├── favoriteEntry.ts
│ │ │ ├── favoritePaging.ts
│ │ │ ├── favoritePagingList.ts
│ │ │ ├── favoriteSite.ts
│ │ │ ├── favoriteSiteBodyCreate.ts
│ │ │ ├── favoriteSiteEntry.ts
│ │ │ ├── group.ts
│ │ │ ├── groupBodyCreate.ts
│ │ │ ├── groupBodyUpdate.ts
│ │ │ ├── groupEntry.ts
│ │ │ ├── groupMember.ts
│ │ │ ├── groupMemberEntry.ts
│ │ │ ├── groupMemberPaging.ts
│ │ │ ├── groupMemberPagingList.ts
│ │ │ ├── groupMembershipBodyCreate.ts
│ │ │ ├── groupPaging.ts
│ │ │ ├── groupPagingList.ts
│ │ │ ├── index.ts
│ │ │ ├── modelError.ts
│ │ │ ├── networkQuota.ts
│ │ │ ├── node.ts
│ │ │ ├── nodeAssociation.ts
│ │ │ ├── nodeAssociationEntry.ts
│ │ │ ├── nodeAssociationPaging.ts
│ │ │ ├── nodeAssociationPagingList.ts
│ │ │ ├── nodeBodyCopy.ts
│ │ │ ├── nodeBodyCreate.ts
│ │ │ ├── nodeBodyCreateAssociation.ts
│ │ │ ├── nodeBodyLock.ts
│ │ │ ├── nodeBodyMove.ts
│ │ │ ├── nodeBodyUpdate.ts
│ │ │ ├── nodeChildAssociation.ts
│ │ │ ├── nodeChildAssociationEntry.ts
│ │ │ ├── nodeChildAssociationPaging.ts
│ │ │ ├── nodeChildAssociationPagingList.ts
│ │ │ ├── nodeEntry.ts
│ │ │ ├── nodePaging.ts
│ │ │ ├── nodePagingList.ts
│ │ │ ├── pagination.ts
│ │ │ ├── passwordResetBody.ts
│ │ │ ├── pathElement.ts
│ │ │ ├── pathInfo.ts
│ │ │ ├── permissionElement.ts
│ │ │ ├── permissionsBody.ts
│ │ │ ├── permissionsInfo.ts
│ │ │ ├── person.ts
│ │ │ ├── personBodyCreate.ts
│ │ │ ├── personBodyUpdate.ts
│ │ │ ├── personEntry.ts
│ │ │ ├── personNetwork.ts
│ │ │ ├── personNetworkEntry.ts
│ │ │ ├── personNetworkPaging.ts
│ │ │ ├── personNetworkPagingList.ts
│ │ │ ├── personPaging.ts
│ │ │ ├── personPagingList.ts
│ │ │ ├── preference.ts
│ │ │ ├── preferenceEntry.ts
│ │ │ ├── preferencePaging.ts
│ │ │ ├── preferencePagingList.ts
│ │ │ ├── probeEntry.ts
│ │ │ ├── probeEntryEntry.ts
│ │ │ ├── property.ts
│ │ │ ├── rating.ts
│ │ │ ├── ratingAggregate.ts
│ │ │ ├── ratingBody.ts
│ │ │ ├── ratingEntry.ts
│ │ │ ├── ratingPaging.ts
│ │ │ ├── ratingPagingList.ts
│ │ │ ├── rendition.ts
│ │ │ ├── renditionBodyCreate.ts
│ │ │ ├── renditionEntry.ts
│ │ │ ├── renditionPaging.ts
│ │ │ ├── renditionPagingList.ts
│ │ │ ├── revertBody.ts
│ │ │ ├── sharedLink.ts
│ │ │ ├── sharedLinkBodyCreate.ts
│ │ │ ├── sharedLinkBodyEmail.ts
│ │ │ ├── sharedLinkEntry.ts
│ │ │ ├── sharedLinkPaging.ts
│ │ │ ├── sharedLinkPagingList.ts
│ │ │ ├── site.ts
│ │ │ ├── siteBodyCreate.ts
│ │ │ ├── siteBodyUpdate.ts
│ │ │ ├── siteContainer.ts
│ │ │ ├── siteContainerEntry.ts
│ │ │ ├── siteContainerPaging.ts
│ │ │ ├── siteContainerPagingList.ts
│ │ │ ├── siteEntry.ts
│ │ │ ├── siteEntryRelations.ts
│ │ │ ├── siteGroup.ts
│ │ │ ├── siteGroupEntry.ts
│ │ │ ├── siteGroupPaging.ts
│ │ │ ├── siteGroupPagingList.ts
│ │ │ ├── siteMember.ts
│ │ │ ├── siteMemberEntry.ts
│ │ │ ├── siteMemberPaging.ts
│ │ │ ├── siteMemberPagingList.ts
│ │ │ ├── siteMembershipApprovalBody.ts
│ │ │ ├── siteMembershipBodyCreate.ts
│ │ │ ├── siteMembershipBodyUpdate.ts
│ │ │ ├── siteMembershipRejectionBody.ts
│ │ │ ├── siteMembershipRequest.ts
│ │ │ ├── siteMembershipRequestBodyCreate.ts
│ │ │ ├── siteMembershipRequestBodyUpdate.ts
│ │ │ ├── siteMembershipRequestEntry.ts
│ │ │ ├── siteMembershipRequestPaging.ts
│ │ │ ├── siteMembershipRequestPagingList.ts
│ │ │ ├── siteMembershipRequestWithPerson.ts
│ │ │ ├── siteMembershipRequestWithPersonEntry.ts
│ │ │ ├── siteMembershipRequestWithPersonPaging.ts
│ │ │ ├── siteMembershipRequestWithPersonPagingList.ts
│ │ │ ├── sitePaging.ts
│ │ │ ├── sitePagingList.ts
│ │ │ ├── siteRole.ts
│ │ │ ├── siteRoleEntry.ts
│ │ │ ├── siteRolePaging.ts
│ │ │ ├── siteRolePagingList.ts
│ │ │ ├── tag.ts
│ │ │ ├── tagBody.ts
│ │ │ ├── tagEntry.ts
│ │ │ ├── tagPaging.ts
│ │ │ ├── tagPagingList.ts
│ │ │ ├── userInfo.ts
│ │ │ ├── version.ts
│ │ │ ├── versionEntry.ts
│ │ │ ├── versionPaging.ts
│ │ │ └── versionPagingList.ts
│ ├── discovery-rest-api
│ │ ├── README.md
│ │ ├── api
│ │ │ ├── base.api.ts
│ │ │ ├── discovery.api.ts
│ │ │ └── index.ts
│ │ ├── docs
│ │ │ ├── DiscoveryApi.md
│ │ │ ├── DiscoveryEntry.md
│ │ │ ├── EntitlementsInfo.md
│ │ │ ├── Error.md
│ │ │ ├── Error_error.md
│ │ │ ├── LicenseInfo.md
│ │ │ ├── ModuleInfo.md
│ │ │ ├── RepositoryEntry.md
│ │ │ ├── RepositoryInfo.md
│ │ │ ├── StatusInfo.md
│ │ │ └── VersionInfo.md
│ │ ├── index.ts
│ │ └── model
│ │ │ ├── discoveryEntry.ts
│ │ │ ├── entitlementsInfo.ts
│ │ │ ├── index.ts
│ │ │ ├── licenseInfo.ts
│ │ │ ├── moduleInfo.ts
│ │ │ ├── repositoryEntry.ts
│ │ │ ├── repositoryInfo.ts
│ │ │ ├── statusInfo.ts
│ │ │ └── versionInfo.ts
│ ├── gs-classification-rest-api
│ │ ├── README.md
│ │ ├── api
│ │ │ ├── authorityClearance.api.ts
│ │ │ ├── base.api.ts
│ │ │ ├── classificationGuides.api.ts
│ │ │ ├── classificationReasons.api.ts
│ │ │ ├── declassificationExemptions.api.ts
│ │ │ ├── defaultClassificationValues.api.ts
│ │ │ ├── index.ts
│ │ │ ├── nodeSecurityMarks.api.ts
│ │ │ ├── securityControlSettings.api.ts
│ │ │ ├── securityGroups.api.ts
│ │ │ ├── securityMarks.api.ts
│ │ │ └── types.ts
│ │ ├── docs
│ │ │ ├── AuthorityClearanceGroup.md
│ │ │ ├── AuthorityClearanceGroupEntry.md
│ │ │ ├── AuthorityClearanceGroupPaging.md
│ │ │ ├── AuthorityClearanceGroupPaging_list.md
│ │ │ ├── AuthorityClearanceMark.md
│ │ │ ├── ClassificationGuide.md
│ │ │ ├── ClassificationGuideBody.md
│ │ │ ├── ClassificationGuideEntry.md
│ │ │ ├── ClassificationGuideInTopic.md
│ │ │ ├── ClassificationGuidePaging.md
│ │ │ ├── ClassificationGuidePaging_list.md
│ │ │ ├── ClassificationGuides.md
│ │ │ ├── ClassificationGuidesApi.md
│ │ │ ├── ClassificationGuidesBody.md
│ │ │ ├── ClassificationGuidesEntry.md
│ │ │ ├── ClassificationGuidesInTopic.md
│ │ │ ├── ClassificationInformation.md
│ │ │ ├── ClassificationReason.md
│ │ │ ├── ClassificationReasonBody.md
│ │ │ ├── ClassificationReasonEntry.md
│ │ │ ├── ClassificationReasonsApi.md
│ │ │ ├── ClassificationReasonsPaging.md
│ │ │ ├── ClassificationReasonsPaging_list.md
│ │ │ ├── CombinedInstructionBody.md
│ │ │ ├── DeclassificationDate.md
│ │ │ ├── DeclassificationExemption.md
│ │ │ ├── DeclassificationExemptionBody.md
│ │ │ ├── DeclassificationExemptionEntry.md
│ │ │ ├── DeclassificationExemptionsApi.md
│ │ │ ├── DeclassificationExemptionsPaging.md
│ │ │ ├── DeclassificationExemptionsPaging_list.md
│ │ │ ├── DefaultClassificationValuesApi.md
│ │ │ ├── Error.md
│ │ │ ├── Error_error.md
│ │ │ ├── Instruction.md
│ │ │ ├── InstructionBody.md
│ │ │ ├── InstructionEntry.md
│ │ │ ├── NodeSecurityMarkBody.md
│ │ │ ├── Pagination.md
│ │ │ ├── Path.md
│ │ │ ├── PathElement.md
│ │ │ ├── SecurityControlSetting.md
│ │ │ ├── SecurityControlSettingBody.md
│ │ │ ├── SecurityControlSettingEntry.md
│ │ │ ├── SecurityControlSettingsApi.md
│ │ │ ├── SecurityGroup.md
│ │ │ ├── SecurityGroupBody.md
│ │ │ ├── SecurityGroupEntry.md
│ │ │ ├── SecurityGroupPaging.md
│ │ │ ├── SecurityGroupPaging_list.md
│ │ │ ├── SecurityMark.md
│ │ │ ├── SecurityMarkBody.md
│ │ │ ├── SecurityMarkEntry.md
│ │ │ ├── SecurityMarkInformation.md
│ │ │ ├── SecurityMarkInformationBody.md
│ │ │ ├── SecurityMarkPaging.md
│ │ │ ├── SecurityMarkPaging_list.md
│ │ │ ├── SecurityMarks.md
│ │ │ ├── SecurityMarksBody.md
│ │ │ ├── SubtopicPaging.md
│ │ │ ├── Topic.md
│ │ │ ├── TopicBody.md
│ │ │ ├── TopicEntry.md
│ │ │ ├── TopicPaging.md
│ │ │ └── TopicPaging_list.md
│ │ ├── index.ts
│ │ └── model
│ │ │ ├── authorityClearanceGroup.ts
│ │ │ ├── authorityClearanceGroupEntry.ts
│ │ │ ├── authorityClearanceGroupPaging.ts
│ │ │ ├── authorityClearanceGroupPagingList.ts
│ │ │ ├── authorityClearanceMark.ts
│ │ │ ├── classificationGuide.ts
│ │ │ ├── classificationGuideBody.ts
│ │ │ ├── classificationGuideEntry.ts
│ │ │ ├── classificationGuideInTopic.ts
│ │ │ ├── classificationGuidePaging.ts
│ │ │ ├── classificationGuidePagingList.ts
│ │ │ ├── classificationGuides.ts
│ │ │ ├── classificationGuidesBody.ts
│ │ │ ├── classificationGuidesEntry.ts
│ │ │ ├── classificationGuidesInTopic.ts
│ │ │ ├── classificationInformation.ts
│ │ │ ├── classificationReason.ts
│ │ │ ├── classificationReasonBody.ts
│ │ │ ├── classificationReasonEntry.ts
│ │ │ ├── classificationReasonsPaging.ts
│ │ │ ├── classificationReasonsPagingList.ts
│ │ │ ├── combinedInstructionBody.ts
│ │ │ ├── declassificationDate.ts
│ │ │ ├── declassificationExemption.ts
│ │ │ ├── declassificationExemptionBody.ts
│ │ │ ├── declassificationExemptionEntry.ts
│ │ │ ├── declassificationExemptionsPaging.ts
│ │ │ ├── declassificationExemptionsPagingList.ts
│ │ │ ├── index.ts
│ │ │ ├── instruction.ts
│ │ │ ├── instructionBody.ts
│ │ │ ├── instructionEntry.ts
│ │ │ ├── nodeSecurityMarkBody.ts
│ │ │ ├── path.ts
│ │ │ ├── securityControlSetting.ts
│ │ │ ├── securityControlSettingBody.ts
│ │ │ ├── securityControlSettingEntry.ts
│ │ │ ├── securityGroup.ts
│ │ │ ├── securityGroupBody.ts
│ │ │ ├── securityGroupEntry.ts
│ │ │ ├── securityGroupPaging.ts
│ │ │ ├── securityGroupPagingList.ts
│ │ │ ├── securityMark.ts
│ │ │ ├── securityMarkBody.ts
│ │ │ ├── securityMarkEntry.ts
│ │ │ ├── securityMarkInformation.ts
│ │ │ ├── securityMarkInformationBody.ts
│ │ │ ├── securityMarkPaging.ts
│ │ │ ├── securityMarkPagingList.ts
│ │ │ ├── securityMarks.ts
│ │ │ ├── securityMarksBody.ts
│ │ │ ├── subtopicPaging.ts
│ │ │ ├── topic.ts
│ │ │ ├── topicBody.ts
│ │ │ ├── topicEntry.ts
│ │ │ ├── topicPaging.ts
│ │ │ └── topicPagingList.ts
│ ├── gs-core-rest-api
│ │ ├── README.md
│ │ ├── api
│ │ │ ├── base.api.ts
│ │ │ ├── filePlans.api.ts
│ │ │ ├── files.api.ts
│ │ │ ├── gsSites.api.ts
│ │ │ ├── index.ts
│ │ │ ├── recordCategories.api.ts
│ │ │ ├── recordFolders.api.ts
│ │ │ ├── records.api.ts
│ │ │ ├── transferContainers.api.ts
│ │ │ ├── transfers.api.ts
│ │ │ ├── types.ts
│ │ │ ├── unfiledContainers.api.ts
│ │ │ └── unfiledRecordFolders.api.ts
│ │ ├── docs
│ │ │ ├── ChildAssociationInfo.md
│ │ │ ├── ContentInfo.md
│ │ │ ├── Error.md
│ │ │ ├── Error_error.md
│ │ │ ├── FilePlan.md
│ │ │ ├── FilePlanBodyUpdate.md
│ │ │ ├── FilePlanComponentBodyUpdate.md
│ │ │ ├── FilePlanEntry.md
│ │ │ ├── FilePlansApi.md
│ │ │ ├── FilesApi.md
│ │ │ ├── GssitesApi.md
│ │ │ ├── Pagination.md
│ │ │ ├── PathElement.md
│ │ │ ├── PathInfo.md
│ │ │ ├── RMNodeBodyCreate.md
│ │ │ ├── RMNodeBodyCreateWithRelativePath.md
│ │ │ ├── RMSite.md
│ │ │ ├── RMSiteBodyCreate.md
│ │ │ ├── RMSiteBodyUpdate.md
│ │ │ ├── RMSiteEntry.md
│ │ │ ├── Record.md
│ │ │ ├── RecordCategoriesApi.md
│ │ │ ├── RecordCategory.md
│ │ │ ├── RecordCategoryChild.md
│ │ │ ├── RecordCategoryChildEntry.md
│ │ │ ├── RecordCategoryChildPaging.md
│ │ │ ├── RecordCategoryChildPaging_list.md
│ │ │ ├── RecordCategoryEntry.md
│ │ │ ├── RecordCategoryPaging.md
│ │ │ ├── RecordCategoryPaging_list.md
│ │ │ ├── RecordEntry.md
│ │ │ ├── RecordFolder.md
│ │ │ ├── RecordFolderAssociationPaging.md
│ │ │ ├── RecordFolderAssociationPaging_list.md
│ │ │ ├── RecordFolderChildAssociation.md
│ │ │ ├── RecordFolderChildAssociationEntry.md
│ │ │ ├── RecordFolderEntry.md
│ │ │ ├── RecordFoldersApi.md
│ │ │ ├── RecordsApi.md
│ │ │ ├── RequestBodyFile.md
│ │ │ ├── RootCategoryBodyCreate.md
│ │ │ ├── Transfer.md
│ │ │ ├── TransferAssociationPaging.md
│ │ │ ├── TransferAssociationPaging_list.md
│ │ │ ├── TransferChild.md
│ │ │ ├── TransferChildAssociation.md
│ │ │ ├── TransferChildAssociationEntry.md
│ │ │ ├── TransferContainer.md
│ │ │ ├── TransferContainerAssociationPaging.md
│ │ │ ├── TransferContainerAssociationPaging_list.md
│ │ │ ├── TransferContainerBodyUpdate.md
│ │ │ ├── TransferContainerChild.md
│ │ │ ├── TransferContainerChildAssociation.md
│ │ │ ├── TransferContainerChildAssociationEntry.md
│ │ │ ├── TransferContainerEntry.md
│ │ │ ├── TransferContainersApi.md
│ │ │ ├── TransferEntry.md
│ │ │ ├── TransfersApi.md
│ │ │ ├── UnfiledContainer.md
│ │ │ ├── UnfiledContainerAssociationPaging.md
│ │ │ ├── UnfiledContainerAssociationPaging_list.md
│ │ │ ├── UnfiledContainerChild.md
│ │ │ ├── UnfiledContainerChildAssociation.md
│ │ │ ├── UnfiledContainerChildAssociationEntry.md
│ │ │ ├── UnfiledContainerEntry.md
│ │ │ ├── UnfiledContainersApi.md
│ │ │ ├── UnfiledRecordContainerBodyUpdate.md
│ │ │ ├── UnfiledRecordFolder.md
│ │ │ ├── UnfiledRecordFolderAssociationPaging.md
│ │ │ ├── UnfiledRecordFolderAssociationPaging_list.md
│ │ │ ├── UnfiledRecordFolderBodyUpdate.md
│ │ │ ├── UnfiledRecordFolderChild.md
│ │ │ ├── UnfiledRecordFolderChildAssociation.md
│ │ │ ├── UnfiledRecordFolderChildAssociationEntry.md
│ │ │ ├── UnfiledRecordFolderEntry.md
│ │ │ ├── UnfiledRecordFoldersApi.md
│ │ │ └── UserInfo.md
│ │ ├── index.ts
│ │ └── model
│ │ │ ├── filePlan.ts
│ │ │ ├── filePlanBodyUpdate.ts
│ │ │ ├── filePlanComponentBodyUpdate.ts
│ │ │ ├── filePlanEntry.ts
│ │ │ ├── index.ts
│ │ │ ├── rMNodeBodyCreate.ts
│ │ │ ├── rMNodeBodyCreateWithRelativePath.ts
│ │ │ ├── rMSite.ts
│ │ │ ├── rMSiteBodyCreate.ts
│ │ │ ├── rMSiteBodyUpdate.ts
│ │ │ ├── rMSiteEntry.ts
│ │ │ ├── record.ts
│ │ │ ├── recordCategory.ts
│ │ │ ├── recordCategoryChild.ts
│ │ │ ├── recordCategoryChildEntry.ts
│ │ │ ├── recordCategoryChildPaging.ts
│ │ │ ├── recordCategoryChildPagingList.ts
│ │ │ ├── recordCategoryEntry.ts
│ │ │ ├── recordCategoryPaging.ts
│ │ │ ├── recordCategoryPagingList.ts
│ │ │ ├── recordEntry.ts
│ │ │ ├── recordFolder.ts
│ │ │ ├── recordFolderAssociationPaging.ts
│ │ │ ├── recordFolderAssociationPagingList.ts
│ │ │ ├── recordFolderChildAssociation.ts
│ │ │ ├── recordFolderChildAssociationEntry.ts
│ │ │ ├── recordFolderEntry.ts
│ │ │ ├── requestBodyFile.ts
│ │ │ ├── rootCategoryBodyCreate.ts
│ │ │ ├── transfer.ts
│ │ │ ├── transferAssociationPaging.ts
│ │ │ ├── transferAssociationPagingList.ts
│ │ │ ├── transferChild.ts
│ │ │ ├── transferChildAssociation.ts
│ │ │ ├── transferChildAssociationEntry.ts
│ │ │ ├── transferContainer.ts
│ │ │ ├── transferContainerAssociationPaging.ts
│ │ │ ├── transferContainerAssociationPagingList.ts
│ │ │ ├── transferContainerBodyUpdate.ts
│ │ │ ├── transferContainerChild.ts
│ │ │ ├── transferContainerChildAssociation.ts
│ │ │ ├── transferContainerChildAssociationEntry.ts
│ │ │ ├── transferContainerEntry.ts
│ │ │ ├── transferEntry.ts
│ │ │ ├── unfiledContainer.ts
│ │ │ ├── unfiledContainerAssociationPaging.ts
│ │ │ ├── unfiledContainerAssociationPagingList.ts
│ │ │ ├── unfiledContainerChild.ts
│ │ │ ├── unfiledContainerChildAssociation.ts
│ │ │ ├── unfiledContainerChildAssociationEntry.ts
│ │ │ ├── unfiledContainerEntry.ts
│ │ │ ├── unfiledRecordContainerBodyUpdate.ts
│ │ │ ├── unfiledRecordFolder.ts
│ │ │ ├── unfiledRecordFolderAssociationPaging.ts
│ │ │ ├── unfiledRecordFolderAssociationPagingList.ts
│ │ │ ├── unfiledRecordFolderBodyUpdate.ts
│ │ │ ├── unfiledRecordFolderChild.ts
│ │ │ ├── unfiledRecordFolderChildAssociation.ts
│ │ │ ├── unfiledRecordFolderChildAssociationEntry.ts
│ │ │ └── unfiledRecordFolderEntry.ts
│ ├── model-rest-api
│ │ ├── README.md
│ │ ├── api
│ │ │ ├── aspects.api.ts
│ │ │ ├── base.api.ts
│ │ │ ├── index.ts
│ │ │ └── types.api.ts
│ │ ├── docs
│ │ │ ├── AbstractClassAssociation.md
│ │ │ ├── AbstractClassAssociationSource.md
│ │ │ ├── Aspect.md
│ │ │ ├── AspectEntry.md
│ │ │ ├── AspectPaging.md
│ │ │ ├── AspectPaging_list.md
│ │ │ ├── AspectsApi.md
│ │ │ ├── Model.md
│ │ │ ├── Type.md
│ │ │ ├── TypeEntry.md
│ │ │ ├── TypePaging.md
│ │ │ ├── TypePaging_list.md
│ │ │ └── TypesApi.md
│ │ ├── index.ts
│ │ └── model
│ │ │ ├── abstractClass.ts
│ │ │ ├── abstractClassAssociation.ts
│ │ │ ├── abstractClassAssociationSource.ts
│ │ │ ├── aspect.ts
│ │ │ ├── aspectEntry.ts
│ │ │ ├── aspectPaging.ts
│ │ │ ├── aspectPagingList.ts
│ │ │ ├── index.ts
│ │ │ ├── model.ts
│ │ │ ├── type.ts
│ │ │ ├── typeEntry.ts
│ │ │ ├── typePaging.ts
│ │ │ └── typePagingList.ts
│ └── search-rest-api
│ │ ├── README.md
│ │ ├── api
│ │ ├── index.ts
│ │ └── search.api.ts
│ │ ├── docs
│ │ ├── ContentInfo.md
│ │ ├── Error.md
│ │ ├── Error_error.md
│ │ ├── GenericBucket.md
│ │ ├── GenericBucket_bucketInfo.md
│ │ ├── GenericFacetResponse.md
│ │ ├── GenericMetric.md
│ │ ├── Node.md
│ │ ├── Pagination.md
│ │ ├── PathElement.md
│ │ ├── PathInfo.md
│ │ ├── RequestDefaults.md
│ │ ├── RequestFacetField.md
│ │ ├── RequestFacetFields.md
│ │ ├── RequestFacetIntervals.md
│ │ ├── RequestFacetIntervals_intervals.md
│ │ ├── RequestFacetQueries.md
│ │ ├── RequestFacetQueries_inner.md
│ │ ├── RequestFacetSet.md
│ │ ├── RequestFields.md
│ │ ├── RequestFilterQueries.md
│ │ ├── RequestFilterQueries_inner.md
│ │ ├── RequestHighlight.md
│ │ ├── RequestHighlight_fields.md
│ │ ├── RequestInclude.md
│ │ ├── RequestLimits.md
│ │ ├── RequestLocalization.md
│ │ ├── RequestPagination.md
│ │ ├── RequestPivot.md
│ │ ├── RequestQuery.md
│ │ ├── RequestRange.md
│ │ ├── RequestScope.md
│ │ ├── RequestSortDefinition.md
│ │ ├── RequestSortDefinition_inner.md
│ │ ├── RequestSpellcheck.md
│ │ ├── RequestStats.md
│ │ ├── RequestTemplates.md
│ │ ├── RequestTemplates_inner.md
│ │ ├── ResponseConsistency.md
│ │ ├── ResultBuckets.md
│ │ ├── ResultBuckets_buckets.md
│ │ ├── ResultNode.md
│ │ ├── ResultSetContext.md
│ │ ├── ResultSetContext_facetQueries.md
│ │ ├── ResultSetContext_spellcheck.md
│ │ ├── ResultSetPaging.md
│ │ ├── ResultSetPaging_list.md
│ │ ├── ResultSetRowEntry.md
│ │ ├── SearchApi.md
│ │ ├── SearchEntry.md
│ │ ├── SearchEntry_highlight.md
│ │ ├── SearchRequest.md
│ │ └── UserInfo.md
│ │ ├── index.ts
│ │ └── model
│ │ ├── contentInfo.ts
│ │ ├── genericBucket.ts
│ │ ├── genericBucketBucketInfo.ts
│ │ ├── genericFacetResponse.ts
│ │ ├── genericMetric.ts
│ │ ├── index.ts
│ │ ├── requestDefaults.ts
│ │ ├── requestFacetField.ts
│ │ ├── requestFacetFields.ts
│ │ ├── requestFacetIntervals.ts
│ │ ├── requestFacetIntervalsIntervals.ts
│ │ ├── requestFacetQueries.ts
│ │ ├── requestFacetQueriesInner.ts
│ │ ├── requestFacetSet.ts
│ │ ├── requestFields.ts
│ │ ├── requestFilterQueries.ts
│ │ ├── requestFilterQueriesInner.ts
│ │ ├── requestHighlight.ts
│ │ ├── requestHighlightFields.ts
│ │ ├── requestInclude.ts
│ │ ├── requestLimits.ts
│ │ ├── requestLocalization.ts
│ │ ├── requestPagination.ts
│ │ ├── requestPivot.ts
│ │ ├── requestQuery.ts
│ │ ├── requestRange.ts
│ │ ├── requestScope.ts
│ │ ├── requestSortDefinition.ts
│ │ ├── requestSortDefinitionInner.ts
│ │ ├── requestSpellcheck.ts
│ │ ├── requestStats.ts
│ │ ├── requestTemplates.ts
│ │ ├── requestTemplatesInner.ts
│ │ ├── responseConsistency.ts
│ │ ├── resultBuckets.ts
│ │ ├── resultBucketsBuckets.ts
│ │ ├── resultNode.ts
│ │ ├── resultSetContext.ts
│ │ ├── resultSetContextFacetQueries.ts
│ │ ├── resultSetContextSpellcheck.ts
│ │ ├── resultSetPaging.ts
│ │ ├── resultSetPagingList.ts
│ │ ├── resultSetRowEntry.ts
│ │ ├── searchEntry.ts
│ │ ├── searchEntryHighlight.ts
│ │ └── searchRequest.ts
├── assert.ts
├── authentication
│ ├── authentication.ts
│ ├── basicAuth.ts
│ ├── contentAuth.ts
│ ├── oauth2.ts
│ ├── oauth2Auth.ts
│ ├── oauth2Config.ts
│ └── processAuth.ts
├── contentClient.ts
├── processClient.ts
├── storage.ts
├── superagentHttpClient.ts
├── to-deprecate
│ └── alfresco-api-type.ts
└── utils
│ ├── index.ts
│ ├── is-browser.ts
│ ├── param-to-string.ts
│ └── path-matcher.ts
├── test
├── .eslintrc.json
├── alfrescoApi.spec.ts
├── alfrescoApiClient.spec.ts
├── alfrescoContent.spec.ts
├── auth.spec.ts
├── bpmAuth.spec.ts
├── changeConfig.spec.ts
├── content-services
│ ├── categoriesApi.spec.ts
│ ├── commentsApi.spec.ts
│ ├── customModelApi.spec.ts
│ ├── groupsApi.spec.ts
│ ├── nodeApi.spec.ts
│ ├── peopleApi.spec.ts
│ ├── queriesApi.spec.ts
│ ├── renditionApi.spec.ts
│ ├── tagApi.spec.ts
│ ├── versionsApi.spec.ts
│ └── webScriptApi.spec.ts
├── discoveryApi.spec.ts
├── ecmAuth.spec.ts
├── governance-services
│ ├── authorityClearanceApi.spec.ts
│ ├── gsSitesApi.spec.ts
│ ├── nodeSecurityMarksApi.spec.ts
│ ├── securityGroupApi.spec.ts
│ └── securityMarksApi.spec.ts
├── mockObjects
│ ├── assets
│ │ ├── testFile.txt
│ │ └── testFile2.txt
│ ├── base.mock.ts
│ ├── content-services
│ │ ├── categories.mock.ts
│ │ ├── comment.mock.ts
│ │ ├── custom-model.mock.ts
│ │ ├── discovery.mock.ts
│ │ ├── ecm-auth.mock.ts
│ │ ├── find-nodes.mock.ts
│ │ ├── groups.mock.ts
│ │ ├── node.mock.ts
│ │ ├── people.mock.ts
│ │ ├── rendition.mock.ts
│ │ ├── search.mock.ts
│ │ ├── tag.mock.ts
│ │ ├── upload.mock.ts
│ │ ├── version.mock.ts
│ │ └── webscript.mock.ts
│ ├── goverance-services
│ │ ├── authority-clearance.mock.ts
│ │ ├── gs-sites.mock.ts
│ │ ├── node-security-marks.mock.ts
│ │ ├── security-groups.mock.ts
│ │ └── security-marks.mock.ts
│ ├── index.ts
│ ├── oauth2
│ │ └── oauth.mock.ts
│ └── process-services
│ │ ├── bpm-auth.mock.ts
│ │ ├── model-json.mock.ts
│ │ ├── models.mock.ts
│ │ ├── process-instance-variables.mock.ts
│ │ ├── process.mock.ts
│ │ ├── profile.mock.ts
│ │ ├── reports.mock.ts
│ │ ├── task-form.mock.ts
│ │ ├── tasks.mock.ts
│ │ └── user-filters.mock.ts
├── oauth2Auth.spec.ts
├── oauth2AuthImplicitFlow.spec.ts
├── path-matcher.spec.ts
├── peopleApi.spec.ts
├── process-services
│ ├── modelApi.spec.ts
│ ├── modelJsonBpmnApi.spec.ts
│ ├── processApi.spec.ts
│ ├── processInstanceVariablesApi.spec.ts
│ ├── profileApi.spec.ts
│ ├── reportApi.spec.ts
│ ├── taskApi.spec.ts
│ ├── taskFormApi.spec.ts
│ └── userFiltersApi.spec.ts
├── searchApi.spec.spec.ts
├── superagentHttpClient.spec.ts
├── tsconfig.json
└── upload.spec.ts
├── tsconfig.base.json
├── tsconfig.json
└── tsconfig
├── tsconfig.base.json
├── tsconfig.cjs.json
├── tsconfig.esm2015.json
├── tsconfig.esm5.json
└── tsconfig.types.json
/.editorconfig:
--------------------------------------------------------------------------------
1 | # http://editorconfig.org
2 |
3 | root = true
4 |
5 | [*]
6 | charset = utf-8
7 | indent_style = space
8 | indent_size = 4
9 | end_of_line = lf
10 | insert_final_newline = true
11 | trim_trailing_whitespace = true
12 |
13 | [src/alfresco-activiti-rest-api/**.js]
14 | indent_size = 2
15 |
16 | [src/alfresco-core-rest-api/**.js]
17 | indent_size = 2
18 |
19 | [package.json]
20 | indent_style = space
21 | indent_size = 2
22 |
23 | [*.md]
24 | insert_final_newline = false
25 | trim_trailing_whitespace = false
26 |
27 | [*mustache]
28 | insert_final_newline = false
29 | trim_trailing_whitespace = false
30 |
--------------------------------------------------------------------------------
/.eslintignore:
--------------------------------------------------------------------------------
1 | # don't ever lint node_modules
2 | node_modules
3 | # don't lint build output (make sure it's set to your correct build folder name)
4 | dist
5 | # don't lint nyc coverage output
6 | coverage
7 |
8 | test/performance
9 |
--------------------------------------------------------------------------------
/.github/CODEOWNERS:
--------------------------------------------------------------------------------
1 | # Each line is a file pattern followed by one or more owners.
2 |
3 | # These owners will be the default owners for everything in
4 | # the repo. Unless a later match takes precedence,
5 | # these users will be requested for
6 | # review when someone opens a pull request.
7 | * @eromano @popovicsandras @DenysVuika
8 |
9 | # You can also use email addresses if you prefer. They'll be
10 | # used to look up users just like we do for commit author
11 | # emails.
12 | #*.go docs@example.com
13 | docs/* @m-hulbert @eromano
14 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 |
7 |
8 | **Type of issue:** (check with "[x]")
9 | ```
10 | - [ ] New feature request
11 | - [ ] Bug
12 | - [ ] Support request
13 | ```
14 | **Current behavior:**
15 |
16 |
17 | **Expected behavior:**
18 |
19 |
20 | **Steps to reproduce the issue:**
21 |
22 |
23 | **Node version (for build issues):**
24 |
25 |
26 | **New feature request:**
27 |
28 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | *.log
2 | .idea
3 | node_modules
4 | target
5 | /coverage
6 | /node_modules
7 | /alfresco-core-rest-api.iml
8 | *.
9 | *.iml
10 | /.idea
11 | *.tgz
12 | *.DS_Store
13 | /package/
14 | /dist/
15 | .history
16 | /target
17 | *.d.ts
18 | /bundles/
19 | .env
20 | .nyc_output
21 |
--------------------------------------------------------------------------------
/.make-packages.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 |
3 | const pkg = require('./package.json');
4 | const fs = require('node:fs');
5 |
6 | const OUTPUT_FOLDER = 'dist';
7 |
8 | delete pkg.scripts;
9 | delete pkg.devDependencies;
10 | delete pkg.bundlesize;
11 | delete pkg.nyc;
12 |
13 | const rootPackageJson = {
14 | ...pkg,
15 | name: '@alfresco/js-api',
16 | main: './index.js',
17 | typings: './typings/index.d.ts',
18 | module: './esm5/index.js',
19 | es2015: './esm2015/index.js'
20 | };
21 |
22 | fs.copyFileSync('./LICENSE.txt', `${OUTPUT_FOLDER}/LICENSE.txt`);
23 | fs.copyFileSync('./README.md', `${OUTPUT_FOLDER}/README.md`);
24 |
25 | fs.writeFileSync(`${OUTPUT_FOLDER}/package.json`, JSON.stringify(rootPackageJson, null, 2));
26 |
27 |
28 |
--------------------------------------------------------------------------------
/.nvmrc:
--------------------------------------------------------------------------------
1 | 18
2 |
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | # Add files here to ignore them from prettier formatting
2 | /dist
3 | /coverage
4 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "singleQuote": true,
3 | "printWidth": 180,
4 | "trailingComma": "none"
5 | }
6 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "cSpell.words": [
3 | "Sharedlinks",
4 | "activiti",
5 | "bodyadd",
6 | "colspan",
7 | "guid",
8 | "hotfix",
9 | "site",
10 | "unclaim",
11 | "webscript"
12 | ]
13 | }
--------------------------------------------------------------------------------
/docs/audit/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alfresco/alfresco-js-api/5bba838eaf45e8727df035ad86b77b372c7e3d3c/docs/audit/.gitkeep
--------------------------------------------------------------------------------
/docs/audit/audit-info-4.10.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 4.10.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 4.10.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed: 41
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-4.11.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 4.11.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 4.11.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed: 41
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-4.7.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 4.7.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 4.7.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed:
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-4.8.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 4.8.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 4.8.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed:
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-4.9.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 4.9.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 4.9.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed: 41
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-5.0.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 5.0.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 5.0.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed: 41
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-5.1.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 5.1.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 5.1.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed: 42
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-5.2.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 5.2.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 5.2.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed: 42
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-5.3.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 5.3.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 5.3.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed: 42
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-5.4.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 5.4.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 5.4.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed: 42
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-5.5.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 5.5.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 5.5.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed: 39
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-6.0.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 6.0.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 6.0.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed: 39
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-6.1.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 6.1.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 6.1.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed:
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-6.2.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 6.2.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 6.2.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 1
14 | - Low risk: 0
15 |
16 | Dependencies analyzed:
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 | |moderate | semver | "<7.5.2" |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-7.0.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 7.0.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 7.0.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed:
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-7.1.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 7.1.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 7.1.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed:
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/docs/audit/audit-info-7.2.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Audit info, @alfresco/js-api 7.2.0
3 | ---
4 |
5 | # Audit information for @alfresco/js-api 7.2.0
6 |
7 | This page lists the security audit of the dependencies this project depends on.
8 |
9 | ## Risks
10 |
11 | - Critical risk: 0
12 | - High risk: 0
13 | - Moderate risk: 0
14 | - Low risk: 0
15 |
16 | Dependencies analyzed:
17 |
18 | ## Libraries
19 |
20 | | Severity | Module | Vulnerable versions |
21 | | --- | --- | --- |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/docs/changelog/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alfresco/alfresco-js-api/5bba838eaf45e8727df035ad86b77b372c7e3d3c/docs/changelog/.gitkeep
--------------------------------------------------------------------------------
/docs/changelog/changelog-4.7.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Changelog for @alfresco/js-api v4.7.0
3 | ---
4 |
5 | # Changelog
6 |
7 | - [14f1b3ba](https://eromano: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@github.com/Alfresco/alfresco-js-api/commit/14f1b3ba) release reports generation (#1258)
8 | - [e55cff6b](https://eromano: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@github.com/Alfresco/alfresco-js-api/commit/e55cff6b) Update publish.sh
9 |
10 |
--------------------------------------------------------------------------------
/docs/changelog/changelog-4.8.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Changelog for @alfresco/js-api v4.8.0
3 | ---
4 |
5 | # Changelog
6 |
7 | - [39afcf33](https://eromano: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@github.com/Alfresco/alfresco-js-api/commit/39afcf33) Bump typescript from 4.5.3 to 4.5.4 (#1273)
8 | - [f2e43b36](https://eromano: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@github.com/Alfresco/alfresco-js-api/commit/f2e43b36) Support custom OAuth endpoints (#1259)
9 |
10 |
--------------------------------------------------------------------------------
/docs/changelog/changelog-4.9.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Changelog for @alfresco/js-api v4.9.0
3 | ---
4 |
5 | # Changelog
6 |
7 | - [cdeecd6f6](https://github.com/Alfresco/alfresco-js-api/commit/cdeecd6f6) Revert the superagent upgrade (#1340)
8 | - [6dc7e489d](https://github.com/Alfresco/alfresco-js-api/commit/6dc7e489d) Make ADF possible to update on request (#1339)
9 | - [c8db476cb](https://github.com/Alfresco/alfresco-js-api/commit/c8db476cb) revert superagent (#1338)
--------------------------------------------------------------------------------
/docs/changelog/changelog-5.0.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Changelog for @alfresco/js-api v5.0.0
3 | ---
4 |
5 | # Changelog
6 |
7 | - [73acb91ed](https://github.com/Alfresco/alfresco-js-api/commit/73acb91ed) Fix problems around legacyAlfrescoApi (#1403)
8 | - [434c24ea6](https://github.com/Alfresco/alfresco-js-api/commit/434c24ea6) Fix the order of httpClient testing conditions (#1402)
9 | - [8240936f2](https://github.com/Alfresco/alfresco-js-api/commit/8240936f2) [AAE-9334] Improve update project script (#1395)
10 | - [a7fc2e92a](https://github.com/Alfresco/alfresco-js-api/commit/a7fc2e92a) [MNT-22840] Use ticket parameter instead of alf_ticket when withCredentials configuration is enabled (#1392)
11 |
12 |
--------------------------------------------------------------------------------
/docs/changelog/changelog-5.1.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Changelog for @alfresco/js-api v5.1.0
3 | ---
4 |
5 | # Changelog
6 |
7 | - [ADF-5501] fix: change the guard for progress event detection (#1441)
8 | - add missing tslib dependency (#1437)
9 | - [APPS-1732] Removed AuthorityType and clearance parameters from GET AuthorityClearance endpoint (#1435)
10 | - [AAE-9473] feat: extract http client to handle custom implementations (#1412) (#1392)
--------------------------------------------------------------------------------
/docs/changelog/changelog-5.2.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Changelog for @alfresco/js-api v5.2.0
3 | ---
4 |
5 | # Changelog
6 |
7 | - 90ab51c26 [MNT-23143] Add withCredentials to isLoggedIn
8 | - 80106a493 [MNT-23143] Move withCredentials check to correct method
9 | - f80ed199a [MNT-23143] withCredentials reflected in isBpmLoggedIn
--------------------------------------------------------------------------------
/docs/changelog/changelog-6.0.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Changelog for @alfresco/js-api v6.0.0
3 | ---
4 |
5 | # Changelog
6 |
7 | - [e70da65bc](https://github.com/Alfresco/alfresco-js-api/commit/e70da65bc) ACS-5040 Renamed one left reference to Alfresco (#1573)
8 | - [c93b633ca](https://github.com/Alfresco/alfresco-js-api/commit/c93b633ca) [AAE-13902] - Create the release tag using the github API (#1572)
9 | - [5cdab4525](https://github.com/Alfresco/alfresco-js-api/commit/5cdab4525) split testing jobs and add error reporting (#1567)
10 | - [22938d88c](https://github.com/Alfresco/alfresco-js-api/commit/22938d88c) [ACS-5040] update license headers to reflect hyland copyright guidelines (#1561)
11 |
12 |
--------------------------------------------------------------------------------
/docs/changelog/changelog-6.1.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Changelog for @alfresco/js-api v6.1.0
3 | ---
4 |
5 | # Changelog
6 |
7 | - [a1c51dfec](git@github.com:Alfresco/alfresco-js-api/commit/a1c51dfec) [ADF-5510] Upgrade to Node 18 (#1579)
8 |
9 |
--------------------------------------------------------------------------------
/docs/changelog/changelog-6.2.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Changelog for @alfresco/js-api v6.2.0
3 | ---
4 |
5 | # Changelog
6 |
7 | - [b7cd96b84](https://github.com/Alfresco/alfresco-js-api/commit/b7cd96b84) do not escape basic auth credentials (#1599)
8 | - [a55266731](https://github.com/Alfresco/alfresco-js-api/commit/a55266731) fix child assocs pagination (#1598)
9 | - [58d8c4dff](https://github.com/Alfresco/alfresco-js-api/commit/58d8c4dff) fix missing parentId for declareRecord (#1597)
10 | - [409e47e09](https://github.com/Alfresco/alfresco-js-api/commit/409e47e09) Fix git tag creation failing on master (#1592)
11 |
12 |
--------------------------------------------------------------------------------
/docs/changelog/changelog-7.1.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Changelog for @alfresco/js-api v7.1.0
3 | ---
4 |
5 | # Changelog
6 |
7 | - [f00bc51ed](git@github.com:Alfresco/alfresco-js-api/commit/f00bc51ed) [ACA-4724] Use jsdom directly instead of mocha-jsdom in unit test (#1693)
8 | - [ca1ef4f45](git@github.com:Alfresco/alfresco-js-api/commit/ca1ef4f45) [ACS-5994] Add multiple nodes deletion support (#1687)
9 | - [9d1c6a752](git@github.com:Alfresco/alfresco-js-api/commit/9d1c6a752) Break various dependencies on 3rd party libs (#1679)
10 | - [2ee68fbec](git@github.com:Alfresco/alfresco-js-api/commit/2ee68fbec) remove mocha-jsdom dependency due to security issues and deprecated status (#1678)
11 | - [8f3c66976](git@github.com:Alfresco/alfresco-js-api/commit/8f3c66976) [ACTIVITI-4914] updated getProcessesAndTasksOnContent (#1672)
12 |
13 |
--------------------------------------------------------------------------------
/docs/changelog/changelog-7.2.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | Title: Changelog for @alfresco/js-api v7.2.0
3 | ---
4 |
5 | # Changelog
6 |
7 | - [b41cc2629](https://github.com/Alfresco/alfresco-js-api/commit/b41cc2629) [ACS-6231] cleanup old codegen (#1716)
8 | - [8d02eb4ea](https://github.com/Alfresco/alfresco-js-api/commit/8d02eb4ea) [ACS-6231] cleanup old angular projects and break dependency on remove env (#1715)
9 | - [928f9cd91](https://github.com/Alfresco/alfresco-js-api/commit/928f9cd91) [ACS-6231] preparation cleanup before supporting Nx (#1714)
10 |
11 |
--------------------------------------------------------------------------------
/docs/error-events.md:
--------------------------------------------------------------------------------
1 | # Error Events
2 |
3 | The api/js-api has an error handler event where you can subscribe
4 |
5 | **Example**
6 |
7 | ```javascript
8 | alfrescoJsApi.on('error', error => {
9 | console.log(error);
10 | });
11 | ```
--------------------------------------------------------------------------------
/docs/licences/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alfresco/alfresco-js-api/5bba838eaf45e8727df035ad86b77b372c7e3d3c/docs/licences/.gitkeep
--------------------------------------------------------------------------------
/scripts/build.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
4 |
5 | cd $DIR/..
6 |
7 | rm -rf package/
8 | rm -rf dist/
9 | rm -rf node_modules/@alfresco/js-api/
10 |
11 | npm install @alfresco/adf-cli@alpha --no-save
12 |
13 | if [[ $GITHUB_BRANCH == "refs/heads/develop" ]];
14 | then
15 | ./scripts/update-version.sh -gnu -nextalpha || exit 1;
16 | fi
17 |
18 | echo "====== Build ====="
19 | npm run build
20 |
21 | cat dist/package.json | grep version
22 |
--------------------------------------------------------------------------------
/scripts/generate-reports.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
4 |
5 | npx @alfresco/adf-cli@latest audit -d $DIR/docs/audit
6 | npx @alfresco/adf-cli@latest licenses -d $DIR/docs/licences
7 | npx @alfresco/adf-cli@alpha changelog -o $DIR/docs/changelog --exclude="bot\|Alfresco Build User\|alfresco-build"
8 |
--------------------------------------------------------------------------------
/scripts/publish.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
4 |
5 | cd $DIR/..
6 |
7 | TAG_NPM=alpha
8 |
9 | if [[ $GITHUB_BRANCH == "refs/heads/master" ]]; then
10 | TAG_NPM=latest
11 | fi
12 |
13 | cd dist/
14 |
15 | echo "Publishing on npm with tag $TAG_NPM"
16 |
17 | cat package.json | grep version
18 |
19 | npm publish --tag ${TAG_NPM} || exit 1
20 |
21 | rm -rf .npmrc
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AbstractGroupRepresentation.md:
--------------------------------------------------------------------------------
1 | # AbstractGroupRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **externalId** | **string** | | [optional] [default to null]
7 | **id** | **number** | | [optional] [default to null]
8 | **name** | **string** | | [optional] [default to null]
9 | **status** | **string** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AbstractUserRepresentation.md:
--------------------------------------------------------------------------------
1 | # AbstractUserRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **company** | **string** | | [optional] [default to null]
7 | **email** | **string** | | [optional] [default to null]
8 | **externalId** | **string** | | [optional] [default to null]
9 | **firstName** | **string** | | [optional] [default to null]
10 | **id** | **number** | | [optional] [default to null]
11 | **lastName** | **string** | | [optional] [default to null]
12 | **pictureId** | **number** | | [optional] [default to null]
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AddGroupCapabilitiesRepresentation.md:
--------------------------------------------------------------------------------
1 | # AddGroupCapabilitiesRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **capabilities** | **string[]** | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AlfrescoContentRepresentation.md:
--------------------------------------------------------------------------------
1 | # AlfrescoContentRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **folder** | **boolean** | | [optional] [default to null]
7 | **id** | **string** | | [optional] [default to null]
8 | **simpleType** | **string** | | [optional] [default to null]
9 | **title** | **string** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AlfrescoNetworkRepresenation.md:
--------------------------------------------------------------------------------
1 | # AlfrescoNetworkRepresenation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AlfrescoSiteRepresenation.md:
--------------------------------------------------------------------------------
1 | # AlfrescoSiteRepresenation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [optional] [default to null]
7 | **title** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AppDefinition.md:
--------------------------------------------------------------------------------
1 | # AppDefinition
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **icon** | **string** | | [optional] [default to null]
7 | **models** | [**AppModelDefinition[]**](AppModelDefinition.md) | | [optional] [default to null]
8 | **publishIdentityInfo** | [**PublishIdentityInfoRepresentation[]**](PublishIdentityInfoRepresentation.md) | | [optional] [default to null]
9 | **theme** | **string** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AppDefinitionPublishRepresentation.md:
--------------------------------------------------------------------------------
1 | # AppDefinitionPublishRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **comment** | **string** | | [optional] [default to null]
7 | **force** | **boolean** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AppDefinitionRepresentation.md:
--------------------------------------------------------------------------------
1 | # AppDefinitionRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **defaultAppId** | **string** | | [optional] [default to null]
7 | **deploymentId** | **string** | | [optional] [default to null]
8 | **description** | **string** | | [optional] [default to null]
9 | **icon** | **string** | | [optional] [default to null]
10 | **id** | **number** | | [optional] [default to null]
11 | **modelId** | **number** | | [optional] [default to null]
12 | **name** | **string** | | [optional] [default to null]
13 | **tenantId** | **number** | | [optional] [default to null]
14 | **theme** | **string** | | [optional] [default to null]
15 |
16 |
17 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AppDefinitionSaveRepresentation.md:
--------------------------------------------------------------------------------
1 | # AppDefinitionSaveRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **appDefinition** | [**AppDefinitionRepresentation**](AppDefinitionRepresentation.md) | | [optional] [default to null]
7 | **force** | **boolean** | | [optional] [default to null]
8 | **publish** | **boolean** | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AppDefinitionUpdateResultRepresentation.md:
--------------------------------------------------------------------------------
1 | # AppDefinitionUpdateResultRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **appDefinition** | [**AppDefinitionRepresentation**](AppDefinitionRepresentation.md) | | [optional] [default to null]
7 | **customData** | **any** | | [optional] [default to null]
8 | **error** | **boolean** | | [optional] [default to null]
9 | **errorDescription** | **string** | | [optional] [default to null]
10 | **errorType** | **number** | | [optional] [default to null]
11 | **message** | **string** | | [optional] [default to null]
12 | **messageKey** | **string** | | [optional] [default to null]
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AppDeploymentRepresentation.md:
--------------------------------------------------------------------------------
1 | # AppDeploymentRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **appDefinition** | [**AppDefinitionRepresentation**](AppDefinitionRepresentation.md) | | [optional] [default to null]
7 | **created** | [**Date**](Date.md) | | [optional] [default to null]
8 | **createdBy** | [**LightUserRepresentation**](LightUserRepresentation.md) | | [optional] [default to null]
9 | **deploymentId** | **string** | | [optional] [default to null]
10 | **dmnDeploymentId** | **number** | | [optional] [default to null]
11 | **id** | **number** | | [optional] [default to null]
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AssigneeIdentifierRepresentation.md:
--------------------------------------------------------------------------------
1 | # AssigneeIdentifierRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **assignee** | **string** | | [optional] [default to null]
7 | **email** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AuditCalculatedValueRepresentation.md:
--------------------------------------------------------------------------------
1 | # AuditCalculatedValueRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | | [optional] [default to null]
7 | **value** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AuditDecisionExpressionInfoRepresentation.md:
--------------------------------------------------------------------------------
1 | # AuditDecisionExpressionInfoRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **type** | **string** | | [optional] [default to null]
7 | **value** | **any** | | [optional] [default to null]
8 | **variable** | **string** | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AuditDecisionInfoRepresentation.md:
--------------------------------------------------------------------------------
1 | # AuditDecisionInfoRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **appliedRules** | [**AuditDecisionRuleInfoRepresentation[]**](AuditDecisionRuleInfoRepresentation.md) | | [optional] [default to null]
7 | **calculatedValues** | [**AuditCalculatedValueRepresentation[]**](AuditCalculatedValueRepresentation.md) | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AuditDecisionRuleInfoRepresentation.md:
--------------------------------------------------------------------------------
1 | # AuditDecisionRuleInfoRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **expressions** | [**AuditDecisionExpressionInfoRepresentation[]**](AuditDecisionExpressionInfoRepresentation.md) | | [optional] [default to null]
7 | **title** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/AuditLogFormDataRepresentation.md:
--------------------------------------------------------------------------------
1 | # AuditLogFormDataRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **fieldId** | **string** | | [optional] [default to null]
7 | **fieldName** | **string** | | [optional] [default to null]
8 | **value** | **string** | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/BoxContent.md:
--------------------------------------------------------------------------------
1 | # BoxContent
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **folder** | **boolean** | | [optional] [default to null]
7 | **id** | **string** | | [optional] [default to null]
8 | **mimeType** | **string** | | [optional] [default to null]
9 | **simpleType** | **string** | | [optional] [default to null]
10 | **title** | **string** | | [optional] [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/BoxUserAccountCredentialsRepresentation.md:
--------------------------------------------------------------------------------
1 | # BoxUserAccountCredentialsRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **authenticationURL** | **string** | | [optional] [default to null]
7 | **expireDate** | [**Date**](Date.md) | | [optional] [default to null]
8 | **ownerEmail** | **string** | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/BulkUserUpdateRepresentation.md:
--------------------------------------------------------------------------------
1 | # BulkUserUpdateRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **accountType** | **string** | | [optional] [default to null]
7 | **password** | **string** | | [optional] [default to null]
8 | **primaryGroupId** | **number** | | [optional] [default to null]
9 | **sendNotifications** | **boolean** | | [optional] [default to null]
10 | **status** | **string** | | [optional] [default to null]
11 | **tenantId** | **number** | | [optional] [default to null]
12 | **users** | **number[]** | | [optional] [default to null]
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ChangePasswordRepresentation.md:
--------------------------------------------------------------------------------
1 | # ChangePasswordRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **newPassword** | **string** | | [optional] [default to null]
7 | **oldPassword** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ChecklistOrderRepresentation.md:
--------------------------------------------------------------------------------
1 | # ChecklistOrderRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **order** | **string[]** | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/CommentAuditInfo.md:
--------------------------------------------------------------------------------
1 | # CommentAuditInfo
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **author** | **string** | | [optional] [default to null]
7 | **message** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/CommentRepresentation.md:
--------------------------------------------------------------------------------
1 | # CommentRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **created** | [**Date**](Date.md) | | [optional] [default to null]
7 | **createdBy** | [**LightUserRepresentation**](LightUserRepresentation.md) | | [optional] [default to null]
8 | **id** | **number** | | [optional] [default to null]
9 | **message** | **string** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/CompleteFormRepresentation.md:
--------------------------------------------------------------------------------
1 | # CompleteFormRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **outcome** | **string** | | [optional] [default to null]
7 | **values** | **any** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ConditionRepresentation.md:
--------------------------------------------------------------------------------
1 | # ConditionRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **leftFormFieldId** | **string** | | [optional] [default to null]
7 | **leftRestResponseId** | **string** | | [optional] [default to null]
8 | **nextCondition** | [**ConditionRepresentation**](ConditionRepresentation.md) | | [optional] [default to null]
9 | **nextConditionOperator** | **string** | | [optional] [default to null]
10 | **operator** | **string** | | [optional] [default to null]
11 | **rightFormFieldId** | **string** | | [optional] [default to null]
12 | **rightRestResponseId** | **string** | | [optional] [default to null]
13 | **rightType** | **string** | | [optional] [default to null]
14 | **rightValue** | **any** | | [optional] [default to null]
15 |
16 |
17 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/CreateProcessInstanceRepresentation.md:
--------------------------------------------------------------------------------
1 | # CreateProcessInstanceRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **businessKey** | **string** | | [optional] [default to null]
7 | **name** | **string** | | [optional] [default to null]
8 | **outcome** | **string** | | [optional] [default to null]
9 | **processDefinitionId** | **string** | | [optional] [default to null]
10 | **processDefinitionKey** | **string** | | [optional] [default to null]
11 | **values** | **any** | | [optional] [default to null]
12 | **variables** | [**RestVariable[]**](RestVariable.md) | | [optional] [default to null]
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/CreateTenantRepresentation.md:
--------------------------------------------------------------------------------
1 | # CreateTenantRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **active** | **boolean** | | [optional] [default to null]
7 | **configuration** | **string** | | [optional] [default to null]
8 | **domain** | **string** | | [optional] [default to null]
9 | **maxUsers** | **number** | | [optional] [default to null]
10 | **name** | **string** | | [optional] [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/EndpointRequestHeaderRepresentation.md:
--------------------------------------------------------------------------------
1 | # EndpointRequestHeaderRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | | [optional] [default to null]
7 | **value** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/EntityAttributeScopeRepresentation.md:
--------------------------------------------------------------------------------
1 | # EntityAttributeScopeRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | | [optional] [default to null]
7 | **type** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/EntityVariableScopeRepresentation.md:
--------------------------------------------------------------------------------
1 | # EntityVariableScopeRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **attributes** | [**EntityAttributeScopeRepresentation[]**](EntityAttributeScopeRepresentation.md) | | [optional] [default to null]
7 | **entityName** | **string** | | [optional] [default to null]
8 | **mappedDataModel** | **number** | | [optional] [default to null]
9 | **mappedVariableName** | **string** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/FieldValueInfo.md:
--------------------------------------------------------------------------------
1 | # FieldValueInfo
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **type** | **string** | | [optional] [default to null]
7 | **value** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/FormIdentifierRepresentation.md:
--------------------------------------------------------------------------------
1 | # FormIdentifierRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **formId** | **number** | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/FormJavascriptEventRepresentation.md:
--------------------------------------------------------------------------------
1 | # FormJavascriptEventRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **event** | **string** | | [optional] [default to null]
7 | **javascriptLogic** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/FormOutcomeRepresentation.md:
--------------------------------------------------------------------------------
1 | # FormOutcomeRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [optional] [default to null]
7 | **name** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/FormSaveRepresentation.md:
--------------------------------------------------------------------------------
1 | # FormSaveRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **comment** | **string** | | [optional] [default to null]
7 | **formImageBase64** | **string** | | [optional] [default to null]
8 | **formRepresentation** | [**FormRepresentation**](FormRepresentation.md) | | [optional] [default to null]
9 | **newVersion** | **boolean** | | [optional] [default to null]
10 | **processScopeIdentifiers** | [**ProcessScopeIdentifierRepresentation[]**](ProcessScopeIdentifierRepresentation.md) | | [optional] [default to null]
11 | **reusable** | **boolean** | | [optional] [default to null]
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/FormScopeRepresentation.md:
--------------------------------------------------------------------------------
1 | # FormScopeRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **description** | **string** | | [optional] [default to null]
7 | **fieldVariables** | [**FormFieldRepresentation[]**](FormFieldRepresentation.md) | | [optional] [default to null]
8 | **fields** | [**FormFieldRepresentation[]**](FormFieldRepresentation.md) | | [optional] [default to null]
9 | **id** | **number** | | [optional] [default to null]
10 | **name** | **string** | | [optional] [default to null]
11 | **outcomes** | [**FormOutcomeRepresentation[]**](FormOutcomeRepresentation.md) | | [optional] [default to null]
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/FormTabRepresentation.md:
--------------------------------------------------------------------------------
1 | # FormTabRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [optional] [default to null]
7 | **title** | **string** | | [optional] [default to null]
8 | **visibilityCondition** | [**ConditionRepresentation**](ConditionRepresentation.md) | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/FormValueRepresentation.md:
--------------------------------------------------------------------------------
1 | # FormValueRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [optional] [default to null]
7 | **name** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/FormVariableRepresentation.md:
--------------------------------------------------------------------------------
1 | # FormVariableRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | | [optional] [default to null]
7 | **type** | **string** | | [optional] [default to null]
8 | **value** | **any** | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/GlobalDateFormatRepresentation.md:
--------------------------------------------------------------------------------
1 | # GlobalDateFormatRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **globalDateFormat** | **string** | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/GoogleDriveContent.md:
--------------------------------------------------------------------------------
1 | # GoogleDriveContent
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **folder** | **boolean** | | [optional] [default to null]
7 | **id** | **string** | | [optional] [default to null]
8 | **mimeType** | **string** | | [optional] [default to null]
9 | **simpleType** | **string** | | [optional] [default to null]
10 | **title** | **string** | | [optional] [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/GroupCapabilityRepresentation.md:
--------------------------------------------------------------------------------
1 | # GroupCapabilityRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **number** | | [optional] [default to null]
7 | **name** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/IdentityLinkRepresentation.md:
--------------------------------------------------------------------------------
1 | # IdentityLinkRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **group** | **string** | | [optional] [default to null]
7 | **type** | **string** | | [optional] [default to null]
8 | **user** | **string** | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ImageUploadRepresentation.md:
--------------------------------------------------------------------------------
1 | # ImageUploadRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **created** | [**Date**](Date.md) | | [optional] [default to null]
7 | **id** | **number** | | [optional] [default to null]
8 | **name** | **string** | | [optional] [default to null]
9 | **userId** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/LayoutRepresentation.md:
--------------------------------------------------------------------------------
1 | # LayoutRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **colspan** | **number** | | [optional] [default to null]
7 | **column** | **number** | | [optional] [default to null]
8 | **row** | **number** | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/LightAppRepresentation.md:
--------------------------------------------------------------------------------
1 | # LightAppRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **description** | **string** | | [optional] [default to null]
7 | **icon** | **string** | | [optional] [default to null]
8 | **id** | **number** | | [optional] [default to null]
9 | **name** | **string** | | [optional] [default to null]
10 | **theme** | **string** | | [optional] [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/LightGroupRepresentation.md:
--------------------------------------------------------------------------------
1 | # LightGroupRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **externalId** | **string** | | [optional] [default to null]
7 | **groups** | [**LightGroupRepresentation[]**](LightGroupRepresentation.md) | | [optional] [default to null]
8 | **id** | **number** | | [optional] [default to null]
9 | **name** | **string** | | [optional] [default to null]
10 | **status** | **string** | | [optional] [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/LightTenantRepresentation.md:
--------------------------------------------------------------------------------
1 | # LightTenantRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **number** | | [optional] [default to null]
7 | **name** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/LightUserRepresentation.md:
--------------------------------------------------------------------------------
1 | # LightUserRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **company** | **string** | | [optional] [default to null]
7 | **email** | **string** | | [optional] [default to null]
8 | **externalId** | **string** | | [optional] [default to null]
9 | **firstName** | **string** | | [optional] [default to null]
10 | **id** | **number** | | [optional] [default to null]
11 | **lastName** | **string** | | [optional] [default to null]
12 | **pictureId** | **number** | | [optional] [default to null]
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/NamedObject.md:
--------------------------------------------------------------------------------
1 | # NamedObject
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [optional] [default to null]
7 | **name** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/OptionRepresentation.md:
--------------------------------------------------------------------------------
1 | # OptionRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [optional] [default to null]
7 | **name** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/PasswordValidationConstraints.md:
--------------------------------------------------------------------------------
1 | # PasswordValidationConstraints
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **minLength** | **number** | | [optional] [default to null]
7 | **passwordCriteriaMessage** | **string** | | [optional] [default to null]
8 | **regularExpression** | **string** | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ProcessContentRepresentation.md:
--------------------------------------------------------------------------------
1 | # ProcessContentRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **content** | [**RelatedContentRepresentation[]**](RelatedContentRepresentation.md) | | [optional] [default to null]
7 | **field** | [**NamedObject**](NamedObject.md) | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ProcessDefinitionMetaDataRepresentation.md:
--------------------------------------------------------------------------------
1 | # ProcessDefinitionMetaDataRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **key** | **string** | | [optional] [default to null]
7 | **value** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ProcessInstanceFilterRepresentation.md:
--------------------------------------------------------------------------------
1 | # ProcessInstanceFilterRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **asc** | **boolean** | | [optional] [default to null]
7 | **name** | **string** | | [optional] [default to null]
8 | **processDefinitionId** | **string** | | [optional] [default to null]
9 | **processDefinitionKey** | **string** | | [optional] [default to null]
10 | **sort** | **string** | | [optional] [default to null]
11 | **state** | **string** | | [optional] [default to null]
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ProcessInstanceFilterRequestRepresentation.md:
--------------------------------------------------------------------------------
1 | # ProcessInstanceFilterRequestRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **appDefinitionId** | **number** | | [optional] [default to null]
7 | **filter** | [**ProcessInstanceFilterRepresentation**](ProcessInstanceFilterRepresentation.md) | | [optional] [default to null]
8 | **filterId** | **number** | | [optional] [default to null]
9 | **page** | **number** | | [optional] [default to null]
10 | **size** | **number** | | [optional] [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ProcessInstanceVariableRepresentation.md:
--------------------------------------------------------------------------------
1 | # ProcessInstanceVariableRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [optional] [default to null]
7 | **type** | **string** | | [optional] [default to null]
8 | **value** | **any** | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ProcessScopeIdentifierRepresentation.md:
--------------------------------------------------------------------------------
1 | # ProcessScopeIdentifierRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **processActivityId** | **string** | | [optional] [default to null]
7 | **processModelId** | **number** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ProcessScopesRequestRepresentation.md:
--------------------------------------------------------------------------------
1 | # ProcessScopesRequestRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **identifiers** | [**ProcessScopeIdentifierRepresentation[]**](ProcessScopeIdentifierRepresentation.md) | | [optional] [default to null]
7 | **overriddenModel** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/PublishIdentityInfoRepresentation.md:
--------------------------------------------------------------------------------
1 | # PublishIdentityInfoRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **group** | [**LightGroupRepresentation**](LightGroupRepresentation.md) | | [optional] [default to null]
7 | **person** | [**LightUserRepresentation**](LightUserRepresentation.md) | | [optional] [default to null]
8 | **type** | **string** | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/RelatedProcessTask.md:
--------------------------------------------------------------------------------
1 | # RelatedProcessTask
2 |
3 | ## Properties
4 | | Name | Type | Description | Notes |
5 | | ------------ | ------------- | ------------- | ------------- |
6 | | **processId** | **string** | | [optional] [default to undefined] |
7 | | **taskId** | **string** | | [optional] [default to undefined] |
8 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResetPasswordRepresentation.md:
--------------------------------------------------------------------------------
1 | # ResetPasswordRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **email** | **string** | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/RestVariable.md:
--------------------------------------------------------------------------------
1 | # RestVariable
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | | [optional] [default to null]
7 | **scope** | **string** | | [optional] [default to null]
8 | **type** | **string** | | [optional] [default to null]
9 | **value** | **any** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentationRelatedProcessTask.md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationRelatedProcessTask
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**RelatedProcessTask[]**](RelatedProcessTask.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«AbstractUserRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationAbstractUserRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**AbstractUserRepresentation[]**](AbstractUserRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«AlfrescoContentRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationAlfrescoContentRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**AlfrescoContentRepresentation[]**](AlfrescoContentRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«AlfrescoEndpointRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationAlfrescoEndpointRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**AlfrescoEndpointRepresentation[]**](AlfrescoEndpointRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«AlfrescoNetworkRepresenation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationAlfrescoNetworkRepresenation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**AlfrescoNetworkRepresenation[]**](AlfrescoNetworkRepresenation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«AlfrescoSiteRepresenation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationAlfrescoSiteRepresenation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**AlfrescoSiteRepresenation[]**](AlfrescoSiteRepresenation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«AppDefinitionRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationAppDefinitionRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**AppDefinitionRepresentation[]**](AppDefinitionRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«AppDeploymentRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationAppDeploymentRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**AppDeploymentRepresentation[]**](AppDeploymentRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«BoxContent».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationBoxContent
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**BoxContent[]**](BoxContent.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«CommentRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationCommentRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**CommentRepresentation[]**](CommentRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«DecisionTaskRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationDecisionTaskRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**DecisionTaskRepresentation[]**](DecisionTaskRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«FormRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationFormRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**FormRepresentation[]**](FormRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«GoogleDriveContent».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationGoogleDriveContent
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**GoogleDriveContent[]**](GoogleDriveContent.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«LightGroupRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationLightGroupRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**LightGroupRepresentation[]**](LightGroupRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«LightUserRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationLightUserRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**LightUserRepresentation[]**](LightUserRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«ModelRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationModelRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**ModelRepresentation[]**](ModelRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«ProcessContentRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationProcessContentRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**ProcessContentRepresentation[]**](ProcessContentRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«ProcessDefinitionRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationProcessDefinitionRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**ProcessDefinitionRepresentation[]**](ProcessDefinitionRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«ProcessInstanceRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationProcessInstanceRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**ProcessInstanceRepresentation[]**](ProcessInstanceRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«RelatedContentRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationRelatedContentRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**RelatedContentRepresentation[]**](RelatedContentRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«RuntimeDecisionTableRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationRuntimeDecisionTableRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**RuntimeDecisionTableRepresentation[]**](RuntimeDecisionTableRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«RuntimeFormRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationRuntimeFormRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**RuntimeFormRepresentation[]**](RuntimeFormRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«SubmittedFormRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationSubmittedFormRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**SubmittedFormRepresentation[]**](SubmittedFormRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«TaskRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationTaskRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**TaskRepresentation[]**](TaskRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«UserProcessInstanceFilterRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationUserProcessInstanceFilterRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**UserProcessInstanceFilterRepresentation[]**](UserProcessInstanceFilterRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ResultListDataRepresentation«UserTaskFilterRepresentation».md:
--------------------------------------------------------------------------------
1 | # ResultListDataRepresentationUserTaskFilterRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **data** | [**UserTaskFilterRepresentation[]**](UserTaskFilterRepresentation.md) | | [optional] [default to null]
7 | **size** | **number** | | [optional] [default to null]
8 | **start** | **number** | | [optional] [default to null]
9 | **total** | **number** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/RuntimeAppDefinitionSaveRepresentation.md:
--------------------------------------------------------------------------------
1 | # RuntimeAppDefinitionSaveRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **appDefinitions** | [**AppDefinitionRepresentation[]**](AppDefinitionRepresentation.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/RuntimeDecisionTableRepresentation.md:
--------------------------------------------------------------------------------
1 | # RuntimeDecisionTableRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **category** | **string** | | [optional] [default to null]
7 | **deploymentId** | **number** | | [optional] [default to null]
8 | **description** | **string** | | [optional] [default to null]
9 | **id** | **number** | | [optional] [default to null]
10 | **key** | **string** | | [optional] [default to null]
11 | **name** | **string** | | [optional] [default to null]
12 | **resourceName** | **string** | | [optional] [default to null]
13 | **tenantId** | **string** | | [optional] [default to null]
14 | **version** | **number** | | [optional] [default to null]
15 |
16 |
17 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/RuntimeFormRepresentation.md:
--------------------------------------------------------------------------------
1 | # RuntimeFormRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **appDefinitionId** | **number** | | [optional] [default to null]
7 | **appDeploymentId** | **number** | | [optional] [default to null]
8 | **description** | **string** | | [optional] [default to null]
9 | **id** | **number** | | [optional] [default to null]
10 | **modelId** | **number** | | [optional] [default to null]
11 | **name** | **string** | | [optional] [default to null]
12 | **tenantId** | **number** | | [optional] [default to null]
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/SaveFormRepresentation.md:
--------------------------------------------------------------------------------
1 | # SaveFormRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **values** | **any** | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/SubmittedFormRepresentation.md:
--------------------------------------------------------------------------------
1 | # SubmittedFormRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **form** | [**FormDefinitionRepresentation**](FormDefinitionRepresentation.md) | | [optional] [default to null]
7 | **formId** | **number** | | [optional] [default to null]
8 | **id** | **number** | | [optional] [default to null]
9 | **name** | **string** | | [optional] [default to null]
10 | **processId** | **string** | | [optional] [default to null]
11 | **submitted** | [**Date**](Date.md) | | [optional] [default to null]
12 | **submittedBy** | [**LightUserRepresentation**](LightUserRepresentation.md) | | [optional] [default to null]
13 | **taskId** | **string** | | [optional] [default to null]
14 |
15 |
16 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/SyncLogEntryRepresentation.md:
--------------------------------------------------------------------------------
1 | # SyncLogEntryRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **number** | | [optional] [default to null]
7 | **timeStamp** | [**Date**](Date.md) | | [optional] [default to null]
8 | **type** | **string** | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/SystemPropertiesRepresentation.md:
--------------------------------------------------------------------------------
1 | # SystemPropertiesRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **allowInvolveByEmail** | **boolean** | | [optional] [default to null]
7 | **disableJavaScriptEventsInFormEditor** | **boolean** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/TaskFilterRequestRepresentation.md:
--------------------------------------------------------------------------------
1 | # TaskFilterRequestRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **appDefinitionId** | **number** | | [optional] [default to null]
7 | **filter** | [**TaskFilterRepresentation**](TaskFilterRepresentation.md) | | [optional] [default to null]
8 | **filterId** | **number** | | [optional] [default to null]
9 | **page** | **number** | | [optional] [default to null]
10 | **size** | **number** | | [optional] [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/TenantEvent.md:
--------------------------------------------------------------------------------
1 | # TenantEvent
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **eventTime** | [**Date**](Date.md) | | [optional] [default to null]
7 | **eventType** | **string** | | [optional] [default to null]
8 | **extraInfo** | **string** | | [optional] [default to null]
9 | **id** | **number** | | [optional] [default to null]
10 | **tenantId** | **number** | | [optional] [default to null]
11 | **userId** | **number** | | [optional] [default to null]
12 | **userName** | **string** | | [optional] [default to null]
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/TenantRepresentation.md:
--------------------------------------------------------------------------------
1 | # TenantRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **active** | **boolean** | | [optional] [default to null]
7 | **created** | [**Date**](Date.md) | | [optional] [default to null]
8 | **domain** | **string** | | [optional] [default to null]
9 | **id** | **number** | | [optional] [default to null]
10 | **lastUpdate** | [**Date**](Date.md) | | [optional] [default to null]
11 | **logoId** | **number** | | [optional] [default to null]
12 | **maxUsers** | **number** | | [optional] [default to null]
13 | **name** | **string** | | [optional] [default to null]
14 |
15 |
16 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/UserAccountCredentialsRepresentation.md:
--------------------------------------------------------------------------------
1 | # UserAccountCredentialsRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **password** | **string** | | [optional] [default to null]
7 | **username** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/UserActionRepresentation.md:
--------------------------------------------------------------------------------
1 | # UserActionRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **action** | **string** | | [optional] [default to null]
7 | **newPassword** | **string** | | [optional] [default to null]
8 | **oldPassword** | **string** | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/UserFilterOrderRepresentation.md:
--------------------------------------------------------------------------------
1 | # UserFilterOrderRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **appId** | **number** | | [optional] [default to null]
7 | **order** | **number[]** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/UserIdentifierRepresentation.md:
--------------------------------------------------------------------------------
1 | # UserIdentifierRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **email** | **string** | | [optional] [default to null]
7 | **userId** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/UserProcessInstanceFilterRepresentation.md:
--------------------------------------------------------------------------------
1 | # UserProcessInstanceFilterRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **appId** | **number** | | [optional] [default to null]
7 | **filter** | [**ProcessInstanceFilterRepresentation**](ProcessInstanceFilterRepresentation.md) | | [optional] [default to null]
8 | **icon** | **string** | | [optional] [default to null]
9 | **id** | **number** | | [optional] [default to null]
10 | **index** | **number** | | [optional] [default to null]
11 | **name** | **string** | | [optional] [default to null]
12 | **recent** | **boolean** | | [optional] [default to null]
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/UserTaskFilterRepresentation.md:
--------------------------------------------------------------------------------
1 | # UserTaskFilterRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **appId** | **number** | | [optional] [default to null]
7 | **filter** | [**TaskFilterRepresentation**](TaskFilterRepresentation.md) | | [optional] [default to null]
8 | **icon** | **string** | | [optional] [default to null]
9 | **id** | **number** | | [optional] [default to null]
10 | **index** | **number** | | [optional] [default to null]
11 | **name** | **string** | | [optional] [default to null]
12 | **recent** | **boolean** | | [optional] [default to null]
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/ValidationErrorRepresentation.md:
--------------------------------------------------------------------------------
1 | # ValidationErrorRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **defaultDescription** | **string** | | [optional] [default to null]
7 | **id** | **string** | | [optional] [default to null]
8 | **name** | **string** | | [optional] [default to null]
9 | **problem** | **string** | | [optional] [default to null]
10 | **problemReference** | **string** | | [optional] [default to null]
11 | **validatorSetName** | **string** | | [optional] [default to null]
12 | **warning** | **boolean** | | [optional] [default to null]
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/VariableMappingRepresentation.md:
--------------------------------------------------------------------------------
1 | # VariableMappingRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **inProcessVariable** | **string** | | [optional] [default to null]
7 | **inVariableType** | **string** | | [optional] [default to null]
8 | **mappedVariable** | **string** | | [optional] [default to null]
9 | **outProcessVariable** | **string** | | [optional] [default to null]
10 | **outVariableType** | **string** | | [optional] [default to null]
11 | **typeOfMapping** | **string** | | [optional] [default to null]
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/docs/VariableScopeRepresentation.md:
--------------------------------------------------------------------------------
1 | # VariableScopeRepresentation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **mapVariable** | **string** | | [optional] [default to null]
7 | **mappedColumn** | **string** | | [optional] [default to null]
8 | **mappedDataModel** | **number** | | [optional] [default to null]
9 | **mappedEntity** | **string** | | [optional] [default to null]
10 | **mappedVariableName** | **string** | | [optional] [default to null]
11 | **processVariableName** | **string** | | [optional] [default to null]
12 | **processVariableType** | **string** | | [optional] [default to null]
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/api/activiti-rest-api/index.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export * from './api';
19 | export * from './model';
20 |
--------------------------------------------------------------------------------
/src/api/auth-rest-api/api/index.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export * from './authentication.api';
19 |
--------------------------------------------------------------------------------
/src/api/auth-rest-api/docs/Error.md:
--------------------------------------------------------------------------------
1 | # ModelError
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **error** | [**ErrorError**](ErrorError.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/auth-rest-api/docs/Error_error.md:
--------------------------------------------------------------------------------
1 | # ErrorError
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **errorKey** | **string** | | [optional] [default to null]
7 | **statusCode** | **number** | | [default to null]
8 | **briefSummary** | **string** | | [default to null]
9 | **stackTrace** | **string** | | [default to null]
10 | **descriptionURL** | **string** | | [default to null]
11 | **logId** | **string** | | [optional] [default to null]
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/api/auth-rest-api/docs/Ticket.md:
--------------------------------------------------------------------------------
1 | # Ticket
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [optional] [default to null]
7 | **userId** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/auth-rest-api/docs/TicketBody.md:
--------------------------------------------------------------------------------
1 | # TicketBody
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **userId** | **string** | | [optional] [default to null]
7 | **password** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/auth-rest-api/docs/TicketEntry.md:
--------------------------------------------------------------------------------
1 | # TicketEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**Ticket**](Ticket.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/auth-rest-api/docs/ValidTicket.md:
--------------------------------------------------------------------------------
1 | # ValidTicket
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/auth-rest-api/docs/ValidTicketEntry.md:
--------------------------------------------------------------------------------
1 | # ValidTicketEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**ValidTicket**](ValidTicket.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/auth-rest-api/index.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export * from './api';
19 | export * from './model';
20 |
--------------------------------------------------------------------------------
/src/api/content-custom-api/index.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export * from './api';
19 | export * from './model';
20 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/Association.md:
--------------------------------------------------------------------------------
1 | # Association
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **targetId** | **string** | | [default to null]
7 | **assocType** | **string** | | [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/AssociationEntry.md:
--------------------------------------------------------------------------------
1 | # AssociationEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**Association**](Association.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/AssociationInfo.md:
--------------------------------------------------------------------------------
1 | # AssociationInfo
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **assocType** | **string** | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/ChildAssociation.md:
--------------------------------------------------------------------------------
1 | # ChildAssociation
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |---------------|--------|
7 | | **childId** | string |
8 | | **assocType** | string |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/ChildAssociationEntry.md:
--------------------------------------------------------------------------------
1 | # ChildAssociationEntry
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |-----------|-----------------------------------------|
7 | | **entry** | [ChildAssociation](ChildAssociation.md) |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/ChildAssociationInfo.md:
--------------------------------------------------------------------------------
1 | # ChildAssociationInfo
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |---------------|---------|
7 | | **assocType** | string |
8 | | **isPrimary** | boolean |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/Company.md:
--------------------------------------------------------------------------------
1 | # Company
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |--------------|--------|
7 | | organization | string |
8 | | address1 | string |
9 | | address2 | string |
10 | | address3 | string |
11 | | postcode | string |
12 | | telephone | string |
13 | | fax | string |
14 | | email | string |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/ContentInfo.md:
--------------------------------------------------------------------------------
1 | # ContentInfo
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |------------------|--------|
7 | | **mimeType** | string |
8 | | **mimeTypeName** | string |
9 | | **sizeInBytes** | number |
10 | | encoding | string |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/Definition.md:
--------------------------------------------------------------------------------
1 | # Definition
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **properties** | [**Property[]**](Property.md) | List of property definitions effective for this node as the result of combining the type with all aspects. | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/DirectAccessUrl.md:
--------------------------------------------------------------------------------
1 | # DirectAccessUrl
2 |
3 | **Properties**
4 |
5 | | Name | Type | Description |
6 | |----------------|---------|----------------------------------------------------------------------------|
7 | | **contentUrl** | string | The direct access URL of a binary content |
8 | | attachment | boolean | Whether or not the content downloads as an attachment |
9 | | expiryTime | Date | The direct access URL would become invalid when the expiry date is reached |
10 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/DirectAccessUrlEntry.md:
--------------------------------------------------------------------------------
1 | # DirectAccessUrlEntry
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |-----------|---------------------------------------|
7 | | **entry** | [DirectAccessUrl](DirectAccessUrl.md) |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/Error.md:
--------------------------------------------------------------------------------
1 | # ModelError
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **error** | [**ErrorError**](ErrorError.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/ErrorError.md:
--------------------------------------------------------------------------------
1 | # ErrorError
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **errorKey** | **string** | | [optional] [default to null]
7 | **statusCode** | **number** | | [default to null]
8 | **briefSummary** | **string** | | [default to null]
9 | **stackTrace** | **string** | | [default to null]
10 | **descriptionURL** | **string** | | [default to null]
11 | **logId** | **string** | | [optional] [default to null]
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/Group.md:
--------------------------------------------------------------------------------
1 | # Group
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [default to null]
7 | **displayName** | **string** | | [default to null]
8 | **isRoot** | **boolean** | | [default to null]
9 | **parentIds** | **string[]** | | [optional] [default to null]
10 | **zones** | **string[]** | | [optional] [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/GroupMember.md:
--------------------------------------------------------------------------------
1 | # GroupMember
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |-----------------|--------|
7 | | **id** | string |
8 | | **displayName** | string |
9 | | **memberType** | string |
10 |
11 | ## GroupMember.MemberTypeEnum
12 |
13 | * `GROUP` (value: `'GROUP'`)
14 | * `PERSON` (value: `'PERSON'`)
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/NodeEntry.md:
--------------------------------------------------------------------------------
1 | # NodeEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**Node**](Node.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/PathElement.md:
--------------------------------------------------------------------------------
1 | # PathElement
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |-------------|----------|
7 | | id | string |
8 | | name | string |
9 | | nodeType | string |
10 | | aspectNames | string[] |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/PathInfo.md:
--------------------------------------------------------------------------------
1 | # PathInfo
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |------------|---------------------------------|
7 | | elements | [PathElement[]](PathElement.md) |
8 | | name | string |
9 | | isComplete | boolean |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/PermissionElement.md:
--------------------------------------------------------------------------------
1 | # PermissionElement
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |--------------|--------|
7 | | authorityId | string |
8 | | name | string |
9 | | accessStatus | string |
10 |
11 | ## PermissionElement.AccessStatusEnum
12 |
13 | * `ALLOWED` (value: `'ALLOWED'`)
14 | * `DENIED` (value: `'DENIED'`)
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/PermissionsInfo.md:
--------------------------------------------------------------------------------
1 | # PermissionsInfo
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |----------------------|---------------------------------------------|
7 | | isInheritanceEnabled | boolean |
8 | | inherited | [PermissionElement[]](PermissionElement.md) |
9 | | locallySet | [PermissionElement[]](PermissionElement.md) |
10 | | settable | string[] |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/PersonEntry.md:
--------------------------------------------------------------------------------
1 | # PersonEntry
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |-----------|---------------------|
7 | | **entry** | [Person](Person.md) |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/PersonPaging.md:
--------------------------------------------------------------------------------
1 | # PersonPaging
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |------|---------------------------------------|
7 | | list | [PersonPagingList](#PersonPagingList) |
8 |
9 | # PersonPagingList
10 |
11 | **Properties**
12 |
13 | | Name | Type |
14 | |------------|---------------------------------|
15 | | pagination | [Pagination](Pagination.md) |
16 | | entries | [PersonEntry[]](PersonEntry.md) |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/Rendition.md:
--------------------------------------------------------------------------------
1 | # Rendition
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [optional] [default to null]
7 | **content** | [**ContentInfo**](ContentInfo.md) | | [optional] [default to null]
8 | **status** | **string** | | [optional] [default to null]
9 |
10 |
11 |
12 | ## Enum: Rendition.StatusEnum
13 |
14 |
15 | * `CREATED` (value: `'CREATED'`)
16 |
17 | * `NOTCREATED` (value: `'NOT_CREATED'`)
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/RenditionBodyCreate.md:
--------------------------------------------------------------------------------
1 | # RenditionBodyCreate
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |--------|--------|
7 | | **id** | string |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/RenditionEntry.md:
--------------------------------------------------------------------------------
1 | # RenditionEntry
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |-----------|---------------------------|
7 | | **entry** | [Rendition](Rendition.md) |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/RenditionPaging.md:
--------------------------------------------------------------------------------
1 | # RenditionPaging
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |------|---------------------------------------------|
7 | | list | [RenditionPagingList](#RenditionPagingList) |
8 |
9 | # RenditionPagingList
10 |
11 | **Properties**
12 |
13 | | Name | Type |
14 | |------------|---------------------------------------|
15 | | pagination | [Pagination](Pagination.md) |
16 | | entries | [RenditionEntry[]](RenditionEntry.md) |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/SiteEntry.md:
--------------------------------------------------------------------------------
1 | # SiteEntry
2 |
3 | ## Properties
4 | | Name | Type | Description | Notes |
5 | |------------ | ------------- | ------------- | -------------|
6 | | **entry** | [**Site**](Site.md) | | [default to null] |
7 | | **relations** | [**SiteEntryRelations**]() | | [default to undefined] |
8 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/SiteEntryRelations.md:
--------------------------------------------------------------------------------
1 | # SiteEntryRelations
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |----------------|-----------------------------|
7 | | **members** | [SiteMemberPaging](SiteMemberPaging.md) |
8 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/SitePaging.md:
--------------------------------------------------------------------------------
1 | # SitePaging
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |------|-----------------------------------|
7 | | list | [SitePagingList](#SitePagingList) |
8 |
9 | # SitePagingList
10 |
11 | **Properties**
12 |
13 | | Name | Type |
14 | |----------------|-----------------------------|
15 | | **pagination** | [Pagination](Pagination.md) |
16 | | **entries** | [SiteEntry[]](SiteEntry.md) |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/docs/UserInfo.md:
--------------------------------------------------------------------------------
1 | # UserInfo
2 |
3 | **Properties**
4 |
5 | | Name | Type |
6 | |-----------------|--------|
7 | | **displayName** | string |
8 | | **id** | string |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/content-rest-api/index.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export * from './api';
19 | export * from './model';
20 |
--------------------------------------------------------------------------------
/src/api/discovery-rest-api/api/index.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export * from './discovery.api';
19 |
--------------------------------------------------------------------------------
/src/api/discovery-rest-api/docs/DiscoveryEntry.md:
--------------------------------------------------------------------------------
1 | # DiscoveryEntry
2 |
3 | ## Properties
4 | | Name | Type | Notes |
5 | |-----------|-------------------------------------------|-------------------|
6 | | entry | [RepositoryEntry](RepositoryEntry.md) | [default to null] |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/discovery-rest-api/docs/EntitlementsInfo.md:
--------------------------------------------------------------------------------
1 | # EntitlementsInfo
2 |
3 | ## Properties
4 |
5 | | Name | Type | Notes |
6 | |--------------------|---------|------------------------------|
7 | | maxUsers | number | [optional] [default to null] |
8 | | maxDocs | number | [optional] [default to null] |
9 | | isClusterEnabled | boolean | [optional] [default to null] |
10 | | isCryptodocEnabled | boolean | [optional] [default to null] |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/discovery-rest-api/docs/Error.md:
--------------------------------------------------------------------------------
1 | # ModelError
2 |
3 | ## Properties
4 |
5 | | Name | Type | Description | Notes |
6 | |-----------|---------------------------------|-------------|------------------------------|
7 | | **error** | [**ErrorError**](ErrorError.md) | | [optional] [default to null] |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/discovery-rest-api/docs/Error_error.md:
--------------------------------------------------------------------------------
1 | # ErrorError
2 |
3 | ## Properties
4 |
5 | | Name | Type | Notes |
6 | |----------------|--------|------------------------------|
7 | | errorKey | string | [optional] [default to null] |
8 | | statusCode | number | [default to null] |
9 | | briefSummary | string | [default to null] |
10 | | stackTrace | string | [default to null] |
11 | | descriptionURL | string | [default to null] |
12 | | logId | string | [optional] [default to null] |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/api/discovery-rest-api/docs/LicenseInfo.md:
--------------------------------------------------------------------------------
1 | # LicenseInfo
2 |
3 | ## Properties
4 |
5 | | Name | Type | Notes |
6 | |---------------|-----------------------------------------|------------------------------|
7 | | issuedAt | [Date](Date.md) | [default to null] |
8 | | expiresAt | [Date](Date.md) | [default to null] |
9 | | remainingDays | number | [default to null] |
10 | | holder | string | [default to null] |
11 | | mode | string | [default to null] |
12 | | entitlements | [EntitlementsInfo](EntitlementsInfo.md) | [optional] [default to null] |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/api/discovery-rest-api/docs/ModuleInfo.md:
--------------------------------------------------------------------------------
1 | # ModuleInfo
2 |
3 | ## Properties
4 |
5 | | Name | Type | Notes |
6 | |--------------|---------------------|------------------------------|
7 | | id | string | [optional] [default to null] |
8 | | title | string | [optional] [default to null] |
9 | | description | string | [optional] [default to null] |
10 | | version | string | [optional] [default to null] |
11 | | installDate | [**Date**](Date.md) | [optional] [default to null] |
12 | | installState | string | [optional] [default to null] |
13 | | versionMin | string | [optional] [default to null] |
14 | | versionMax | string | [optional] [default to null] |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/src/api/discovery-rest-api/docs/RepositoryEntry.md:
--------------------------------------------------------------------------------
1 | # RepositoryEntry
2 |
3 | ## Properties
4 |
5 | | Name | Type | Notes |
6 | |------------|-------------------------------------|-------------------|
7 | | repository | [RepositoryInfo](RepositoryInfo.md) | [default to null] |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/discovery-rest-api/docs/RepositoryInfo.md:
--------------------------------------------------------------------------------
1 | # RepositoryInfo
2 |
3 | ## Properties
4 |
5 | | Name | Type | Notes |
6 | |---------|-----------------------------------|------------------------------|
7 | | edition | string | [default to null] |
8 | | version | [VersionInfo](VersionInfo.md) | [default to null] |
9 | | status | [StatusInfo](StatusInfo.md) | [default to null] |
10 | | license | [LicenseInfo](LicenseInfo.md) | [optional] [default to null] |
11 | | modules | [ModuleInfo**[]**](ModuleInfo.md) | [optional] [default to null] |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/api/discovery-rest-api/docs/StatusInfo.md:
--------------------------------------------------------------------------------
1 | # StatusInfo
2 |
3 | ## Properties
4 |
5 | | Name | Type |
6 | |------------------------------|---------|
7 | | isReadOnly | boolean |
8 | | isAuditEnabled | boolean |
9 | | isQuickShareEnabled | boolean |
10 | | isThumbnailGenerationEnabled | boolean |
11 | | isDirectAccessUrlEnabled | boolean |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/discovery-rest-api/docs/VersionInfo.md:
--------------------------------------------------------------------------------
1 | # VersionInfo
2 |
3 | ## Properties
4 |
5 | | Name | Type | Notes |
6 | |---------|--------|-------------------|
7 | | major | string | [default to null] |
8 | | minor | string | [default to null] |
9 | | patch | string | [default to null] |
10 | | hotfix | string | [default to null] |
11 | | schema | number | [default to null] |
12 | | label | string | [default to null] |
13 | | display | string | [default to null] |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/src/api/discovery-rest-api/index.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export * from './api';
19 | export * from './model';
20 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/AuthorityClearanceGroupEntry.md:
--------------------------------------------------------------------------------
1 | # AuthorityClearanceGroupEntry
2 |
3 | ## Properties
4 | | Name | Type | Description | Notes |
5 | |-----------|-----------------------------------------------------------|-------------|-------------------|
6 | | **entry** | [**AuthorityClearanceGroup**](AuthorityClearanceGroup.md) | | [default to null] |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/AuthorityClearanceGroupPaging.md:
--------------------------------------------------------------------------------
1 | # AuthorityClearanceGroupPaging
2 |
3 | ## Properties
4 | | Name | Type | Description | Notes |
5 | |----------|--------------------------------------------------------------------------------|-------------|------------------------------|
6 | | **list** | [**AuthorityClearanceGroupPagingList**](AuthorityClearanceGroupPaging_list.md) | | [optional] [default to null] |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/AuthorityClearanceGroupPaging_list.md:
--------------------------------------------------------------------------------
1 | # AuthorityClearanceGroupPagingList
2 |
3 | ## Properties
4 | | Name | Type | Description | Notes |
5 | |----------------|-----------------------------------------------------------------------|-------------|------------------------------|
6 | | **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null] |
7 | | **entries** | [**AuthorityClearanceGroupEntry[]**](AuthorityClearanceGroupEntry.md) | | [optional] [default to null] |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/AuthorityClearanceMark.md:
--------------------------------------------------------------------------------
1 | # AuthorityClearanceMark
2 |
3 | ## Properties
4 | | Name | Type | Description | Notes |
5 | |------------------|-------------|-------------|--------------------|
6 | | **id** | **string** | | [default to null] |
7 | | **displayLabel** | **string** | | [default to null] |
8 | | **applied** | **boolean** | | [default to false] |
9 | | **inherited** | **boolean** | | [default to false] |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationGuide.md:
--------------------------------------------------------------------------------
1 | # ClassificationGuide
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | | [default to null]
7 | **originatingOrganization** | **string** | | [default to null]
8 | **publishedOn** | **Date** | | [default to null]
9 | **enabled** | **boolean** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationGuideBody.md:
--------------------------------------------------------------------------------
1 | # ClassificationGuideBody
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | | [default to null]
7 | **originatingOrganization** | **string** | | [default to null]
8 | **publishedOn** | **Date** | | [default to null]
9 | **enabled** | **boolean** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationGuideEntry.md:
--------------------------------------------------------------------------------
1 | # ClassificationGuideEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**ClassificationGuide**](ClassificationGuide.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationGuideInTopic.md:
--------------------------------------------------------------------------------
1 | # ClassificationGuideInTopic
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | | [default to null]
7 | **originatingOrganization** | **string** | | [default to null]
8 | **publishedOn** | **Date** | | [default to null]
9 | **enabled** | **boolean** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationGuidePaging.md:
--------------------------------------------------------------------------------
1 | # ClassificationGuidePaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**ClassificationGuidePagingList**](ClassificationGuidePagingList.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationGuidePaging_list.md:
--------------------------------------------------------------------------------
1 | # ClassificationGuidePagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null]
7 | **entries** | [**ClassificationGuidesEntry[]**](ClassificationGuidesEntry.md) | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationGuides.md:
--------------------------------------------------------------------------------
1 | # ClassificationGuides
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | | [default to null]
7 | **originatingOrganization** | **string** | | [default to null]
8 | **publishedOn** | **Date** | | [default to null]
9 | **enabled** | **boolean** | | [optional] [default to null]
10 | **hasTopics** | **boolean** | | [optional] [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationGuidesBody.md:
--------------------------------------------------------------------------------
1 | # ClassificationGuidesBody
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | | [default to null]
7 | **originatingOrganization** | **string** | | [default to null]
8 | **publishedOn** | **Date** | | [default to null]
9 | **enabled** | **boolean** | | [optional] [default to null]
10 | **hasTopics** | **boolean** | | [optional] [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationGuidesEntry.md:
--------------------------------------------------------------------------------
1 | # ClassificationGuidesEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**ClassificationGuides**](ClassificationGuides.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationGuidesInTopic.md:
--------------------------------------------------------------------------------
1 | # ClassificationGuidesInTopic
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | | [default to null]
7 | **originatingOrganization** | **string** | | [default to null]
8 | **publishedOn** | **Date** | | [default to null]
9 | **enabled** | **boolean** | | [optional] [default to null]
10 | **hasTopics** | **boolean** | | [optional] [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationInformation.md:
--------------------------------------------------------------------------------
1 | # ClassificationInformation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **level** | **string** | | [default to null]
7 | **classificationAgency** | **string** | | [optional] [default to null]
8 | **reasonIds** | **string[]** | | [default to null]
9 | **downgradeOn** | **Date** | | [optional] [default to null]
10 | **downgradeEvent** | **string** | | [optional] [default to null]
11 | **downgradeInstructions** | **string** | | [optional] [default to null]
12 | **declassifyOn** | **Date** | | [optional] [default to null]
13 | **declassificationEvent** | **string** | | [optional] [default to null]
14 | **exemptionIds** | **string[]** | | [optional] [default to null]
15 |
16 |
17 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationReason.md:
--------------------------------------------------------------------------------
1 | # ClassificationReason
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [default to null]
7 | **code** | **string** | | [default to null]
8 | **description** | **string** | | [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationReasonBody.md:
--------------------------------------------------------------------------------
1 | # ClassificationReasonBody
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **code** | **string** | | [default to null]
7 | **description** | **string** | | [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationReasonEntry.md:
--------------------------------------------------------------------------------
1 | # ClassificationReasonEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**ClassificationReason**](ClassificationReason.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationReasonsPaging.md:
--------------------------------------------------------------------------------
1 | # ClassificationReasonsPaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**ClassificationReasonsPagingList**](ClassificationReasonsPagingList.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/ClassificationReasonsPaging_list.md:
--------------------------------------------------------------------------------
1 | # ClassificationReasonsPagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null]
7 | **entries** | [**ClassificationReasonEntry[]**](ClassificationReasonEntry.md) | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/CombinedInstructionBody.md:
--------------------------------------------------------------------------------
1 | # CombinedInstructionBody
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **classificationInformation** | [**ClassificationInformation**](ClassificationInformation.md) | | [optional] [default to null]
7 | **securityMarkInformation** | [**SecurityMarkInformationBody**](SecurityMarkInformationBody.md) | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/DeclassificationDate.md:
--------------------------------------------------------------------------------
1 | # DeclassificationDate
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/DeclassificationExemption.md:
--------------------------------------------------------------------------------
1 | # DeclassificationExemption
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [default to null]
7 | **code** | **string** | | [default to null]
8 | **description** | **string** | | [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/DeclassificationExemptionBody.md:
--------------------------------------------------------------------------------
1 | # DeclassificationExemptionBody
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **code** | **string** | | [default to null]
7 | **description** | **string** | | [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/DeclassificationExemptionEntry.md:
--------------------------------------------------------------------------------
1 | # DeclassificationExemptionEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**DeclassificationExemption**](DeclassificationExemption.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/DeclassificationExemptionsPaging.md:
--------------------------------------------------------------------------------
1 | # DeclassificationExemptionsPaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**DeclassificationExemptionsPagingList**](DeclassificationExemptionsPagingList.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/DeclassificationExemptionsPaging_list.md:
--------------------------------------------------------------------------------
1 | # DeclassificationExemptionsPagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null]
7 | **entries** | [**DeclassificationExemptionEntry[]**](DeclassificationExemptionEntry.md) | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/Error.md:
--------------------------------------------------------------------------------
1 | # ModelError
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **error** | [**ErrorError**](ErrorError.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/Error_error.md:
--------------------------------------------------------------------------------
1 | # ErrorError
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **errorKey** | **string** | | [optional] [default to null]
7 | **statusCode** | **number** | | [default to null]
8 | **briefSummary** | **string** | | [default to null]
9 | **stackTrace** | **string** | | [default to null]
10 | **descriptionURL** | **string** | | [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/Instruction.md:
--------------------------------------------------------------------------------
1 | # Instruction
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **classificationInformation** | [**ClassificationInformation**](ClassificationInformation.md) | | [optional] [default to null]
7 | **securityMarkInformation** | [**SecurityMarkInformation**](SecurityMarkInformation.md) | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/InstructionBody.md:
--------------------------------------------------------------------------------
1 | # InstructionBody
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **classificationInformation** | [**ClassificationInformation**](ClassificationInformation.md) | | [optional] [default to null]
7 | **securityMarkInformation** | [**SecurityMarkInformationBody**](SecurityMarkInformationBody.md) | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/InstructionEntry.md:
--------------------------------------------------------------------------------
1 | # InstructionEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**Instruction**](Instruction.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/NodeSecurityMarkBody.md:
--------------------------------------------------------------------------------
1 | # NodeSecurityMarkBody
2 |
3 | ## Properties
4 | | Name | Type | Description | Notes |
5 | |-------------|------------|-------------|-------------------|
6 | | **id** | **string** | | [default to null] |
7 | | **groupId** | **string** | | [default to null] |
8 | | **op** | **string** | | [default to null] |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/Path.md:
--------------------------------------------------------------------------------
1 | # Path
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/PathElement.md:
--------------------------------------------------------------------------------
1 | # PathElement
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [default to null]
7 | **name** | **string** | | [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityControlSetting.md:
--------------------------------------------------------------------------------
1 | # SecurityControlSetting
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **key** | **string** | | [default to null]
7 | **value** | **any** | | [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityControlSettingBody.md:
--------------------------------------------------------------------------------
1 | # SecurityControlSettingBody
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **value** | **any** | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityControlSettingEntry.md:
--------------------------------------------------------------------------------
1 | # SecurityControlSettingEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**SecurityControlSetting**](SecurityControlSetting.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityGroup.md:
--------------------------------------------------------------------------------
1 | # SecurityGroup
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [default to null]
7 | **groupName** | **string** | | [default to null]
8 | **groupType** | **string** | | [default to null]
9 | **inUse** | **boolean** | | [default to null]
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityGroupBody.md:
--------------------------------------------------------------------------------
1 | # SecurityGroupBody
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **groupName** | **string** | | [default to null]
7 | **groupType** | **string** | | [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityGroupEntry.md:
--------------------------------------------------------------------------------
1 | # SecurityMarkEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**SecurityGroup**](SecurityGroup.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityGroupPaging.md:
--------------------------------------------------------------------------------
1 | # SecurityMarkPaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**SecurityGroupPagingList**](SecurityGroupPaging_list.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityGroupPaging_list.md:
--------------------------------------------------------------------------------
1 | # SecurityGroupPagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null]
7 | **entries** | [**SecurityGroupEntry[]**](SecurityGroupEntry.md) | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityMark.md:
--------------------------------------------------------------------------------
1 | # SecurityMark
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [default to null]
7 | **name** | **string** | | [default to null]
8 | **groupId** | **string** | | [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityMarkBody.md:
--------------------------------------------------------------------------------
1 | # SecurityMarkBody
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityMarkEntry.md:
--------------------------------------------------------------------------------
1 | # SecurityMarkEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**SecurityMark**](SecurityMark.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityMarkInformation.md:
--------------------------------------------------------------------------------
1 | # SecurityMarkInformation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **add** | [**SecurityMarks**](SecurityMarks.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityMarkInformationBody.md:
--------------------------------------------------------------------------------
1 | # SecurityMarkInformationBody
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **add** | [**SecurityMarksBody**](SecurityMarksBody.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityMarkPaging.md:
--------------------------------------------------------------------------------
1 | # SecurityMarkPaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**SecurityMarkPagingList**](SecurityMarkPaging_list.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityMarkPaging_list.md:
--------------------------------------------------------------------------------
1 | # SecurityMarkPagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null]
7 | **entries** | [**SecurityMarkEntry[]**](SecurityMarkEntry.md) | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityMarks.md:
--------------------------------------------------------------------------------
1 | # SecurityMarks
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SecurityMarksBody.md:
--------------------------------------------------------------------------------
1 | # SecurityMarksBody
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/SubtopicPaging.md:
--------------------------------------------------------------------------------
1 | # SubtopicPaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**TopicPagingList**](TopicPagingList.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/TopicBody.md:
--------------------------------------------------------------------------------
1 | # TopicBody
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | | [default to null]
7 | **description** | **string** | | [optional] [default to null]
8 | **instruction** | [**InstructionBody**](InstructionBody.md) | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/TopicEntry.md:
--------------------------------------------------------------------------------
1 | # TopicEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**Topic**](Topic.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/TopicPaging.md:
--------------------------------------------------------------------------------
1 | # TopicPaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**TopicPagingList**](TopicPagingList.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/docs/TopicPaging_list.md:
--------------------------------------------------------------------------------
1 | # TopicPagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null]
7 | **entries** | [**TopicEntry[]**](TopicEntry.md) | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-classification-rest-api/index.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export * from './api';
19 | export * from './model';
20 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/ChildAssociationInfo.md:
--------------------------------------------------------------------------------
1 | # ChildAssociationInfo
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **assocType** | **string** | | [default to null]
7 | **isPrimary** | **boolean** | | [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/ContentInfo.md:
--------------------------------------------------------------------------------
1 | # ContentInfo
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **mimeType** | **string** | | [default to null]
7 | **mimeTypeName** | **string** | | [default to null]
8 | **sizeInBytes** | **number** | | [default to null]
9 | **encoding** | **string** | | [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/Error.md:
--------------------------------------------------------------------------------
1 | # ModelError
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **error** | [**ErrorError**](ErrorError.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/Error_error.md:
--------------------------------------------------------------------------------
1 | # ErrorError
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **errorKey** | **string** | | [optional] [default to null]
7 | **statusCode** | **number** | | [default to null]
8 | **briefSummary** | **string** | | [default to null]
9 | **stackTrace** | **string** | | [default to null]
10 | **descriptionURL** | **string** | | [default to null]
11 | **logId** | **string** | | [optional] [default to null]
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/FilePlanBodyUpdate.md:
--------------------------------------------------------------------------------
1 | # FilePlanBodyUpdate
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **properties** | **{ [key: string]: string; }** | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/FilePlanComponentBodyUpdate.md:
--------------------------------------------------------------------------------
1 | # FilePlanComponentBodyUpdate
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | The name must not contain spaces or the following special characters: * \" < > \\ / ? : and |.
7 | The character . must not be used at the end of the name.
8 | | [optional] [default to null]
9 | **aspectNames** | **string[]** | | [optional] [default to null]
10 | **properties** | **{ [key: string]: string; }** | | [optional] [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/FilePlanEntry.md:
--------------------------------------------------------------------------------
1 | # FilePlanEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**FilePlan**](FilePlan.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/PathElement.md:
--------------------------------------------------------------------------------
1 | # PathElement
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [optional] [default to null]
7 | **name** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/PathInfo.md:
--------------------------------------------------------------------------------
1 | # PathInfo
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **elements** | [**PathElement[]**](PathElement.md) | | [optional] [default to null]
7 | **name** | **string** | | [optional] [default to null]
8 | **isCompleted** | **boolean** | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RMNodeBodyCreate.md:
--------------------------------------------------------------------------------
1 | # RMNodeBodyCreate
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | The name must not contain spaces or the following special characters: * \" < > \\ / ? : and |.
7 | The character . must not be used at the end of the name.
8 | | [default to null]
9 | **nodeType** | **string** | | [default to null]
10 | **aspectNames** | **string[]** | | [optional] [default to null]
11 | **properties** | **{ [key: string]: string; }** | | [optional] [default to null]
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RMNodeBodyCreateWithRelativePath.md:
--------------------------------------------------------------------------------
1 | # RMNodeBodyCreateWithRelativePath
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | The name must not contain spaces or the following special characters: * \" < > \\ / ? : and |.
7 | The character . must not be used at the end of the name.
8 | | [default to null]
9 | **nodeType** | **string** | | [default to null]
10 | **aspectNames** | **string[]** | | [optional] [default to null]
11 | **properties** | **{ [key: string]: string; }** | | [optional] [default to null]
12 | **relativePath** | **string** | | [optional] [default to null]
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RMSiteBodyCreate.md:
--------------------------------------------------------------------------------
1 | # RMSiteBodyCreate
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **title** | **string** | | [default to null]
7 | **description** | **string** | | [optional] [default to null]
8 | **compliance** | **string** | | [optional] [default to null]
9 |
10 |
11 |
12 | ## Enum: RMSiteBodyCreate.ComplianceEnum
13 |
14 |
15 | * `STANDARD` (value: `'STANDARD'`)
16 |
17 | * `DOD5015` (value: `'DOD5015'`)
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RMSiteBodyUpdate.md:
--------------------------------------------------------------------------------
1 | # RMSiteBodyUpdate
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **title** | **string** | | [optional] [default to null]
7 | **description** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RMSiteEntry.md:
--------------------------------------------------------------------------------
1 | # RMSiteEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**RMSite**](RMSite.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RecordCategoryChildEntry.md:
--------------------------------------------------------------------------------
1 | # RecordCategoryChildEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**RecordCategoryChild**](RecordCategoryChild.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RecordCategoryChildPaging.md:
--------------------------------------------------------------------------------
1 | # RecordCategoryChildPaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**RecordCategoryChildPagingList**](RecordCategoryChildPagingList.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RecordCategoryChildPaging_list.md:
--------------------------------------------------------------------------------
1 | # RecordCategoryChildPagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null]
7 | **entries** | [**RecordCategoryChildEntry[]**](RecordCategoryChildEntry.md) | | [optional] [default to null]
8 | **source** | [**RecordCategory**](RecordCategory.md) | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RecordCategoryEntry.md:
--------------------------------------------------------------------------------
1 | # RecordCategoryEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**RecordCategory**](RecordCategory.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RecordCategoryPaging.md:
--------------------------------------------------------------------------------
1 | # RecordCategoryPaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**RecordCategoryPagingList**](RecordCategoryPagingList.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RecordCategoryPaging_list.md:
--------------------------------------------------------------------------------
1 | # RecordCategoryPagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null]
7 | **entries** | [**RecordCategoryEntry[]**](RecordCategoryEntry.md) | | [optional] [default to null]
8 | **source** | [**FilePlan**](FilePlan.md) | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RecordEntry.md:
--------------------------------------------------------------------------------
1 | # RecordEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**Record**](Record.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RecordFolderAssociationPaging.md:
--------------------------------------------------------------------------------
1 | # RecordFolderAssociationPaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**RecordFolderAssociationPagingList**](RecordFolderAssociationPagingList.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RecordFolderAssociationPaging_list.md:
--------------------------------------------------------------------------------
1 | # RecordFolderAssociationPagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null]
7 | **entries** | [**RecordFolderChildAssociationEntry[]**](RecordFolderChildAssociationEntry.md) | | [optional] [default to null]
8 | **source** | [**RecordFolder**](RecordFolder.md) | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RecordFolderChildAssociationEntry.md:
--------------------------------------------------------------------------------
1 | # RecordFolderChildAssociationEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**RecordFolderChildAssociation**](RecordFolderChildAssociation.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RecordFolderEntry.md:
--------------------------------------------------------------------------------
1 | # RecordFolderEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**RecordFolder**](RecordFolder.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RequestBodyFile.md:
--------------------------------------------------------------------------------
1 | # RequestBodyFile
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **targetParentId** | **string** | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/RootCategoryBodyCreate.md:
--------------------------------------------------------------------------------
1 | # RootCategoryBodyCreate
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | The name must not contain spaces or the following special characters: * \" < > \\ / ? : and |.
7 | The character . must not be used at the end of the name.
8 | | [default to null]
9 | **nodeType** | **string** | | [default to null]
10 | **aspectNames** | **string[]** | | [optional] [default to null]
11 | **properties** | **{ [key: string]: string; }** | | [optional] [default to null]
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/TransferAssociationPaging.md:
--------------------------------------------------------------------------------
1 | # TransferAssociationPaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**TransferAssociationPagingList**](TransferAssociationPagingList.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/TransferAssociationPaging_list.md:
--------------------------------------------------------------------------------
1 | # TransferAssociationPagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null]
7 | **entries** | [**TransferChildAssociationEntry[]**](TransferChildAssociationEntry.md) | | [optional] [default to null]
8 | **source** | [**Transfer**](Transfer.md) | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/TransferChildAssociationEntry.md:
--------------------------------------------------------------------------------
1 | # TransferChildAssociationEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**TransferChildAssociation**](TransferChildAssociation.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/TransferContainerAssociationPaging.md:
--------------------------------------------------------------------------------
1 | # TransferContainerAssociationPaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**TransferContainerAssociationPagingList**](TransferContainerAssociationPagingList.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/TransferContainerAssociationPaging_list.md:
--------------------------------------------------------------------------------
1 | # TransferContainerAssociationPagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null]
7 | **entries** | [**TransferContainerChildAssociationEntry[]**](TransferContainerChildAssociationEntry.md) | | [optional] [default to null]
8 | **source** | [**TransferContainer**](TransferContainer.md) | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/TransferContainerBodyUpdate.md:
--------------------------------------------------------------------------------
1 | # TransferContainerBodyUpdate
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | The name must not contain spaces or the following special characters: * \" < > \\ / ? : and |.
7 | The character . must not be used at the end of the name.
8 | | [optional] [default to null]
9 | **properties** | **{ [key: string]: string; }** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/TransferContainerChildAssociationEntry.md:
--------------------------------------------------------------------------------
1 | # TransferContainerChildAssociationEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**TransferContainerChildAssociation**](TransferContainerChildAssociation.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/TransferContainerEntry.md:
--------------------------------------------------------------------------------
1 | # TransferContainerEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**TransferContainer**](TransferContainer.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/TransferEntry.md:
--------------------------------------------------------------------------------
1 | # TransferEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**Transfer**](Transfer.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/UnfiledContainerAssociationPaging.md:
--------------------------------------------------------------------------------
1 | # UnfiledContainerAssociationPaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**UnfiledContainerAssociationPagingList**](UnfiledContainerAssociationPagingList.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/UnfiledContainerAssociationPaging_list.md:
--------------------------------------------------------------------------------
1 | # UnfiledContainerAssociationPagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null]
7 | **entries** | [**UnfiledContainerChildAssociationEntry[]**](UnfiledContainerChildAssociationEntry.md) | | [optional] [default to null]
8 | **source** | [**UnfiledContainer**](UnfiledContainer.md) | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/UnfiledContainerChildAssociationEntry.md:
--------------------------------------------------------------------------------
1 | # UnfiledContainerChildAssociationEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**UnfiledContainerChildAssociation**](UnfiledContainerChildAssociation.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/UnfiledContainerEntry.md:
--------------------------------------------------------------------------------
1 | # UnfiledContainerEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**UnfiledContainer**](UnfiledContainer.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/UnfiledRecordContainerBodyUpdate.md:
--------------------------------------------------------------------------------
1 | # UnfiledRecordContainerBodyUpdate
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | The name must not contain spaces or the following special characters: * \" < > \\ / ? : and |.
7 | The character . must not be used at the end of the name.
8 | | [optional] [default to null]
9 | **properties** | **{ [key: string]: string; }** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/UnfiledRecordFolderAssociationPaging.md:
--------------------------------------------------------------------------------
1 | # UnfiledRecordFolderAssociationPaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**UnfiledRecordFolderAssociationPagingList**](UnfiledRecordFolderAssociationPagingList.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/UnfiledRecordFolderAssociationPaging_list.md:
--------------------------------------------------------------------------------
1 | # UnfiledRecordFolderAssociationPagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null]
7 | **entries** | [**UnfiledRecordFolderChildAssociationEntry[]**](UnfiledRecordFolderChildAssociationEntry.md) | | [optional] [default to null]
8 | **source** | [**UnfiledRecordFolder**](UnfiledRecordFolder.md) | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/UnfiledRecordFolderBodyUpdate.md:
--------------------------------------------------------------------------------
1 | # UnfiledRecordFolderBodyUpdate
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | The name must not contain spaces or the following special characters: * \" < > \\ / ? : and |.
7 | The character . must not be used at the end of the name.
8 | | [optional] [default to null]
9 | **properties** | **{ [key: string]: string; }** | | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/UnfiledRecordFolderChildAssociationEntry.md:
--------------------------------------------------------------------------------
1 | # UnfiledRecordFolderChildAssociationEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**UnfiledRecordFolderChildAssociation**](UnfiledRecordFolderChildAssociation.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/UnfiledRecordFolderEntry.md:
--------------------------------------------------------------------------------
1 | # UnfiledRecordFolderEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**UnfiledRecordFolder**](UnfiledRecordFolder.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/docs/UserInfo.md:
--------------------------------------------------------------------------------
1 | # UserInfo
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **displayName** | **string** | | [default to null]
7 | **id** | **string** | | [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/gs-core-rest-api/index.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export * from './api';
19 | export * from './model';
20 |
--------------------------------------------------------------------------------
/src/api/model-rest-api/api/index.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export * from './aspects.api';
19 | export * from './types.api';
20 |
--------------------------------------------------------------------------------
/src/api/model-rest-api/docs/AbstractClassAssociation.md:
--------------------------------------------------------------------------------
1 | # AbstractClassAssociation
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [default to null]
7 | **title** | **string** | | [optional] [default to null]
8 | **description** | **string** | | [optional] [default to null]
9 | **isChild** | **boolean** | | [optional] [default to null]
10 | **isProtected** | **boolean** | | [optional] [default to null]
11 | **source** | [**AbstractClassAssociationSource**](AbstractClassAssociationSource.md) | | [optional] [default to null]
12 | **target** | [**AbstractClassAssociationSource**](AbstractClassAssociationSource.md) | | [optional] [default to null]
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/api/model-rest-api/docs/AbstractClassAssociationSource.md:
--------------------------------------------------------------------------------
1 | # AbstractClassAssociationSource
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **role** | **string** | | [optional] [default to null]
7 | **cls** | **string** | | [optional] [default to null]
8 | **isMandatory** | **boolean** | | [optional] [default to null]
9 | **isMany** | **boolean** | | [optional] [default to null]
10 | **isMandatoryEnforced** | **boolean** | | [optional] [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/model-rest-api/docs/AspectEntry.md:
--------------------------------------------------------------------------------
1 | # AspectEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**Aspect**](Aspect.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/model-rest-api/docs/AspectPaging.md:
--------------------------------------------------------------------------------
1 | # AspectPaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**AspectPagingList**](AspectPagingList.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/model-rest-api/docs/AspectPaging_list.md:
--------------------------------------------------------------------------------
1 | # AspectPagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](../../content-rest-api/docs/Pagination.md) | | [optional] [default to null]
7 | **entries** | [**AspectEntry[]**](AspectEntry.md) | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/model-rest-api/docs/Model.md:
--------------------------------------------------------------------------------
1 | # Model
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [default to null]
7 | **author** | **string** | | [optional] [default to null]
8 | **description** | **string** | | [optional] [default to null]
9 | **namespaceUri** | **string** | | [optional] [default to null]
10 | **namespacePrefix** | **string** | | [optional] [default to null]
11 |
12 |
--------------------------------------------------------------------------------
/src/api/model-rest-api/docs/TypeEntry.md:
--------------------------------------------------------------------------------
1 | # TypeEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**Type**](Type.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/model-rest-api/docs/TypePaging.md:
--------------------------------------------------------------------------------
1 | # TypePaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**TypePagingList**](TypePagingList.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/model-rest-api/docs/TypePaging_list.md:
--------------------------------------------------------------------------------
1 | # TypePagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](../../content-rest-api/docs/Pagination.md) | | [optional] [default to null]
7 | **entries** | [**TypeEntry[]**](TypeEntry.md) | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/model-rest-api/index.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export * from './api';
19 | export * from './model';
20 |
--------------------------------------------------------------------------------
/src/api/model-rest-api/model/aspect.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | import { AbstractClass } from './abstractClass';
19 |
20 | export class Aspect extends AbstractClass {
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/src/api/model-rest-api/model/type.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | import { AbstractClass } from './abstractClass';
19 |
20 | export class Type extends AbstractClass {
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/api/index.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export * from './search.api';
19 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/ContentInfo.md:
--------------------------------------------------------------------------------
1 | # ContentInfo
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **mimeType** | **string** | | [default to null]
7 | **mimeTypeName** | **string** | | [default to null]
8 | **sizeInBytes** | **number** | | [default to null]
9 | **encoding** | **string** | | [optional] [default to null]
10 | **mimeTypeGroup** | **string** | | [optional] [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/Error.md:
--------------------------------------------------------------------------------
1 | # ModelError
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **error** | [**ErrorError**](ErrorError.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/Error_error.md:
--------------------------------------------------------------------------------
1 | # ErrorError
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **errorKey** | **string** | | [optional] [default to null]
7 | **statusCode** | **number** | | [default to null]
8 | **briefSummary** | **string** | | [default to null]
9 | **stackTrace** | **string** | | [default to null]
10 | **descriptionURL** | **string** | | [default to null]
11 | **logId** | **string** | | [optional] [default to null]
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/GenericBucket.md:
--------------------------------------------------------------------------------
1 | # GenericBucket
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **label** | **string** | The bucket label | [optional] [default to null]
7 | **filterQuery** | **string** | The filter query you can use to apply this facet | [optional] [default to null]
8 | **display** | **any** | An optional field for additional display information | [optional] [default to null]
9 | **metrics** | [**GenericMetric[]**](GenericMetric.md) | An array of buckets and values | [optional] [default to null]
10 | **facets** | **any[]** | Additional list of nested facets | [optional] [default to null]
11 | **bucketInfo** | [**GenericBucketBucketInfo**](GenericBucketBucketInfo.md) | | [optional] [default to null]
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/GenericBucket_bucketInfo.md:
--------------------------------------------------------------------------------
1 | # GenericBucketBucketInfo
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **start** | **string** | The start of range | [optional] [default to null]
7 | **startInclusive** | **boolean** | Includes values greater or equal to \"start\" | [optional] [default to null]
8 | **end** | **string** | The end of range | [optional] [default to null]
9 | **endInclusive** | **boolean** | Includes values less than or equal to \"end\" | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/GenericFacetResponse.md:
--------------------------------------------------------------------------------
1 | # GenericFacetResponse
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **type** | **string** | The facet type, eg. interval, range, pivot, stats | [optional] [default to null]
7 | **label** | **string** | The field name or its explicit label, if provided on the request | [optional] [default to null]
8 | **buckets** | [**GenericBucket[]**](GenericBucket.md) | An array of buckets and values | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/GenericMetric.md:
--------------------------------------------------------------------------------
1 | # GenericMetric
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **type** | **string** | The type of metric, e.g. count | [optional] [default to null]
7 | **value** | **any** | The metric value, e.g. {\"count\": 34}
8 | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/PathElement.md:
--------------------------------------------------------------------------------
1 | # PathElement
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **id** | **string** | | [optional] [default to null]
7 | **name** | **string** | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/PathInfo.md:
--------------------------------------------------------------------------------
1 | # PathInfo
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **elements** | [**PathElement[]**](PathElement.md) | | [optional] [default to null]
7 | **name** | **string** | | [optional] [default to null]
8 | **isComplete** | **boolean** | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestFacetFields.md:
--------------------------------------------------------------------------------
1 | # RequestFacetFields
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **facets** | [**RequestFacetField[]**](RequestFacetField.md) | Define specific fields on which to facet (adds SOLR facet.field and f..facet.* options)
7 | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestFacetIntervals.md:
--------------------------------------------------------------------------------
1 | # RequestFacetIntervals
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **sets** | [**RequestFacetSet[]**](RequestFacetSet.md) | Sets the intervals for all fields. | [optional] [default to null]
7 | **intervals** | [**RequestFacetIntervalsIntervals[]**](RequestFacetIntervalsIntervals.md) | Specifies the fields to facet by interval. | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestFacetIntervals_intervals.md:
--------------------------------------------------------------------------------
1 | # RequestFacetIntervalsIntervals
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **field** | **string** | The field to facet on | [optional] [default to null]
7 | **label** | **string** | A label to use to identify the field facet | [optional] [default to null]
8 | **sets** | [**RequestFacetSet[]**](RequestFacetSet.md) | Sets the intervals for all fields. | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestFacetQueries.md:
--------------------------------------------------------------------------------
1 | # RequestFacetQueries
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestFacetQueries_inner.md:
--------------------------------------------------------------------------------
1 | # RequestFacetQueriesInner
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **query** | **string** | A facet query | [optional] [default to null]
7 | **label** | **string** | A label to include in place of the facet query | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestFacetSet.md:
--------------------------------------------------------------------------------
1 | # RequestFacetSet
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **label** | **string** | A label to use to identify the set | [optional] [default to null]
7 | **start** | **string** | The start of the range | [optional] [default to null]
8 | **end** | **string** | The end of the range | [optional] [default to null]
9 | **startInclusive** | **boolean** | When true, the set will include values greater or equal to \"start\" | [optional] [default to null]
10 | **endInclusive** | **boolean** | When true, the set will include values less than or equal to \"end\" | [optional] [default to null]
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestFields.md:
--------------------------------------------------------------------------------
1 | # RequestFields
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestFilterQueries.md:
--------------------------------------------------------------------------------
1 | # RequestFilterQueries
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestFilterQueries_inner.md:
--------------------------------------------------------------------------------
1 | # RequestFilterQueriesInner
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **query** | **string** | The filter query expression.
7 | For multi-select facets selected facets must be order together
8 | | [optional] [default to null]
9 | **tags** | **string[]** | Tags used exclude the filters from facet evaluation for multi-select facet support | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestHighlight_fields.md:
--------------------------------------------------------------------------------
1 | # RequestHighlightFields
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **field** | **string** | The name of the field to highlight. | [optional] [default to null]
7 | **snippetCount** | **number** | | [optional] [default to null]
8 | **fragmentSize** | **number** | | [optional] [default to null]
9 | **mergeContiguous** | **boolean** | | [optional] [default to null]
10 | **prefix** | **string** | | [optional] [default to null]
11 | **postfix** | **string** | | [optional] [default to null]
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestInclude.md:
--------------------------------------------------------------------------------
1 | # RequestInclude
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestLimits.md:
--------------------------------------------------------------------------------
1 | # RequestLimits
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **permissionEvaluationTime** | **number** | Maximum time for post query permission evaluation | [optional] [default to null]
7 | **permissionEvaluationCount** | **number** | Maximum count of post query permission evaluations | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestLocalization.md:
--------------------------------------------------------------------------------
1 | # RequestLocalization
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **timezone** | **string** | A valid timezone id supported by @see java.time.ZoneId | [optional] [default to null]
7 | **locales** | **string[]** | A list of Locales defined by IETF BCP 47. The ordering is significant. The first locale (leftmost) is used for sort and query localization, whereas the remaining locales are used for query only. | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestPagination.md:
--------------------------------------------------------------------------------
1 | # RequestPagination
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **maxItems** | **number** | The maximum number of items to return in the query results | [optional] [default to null]
7 | **skipCount** | **number** | The number of items to skip from the start of the query set | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestPivot.md:
--------------------------------------------------------------------------------
1 | # RequestPivot
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **key** | **string** | A key corresponding to a matching field facet label or stats. | [optional] [default to null]
7 | **pivots** | [**RequestPivot[]**](RequestPivot.md) | | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestQuery.md:
--------------------------------------------------------------------------------
1 | # RequestQuery
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **language** | **string** | The query language in which the query is written. | [optional] [default to null]
7 | **userQuery** | **string** | The exact search request typed in by the user | [optional] [default to null]
8 | **query** | **string** | The query which may have been generated in some way from the userQuery | [default to null]
9 |
10 |
11 |
12 | ## Enum: RequestQuery.LanguageEnum
13 |
14 |
15 | * `Afts` (value: `'afts'`)
16 |
17 | * `Lucene` (value: `'lucene'`)
18 |
19 | * `Cmis` (value: `'cmis'`)
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestScope.md:
--------------------------------------------------------------------------------
1 | # RequestScope
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **locations** | **string** | The locations to include in the query
7 | | [optional] [default to null]
8 |
9 |
10 |
11 | ## Enum: RequestScope.LocationsEnum
12 |
13 |
14 | * `Nodes` (value: `'nodes'`)
15 |
16 | * `Versions` (value: `'versions'`)
17 |
18 | * `DeletedNodes` (value: `'deleted-nodes'`)
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestSortDefinition.md:
--------------------------------------------------------------------------------
1 | # RequestSortDefinition
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestSortDefinition_inner.md:
--------------------------------------------------------------------------------
1 | # RequestSortDefinitionInner
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **type** | **string** | How to order - using a field, when position of the document in the index, score/relevance. | [optional] [default to null]
7 | **field** | **string** | The name of the field | [optional] [default to null]
8 | **ascending** | **boolean** | The sort order. (The ordering of nulls is determined by the SOLR configuration) | [optional] [default to null]
9 |
10 |
11 |
12 | ## Enum: RequestSortDefinitionInner.TypeEnum
13 |
14 |
15 | * `FIELD` (value: `'FIELD'`)
16 |
17 | * `DOCUMENT` (value: `'DOCUMENT'`)
18 |
19 | * `SCORE` (value: `'SCORE'`)
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestSpellcheck.md:
--------------------------------------------------------------------------------
1 | # RequestSpellcheck
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **query** | **string** | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestTemplates.md:
--------------------------------------------------------------------------------
1 | # RequestTemplates
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/RequestTemplates_inner.md:
--------------------------------------------------------------------------------
1 | # RequestTemplatesInner
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **name** | **string** | The template name | [optional] [default to null]
7 | **template** | **string** | The template | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/ResponseConsistency.md:
--------------------------------------------------------------------------------
1 | # ResponseConsistency
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **lastTxId** | **number** | The id of the last indexed transaction | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/ResultBuckets.md:
--------------------------------------------------------------------------------
1 | # ResultBuckets
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **label** | **string** | The field name or its explicit label, if provided on the request | [optional] [default to null]
7 | **buckets** | [**ResultBucketsBuckets[]**](ResultBucketsBuckets.md) | An array of buckets and values | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/ResultBuckets_buckets.md:
--------------------------------------------------------------------------------
1 | # ResultBucketsBuckets
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **label** | **string** | The bucket label | [optional] [default to null]
7 | **filterQuery** | **string** | The filter query you can use to apply this facet | [optional] [default to null]
8 | **count** | **number** | The count for the bucket | [optional] [default to null]
9 | **display** | **any** | An optional field for additional display information | [optional] [default to null]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/ResultSetContext_facetQueries.md:
--------------------------------------------------------------------------------
1 | # ResultSetContextFacetQueries
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **label** | **string** | | [optional] [default to null]
7 | **filterQuery** | **string** | The filter query you can use to apply this facet | [optional] [default to null]
8 | **count** | **number** | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/ResultSetContext_spellcheck.md:
--------------------------------------------------------------------------------
1 | # ResultSetContextSpellcheck
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **type** | **string** | | [optional] [default to null]
7 | **suggestion** | **string[]** | A suggested alternative query | [optional] [default to null]
8 |
9 |
10 |
11 | ## Enum: ResultSetContextSpellcheck.TypeEnum
12 |
13 |
14 | * `SearchInsteadFor` (value: `'searchInsteadFor'`)
15 |
16 | * `DidYouMean` (value: `'didYouMean'`)
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/ResultSetPaging.md:
--------------------------------------------------------------------------------
1 | # ResultSetPaging
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **list** | [**ResultSetPagingList**](ResultSetPagingList.md) | | [optional] [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/ResultSetPaging_list.md:
--------------------------------------------------------------------------------
1 | # ResultSetPagingList
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **pagination** | [**Pagination**](Pagination.md) | | [optional] [default to null]
7 | **context** | [**ResultSetContext**](ResultSetContext.md) | | [optional] [default to null]
8 | **entries** | [**ResultSetRowEntry[]**](ResultSetRowEntry.md) | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/ResultSetRowEntry.md:
--------------------------------------------------------------------------------
1 | # ResultSetRowEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **entry** | [**ResultNode**](ResultNode.md) | | [default to null]
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/SearchEntry.md:
--------------------------------------------------------------------------------
1 | # SearchEntry
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **score** | **number** | The score for this row | [optional] [default to null]
7 | **highlight** | [**SearchEntryHighlight[]**](SearchEntryHighlight.md) | Highlight fragments if requested and available. A match can happen in any of the requested field.
8 | | [optional] [default to null]
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/SearchEntry_highlight.md:
--------------------------------------------------------------------------------
1 | # SearchEntryHighlight
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **field** | **string** | The field where a match occurred (one of the fields defined on the request) | [optional] [default to null]
7 | **snippets** | **string[]** | Any number of snippets for the specified field highlighting the matching text | [optional] [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/docs/UserInfo.md:
--------------------------------------------------------------------------------
1 | # UserInfo
2 |
3 | ## Properties
4 | Name | Type | Description | Notes
5 | ------------ | ------------- | ------------- | -------------
6 | **displayName** | **string** | | [default to null]
7 | **id** | **string** | | [default to null]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/api/search-rest-api/index.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export * from './api';
19 | export * from './model';
20 |
--------------------------------------------------------------------------------
/src/authentication/basicAuth.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export interface BasicAuth {
19 | username?: string;
20 | password?: string;
21 | ticket?: string;
22 | }
23 |
--------------------------------------------------------------------------------
/src/authentication/oauth2.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export interface Oauth2 {
19 | refreshToken?: string;
20 | accessToken?: string;
21 | }
22 |
--------------------------------------------------------------------------------
/src/utils/index.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export * from './is-browser';
19 | export * from './param-to-string';
20 |
--------------------------------------------------------------------------------
/src/utils/is-browser.ts:
--------------------------------------------------------------------------------
1 | /*!
2 | * @license
3 | * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | export const isBrowser = (): boolean => {
19 | return typeof window !== 'undefined' && typeof window.document !== 'undefined';
20 | };
21 |
--------------------------------------------------------------------------------
/test/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": ["../.eslintrc.json"],
3 | "overrides": [
4 | {
5 | "files": ["*.ts"],
6 | "rules": {
7 | "prefer-const": "error",
8 | "@typescript-eslint/explicit-module-boundary-types": "error"
9 | }
10 | }
11 | ]
12 | }
13 |
--------------------------------------------------------------------------------
/test/mockObjects/assets/testFile.txt:
--------------------------------------------------------------------------------
1 | this is a test upload File.
2 |
--------------------------------------------------------------------------------
/test/mockObjects/assets/testFile2.txt:
--------------------------------------------------------------------------------
1 | this is a test form multiple upload File.
2 |
--------------------------------------------------------------------------------
/test/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "../tsconfig.base.json",
3 | "compilerOptions": {
4 | "noEmit": false,
5 | "baseUrl": "../src",
6 | "sourceRoot": "../src",
7 | "paths": {
8 | "@alfresco/js-api": ["../"],
9 | "@alfresco/js-api/*": ["../*"]
10 | }
11 | },
12 | "exclude": [
13 | "performance",
14 | "integration"
15 | ]
16 | }
17 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions":{
3 | "module": "commonjs",
4 | "sourceMap": true,
5 | "target": "es2015",
6 | "isolatedModules": true,
7 | "noUnusedLocals": true,
8 | "noUnusedParameters": true,
9 | "noImplicitAny": true,
10 | "noImplicitReturns": true,
11 | "esModuleInterop": true,
12 | "allowSyntheticDefaultImports": true,
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/tsconfig/tsconfig.base.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "../tsconfig.base.json",
3 | "compilerOptions": {
4 | "noEmit": false,
5 | "mapRoot": ".",
6 | "paths": {
7 | "@alfresco/js-api": ["./"],
8 | "@alfresco/js-api/*": ["./*"]
9 | },
10 | "inlineSources": true
11 | },
12 | "files": [
13 | "../index.ts"
14 | ]
15 | }
16 |
--------------------------------------------------------------------------------
/tsconfig/tsconfig.cjs.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig.base.json",
3 | "compilerOptions": {
4 | "module": "commonjs",
5 | "target": "es2015",
6 | "outDir": "../dist"
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/tsconfig/tsconfig.esm2015.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig.base.json",
3 | "compilerOptions": {
4 | "module": "es2015",
5 | "importHelpers": true,
6 | "moduleResolution": "node",
7 | "target": "es2015",
8 | "outDir": "../dist/esm2015"
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/tsconfig/tsconfig.esm5.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig.base.json",
3 | "compilerOptions": {
4 | "module": "es2015",
5 | "importHelpers": true,
6 | "moduleResolution": "node",
7 | "target": "ES2015",
8 | "outDir": "../dist/esm5"
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/tsconfig/tsconfig.types.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig.base.json",
3 | "compilerOptions": {
4 | "module": "es2015",
5 | "target": "esnext",
6 | "removeComments": false,
7 | "declaration": true,
8 | "declarationDir": "../dist/typings",
9 | "emitDeclarationOnly": true
10 | }
11 | }
12 |
--------------------------------------------------------------------------------