@coscine/api-client 3.21.0 → 3.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +968 -732
- package/dist/types/Coscine.Api/@coscine/api/admin-api.d.ts +174 -4
- package/dist/types/Coscine.Api/@coscine/api/application-profile-api.d.ts +41 -0
- package/dist/types/Coscine.Api/@coscine/api/blob-api.d.ts +65 -0
- package/dist/types/Coscine.Api/@coscine/api/data-hamster-report-api.d.ts +17 -0
- package/dist/types/Coscine.Api/@coscine/api/discipline-api.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/api/handle-api.d.ts +23 -0
- package/dist/types/Coscine.Api/@coscine/api/language-api.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/api/license-api.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/api/maintenance-api.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/api/notification-api.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/api/organization-api.d.ts +27 -0
- package/dist/types/Coscine.Api/@coscine/api/pid-api.d.ts +38 -0
- package/dist/types/Coscine.Api/@coscine/api/project-api.d.ts +44 -0
- package/dist/types/Coscine.Api/@coscine/api/project-invitation-api.d.ts +46 -0
- package/dist/types/Coscine.Api/@coscine/api/project-member-api.d.ts +55 -0
- package/dist/types/Coscine.Api/@coscine/api/project-publication-request-api.d.ts +28 -0
- package/dist/types/Coscine.Api/@coscine/api/project-quota-api.d.ts +41 -0
- package/dist/types/Coscine.Api/@coscine/api/project-resource-api.d.ts +55 -0
- package/dist/types/Coscine.Api/@coscine/api/project-resource-quota-api.d.ts +26 -0
- package/dist/types/Coscine.Api/@coscine/api/project-resource-type-api.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/api/project-sub-projects-api.d.ts +27 -0
- package/dist/types/Coscine.Api/@coscine/api/provenance-api.d.ts +39 -0
- package/dist/types/Coscine.Api/@coscine/api/publication-advisory-service-api.d.ts +149 -0
- package/dist/types/Coscine.Api/@coscine/api/report-api.d.ts +14 -0
- package/dist/types/Coscine.Api/@coscine/api/resource-api.d.ts +12 -0
- package/dist/types/Coscine.Api/@coscine/api/resource-type-api.d.ts +13 -0
- package/dist/types/Coscine.Api/@coscine/api/resource-type-git-lab-api.d.ts +32 -0
- package/dist/types/Coscine.Api/@coscine/api/role-api.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/api/search-api.d.ts +24 -0
- package/dist/types/Coscine.Api/@coscine/api/self-api-token-api.d.ts +31 -0
- package/dist/types/Coscine.Api/@coscine/api/self-api.d.ts +65 -1
- package/dist/types/Coscine.Api/@coscine/api/self-session-api.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/api/system-status-api.d.ts +69 -38
- package/dist/types/Coscine.Api/@coscine/api/title-api.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/api/tos-api.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/api/tree-api.d.ts +117 -0
- package/dist/types/Coscine.Api/@coscine/api/user-api.d.ts +14 -0
- package/dist/types/Coscine.Api/@coscine/api/user-notification-opt-out-api.d.ts +31 -0
- package/dist/types/Coscine.Api/@coscine/api/visibility-api.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/api/vocabulary-api.d.ts +42 -0
- package/dist/types/Coscine.Api/@coscine/model/accepted-language.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/activity-log-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/activity-log-dto.d.ts +37 -0
- package/dist/types/Coscine.Api/@coscine/model/api-token-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/api-token-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/api-token-dto.d.ts +17 -0
- package/dist/types/Coscine.Api/@coscine/model/api-token-for-creation-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/application-profile-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/application-profile-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/application-profile-dto.d.ts +13 -0
- package/dist/types/Coscine.Api/@coscine/model/application-profile-for-creation-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/application-profile-for-creation-dto.d.ts +11 -0
- package/dist/types/Coscine.Api/@coscine/model/application-profile-for-resource-creation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/application-profile-minimal-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/coscine-http-method.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/coscine-role-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/create-datasource-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/create-datasource-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/data-hamster-kpi-dto-ienumerable-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/data-hamster-kpi-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/data-hamster-kpi-dto.d.ts +35 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-options-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-resource-type-options-for-manipulation-dto.d.ts +17 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-options-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-resource-type-options-for-manipulation-dto.d.ts +17 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-web-options-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-web-resource-type-options-for-manipulation-dto.d.ts +17 -0
- package/dist/types/Coscine.Api/@coscine/model/deployed-graph-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/deployed-graph-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/discipline-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/discipline-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/discipline-dto.d.ts +10 -0
- package/dist/types/Coscine.Api/@coscine/model/discipline-for-project-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/discipline-for-resource-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/discipline-for-user-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/ds-nrw-replication-group-dto.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/ds-nrw-replication-group.d.ts +21 -0
- package/dist/types/Coscine.Api/@coscine/model/extracted-metadata-tree-for-creation-dto.d.ts +16 -0
- package/dist/types/Coscine.Api/@coscine/model/extracted-metadata-tree-for-update-dto.d.ts +18 -0
- package/dist/types/Coscine.Api/@coscine/model/file-action-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/file-action-http-method.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/file-actions-dto.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/file-system-storage-options-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/file-tree-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/file-tree-dto.d.ts +28 -0
- package/dist/types/Coscine.Api/@coscine/model/fixed-value-for-resource-manipulation-dto.d.ts +10 -0
- package/dist/types/Coscine.Api/@coscine/model/git-lab-options-dto.d.ts +10 -0
- package/dist/types/Coscine.Api/@coscine/model/gitlab-branch-dto-ienumerable-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/gitlab-branch-dto.d.ts +16 -0
- package/dist/types/Coscine.Api/@coscine/model/gitlab-project-dto-ienumerable-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/gitlab-project-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/gitlab-project-dto.d.ts +28 -0
- package/dist/types/Coscine.Api/@coscine/model/gitlab-resource-type-options-for-creation-dto.d.ts +12 -0
- package/dist/types/Coscine.Api/@coscine/model/gitlab-resource-type-options-for-update-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/handle-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/handle-dto.d.ts +15 -0
- package/dist/types/Coscine.Api/@coscine/model/handle-for-update-dto.d.ts +10 -0
- package/dist/types/Coscine.Api/@coscine/model/handle-value-dto.d.ts +50 -0
- package/dist/types/Coscine.Api/@coscine/model/handle-value-for-update-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/hash-parameters-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/identity-provider-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/identity-providers.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/index.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/language-dto-ienumerable-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/language-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/language-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/language-for-user-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/license-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/license-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/license-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/license-for-resource-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/lifecycle-options-for-manipulation-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/maintenance-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/maintenance-dto.d.ts +14 -0
- package/dist/types/Coscine.Api/@coscine/model/message-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/message-dto.d.ts +22 -0
- package/dist/types/Coscine.Api/@coscine/model/message-type.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-dto.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-extracted-dto.d.ts +18 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-for-creation-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-for-deletion-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-for-update-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-update-admin-parameters.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/notification-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/notification-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/notification-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/organization-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/organization-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/organization-dto.d.ts +13 -0
- package/dist/types/Coscine.Api/@coscine/model/organization-for-project-manipulation-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/pagination.d.ts +14 -0
- package/dist/types/Coscine.Api/@coscine/model/pid-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/pid-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/pid-dto.d.ts +15 -0
- package/dist/types/Coscine.Api/@coscine/model/pid-request-dto.d.ts +10 -0
- package/dist/types/Coscine.Api/@coscine/model/pid-type.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/project-admin-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/project-admin-dto.d.ts +57 -0
- package/dist/types/Coscine.Api/@coscine/model/project-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/project-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/project-dto.d.ts +47 -0
- package/dist/types/Coscine.Api/@coscine/model/project-for-creation-dto.d.ts +31 -0
- package/dist/types/Coscine.Api/@coscine/model/project-for-update-dto.d.ts +29 -0
- package/dist/types/Coscine.Api/@coscine/model/project-invitation-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/project-invitation-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/project-invitation-dto.d.ts +23 -0
- package/dist/types/Coscine.Api/@coscine/model/project-invitation-for-project-manipulation-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/project-invitation-resolve-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/project-minimal-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/project-organization-dto.d.ts +15 -0
- package/dist/types/Coscine.Api/@coscine/model/project-publication-request-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/project-publication-request-dto.d.ts +22 -0
- package/dist/types/Coscine.Api/@coscine/model/project-quota-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/project-quota-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/project-quota-dto.d.ts +31 -0
- package/dist/types/Coscine.Api/@coscine/model/project-quota-for-update-dto.d.ts +12 -0
- package/dist/types/Coscine.Api/@coscine/model/project-resource-minimal-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/project-role-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/project-role-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/project-role-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/project-role-for-project-creation-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/project-role-for-project-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/project-role-minimal-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-for-update-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-parameters-dto.d.ts +17 -0
- package/dist/types/Coscine.Api/@coscine/model/public-user-dto-ienumerable-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/public-user-dto.d.ts +17 -0
- package/dist/types/Coscine.Api/@coscine/model/publication-advisory-service-dto-paged-response.d.ts +50 -0
- package/dist/types/Coscine.Api/@coscine/model/publication-advisory-service-dto.d.ts +17 -3
- package/dist/types/Coscine.Api/@coscine/model/publication-request-for-creation-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/quota-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/quota-for-manipulation-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/quota-unit.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-definition-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-definition-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-definition-for-manipulation-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-format.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-patch-document-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-patch-operation-dto.d.ts +12 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-patch-operation-type.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/rds-options-dto.d.ts +9 -0
- package/dist/types/Coscine.Api/@coscine/model/rds-resource-type-options-for-manipulation-dto.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/rds-s3-options-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/rds-s3-resource-type-options-for-manipulation-dto.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/rds-s3-worm-options-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/rds-s3-worm-resource-type-options-for-manipulation-dto.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-admin-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-admin-dto.d.ts +66 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-content-page-columns-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-content-page-dto.d.ts +14 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-content-page-entries-view-dto.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-content-page-metadata-view-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-creation-page-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-dto.d.ts +57 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-for-creation-dto.d.ts +40 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-for-update-dto.d.ts +37 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-minimal-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-quota-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-quota-dto.d.ts +19 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-dto.d.ts +13 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-information-dto-ienumerable-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-information-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-information-dto.d.ts +51 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-minimal-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-options-dto.d.ts +44 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-options-for-creation-dto.d.ts +39 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-options-for-update-dto.d.ts +39 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-type-status.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/role-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/role-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/role-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/role-minimal-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/search-category-type.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/search-category.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/search-result-dto-paged-search-response.d.ts +35 -0
- package/dist/types/Coscine.Api/@coscine/model/search-result-dto.d.ts +11 -0
- package/dist/types/Coscine.Api/@coscine/model/storage-data-hamster-kpi-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/storage-data-hamster-kpi-dto.d.ts +15 -0
- package/dist/types/Coscine.Api/@coscine/model/terms-of-service-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/terms-of-service-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/title-dto-ienumerable-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/title-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/title-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/title-for-user-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/tree-data-type.d.ts +2 -0
- package/dist/types/Coscine.Api/@coscine/model/user-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/user-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/user-dto.d.ts +35 -3
- package/dist/types/Coscine.Api/@coscine/model/user-email-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/user-for-update-dto.d.ts +22 -0
- package/dist/types/Coscine.Api/@coscine/model/user-merge-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/user-merge-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/user-minimal-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/user-notification-for-creation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/user-notification-opt-out-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/user-notification-opt-out-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/user-notification-opt-out-dto.d.ts +8 -0
- package/dist/types/Coscine.Api/@coscine/model/user-organization-dto.d.ts +10 -0
- package/dist/types/Coscine.Api/@coscine/model/user-terms-of-service-accept-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/variant-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/visibility-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/visibility-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/visibility-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/visibility-for-project-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/visibility-for-resource-manipulation-dto.d.ts +4 -0
- package/dist/types/Coscine.Api/@coscine/model/vocabulary-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/vocabulary-dto.d.ts +10 -0
- package/dist/types/Coscine.Api/@coscine/model/vocabulary-instance-dto-paged-response.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/vocabulary-instance-dto-response.d.ts +25 -0
- package/dist/types/Coscine.Api/@coscine/model/vocabulary-instance-dto.d.ts +14 -0
- package/dist/types/Coscine.Api/api.d.ts +1 -0
- package/dist/types/Coscine.Api/base.d.ts +24 -0
- package/dist/types/Coscine.Api/common.d.ts +37 -0
- package/dist/types/Coscine.Api/configuration.d.ts +41 -0
- package/dist/types/apis.d.ts +7 -0
- package/dist/types/index.d.ts +14 -0
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ import type { ActivityLogDtoPagedResponse } from '../../@coscine/model';
|
|
|
16
16
|
import type { CoscineHttpMethod } from '../../@coscine/model';
|
|
17
17
|
import type { CreateDatasourceDtoResponse } from '../../@coscine/model';
|
|
18
18
|
import type { DeployedGraphDtoPagedResponse } from '../../@coscine/model';
|
|
19
|
+
import type { DsNrwReplicationGroup } from '../../@coscine/model';
|
|
19
20
|
import type { MetadataUpdateAdminParameters } from '../../@coscine/model';
|
|
20
21
|
import type { ProjectAdminDtoPagedResponse } from '../../@coscine/model';
|
|
21
22
|
import type { RdfDefinitionDtoResponse } from '../../@coscine/model';
|
|
@@ -25,6 +26,7 @@ import type { ResourceAdminDtoPagedResponse } from '../../@coscine/model';
|
|
|
25
26
|
import type { UserDtoPagedResponse } from '../../@coscine/model';
|
|
26
27
|
/**
|
|
27
28
|
* AdminApi - axios parameter creator
|
|
29
|
+
* @export
|
|
28
30
|
*/
|
|
29
31
|
export declare const AdminApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
30
32
|
/**
|
|
@@ -34,16 +36,25 @@ export declare const AdminApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
34
36
|
* @throws {RequiredError}
|
|
35
37
|
*/
|
|
36
38
|
apiV2AdminOptions: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
39
|
+
/**
|
|
40
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
41
|
+
* @summary Deletes the given user.
|
|
42
|
+
* @param {string} userId The id of the user.
|
|
43
|
+
* @param {*} [options] Override http request option.
|
|
44
|
+
* @throws {RequiredError}
|
|
45
|
+
*/
|
|
46
|
+
apiV2AdminUsersUserIdDelete: (userId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
37
47
|
/**
|
|
38
48
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
39
49
|
* @summary Creates a new datasource for a specified resource and type.
|
|
40
50
|
* @param {string} resourceId The unique identifier of the resource.
|
|
41
51
|
* @param {string} typeId The unique identifier of the datasource type.
|
|
42
52
|
* @param {number} [quota] The allocated quota for the datasource.
|
|
53
|
+
* @param {DsNrwReplicationGroup} [dsNrwReplicationGroup] The optional replication grouo for the datasource.
|
|
43
54
|
* @param {*} [options] Override http request option.
|
|
44
55
|
* @throws {RequiredError}
|
|
45
56
|
*/
|
|
46
|
-
createDatasource: (resourceId: string, typeId: string, quota?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57
|
+
createDatasource: (resourceId: string, typeId: string, quota?: number, dsNrwReplicationGroup?: DsNrwReplicationGroup, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
47
58
|
/**
|
|
48
59
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
49
60
|
* @summary Retrieves all activity logs.
|
|
@@ -148,6 +159,7 @@ export declare const AdminApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
148
159
|
};
|
|
149
160
|
/**
|
|
150
161
|
* AdminApi - functional programming interface
|
|
162
|
+
* @export
|
|
151
163
|
*/
|
|
152
164
|
export declare const AdminApiFp: (configuration?: Configuration) => {
|
|
153
165
|
/**
|
|
@@ -157,16 +169,25 @@ export declare const AdminApiFp: (configuration?: Configuration) => {
|
|
|
157
169
|
* @throws {RequiredError}
|
|
158
170
|
*/
|
|
159
171
|
apiV2AdminOptions(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
172
|
+
/**
|
|
173
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
174
|
+
* @summary Deletes the given user.
|
|
175
|
+
* @param {string} userId The id of the user.
|
|
176
|
+
* @param {*} [options] Override http request option.
|
|
177
|
+
* @throws {RequiredError}
|
|
178
|
+
*/
|
|
179
|
+
apiV2AdminUsersUserIdDelete(userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
160
180
|
/**
|
|
161
181
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
162
182
|
* @summary Creates a new datasource for a specified resource and type.
|
|
163
183
|
* @param {string} resourceId The unique identifier of the resource.
|
|
164
184
|
* @param {string} typeId The unique identifier of the datasource type.
|
|
165
185
|
* @param {number} [quota] The allocated quota for the datasource.
|
|
186
|
+
* @param {DsNrwReplicationGroup} [dsNrwReplicationGroup] The optional replication grouo for the datasource.
|
|
166
187
|
* @param {*} [options] Override http request option.
|
|
167
188
|
* @throws {RequiredError}
|
|
168
189
|
*/
|
|
169
|
-
createDatasource(resourceId: string, typeId: string, quota?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateDatasourceDtoResponse>>;
|
|
190
|
+
createDatasource(resourceId: string, typeId: string, quota?: number, dsNrwReplicationGroup?: DsNrwReplicationGroup, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateDatasourceDtoResponse>>;
|
|
170
191
|
/**
|
|
171
192
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
172
193
|
* @summary Retrieves all activity logs.
|
|
@@ -271,6 +292,7 @@ export declare const AdminApiFp: (configuration?: Configuration) => {
|
|
|
271
292
|
};
|
|
272
293
|
/**
|
|
273
294
|
* AdminApi - factory interface
|
|
295
|
+
* @export
|
|
274
296
|
*/
|
|
275
297
|
export declare const AdminApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
276
298
|
/**
|
|
@@ -280,6 +302,14 @@ export declare const AdminApiFactory: (configuration?: Configuration, basePath?:
|
|
|
280
302
|
* @throws {RequiredError}
|
|
281
303
|
*/
|
|
282
304
|
apiV2AdminOptions(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
305
|
+
/**
|
|
306
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
307
|
+
* @summary Deletes the given user.
|
|
308
|
+
* @param {AdminApiApiV2AdminUsersUserIdDeleteRequest} requestParameters Request parameters.
|
|
309
|
+
* @param {*} [options] Override http request option.
|
|
310
|
+
* @throws {RequiredError}
|
|
311
|
+
*/
|
|
312
|
+
apiV2AdminUsersUserIdDelete(requestParameters: AdminApiApiV2AdminUsersUserIdDeleteRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
283
313
|
/**
|
|
284
314
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
285
315
|
* @summary Creates a new datasource for a specified resource and type.
|
|
@@ -361,224 +391,344 @@ export declare const AdminApiFactory: (configuration?: Configuration, basePath?:
|
|
|
361
391
|
*/
|
|
362
392
|
updateResourceType(requestParameters: AdminApiUpdateResourceTypeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
363
393
|
};
|
|
394
|
+
/**
|
|
395
|
+
* Request parameters for apiV2AdminUsersUserIdDelete operation in AdminApi.
|
|
396
|
+
* @export
|
|
397
|
+
* @interface AdminApiApiV2AdminUsersUserIdDeleteRequest
|
|
398
|
+
*/
|
|
399
|
+
export interface AdminApiApiV2AdminUsersUserIdDeleteRequest {
|
|
400
|
+
/**
|
|
401
|
+
* The id of the user.
|
|
402
|
+
* @type {string}
|
|
403
|
+
* @memberof AdminApiApiV2AdminUsersUserIdDelete
|
|
404
|
+
*/
|
|
405
|
+
readonly userId: string;
|
|
406
|
+
}
|
|
364
407
|
/**
|
|
365
408
|
* Request parameters for createDatasource operation in AdminApi.
|
|
409
|
+
* @export
|
|
410
|
+
* @interface AdminApiCreateDatasourceRequest
|
|
366
411
|
*/
|
|
367
412
|
export interface AdminApiCreateDatasourceRequest {
|
|
368
413
|
/**
|
|
369
414
|
* The unique identifier of the resource.
|
|
415
|
+
* @type {string}
|
|
416
|
+
* @memberof AdminApiCreateDatasource
|
|
370
417
|
*/
|
|
371
418
|
readonly resourceId: string;
|
|
372
419
|
/**
|
|
373
420
|
* The unique identifier of the datasource type.
|
|
421
|
+
* @type {string}
|
|
422
|
+
* @memberof AdminApiCreateDatasource
|
|
374
423
|
*/
|
|
375
424
|
readonly typeId: string;
|
|
376
425
|
/**
|
|
377
426
|
* The allocated quota for the datasource.
|
|
427
|
+
* @type {number}
|
|
428
|
+
* @memberof AdminApiCreateDatasource
|
|
378
429
|
*/
|
|
379
430
|
readonly quota?: number;
|
|
431
|
+
/**
|
|
432
|
+
* The optional replication grouo for the datasource.
|
|
433
|
+
* @type {DsNrwReplicationGroup}
|
|
434
|
+
* @memberof AdminApiCreateDatasource
|
|
435
|
+
*/
|
|
436
|
+
readonly dsNrwReplicationGroup?: DsNrwReplicationGroup;
|
|
380
437
|
}
|
|
381
438
|
/**
|
|
382
439
|
* Request parameters for getAllActivityLogs operation in AdminApi.
|
|
440
|
+
* @export
|
|
441
|
+
* @interface AdminApiGetAllActivityLogsRequest
|
|
383
442
|
*/
|
|
384
443
|
export interface AdminApiGetAllActivityLogsRequest {
|
|
385
444
|
/**
|
|
386
445
|
* The activity timestamp date before which activity logs should be retrieved.
|
|
446
|
+
* @type {string}
|
|
447
|
+
* @memberof AdminApiGetAllActivityLogs
|
|
387
448
|
*/
|
|
388
449
|
readonly activityTimestampBefore?: string;
|
|
389
450
|
/**
|
|
390
451
|
* The activity timestamp date after which activity logs should be retrieved.
|
|
452
|
+
* @type {string}
|
|
453
|
+
* @memberof AdminApiGetAllActivityLogs
|
|
391
454
|
*/
|
|
392
455
|
readonly activityTimestampAfter?: string;
|
|
393
456
|
/**
|
|
394
457
|
* The GUID for which activity logs should be retrieved. Can be a project, resource or other ID.
|
|
458
|
+
* @type {string}
|
|
459
|
+
* @memberof AdminApiGetAllActivityLogs
|
|
395
460
|
*/
|
|
396
461
|
readonly guid?: string;
|
|
397
462
|
/**
|
|
398
463
|
* The user ID for which activity logs should be retrieved.
|
|
464
|
+
* @type {string}
|
|
465
|
+
* @memberof AdminApiGetAllActivityLogs
|
|
399
466
|
*/
|
|
400
467
|
readonly userId?: string;
|
|
401
468
|
/**
|
|
402
469
|
* The regular expression to filter activity logs\' API path by. The regex must be a valid, already escaped string.
|
|
470
|
+
* @type {string}
|
|
471
|
+
* @memberof AdminApiGetAllActivityLogs
|
|
403
472
|
*/
|
|
404
473
|
readonly regularExpression?: string;
|
|
405
474
|
/**
|
|
406
475
|
* The http method to filter activity logs by.
|
|
476
|
+
* @type {CoscineHttpMethod}
|
|
477
|
+
* @memberof AdminApiGetAllActivityLogs
|
|
407
478
|
*/
|
|
408
479
|
readonly httpMethod?: CoscineHttpMethod;
|
|
409
480
|
/**
|
|
410
481
|
* The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
482
|
+
* @type {number}
|
|
483
|
+
* @memberof AdminApiGetAllActivityLogs
|
|
411
484
|
*/
|
|
412
485
|
readonly pageNumber?: number;
|
|
413
486
|
/**
|
|
414
487
|
* The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
488
|
+
* @type {number}
|
|
489
|
+
* @memberof AdminApiGetAllActivityLogs
|
|
415
490
|
*/
|
|
416
491
|
readonly pageSize?: number;
|
|
417
492
|
/**
|
|
418
493
|
* Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
494
|
+
* @type {string}
|
|
495
|
+
* @memberof AdminApiGetAllActivityLogs
|
|
419
496
|
*/
|
|
420
497
|
readonly orderBy?: string;
|
|
421
498
|
}
|
|
422
499
|
/**
|
|
423
500
|
* Request parameters for getAllProjects operation in AdminApi.
|
|
501
|
+
* @export
|
|
502
|
+
* @interface AdminApiGetAllProjectsRequest
|
|
424
503
|
*/
|
|
425
504
|
export interface AdminApiGetAllProjectsRequest {
|
|
426
505
|
/**
|
|
427
506
|
* Gets or sets a value indicating whether to filter top-level projects.
|
|
507
|
+
* @type {boolean}
|
|
508
|
+
* @memberof AdminApiGetAllProjects
|
|
428
509
|
*/
|
|
429
510
|
readonly topLevel?: boolean;
|
|
430
511
|
/**
|
|
431
512
|
* Gets or sets a value indicating whether to include deleted projects in the results.
|
|
513
|
+
* @type {boolean}
|
|
514
|
+
* @memberof AdminApiGetAllProjects
|
|
432
515
|
*/
|
|
433
516
|
readonly includeDeleted?: boolean;
|
|
434
517
|
/**
|
|
435
518
|
* Gets or sets a value indicating whether to include quotas in the results.
|
|
519
|
+
* @type {boolean}
|
|
520
|
+
* @memberof AdminApiGetAllProjects
|
|
436
521
|
*/
|
|
437
522
|
readonly includeQuotas?: boolean;
|
|
438
523
|
/**
|
|
439
524
|
* Gets or sets a value indicating whether to include project publication requests in the results.
|
|
525
|
+
* @type {boolean}
|
|
526
|
+
* @memberof AdminApiGetAllProjects
|
|
440
527
|
*/
|
|
441
528
|
readonly includePublicationRequests?: boolean;
|
|
442
529
|
/**
|
|
443
530
|
* Number of items per page. The maximum number of items per page is `250`.
|
|
531
|
+
* @type {number}
|
|
532
|
+
* @memberof AdminApiGetAllProjects
|
|
444
533
|
*/
|
|
445
534
|
readonly pageSize?: number;
|
|
446
535
|
/**
|
|
447
536
|
* The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
537
|
+
* @type {number}
|
|
538
|
+
* @memberof AdminApiGetAllProjects
|
|
448
539
|
*/
|
|
449
540
|
readonly pageNumber?: number;
|
|
450
541
|
/**
|
|
451
542
|
* Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
543
|
+
* @type {string}
|
|
544
|
+
* @memberof AdminApiGetAllProjects
|
|
452
545
|
*/
|
|
453
546
|
readonly orderBy?: string;
|
|
454
547
|
}
|
|
455
548
|
/**
|
|
456
549
|
* Request parameters for getAllResources operation in AdminApi.
|
|
550
|
+
* @export
|
|
551
|
+
* @interface AdminApiGetAllResourcesRequest
|
|
457
552
|
*/
|
|
458
553
|
export interface AdminApiGetAllResourcesRequest {
|
|
459
554
|
/**
|
|
460
555
|
* Value indicating whether to include deleted resources.
|
|
556
|
+
* @type {boolean}
|
|
557
|
+
* @memberof AdminApiGetAllResources
|
|
461
558
|
*/
|
|
462
559
|
readonly includeDeleted?: boolean;
|
|
463
560
|
/**
|
|
464
561
|
* Value indicating whether to include individual resource quotas.
|
|
562
|
+
* @type {boolean}
|
|
563
|
+
* @memberof AdminApiGetAllResources
|
|
465
564
|
*/
|
|
466
565
|
readonly includeQuotas?: boolean;
|
|
467
566
|
/**
|
|
468
567
|
* Number of items per page. The maximum number of items per page is `250`.
|
|
568
|
+
* @type {number}
|
|
569
|
+
* @memberof AdminApiGetAllResources
|
|
469
570
|
*/
|
|
470
571
|
readonly pageSize?: number;
|
|
471
572
|
/**
|
|
472
573
|
* The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
574
|
+
* @type {number}
|
|
575
|
+
* @memberof AdminApiGetAllResources
|
|
473
576
|
*/
|
|
474
577
|
readonly pageNumber?: number;
|
|
475
578
|
/**
|
|
476
579
|
* Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
580
|
+
* @type {string}
|
|
581
|
+
* @memberof AdminApiGetAllResources
|
|
477
582
|
*/
|
|
478
583
|
readonly orderBy?: string;
|
|
479
584
|
}
|
|
480
585
|
/**
|
|
481
586
|
* Request parameters for getAllUsers operation in AdminApi.
|
|
587
|
+
* @export
|
|
588
|
+
* @interface AdminApiGetAllUsersRequest
|
|
482
589
|
*/
|
|
483
590
|
export interface AdminApiGetAllUsersRequest {
|
|
484
591
|
/**
|
|
485
592
|
* Gets or sets a value indicating whether the terms of service have been accepted by the user.
|
|
593
|
+
* @type {boolean}
|
|
594
|
+
* @memberof AdminApiGetAllUsers
|
|
486
595
|
*/
|
|
487
596
|
readonly tosAccepted?: boolean;
|
|
488
597
|
/**
|
|
489
598
|
* Number of items per page. The maximum number of items per page is `250`.
|
|
599
|
+
* @type {number}
|
|
600
|
+
* @memberof AdminApiGetAllUsers
|
|
490
601
|
*/
|
|
491
602
|
readonly pageSize?: number;
|
|
492
603
|
/**
|
|
493
604
|
* Gets or sets a value indicating whether the personal data processing consent have been granted by the user.
|
|
494
|
-
* @type {boolean}
|
|
495
|
-
* @memberof AdminApiGetAllUsers
|
|
496
605
|
*/
|
|
497
606
|
readonly dataProcessingConsentGranted?: boolean;
|
|
498
607
|
/**
|
|
499
608
|
* The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
609
|
+
* @type {number}
|
|
610
|
+
* @memberof AdminApiGetAllUsers
|
|
500
611
|
*/
|
|
501
612
|
readonly pageNumber?: number;
|
|
502
613
|
/**
|
|
503
614
|
* Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
615
|
+
* @type {string}
|
|
616
|
+
* @memberof AdminApiGetAllUsers
|
|
504
617
|
*/
|
|
505
618
|
readonly orderBy?: string;
|
|
506
619
|
}
|
|
507
620
|
/**
|
|
508
621
|
* Request parameters for getDeployedGraphs operation in AdminApi.
|
|
622
|
+
* @export
|
|
623
|
+
* @interface AdminApiGetDeployedGraphsRequest
|
|
509
624
|
*/
|
|
510
625
|
export interface AdminApiGetDeployedGraphsRequest {
|
|
511
626
|
/**
|
|
512
627
|
* The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
628
|
+
* @type {number}
|
|
629
|
+
* @memberof AdminApiGetDeployedGraphs
|
|
513
630
|
*/
|
|
514
631
|
readonly pageNumber?: number;
|
|
515
632
|
/**
|
|
516
633
|
* The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
634
|
+
* @type {number}
|
|
635
|
+
* @memberof AdminApiGetDeployedGraphs
|
|
517
636
|
*/
|
|
518
637
|
readonly pageSize?: number;
|
|
519
638
|
/**
|
|
520
639
|
* Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
640
|
+
* @type {string}
|
|
641
|
+
* @memberof AdminApiGetDeployedGraphs
|
|
521
642
|
*/
|
|
522
643
|
readonly orderBy?: string;
|
|
523
644
|
}
|
|
524
645
|
/**
|
|
525
646
|
* Request parameters for getMetadataGraph operation in AdminApi.
|
|
647
|
+
* @export
|
|
648
|
+
* @interface AdminApiGetMetadataGraphRequest
|
|
526
649
|
*/
|
|
527
650
|
export interface AdminApiGetMetadataGraphRequest {
|
|
528
651
|
/**
|
|
529
652
|
* The absolute URI of the graph to get.
|
|
653
|
+
* @type {string}
|
|
654
|
+
* @memberof AdminApiGetMetadataGraph
|
|
530
655
|
*/
|
|
531
656
|
readonly graph: string;
|
|
532
657
|
/**
|
|
533
658
|
* Gets or sets the RDF format.
|
|
659
|
+
* @type {RdfFormat}
|
|
660
|
+
* @memberof AdminApiGetMetadataGraph
|
|
534
661
|
*/
|
|
535
662
|
readonly format?: RdfFormat;
|
|
536
663
|
}
|
|
537
664
|
/**
|
|
538
665
|
* Request parameters for patchMetadata operation in AdminApi.
|
|
666
|
+
* @export
|
|
667
|
+
* @interface AdminApiPatchMetadataRequest
|
|
539
668
|
*/
|
|
540
669
|
export interface AdminApiPatchMetadataRequest {
|
|
541
670
|
/**
|
|
542
671
|
* The absolute URI of the graph to patch.
|
|
672
|
+
* @type {string}
|
|
673
|
+
* @memberof AdminApiPatchMetadata
|
|
543
674
|
*/
|
|
544
675
|
readonly graph: string;
|
|
545
676
|
/**
|
|
546
677
|
* The well-formed RDF patch document containing the changes as operations to be applied to the graph.
|
|
678
|
+
* @type {RdfPatchDocumentDto}
|
|
679
|
+
* @memberof AdminApiPatchMetadata
|
|
547
680
|
*/
|
|
548
681
|
readonly rdfPatchDocumentDto?: RdfPatchDocumentDto;
|
|
549
682
|
}
|
|
550
683
|
/**
|
|
551
684
|
* Request parameters for updateMetadataGraph operation in AdminApi.
|
|
685
|
+
* @export
|
|
686
|
+
* @interface AdminApiUpdateMetadataGraphRequest
|
|
552
687
|
*/
|
|
553
688
|
export interface AdminApiUpdateMetadataGraphRequest {
|
|
554
689
|
/**
|
|
555
690
|
* The absolute URI of the graph to update.
|
|
691
|
+
* @type {string}
|
|
692
|
+
* @memberof AdminApiUpdateMetadataGraph
|
|
556
693
|
*/
|
|
557
694
|
readonly graph: string;
|
|
558
695
|
/**
|
|
559
696
|
* The metadata update admin parameters.
|
|
697
|
+
* @type {MetadataUpdateAdminParameters}
|
|
698
|
+
* @memberof AdminApiUpdateMetadataGraph
|
|
560
699
|
*/
|
|
561
700
|
readonly metadataUpdateAdminParameters?: MetadataUpdateAdminParameters;
|
|
562
701
|
}
|
|
563
702
|
/**
|
|
564
703
|
* Request parameters for updateResourceType operation in AdminApi.
|
|
704
|
+
* @export
|
|
705
|
+
* @interface AdminApiUpdateResourceTypeRequest
|
|
565
706
|
*/
|
|
566
707
|
export interface AdminApiUpdateResourceTypeRequest {
|
|
567
708
|
/**
|
|
568
709
|
* The unique identifier of the resource to be updated.
|
|
710
|
+
* @type {string}
|
|
711
|
+
* @memberof AdminApiUpdateResourceType
|
|
569
712
|
*/
|
|
570
713
|
readonly resourceId: string;
|
|
571
714
|
/**
|
|
572
715
|
* The unique identifier of the new resource type.
|
|
716
|
+
* @type {string}
|
|
717
|
+
* @memberof AdminApiUpdateResourceType
|
|
573
718
|
*/
|
|
574
719
|
readonly typeId: string;
|
|
575
720
|
/**
|
|
576
721
|
* The unique identifier of the new resource type option.
|
|
722
|
+
* @type {string}
|
|
723
|
+
* @memberof AdminApiUpdateResourceType
|
|
577
724
|
*/
|
|
578
725
|
readonly optionId?: string;
|
|
579
726
|
}
|
|
580
727
|
/**
|
|
581
728
|
* AdminApi - object-oriented interface
|
|
729
|
+
* @export
|
|
730
|
+
* @class AdminApi
|
|
731
|
+
* @extends {BaseAPI}
|
|
582
732
|
*/
|
|
583
733
|
export declare class AdminApi extends BaseAPI {
|
|
584
734
|
/**
|
|
@@ -586,14 +736,25 @@ export declare class AdminApi extends BaseAPI {
|
|
|
586
736
|
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
587
737
|
* @param {*} [options] Override http request option.
|
|
588
738
|
* @throws {RequiredError}
|
|
739
|
+
* @memberof AdminApi
|
|
589
740
|
*/
|
|
590
741
|
apiV2AdminOptions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
742
|
+
/**
|
|
743
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
744
|
+
* @summary Deletes the given user.
|
|
745
|
+
* @param {AdminApiApiV2AdminUsersUserIdDeleteRequest} requestParameters Request parameters.
|
|
746
|
+
* @param {*} [options] Override http request option.
|
|
747
|
+
* @throws {RequiredError}
|
|
748
|
+
* @memberof AdminApi
|
|
749
|
+
*/
|
|
750
|
+
apiV2AdminUsersUserIdDelete(requestParameters: AdminApiApiV2AdminUsersUserIdDeleteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
591
751
|
/**
|
|
592
752
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
593
753
|
* @summary Creates a new datasource for a specified resource and type.
|
|
594
754
|
* @param {AdminApiCreateDatasourceRequest} requestParameters Request parameters.
|
|
595
755
|
* @param {*} [options] Override http request option.
|
|
596
756
|
* @throws {RequiredError}
|
|
757
|
+
* @memberof AdminApi
|
|
597
758
|
*/
|
|
598
759
|
createDatasource(requestParameters: AdminApiCreateDatasourceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateDatasourceDtoResponse, any>>;
|
|
599
760
|
/**
|
|
@@ -602,6 +763,7 @@ export declare class AdminApi extends BaseAPI {
|
|
|
602
763
|
* @param {AdminApiGetAllActivityLogsRequest} requestParameters Request parameters.
|
|
603
764
|
* @param {*} [options] Override http request option.
|
|
604
765
|
* @throws {RequiredError}
|
|
766
|
+
* @memberof AdminApi
|
|
605
767
|
*/
|
|
606
768
|
getAllActivityLogs(requestParameters?: AdminApiGetAllActivityLogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ActivityLogDtoPagedResponse, any>>;
|
|
607
769
|
/**
|
|
@@ -610,6 +772,7 @@ export declare class AdminApi extends BaseAPI {
|
|
|
610
772
|
* @param {AdminApiGetAllProjectsRequest} requestParameters Request parameters.
|
|
611
773
|
* @param {*} [options] Override http request option.
|
|
612
774
|
* @throws {RequiredError}
|
|
775
|
+
* @memberof AdminApi
|
|
613
776
|
*/
|
|
614
777
|
getAllProjects(requestParameters?: AdminApiGetAllProjectsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectAdminDtoPagedResponse, any>>;
|
|
615
778
|
/**
|
|
@@ -618,6 +781,7 @@ export declare class AdminApi extends BaseAPI {
|
|
|
618
781
|
* @param {AdminApiGetAllResourcesRequest} requestParameters Request parameters.
|
|
619
782
|
* @param {*} [options] Override http request option.
|
|
620
783
|
* @throws {RequiredError}
|
|
784
|
+
* @memberof AdminApi
|
|
621
785
|
*/
|
|
622
786
|
getAllResources(requestParameters?: AdminApiGetAllResourcesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ResourceAdminDtoPagedResponse, any>>;
|
|
623
787
|
/**
|
|
@@ -626,6 +790,7 @@ export declare class AdminApi extends BaseAPI {
|
|
|
626
790
|
* @param {AdminApiGetAllUsersRequest} requestParameters Request parameters.
|
|
627
791
|
* @param {*} [options] Override http request option.
|
|
628
792
|
* @throws {RequiredError}
|
|
793
|
+
* @memberof AdminApi
|
|
629
794
|
*/
|
|
630
795
|
getAllUsers(requestParameters?: AdminApiGetAllUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserDtoPagedResponse, any>>;
|
|
631
796
|
/**
|
|
@@ -634,6 +799,7 @@ export declare class AdminApi extends BaseAPI {
|
|
|
634
799
|
* @param {AdminApiGetDeployedGraphsRequest} requestParameters Request parameters.
|
|
635
800
|
* @param {*} [options] Override http request option.
|
|
636
801
|
* @throws {RequiredError}
|
|
802
|
+
* @memberof AdminApi
|
|
637
803
|
*/
|
|
638
804
|
getDeployedGraphs(requestParameters?: AdminApiGetDeployedGraphsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeployedGraphDtoPagedResponse, any>>;
|
|
639
805
|
/**
|
|
@@ -642,6 +808,7 @@ export declare class AdminApi extends BaseAPI {
|
|
|
642
808
|
* @param {AdminApiGetMetadataGraphRequest} requestParameters Request parameters.
|
|
643
809
|
* @param {*} [options] Override http request option.
|
|
644
810
|
* @throws {RequiredError}
|
|
811
|
+
* @memberof AdminApi
|
|
645
812
|
*/
|
|
646
813
|
getMetadataGraph(requestParameters: AdminApiGetMetadataGraphRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RdfDefinitionDtoResponse, any>>;
|
|
647
814
|
/**
|
|
@@ -650,6 +817,7 @@ export declare class AdminApi extends BaseAPI {
|
|
|
650
817
|
* @param {AdminApiPatchMetadataRequest} requestParameters Request parameters.
|
|
651
818
|
* @param {*} [options] Override http request option.
|
|
652
819
|
* @throws {RequiredError}
|
|
820
|
+
* @memberof AdminApi
|
|
653
821
|
*/
|
|
654
822
|
patchMetadata(requestParameters: AdminApiPatchMetadataRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
655
823
|
/**
|
|
@@ -658,6 +826,7 @@ export declare class AdminApi extends BaseAPI {
|
|
|
658
826
|
* @param {AdminApiUpdateMetadataGraphRequest} requestParameters Request parameters.
|
|
659
827
|
* @param {*} [options] Override http request option.
|
|
660
828
|
* @throws {RequiredError}
|
|
829
|
+
* @memberof AdminApi
|
|
661
830
|
*/
|
|
662
831
|
updateMetadataGraph(requestParameters: AdminApiUpdateMetadataGraphRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
663
832
|
/**
|
|
@@ -666,6 +835,7 @@ export declare class AdminApi extends BaseAPI {
|
|
|
666
835
|
* @param {AdminApiUpdateResourceTypeRequest} requestParameters Request parameters.
|
|
667
836
|
* @param {*} [options] Override http request option.
|
|
668
837
|
* @throws {RequiredError}
|
|
838
|
+
* @memberof AdminApi
|
|
669
839
|
*/
|
|
670
840
|
updateResourceType(requestParameters: AdminApiUpdateResourceTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
671
841
|
}
|