@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
|
@@ -21,90 +21,147 @@ import type { UserMinimalDto } from './user-minimal-dto';
|
|
|
21
21
|
import type { VisibilityDto } from './visibility-dto';
|
|
22
22
|
/**
|
|
23
23
|
* Represents a data transfer object (DTO) for an administrative view of a project. Extends the base information in Coscine.Api.Core.Shared.DataTransferObjects.ReturnObjects.ProjectDto.
|
|
24
|
+
* @export
|
|
25
|
+
* @interface ProjectAdminDto
|
|
24
26
|
*/
|
|
25
27
|
export interface ProjectAdminDto {
|
|
26
28
|
/**
|
|
27
29
|
* Unique identifier for the project.
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof ProjectAdminDto
|
|
28
32
|
*/
|
|
29
33
|
'id': string;
|
|
30
34
|
/**
|
|
31
35
|
* Persistent identifier for the project.
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof ProjectAdminDto
|
|
32
38
|
*/
|
|
33
39
|
'pid': string;
|
|
34
40
|
/**
|
|
35
41
|
* Name of the project.
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof ProjectAdminDto
|
|
36
44
|
*/
|
|
37
45
|
'name': string;
|
|
38
46
|
/**
|
|
39
47
|
* Description of the project.
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof ProjectAdminDto
|
|
40
50
|
*/
|
|
41
51
|
'description': string;
|
|
42
52
|
/**
|
|
43
53
|
* Start date of the project.
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof ProjectAdminDto
|
|
44
56
|
*/
|
|
45
57
|
'startDate': string;
|
|
46
58
|
/**
|
|
47
59
|
* End date of the project.
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof ProjectAdminDto
|
|
48
62
|
*/
|
|
49
63
|
'endDate': string;
|
|
50
64
|
/**
|
|
51
65
|
* Collection of keywords associated with the project.
|
|
66
|
+
* @type {Array<string>}
|
|
67
|
+
* @memberof ProjectAdminDto
|
|
52
68
|
*/
|
|
53
69
|
'keywords'?: Array<string> | null;
|
|
54
70
|
/**
|
|
55
71
|
* Display name of the project.
|
|
72
|
+
* @type {string}
|
|
73
|
+
* @memberof ProjectAdminDto
|
|
56
74
|
*/
|
|
57
75
|
'displayName'?: string | null;
|
|
58
76
|
/**
|
|
59
77
|
* Principal investigators involved in the project.
|
|
78
|
+
* @type {string}
|
|
79
|
+
* @memberof ProjectAdminDto
|
|
60
80
|
*/
|
|
61
81
|
'principleInvestigators'?: string | null;
|
|
62
82
|
/**
|
|
63
83
|
* Grant ID associated with the project.
|
|
84
|
+
* @type {string}
|
|
85
|
+
* @memberof ProjectAdminDto
|
|
64
86
|
*/
|
|
65
87
|
'grantId'?: string | null;
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @type {VisibilityDto}
|
|
91
|
+
* @memberof ProjectAdminDto
|
|
92
|
+
*/
|
|
66
93
|
'visibility': VisibilityDto;
|
|
67
94
|
/**
|
|
68
95
|
* Disciplines related to the project.
|
|
96
|
+
* @type {Array<DisciplineDto>}
|
|
97
|
+
* @memberof ProjectAdminDto
|
|
69
98
|
*/
|
|
70
99
|
'disciplines': Array<DisciplineDto>;
|
|
71
100
|
/**
|
|
72
101
|
* Organizations associated with the project.
|
|
102
|
+
* @type {Array<ProjectOrganizationDto>}
|
|
103
|
+
* @memberof ProjectAdminDto
|
|
73
104
|
*/
|
|
74
105
|
'organizations': Array<ProjectOrganizationDto>;
|
|
75
106
|
/**
|
|
76
107
|
* Slug for the project.
|
|
108
|
+
* @type {string}
|
|
109
|
+
* @memberof ProjectAdminDto
|
|
77
110
|
*/
|
|
78
111
|
'slug': string;
|
|
112
|
+
/**
|
|
113
|
+
*
|
|
114
|
+
* @type {UserMinimalDto}
|
|
115
|
+
* @memberof ProjectAdminDto
|
|
116
|
+
*/
|
|
79
117
|
'creator'?: UserMinimalDto;
|
|
80
118
|
/**
|
|
81
119
|
* Date of creation of the project.
|
|
120
|
+
* @type {string}
|
|
121
|
+
* @memberof ProjectAdminDto
|
|
82
122
|
*/
|
|
83
123
|
'creationDate'?: string | null;
|
|
84
124
|
/**
|
|
85
125
|
* Collection of sub-projects associated with this project.
|
|
126
|
+
* @type {Array<ProjectDto>}
|
|
127
|
+
* @memberof ProjectAdminDto
|
|
86
128
|
* @deprecated
|
|
87
129
|
*/
|
|
88
130
|
'subProjects'?: Array<ProjectDto> | null;
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @type {ProjectMinimalDto}
|
|
134
|
+
* @memberof ProjectAdminDto
|
|
135
|
+
*/
|
|
89
136
|
'parent'?: ProjectMinimalDto;
|
|
90
137
|
/**
|
|
91
138
|
* Indicates whether the project is marked as deleted.
|
|
139
|
+
* @type {boolean}
|
|
140
|
+
* @memberof ProjectAdminDto
|
|
92
141
|
*/
|
|
93
142
|
'deleted'?: boolean;
|
|
94
143
|
/**
|
|
95
144
|
* Collection of minimal project resource details associated with the project.
|
|
145
|
+
* @type {Array<ProjectResourceMinimalDto>}
|
|
146
|
+
* @memberof ProjectAdminDto
|
|
96
147
|
*/
|
|
97
148
|
'projectResources'?: Array<ProjectResourceMinimalDto>;
|
|
98
149
|
/**
|
|
99
150
|
* Collection of minimal project role details associated with the project.
|
|
151
|
+
* @type {Array<ProjectRoleMinimalDto>}
|
|
152
|
+
* @memberof ProjectAdminDto
|
|
100
153
|
*/
|
|
101
154
|
'projectRoles'?: Array<ProjectRoleMinimalDto>;
|
|
102
155
|
/**
|
|
103
156
|
* Collection of project quotas associated with the project.
|
|
157
|
+
* @type {Array<ProjectQuotaDto>}
|
|
158
|
+
* @memberof ProjectAdminDto
|
|
104
159
|
*/
|
|
105
160
|
'projectQuota'?: Array<ProjectQuotaDto>;
|
|
106
161
|
/**
|
|
107
162
|
* Collection of project publication requests associated with the project.
|
|
163
|
+
* @type {Array<ProjectPublicationRequestDto>}
|
|
164
|
+
* @memberof ProjectAdminDto
|
|
108
165
|
*/
|
|
109
166
|
'publicationRequests'?: Array<ProjectPublicationRequestDto>;
|
|
110
167
|
}
|
|
@@ -11,10 +11,40 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { Pagination } from './pagination';
|
|
13
13
|
import type { ProjectDto } from './project-dto';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ProjectDtoPagedResponse
|
|
18
|
+
*/
|
|
14
19
|
export interface ProjectDtoPagedResponse {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<ProjectDto>}
|
|
23
|
+
* @memberof ProjectDtoPagedResponse
|
|
24
|
+
*/
|
|
15
25
|
'data'?: Array<ProjectDto> | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {boolean}
|
|
29
|
+
* @memberof ProjectDtoPagedResponse
|
|
30
|
+
*/
|
|
16
31
|
'isSuccess'?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof ProjectDtoPagedResponse
|
|
36
|
+
*/
|
|
17
37
|
'statusCode'?: number | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof ProjectDtoPagedResponse
|
|
42
|
+
*/
|
|
18
43
|
'traceId'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Pagination}
|
|
47
|
+
* @memberof ProjectDtoPagedResponse
|
|
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 { ProjectDto } from './project-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ProjectDtoResponse
|
|
17
|
+
*/
|
|
13
18
|
export interface ProjectDtoResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {ProjectDto}
|
|
22
|
+
* @memberof ProjectDtoResponse
|
|
23
|
+
*/
|
|
14
24
|
'data'?: ProjectDto;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof ProjectDtoResponse
|
|
29
|
+
*/
|
|
15
30
|
'isSuccess'?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ProjectDtoResponse
|
|
35
|
+
*/
|
|
16
36
|
'statusCode'?: number | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof ProjectDtoResponse
|
|
41
|
+
*/
|
|
17
42
|
'traceId'?: string | null;
|
|
18
43
|
}
|
|
@@ -16,70 +16,117 @@ import type { UserMinimalDto } from './user-minimal-dto';
|
|
|
16
16
|
import type { VisibilityDto } from './visibility-dto';
|
|
17
17
|
/**
|
|
18
18
|
* Represents a data transfer object (DTO) for project information.
|
|
19
|
+
* @export
|
|
20
|
+
* @interface ProjectDto
|
|
19
21
|
*/
|
|
20
22
|
export interface ProjectDto {
|
|
21
23
|
/**
|
|
22
24
|
* Unique identifier for the project.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof ProjectDto
|
|
23
27
|
*/
|
|
24
28
|
'id': string;
|
|
25
29
|
/**
|
|
26
30
|
* Persistent identifier for the project.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ProjectDto
|
|
27
33
|
*/
|
|
28
34
|
'pid': string;
|
|
29
35
|
/**
|
|
30
36
|
* Name of the project.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ProjectDto
|
|
31
39
|
*/
|
|
32
40
|
'name': string;
|
|
33
41
|
/**
|
|
34
42
|
* Description of the project.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ProjectDto
|
|
35
45
|
*/
|
|
36
46
|
'description': string;
|
|
37
47
|
/**
|
|
38
48
|
* Start date of the project.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ProjectDto
|
|
39
51
|
*/
|
|
40
52
|
'startDate': string;
|
|
41
53
|
/**
|
|
42
54
|
* End date of the project.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ProjectDto
|
|
43
57
|
*/
|
|
44
58
|
'endDate': string;
|
|
45
59
|
/**
|
|
46
60
|
* Collection of keywords associated with the project.
|
|
61
|
+
* @type {Array<string>}
|
|
62
|
+
* @memberof ProjectDto
|
|
47
63
|
*/
|
|
48
64
|
'keywords'?: Array<string> | null;
|
|
49
65
|
/**
|
|
50
66
|
* Display name of the project.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ProjectDto
|
|
51
69
|
*/
|
|
52
70
|
'displayName'?: string | null;
|
|
53
71
|
/**
|
|
54
72
|
* Principal investigators involved in the project.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ProjectDto
|
|
55
75
|
*/
|
|
56
76
|
'principleInvestigators'?: string | null;
|
|
57
77
|
/**
|
|
58
78
|
* Grant ID associated with the project.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof ProjectDto
|
|
59
81
|
*/
|
|
60
82
|
'grantId'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {VisibilityDto}
|
|
86
|
+
* @memberof ProjectDto
|
|
87
|
+
*/
|
|
61
88
|
'visibility': VisibilityDto;
|
|
62
89
|
/**
|
|
63
90
|
* Disciplines related to the project.
|
|
91
|
+
* @type {Array<DisciplineDto>}
|
|
92
|
+
* @memberof ProjectDto
|
|
64
93
|
*/
|
|
65
94
|
'disciplines': Array<DisciplineDto>;
|
|
66
95
|
/**
|
|
67
96
|
* Organizations associated with the project.
|
|
97
|
+
* @type {Array<ProjectOrganizationDto>}
|
|
98
|
+
* @memberof ProjectDto
|
|
68
99
|
*/
|
|
69
100
|
'organizations': Array<ProjectOrganizationDto>;
|
|
70
101
|
/**
|
|
71
102
|
* Slug for the project.
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof ProjectDto
|
|
72
105
|
*/
|
|
73
106
|
'slug': string;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {UserMinimalDto}
|
|
110
|
+
* @memberof ProjectDto
|
|
111
|
+
*/
|
|
74
112
|
'creator'?: UserMinimalDto;
|
|
75
113
|
/**
|
|
76
114
|
* Date of creation of the project.
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof ProjectDto
|
|
77
117
|
*/
|
|
78
118
|
'creationDate'?: string | null;
|
|
79
119
|
/**
|
|
80
120
|
* Collection of sub-projects associated with this project.
|
|
121
|
+
* @type {Array<ProjectDto>}
|
|
122
|
+
* @memberof ProjectDto
|
|
81
123
|
* @deprecated
|
|
82
124
|
*/
|
|
83
125
|
'subProjects'?: Array<ProjectDto> | null;
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
* @type {ProjectMinimalDto}
|
|
129
|
+
* @memberof ProjectDto
|
|
130
|
+
*/
|
|
84
131
|
'parent'?: ProjectMinimalDto;
|
|
85
132
|
}
|
|
@@ -14,55 +14,86 @@ import type { OrganizationForProjectManipulationDto } from './organization-for-p
|
|
|
14
14
|
import type { VisibilityForProjectManipulationDto } from './visibility-for-project-manipulation-dto';
|
|
15
15
|
/**
|
|
16
16
|
* Data transfer object (DTO) representing the creation of a project. Inherits from the base class Coscine.Api.Core.Shared.DataTransferObjects.ParameterObjects.ProjectForManipulationDto.
|
|
17
|
+
* @export
|
|
18
|
+
* @interface ProjectForCreationDto
|
|
17
19
|
*/
|
|
18
20
|
export interface ProjectForCreationDto {
|
|
19
21
|
/**
|
|
20
22
|
* Gets or initializes the name of the project.
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof ProjectForCreationDto
|
|
21
25
|
*/
|
|
22
26
|
'name': string;
|
|
23
27
|
/**
|
|
24
28
|
* Gets or initializes the description of the project.
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof ProjectForCreationDto
|
|
25
31
|
*/
|
|
26
32
|
'description': string;
|
|
27
33
|
/**
|
|
28
34
|
* Gets or initializes the start date of the project.
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof ProjectForCreationDto
|
|
29
37
|
*/
|
|
30
38
|
'startDate'?: string;
|
|
31
39
|
/**
|
|
32
40
|
* Gets or initializes the end date of the project.
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof ProjectForCreationDto
|
|
33
43
|
*/
|
|
34
44
|
'endDate'?: string;
|
|
35
45
|
/**
|
|
36
46
|
* Gets or initializes the keywords associated with the project.
|
|
47
|
+
* @type {Array<string>}
|
|
48
|
+
* @memberof ProjectForCreationDto
|
|
37
49
|
*/
|
|
38
50
|
'keywords'?: Array<string> | null;
|
|
39
51
|
/**
|
|
40
52
|
* Gets or initializes the display name of the project.
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof ProjectForCreationDto
|
|
41
55
|
*/
|
|
42
56
|
'displayName'?: string | null;
|
|
43
57
|
/**
|
|
44
58
|
* Gets or initializes the principal investigators associated with the project.
|
|
59
|
+
* @type {string}
|
|
60
|
+
* @memberof ProjectForCreationDto
|
|
45
61
|
*/
|
|
46
62
|
'principleInvestigators'?: string | null;
|
|
47
63
|
/**
|
|
48
64
|
* Gets or initializes the grant ID associated with the project.
|
|
65
|
+
* @type {string}
|
|
66
|
+
* @memberof ProjectForCreationDto
|
|
49
67
|
*/
|
|
50
68
|
'grantId'?: string | null;
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @type {VisibilityForProjectManipulationDto}
|
|
72
|
+
* @memberof ProjectForCreationDto
|
|
73
|
+
*/
|
|
51
74
|
'visibility': VisibilityForProjectManipulationDto;
|
|
52
75
|
/**
|
|
53
76
|
* Gets or initializes the disciplines associated with the project.
|
|
77
|
+
* @type {Array<DisciplineForProjectManipulationDto>}
|
|
78
|
+
* @memberof ProjectForCreationDto
|
|
54
79
|
*/
|
|
55
80
|
'disciplines': Array<DisciplineForProjectManipulationDto>;
|
|
56
81
|
/**
|
|
57
82
|
* Gets or initializes the organizations associated with the project.
|
|
83
|
+
* @type {Array<OrganizationForProjectManipulationDto>}
|
|
84
|
+
* @memberof ProjectForCreationDto
|
|
58
85
|
*/
|
|
59
86
|
'organizations': Array<OrganizationForProjectManipulationDto>;
|
|
60
87
|
/**
|
|
61
88
|
* Gets or initializes the identifier of the parent project.
|
|
89
|
+
* @type {string}
|
|
90
|
+
* @memberof ProjectForCreationDto
|
|
62
91
|
*/
|
|
63
92
|
'parentId'?: string | null;
|
|
64
93
|
/**
|
|
65
94
|
* Gets or initializes if the owners of the parent project should be copied to the sub project.
|
|
95
|
+
* @type {boolean}
|
|
96
|
+
* @memberof ProjectForCreationDto
|
|
66
97
|
*/
|
|
67
98
|
'copyOwnersFromParent'?: boolean | null;
|
|
68
99
|
}
|
|
@@ -14,51 +14,80 @@ import type { OrganizationForProjectManipulationDto } from './organization-for-p
|
|
|
14
14
|
import type { VisibilityForProjectManipulationDto } from './visibility-for-project-manipulation-dto';
|
|
15
15
|
/**
|
|
16
16
|
* Data transfer object (DTO) representing the update of a project. Inherits from the base class Coscine.Api.Core.Shared.DataTransferObjects.ParameterObjects.ProjectForManipulationDto.
|
|
17
|
+
* @export
|
|
18
|
+
* @interface ProjectForUpdateDto
|
|
17
19
|
*/
|
|
18
20
|
export interface ProjectForUpdateDto {
|
|
19
21
|
/**
|
|
20
22
|
* Gets or initializes the name of the project.
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof ProjectForUpdateDto
|
|
21
25
|
*/
|
|
22
26
|
'name': string;
|
|
23
27
|
/**
|
|
24
28
|
* Gets or initializes the description of the project.
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof ProjectForUpdateDto
|
|
25
31
|
*/
|
|
26
32
|
'description': string;
|
|
27
33
|
/**
|
|
28
34
|
* Gets or initializes the start date of the project.
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof ProjectForUpdateDto
|
|
29
37
|
*/
|
|
30
38
|
'startDate'?: string;
|
|
31
39
|
/**
|
|
32
40
|
* Gets or initializes the end date of the project.
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof ProjectForUpdateDto
|
|
33
43
|
*/
|
|
34
44
|
'endDate'?: string;
|
|
35
45
|
/**
|
|
36
46
|
* Gets or initializes the keywords associated with the project.
|
|
47
|
+
* @type {Array<string>}
|
|
48
|
+
* @memberof ProjectForUpdateDto
|
|
37
49
|
*/
|
|
38
50
|
'keywords'?: Array<string> | null;
|
|
39
51
|
/**
|
|
40
52
|
* Gets or initializes the display name of the project.
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof ProjectForUpdateDto
|
|
41
55
|
*/
|
|
42
56
|
'displayName'?: string | null;
|
|
43
57
|
/**
|
|
44
58
|
* Gets or initializes the principal investigators associated with the project.
|
|
59
|
+
* @type {string}
|
|
60
|
+
* @memberof ProjectForUpdateDto
|
|
45
61
|
*/
|
|
46
62
|
'principleInvestigators'?: string | null;
|
|
47
63
|
/**
|
|
48
64
|
* Gets or initializes the grant ID associated with the project.
|
|
65
|
+
* @type {string}
|
|
66
|
+
* @memberof ProjectForUpdateDto
|
|
49
67
|
*/
|
|
50
68
|
'grantId'?: string | null;
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @type {VisibilityForProjectManipulationDto}
|
|
72
|
+
* @memberof ProjectForUpdateDto
|
|
73
|
+
*/
|
|
51
74
|
'visibility': VisibilityForProjectManipulationDto;
|
|
52
75
|
/**
|
|
53
76
|
* Gets or initializes the disciplines associated with the project.
|
|
77
|
+
* @type {Array<DisciplineForProjectManipulationDto>}
|
|
78
|
+
* @memberof ProjectForUpdateDto
|
|
54
79
|
*/
|
|
55
80
|
'disciplines': Array<DisciplineForProjectManipulationDto>;
|
|
56
81
|
/**
|
|
57
82
|
* Gets or initializes the organizations associated with the project.
|
|
83
|
+
* @type {Array<OrganizationForProjectManipulationDto>}
|
|
84
|
+
* @memberof ProjectForUpdateDto
|
|
58
85
|
*/
|
|
59
86
|
'organizations': Array<OrganizationForProjectManipulationDto>;
|
|
60
87
|
/**
|
|
61
88
|
* Gets or initializes the slug associated with the project for identification purposes.
|
|
89
|
+
* @type {string}
|
|
90
|
+
* @memberof ProjectForUpdateDto
|
|
62
91
|
*/
|
|
63
92
|
'slug': string;
|
|
64
93
|
}
|
|
@@ -11,10 +11,40 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { Pagination } from './pagination';
|
|
13
13
|
import type { ProjectInvitationDto } from './project-invitation-dto';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ProjectInvitationDtoPagedResponse
|
|
18
|
+
*/
|
|
14
19
|
export interface ProjectInvitationDtoPagedResponse {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<ProjectInvitationDto>}
|
|
23
|
+
* @memberof ProjectInvitationDtoPagedResponse
|
|
24
|
+
*/
|
|
15
25
|
'data'?: Array<ProjectInvitationDto> | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {boolean}
|
|
29
|
+
* @memberof ProjectInvitationDtoPagedResponse
|
|
30
|
+
*/
|
|
16
31
|
'isSuccess'?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof ProjectInvitationDtoPagedResponse
|
|
36
|
+
*/
|
|
17
37
|
'statusCode'?: number | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof ProjectInvitationDtoPagedResponse
|
|
42
|
+
*/
|
|
18
43
|
'traceId'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Pagination}
|
|
47
|
+
* @memberof ProjectInvitationDtoPagedResponse
|
|
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 { ProjectInvitationDto } from './project-invitation-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ProjectInvitationDtoResponse
|
|
17
|
+
*/
|
|
13
18
|
export interface ProjectInvitationDtoResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {ProjectInvitationDto}
|
|
22
|
+
* @memberof ProjectInvitationDtoResponse
|
|
23
|
+
*/
|
|
14
24
|
'data'?: ProjectInvitationDto;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof ProjectInvitationDtoResponse
|
|
29
|
+
*/
|
|
15
30
|
'isSuccess'?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ProjectInvitationDtoResponse
|
|
35
|
+
*/
|
|
16
36
|
'statusCode'?: number | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof ProjectInvitationDtoResponse
|
|
41
|
+
*/
|
|
17
42
|
'traceId'?: string | null;
|
|
18
43
|
}
|
|
@@ -14,21 +14,44 @@ import type { PublicUserDto } from './public-user-dto';
|
|
|
14
14
|
import type { RoleMinimalDto } from './role-minimal-dto';
|
|
15
15
|
/**
|
|
16
16
|
* Represents a data transfer object (DTO) for project invitations.
|
|
17
|
+
* @export
|
|
18
|
+
* @interface ProjectInvitationDto
|
|
17
19
|
*/
|
|
18
20
|
export interface ProjectInvitationDto {
|
|
19
21
|
/**
|
|
20
22
|
* Unique identifier for the invitation.
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof ProjectInvitationDto
|
|
21
25
|
*/
|
|
22
26
|
'id'?: string;
|
|
23
27
|
/**
|
|
24
28
|
* Expiration date of the invitation.
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof ProjectInvitationDto
|
|
25
31
|
*/
|
|
26
32
|
'expirationDate'?: string;
|
|
27
33
|
/**
|
|
28
34
|
* Email associated with the invitation.
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof ProjectInvitationDto
|
|
29
37
|
*/
|
|
30
38
|
'email'?: string;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {PublicUserDto}
|
|
42
|
+
* @memberof ProjectInvitationDto
|
|
43
|
+
*/
|
|
31
44
|
'issuer'?: PublicUserDto;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {ProjectMinimalDto}
|
|
48
|
+
* @memberof ProjectInvitationDto
|
|
49
|
+
*/
|
|
32
50
|
'project'?: ProjectMinimalDto;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {RoleMinimalDto}
|
|
54
|
+
* @memberof ProjectInvitationDto
|
|
55
|
+
*/
|
|
33
56
|
'role'?: RoleMinimalDto;
|
|
34
57
|
}
|
package/dist/types/Coscine.Api/@coscine/model/project-invitation-for-project-manipulation-dto.d.ts
CHANGED
|
@@ -11,14 +11,20 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Data transfer object (DTO) representing an invitation for project manipulation.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ProjectInvitationForProjectManipulationDto
|
|
14
16
|
*/
|
|
15
17
|
export interface ProjectInvitationForProjectManipulationDto {
|
|
16
18
|
/**
|
|
17
19
|
* Gets or initializes the identifier of the role associated with the invitation.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ProjectInvitationForProjectManipulationDto
|
|
18
22
|
*/
|
|
19
23
|
'roleId': string;
|
|
20
24
|
/**
|
|
21
25
|
* Gets or initializes the email address of the invited user.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ProjectInvitationForProjectManipulationDto
|
|
22
28
|
*/
|
|
23
29
|
'email': string;
|
|
24
30
|
}
|
|
@@ -11,10 +11,14 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Data transfer object (DTO) for resolving a project invitation.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ProjectInvitationResolveDto
|
|
14
16
|
*/
|
|
15
17
|
export interface ProjectInvitationResolveDto {
|
|
16
18
|
/**
|
|
17
19
|
* Gets or initializes the token associated with resolving the project invitation.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ProjectInvitationResolveDto
|
|
18
22
|
*/
|
|
19
23
|
'token': string;
|
|
20
24
|
}
|
|
@@ -11,10 +11,14 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Represents a minimal data transfer object (DTO) for a project.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ProjectMinimalDto
|
|
14
16
|
*/
|
|
15
17
|
export interface ProjectMinimalDto {
|
|
16
18
|
/**
|
|
17
19
|
* Unique identifier for the project.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ProjectMinimalDto
|
|
18
22
|
*/
|
|
19
23
|
'id': string;
|
|
20
24
|
}
|