@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
|
@@ -12,23 +12,38 @@
|
|
|
12
12
|
import type { PublicationAdvisoryServiceDto } from './publication-advisory-service-dto';
|
|
13
13
|
/**
|
|
14
14
|
* Represents a data transfer object (DTO) for an organization in the context of a project.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ProjectOrganizationDto
|
|
15
17
|
*/
|
|
16
18
|
export interface ProjectOrganizationDto {
|
|
17
19
|
/**
|
|
18
20
|
* The ROR (Research Organization Registry) ID of the organization.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof ProjectOrganizationDto
|
|
19
23
|
*/
|
|
20
24
|
'uri': string;
|
|
21
25
|
/**
|
|
22
26
|
* The display name of the organization.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ProjectOrganizationDto
|
|
23
29
|
*/
|
|
24
30
|
'displayName': string;
|
|
25
31
|
/**
|
|
26
32
|
* The email address of the organization.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof ProjectOrganizationDto
|
|
27
35
|
*/
|
|
28
36
|
'email'?: string | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {PublicationAdvisoryServiceDto}
|
|
40
|
+
* @memberof ProjectOrganizationDto
|
|
41
|
+
*/
|
|
29
42
|
'publicationAdvisoryService'?: PublicationAdvisoryServiceDto;
|
|
30
43
|
/**
|
|
31
44
|
* Determines if the organization is Responsible for a given project.
|
|
45
|
+
* @type {boolean}
|
|
46
|
+
* @memberof ProjectOrganizationDto
|
|
32
47
|
*/
|
|
33
48
|
'responsible': boolean;
|
|
34
49
|
}
|
|
@@ -10,9 +10,34 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { ProjectPublicationRequestDto } from './project-publication-request-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ProjectPublicationRequestDtoResponse
|
|
17
|
+
*/
|
|
13
18
|
export interface ProjectPublicationRequestDtoResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {ProjectPublicationRequestDto}
|
|
22
|
+
* @memberof ProjectPublicationRequestDtoResponse
|
|
23
|
+
*/
|
|
14
24
|
'data'?: ProjectPublicationRequestDto;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof ProjectPublicationRequestDtoResponse
|
|
29
|
+
*/
|
|
15
30
|
'isSuccess'?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ProjectPublicationRequestDtoResponse
|
|
35
|
+
*/
|
|
16
36
|
'statusCode'?: number | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof ProjectPublicationRequestDtoResponse
|
|
41
|
+
*/
|
|
17
42
|
'traceId'?: string | null;
|
|
18
43
|
}
|
|
@@ -14,28 +14,50 @@ import type { ResourceMinimalDto } from './resource-minimal-dto';
|
|
|
14
14
|
import type { UserMinimalDto } from './user-minimal-dto';
|
|
15
15
|
/**
|
|
16
16
|
* Represents a data transfer object (DTO) for a project publication request.
|
|
17
|
+
* @export
|
|
18
|
+
* @interface ProjectPublicationRequestDto
|
|
17
19
|
*/
|
|
18
20
|
export interface ProjectPublicationRequestDto {
|
|
19
21
|
/**
|
|
20
22
|
* Unique identifier for the project publication request.
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof ProjectPublicationRequestDto
|
|
21
25
|
*/
|
|
22
26
|
'id'?: string;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {ProjectMinimalDto}
|
|
30
|
+
* @memberof ProjectPublicationRequestDto
|
|
31
|
+
*/
|
|
23
32
|
'project'?: ProjectMinimalDto;
|
|
24
33
|
/**
|
|
25
34
|
* Identifier for the publication service used for this request.
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof ProjectPublicationRequestDto
|
|
26
37
|
*/
|
|
27
38
|
'publicationServiceRorId'?: string;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {UserMinimalDto}
|
|
42
|
+
* @memberof ProjectPublicationRequestDto
|
|
43
|
+
*/
|
|
28
44
|
'creator'?: UserMinimalDto;
|
|
29
45
|
/**
|
|
30
46
|
* The date and time when the request was created.
|
|
47
|
+
* @type {string}
|
|
48
|
+
* @memberof ProjectPublicationRequestDto
|
|
31
49
|
*/
|
|
32
50
|
'dateCreated'?: string;
|
|
33
51
|
/**
|
|
34
52
|
* Optional message associated with the publication request.
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof ProjectPublicationRequestDto
|
|
35
55
|
*/
|
|
36
56
|
'message'?: string | null;
|
|
37
57
|
/**
|
|
38
58
|
* Collection of the resources involved in the publication request.
|
|
59
|
+
* @type {Array<ResourceMinimalDto>}
|
|
60
|
+
* @memberof ProjectPublicationRequestDto
|
|
39
61
|
*/
|
|
40
62
|
'resources'?: Array<ResourceMinimalDto>;
|
|
41
63
|
}
|
|
@@ -11,10 +11,40 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { Pagination } from './pagination';
|
|
13
13
|
import type { ProjectQuotaDto } from './project-quota-dto';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ProjectQuotaDtoPagedResponse
|
|
18
|
+
*/
|
|
14
19
|
export interface ProjectQuotaDtoPagedResponse {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<ProjectQuotaDto>}
|
|
23
|
+
* @memberof ProjectQuotaDtoPagedResponse
|
|
24
|
+
*/
|
|
15
25
|
'data'?: Array<ProjectQuotaDto> | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {boolean}
|
|
29
|
+
* @memberof ProjectQuotaDtoPagedResponse
|
|
30
|
+
*/
|
|
16
31
|
'isSuccess'?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof ProjectQuotaDtoPagedResponse
|
|
36
|
+
*/
|
|
17
37
|
'statusCode'?: number | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof ProjectQuotaDtoPagedResponse
|
|
42
|
+
*/
|
|
18
43
|
'traceId'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Pagination}
|
|
47
|
+
* @memberof ProjectQuotaDtoPagedResponse
|
|
48
|
+
*/
|
|
19
49
|
'pagination'?: Pagination;
|
|
20
50
|
}
|
|
@@ -10,9 +10,34 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { ProjectQuotaDto } from './project-quota-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ProjectQuotaDtoResponse
|
|
17
|
+
*/
|
|
13
18
|
export interface ProjectQuotaDtoResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {ProjectQuotaDto}
|
|
22
|
+
* @memberof ProjectQuotaDtoResponse
|
|
23
|
+
*/
|
|
14
24
|
'data'?: ProjectQuotaDto;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof ProjectQuotaDtoResponse
|
|
29
|
+
*/
|
|
15
30
|
'isSuccess'?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ProjectQuotaDtoResponse
|
|
35
|
+
*/
|
|
16
36
|
'statusCode'?: number | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof ProjectQuotaDtoResponse
|
|
41
|
+
*/
|
|
17
42
|
'traceId'?: string | null;
|
|
18
43
|
}
|
|
@@ -14,19 +14,50 @@ import type { ResourceQuotaDto } from './resource-quota-dto';
|
|
|
14
14
|
import type { ResourceTypeMinimalDto } from './resource-type-minimal-dto';
|
|
15
15
|
/**
|
|
16
16
|
* Represents a data transfer object (DTO) containing quota information for a project.
|
|
17
|
+
* @export
|
|
18
|
+
* @interface ProjectQuotaDto
|
|
17
19
|
*/
|
|
18
20
|
export interface ProjectQuotaDto {
|
|
19
21
|
/**
|
|
20
22
|
* Identifier of the project.
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof ProjectQuotaDto
|
|
21
25
|
*/
|
|
22
26
|
'projectId'?: string;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {QuotaDto}
|
|
30
|
+
* @memberof ProjectQuotaDto
|
|
31
|
+
*/
|
|
23
32
|
'totalUsed'?: QuotaDto;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {QuotaDto}
|
|
36
|
+
* @memberof ProjectQuotaDto
|
|
37
|
+
*/
|
|
24
38
|
'totalReserved'?: QuotaDto;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {QuotaDto}
|
|
42
|
+
* @memberof ProjectQuotaDto
|
|
43
|
+
*/
|
|
25
44
|
'allocated'?: QuotaDto;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {QuotaDto}
|
|
48
|
+
* @memberof ProjectQuotaDto
|
|
49
|
+
*/
|
|
26
50
|
'maximum'?: QuotaDto;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {ResourceTypeMinimalDto}
|
|
54
|
+
* @memberof ProjectQuotaDto
|
|
55
|
+
*/
|
|
27
56
|
'resourceType'?: ResourceTypeMinimalDto;
|
|
28
57
|
/**
|
|
29
58
|
* Quota information for individual resources of the selected project\'s resource type.
|
|
59
|
+
* @type {Array<ResourceQuotaDto>}
|
|
60
|
+
* @memberof ProjectQuotaDto
|
|
30
61
|
*/
|
|
31
62
|
'resourceQuotas'?: Array<ResourceQuotaDto> | null;
|
|
32
63
|
}
|
|
@@ -12,8 +12,20 @@
|
|
|
12
12
|
import type { QuotaForManipulationDto } from './quota-for-manipulation-dto';
|
|
13
13
|
/**
|
|
14
14
|
* Data transfer object (DTO) representing the update of project quotas.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ProjectQuotaForUpdateDto
|
|
15
17
|
*/
|
|
16
18
|
export interface ProjectQuotaForUpdateDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {QuotaForManipulationDto}
|
|
22
|
+
* @memberof ProjectQuotaForUpdateDto
|
|
23
|
+
*/
|
|
17
24
|
'allocated': QuotaForManipulationDto;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {QuotaForManipulationDto}
|
|
28
|
+
* @memberof ProjectQuotaForUpdateDto
|
|
29
|
+
*/
|
|
18
30
|
'maximum'?: QuotaForManipulationDto;
|
|
19
31
|
}
|
|
@@ -11,14 +11,20 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Represents a minimal data transfer object (DTO) for a project resource.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ProjectResourceMinimalDto
|
|
14
16
|
*/
|
|
15
17
|
export interface ProjectResourceMinimalDto {
|
|
16
18
|
/**
|
|
17
19
|
* Identifier of the resource.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ProjectResourceMinimalDto
|
|
18
22
|
*/
|
|
19
23
|
'resourceId'?: string;
|
|
20
24
|
/**
|
|
21
25
|
* Identifier of the project associated with the resource.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ProjectResourceMinimalDto
|
|
22
28
|
*/
|
|
23
29
|
'projectId'?: string;
|
|
24
30
|
}
|
|
@@ -11,10 +11,40 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { Pagination } from './pagination';
|
|
13
13
|
import type { ProjectRoleDto } from './project-role-dto';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ProjectRoleDtoPagedResponse
|
|
18
|
+
*/
|
|
14
19
|
export interface ProjectRoleDtoPagedResponse {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<ProjectRoleDto>}
|
|
23
|
+
* @memberof ProjectRoleDtoPagedResponse
|
|
24
|
+
*/
|
|
15
25
|
'data'?: Array<ProjectRoleDto> | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {boolean}
|
|
29
|
+
* @memberof ProjectRoleDtoPagedResponse
|
|
30
|
+
*/
|
|
16
31
|
'isSuccess'?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof ProjectRoleDtoPagedResponse
|
|
36
|
+
*/
|
|
17
37
|
'statusCode'?: number | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof ProjectRoleDtoPagedResponse
|
|
42
|
+
*/
|
|
18
43
|
'traceId'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Pagination}
|
|
47
|
+
* @memberof ProjectRoleDtoPagedResponse
|
|
48
|
+
*/
|
|
19
49
|
'pagination'?: Pagination;
|
|
20
50
|
}
|
|
@@ -10,9 +10,34 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { ProjectRoleDto } from './project-role-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ProjectRoleDtoResponse
|
|
17
|
+
*/
|
|
13
18
|
export interface ProjectRoleDtoResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {ProjectRoleDto}
|
|
22
|
+
* @memberof ProjectRoleDtoResponse
|
|
23
|
+
*/
|
|
14
24
|
'data'?: ProjectRoleDto;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof ProjectRoleDtoResponse
|
|
29
|
+
*/
|
|
15
30
|
'isSuccess'?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ProjectRoleDtoResponse
|
|
35
|
+
*/
|
|
16
36
|
'statusCode'?: number | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof ProjectRoleDtoResponse
|
|
41
|
+
*/
|
|
17
42
|
'traceId'?: string | null;
|
|
18
43
|
}
|
|
@@ -14,13 +14,32 @@ import type { PublicUserDto } from './public-user-dto';
|
|
|
14
14
|
import type { RoleDto } from './role-dto';
|
|
15
15
|
/**
|
|
16
16
|
* Represents a data transfer object (DTO) for a project role.
|
|
17
|
+
* @export
|
|
18
|
+
* @interface ProjectRoleDto
|
|
17
19
|
*/
|
|
18
20
|
export interface ProjectRoleDto {
|
|
19
21
|
/**
|
|
20
22
|
* Identifier of the project role.
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof ProjectRoleDto
|
|
21
25
|
*/
|
|
22
26
|
'id'?: string;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {ProjectMinimalDto}
|
|
30
|
+
* @memberof ProjectRoleDto
|
|
31
|
+
*/
|
|
23
32
|
'project'?: ProjectMinimalDto;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {RoleDto}
|
|
36
|
+
* @memberof ProjectRoleDto
|
|
37
|
+
*/
|
|
24
38
|
'role'?: RoleDto;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {PublicUserDto}
|
|
42
|
+
* @memberof ProjectRoleDto
|
|
43
|
+
*/
|
|
25
44
|
'user'?: PublicUserDto;
|
|
26
45
|
}
|
|
@@ -11,14 +11,20 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Data transfer object (DTO) representing the creation of a project role within a project. Inherits from the base class Coscine.Api.Core.Shared.DataTransferObjects.ParameterObjects.ProjectRoleForProjectManipulationDto.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ProjectRoleForProjectCreationDto
|
|
14
16
|
*/
|
|
15
17
|
export interface ProjectRoleForProjectCreationDto {
|
|
16
18
|
/**
|
|
17
19
|
* Gets or initializes the identifier of the role associated with the project manipulation.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ProjectRoleForProjectCreationDto
|
|
18
22
|
*/
|
|
19
23
|
'roleId': string;
|
|
20
24
|
/**
|
|
21
25
|
* Gets or initializes the identifier of the user associated with the project role creation.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ProjectRoleForProjectCreationDto
|
|
22
28
|
*/
|
|
23
29
|
'userId': string;
|
|
24
30
|
}
|
package/dist/types/Coscine.Api/@coscine/model/project-role-for-project-manipulation-dto.d.ts
CHANGED
|
@@ -11,10 +11,14 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Data transfer object (DTO) representing a project role for manipulation within a project.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ProjectRoleForProjectManipulationDto
|
|
14
16
|
*/
|
|
15
17
|
export interface ProjectRoleForProjectManipulationDto {
|
|
16
18
|
/**
|
|
17
19
|
* Gets or initializes the identifier of the role associated with the project manipulation.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ProjectRoleForProjectManipulationDto
|
|
18
22
|
*/
|
|
19
23
|
'roleId': string;
|
|
20
24
|
}
|
|
@@ -11,18 +11,26 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Represents a minimal data transfer object (DTO) for a project role.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ProjectRoleMinimalDto
|
|
14
16
|
*/
|
|
15
17
|
export interface ProjectRoleMinimalDto {
|
|
16
18
|
/**
|
|
17
19
|
* Identifier of the project associated with the role.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ProjectRoleMinimalDto
|
|
18
22
|
*/
|
|
19
23
|
'projectId'?: string;
|
|
20
24
|
/**
|
|
21
25
|
* Identifier of the user associated with the role.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ProjectRoleMinimalDto
|
|
22
28
|
*/
|
|
23
29
|
'userId'?: string;
|
|
24
30
|
/**
|
|
25
31
|
* Identifier of the role.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ProjectRoleMinimalDto
|
|
26
34
|
*/
|
|
27
35
|
'roleId'?: string;
|
|
28
36
|
}
|
|
@@ -10,9 +10,34 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { ProvenanceDto } from './provenance-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ProvenanceDtoResponse
|
|
17
|
+
*/
|
|
13
18
|
export interface ProvenanceDtoResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {ProvenanceDto}
|
|
22
|
+
* @memberof ProvenanceDtoResponse
|
|
23
|
+
*/
|
|
14
24
|
'data'?: ProvenanceDto;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof ProvenanceDtoResponse
|
|
29
|
+
*/
|
|
15
30
|
'isSuccess'?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ProvenanceDtoResponse
|
|
35
|
+
*/
|
|
16
36
|
'statusCode'?: number | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof ProvenanceDtoResponse
|
|
41
|
+
*/
|
|
17
42
|
'traceId'?: string | null;
|
|
18
43
|
}
|
|
@@ -13,31 +13,50 @@ import type { HashParametersDto } from './hash-parameters-dto';
|
|
|
13
13
|
import type { VariantDto } from './variant-dto';
|
|
14
14
|
/**
|
|
15
15
|
* Represents a data transfer object (DTO) for provenance information.
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ProvenanceDto
|
|
16
18
|
*/
|
|
17
19
|
export interface ProvenanceDto {
|
|
18
20
|
/**
|
|
19
21
|
* Gets or sets the id of the current metadata graph.
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof ProvenanceDto
|
|
20
24
|
*/
|
|
21
25
|
'id': string;
|
|
22
26
|
/**
|
|
23
27
|
* Gets or sets the date and time when the metadata was generated.
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof ProvenanceDto
|
|
24
30
|
*/
|
|
25
31
|
'generatedAt'?: string | null;
|
|
26
32
|
/**
|
|
27
33
|
* Gets or sets the adapted versions from the specific metadata tree.
|
|
34
|
+
* @type {Array<string>}
|
|
35
|
+
* @memberof ProvenanceDto
|
|
28
36
|
*/
|
|
29
37
|
'wasRevisionOf': Array<string>;
|
|
30
38
|
/**
|
|
31
39
|
* Gets or sets the variants of the specific metadata tree.
|
|
40
|
+
* @type {Array<VariantDto>}
|
|
41
|
+
* @memberof ProvenanceDto
|
|
32
42
|
*/
|
|
33
43
|
'variants': Array<VariantDto>;
|
|
34
44
|
/**
|
|
35
45
|
* The similarity to the last version.
|
|
46
|
+
* @type {number}
|
|
47
|
+
* @memberof ProvenanceDto
|
|
36
48
|
*/
|
|
37
49
|
'similarityToLastVersion'?: number | null;
|
|
38
50
|
/**
|
|
39
51
|
* Information if the specific metadata tree was invalidated by something.
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof ProvenanceDto
|
|
40
54
|
*/
|
|
41
55
|
'wasInvalidatedBy'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {HashParametersDto}
|
|
59
|
+
* @memberof ProvenanceDto
|
|
60
|
+
*/
|
|
42
61
|
'hashParameters'?: HashParametersDto;
|
|
43
62
|
}
|
|
@@ -13,31 +13,50 @@ import type { HashParametersDto } from './hash-parameters-dto';
|
|
|
13
13
|
import type { VariantDto } from './variant-dto';
|
|
14
14
|
/**
|
|
15
15
|
* Data transfer object (DTO) representing the update of provenance Inherits from the base class Coscine.Api.Core.Shared.DataTransferObjects.ParameterObjects.ProvenanceParametersDto.
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ProvenanceForUpdateDto
|
|
16
18
|
*/
|
|
17
19
|
export interface ProvenanceForUpdateDto {
|
|
18
20
|
/**
|
|
19
21
|
* Gets or sets the adapted versions from the specific metadata tree.
|
|
22
|
+
* @type {Array<string>}
|
|
23
|
+
* @memberof ProvenanceForUpdateDto
|
|
20
24
|
*/
|
|
21
25
|
'wasRevisionOf'?: Array<string>;
|
|
22
26
|
/**
|
|
23
27
|
* Gets or sets the variants of the specific metadata tree.
|
|
28
|
+
* @type {Array<VariantDto>}
|
|
29
|
+
* @memberof ProvenanceForUpdateDto
|
|
24
30
|
*/
|
|
25
31
|
'variants'?: Array<VariantDto>;
|
|
26
32
|
/**
|
|
27
33
|
* Information if the specific metadata tree was invalidated by something.
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof ProvenanceForUpdateDto
|
|
28
36
|
*/
|
|
29
37
|
'wasInvalidatedBy'?: string | null;
|
|
30
38
|
/**
|
|
31
39
|
* The similarity to the last version.
|
|
40
|
+
* @type {number}
|
|
41
|
+
* @memberof ProvenanceForUpdateDto
|
|
32
42
|
*/
|
|
33
43
|
'similarityToLastVersion'?: number | null;
|
|
34
44
|
/**
|
|
35
45
|
* Gets or initializes the version of the metadata extractor.
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof ProvenanceForUpdateDto
|
|
36
48
|
*/
|
|
37
49
|
'metadataExtractorVersion'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {HashParametersDto}
|
|
53
|
+
* @memberof ProvenanceForUpdateDto
|
|
54
|
+
*/
|
|
38
55
|
'hashParameters'?: HashParametersDto;
|
|
39
56
|
/**
|
|
40
57
|
* Gets or sets the id of the specific metadata tree.
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof ProvenanceForUpdateDto
|
|
41
60
|
*/
|
|
42
61
|
'id': string;
|
|
43
62
|
}
|
|
@@ -13,27 +13,44 @@ import type { HashParametersDto } from './hash-parameters-dto';
|
|
|
13
13
|
import type { VariantDto } from './variant-dto';
|
|
14
14
|
/**
|
|
15
15
|
* Data transfer object (DTO) representing Provenance Parameters in a request.
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ProvenanceParametersDto
|
|
16
18
|
*/
|
|
17
19
|
export interface ProvenanceParametersDto {
|
|
18
20
|
/**
|
|
19
21
|
* Gets or sets the adapted versions from the specific metadata tree.
|
|
22
|
+
* @type {Array<string>}
|
|
23
|
+
* @memberof ProvenanceParametersDto
|
|
20
24
|
*/
|
|
21
25
|
'wasRevisionOf'?: Array<string>;
|
|
22
26
|
/**
|
|
23
27
|
* Gets or sets the variants of the specific metadata tree.
|
|
28
|
+
* @type {Array<VariantDto>}
|
|
29
|
+
* @memberof ProvenanceParametersDto
|
|
24
30
|
*/
|
|
25
31
|
'variants'?: Array<VariantDto>;
|
|
26
32
|
/**
|
|
27
33
|
* Information if the specific metadata tree was invalidated by something.
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof ProvenanceParametersDto
|
|
28
36
|
*/
|
|
29
37
|
'wasInvalidatedBy'?: string | null;
|
|
30
38
|
/**
|
|
31
39
|
* The similarity to the last version.
|
|
40
|
+
* @type {number}
|
|
41
|
+
* @memberof ProvenanceParametersDto
|
|
32
42
|
*/
|
|
33
43
|
'similarityToLastVersion'?: number | null;
|
|
34
44
|
/**
|
|
35
45
|
* Gets or initializes the version of the metadata extractor.
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof ProvenanceParametersDto
|
|
36
48
|
*/
|
|
37
49
|
'metadataExtractorVersion'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {HashParametersDto}
|
|
53
|
+
* @memberof ProvenanceParametersDto
|
|
54
|
+
*/
|
|
38
55
|
'hashParameters'?: HashParametersDto;
|
|
39
56
|
}
|
|
@@ -10,9 +10,34 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { PublicUserDto } from './public-user-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PublicUserDtoIEnumerableResponse
|
|
17
|
+
*/
|
|
13
18
|
export interface PublicUserDtoIEnumerableResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<PublicUserDto>}
|
|
22
|
+
* @memberof PublicUserDtoIEnumerableResponse
|
|
23
|
+
*/
|
|
14
24
|
'data'?: Array<PublicUserDto> | null;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof PublicUserDtoIEnumerableResponse
|
|
29
|
+
*/
|
|
15
30
|
'isSuccess'?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof PublicUserDtoIEnumerableResponse
|
|
35
|
+
*/
|
|
16
36
|
'statusCode'?: number | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof PublicUserDtoIEnumerableResponse
|
|
41
|
+
*/
|
|
17
42
|
'traceId'?: string | null;
|
|
18
43
|
}
|