@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
|
@@ -13,13 +13,32 @@ import type { QuotaDto } from './quota-dto';
|
|
|
13
13
|
import type { ResourceMinimalDto } from './resource-minimal-dto';
|
|
14
14
|
/**
|
|
15
15
|
* Represents a Data Transfer Object (DTO) containing quota information for a resource.
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ResourceQuotaDto
|
|
16
18
|
*/
|
|
17
19
|
export interface ResourceQuotaDto {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {ResourceMinimalDto}
|
|
23
|
+
* @memberof ResourceQuotaDto
|
|
24
|
+
*/
|
|
18
25
|
'resource': ResourceMinimalDto;
|
|
19
26
|
/**
|
|
20
27
|
* The percentage of quota used by the resource.
|
|
28
|
+
* @type {number}
|
|
29
|
+
* @memberof ResourceQuotaDto
|
|
21
30
|
*/
|
|
22
31
|
'usedPercentage'?: number | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {QuotaDto}
|
|
35
|
+
* @memberof ResourceQuotaDto
|
|
36
|
+
*/
|
|
23
37
|
'used'?: QuotaDto;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {QuotaDto}
|
|
41
|
+
* @memberof ResourceQuotaDto
|
|
42
|
+
*/
|
|
24
43
|
'reserved'?: QuotaDto;
|
|
25
44
|
}
|
|
@@ -12,19 +12,32 @@
|
|
|
12
12
|
import type { ResourceTypeOptionsDto } from './resource-type-options-dto';
|
|
13
13
|
/**
|
|
14
14
|
* Represents a resource type.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ResourceTypeDto
|
|
15
17
|
*/
|
|
16
18
|
export interface ResourceTypeDto {
|
|
17
19
|
/**
|
|
18
20
|
* The unique identifier of the resource type.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof ResourceTypeDto
|
|
19
23
|
*/
|
|
20
24
|
'id'?: string;
|
|
21
25
|
/**
|
|
22
26
|
* The general type of the resource.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ResourceTypeDto
|
|
23
29
|
*/
|
|
24
30
|
'generalType': string;
|
|
25
31
|
/**
|
|
26
32
|
* The specific type of the resource.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof ResourceTypeDto
|
|
27
35
|
*/
|
|
28
36
|
'specificType': string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {ResourceTypeOptionsDto}
|
|
40
|
+
* @memberof ResourceTypeDto
|
|
41
|
+
*/
|
|
29
42
|
'options'?: ResourceTypeOptionsDto;
|
|
30
43
|
}
|
|
@@ -10,9 +10,34 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { ResourceTypeInformationDto } from './resource-type-information-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ResourceTypeInformationDtoIEnumerableResponse
|
|
17
|
+
*/
|
|
13
18
|
export interface ResourceTypeInformationDtoIEnumerableResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<ResourceTypeInformationDto>}
|
|
22
|
+
* @memberof ResourceTypeInformationDtoIEnumerableResponse
|
|
23
|
+
*/
|
|
14
24
|
'data'?: Array<ResourceTypeInformationDto> | null;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof ResourceTypeInformationDtoIEnumerableResponse
|
|
29
|
+
*/
|
|
15
30
|
'isSuccess'?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ResourceTypeInformationDtoIEnumerableResponse
|
|
35
|
+
*/
|
|
16
36
|
'statusCode'?: number | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof ResourceTypeInformationDtoIEnumerableResponse
|
|
41
|
+
*/
|
|
17
42
|
'traceId'?: string | null;
|
|
18
43
|
}
|
|
@@ -10,9 +10,34 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { ResourceTypeInformationDto } from './resource-type-information-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ResourceTypeInformationDtoResponse
|
|
17
|
+
*/
|
|
13
18
|
export interface ResourceTypeInformationDtoResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {ResourceTypeInformationDto}
|
|
22
|
+
* @memberof ResourceTypeInformationDtoResponse
|
|
23
|
+
*/
|
|
14
24
|
'data'?: ResourceTypeInformationDto;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof ResourceTypeInformationDtoResponse
|
|
29
|
+
*/
|
|
15
30
|
'isSuccess'?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ResourceTypeInformationDtoResponse
|
|
35
|
+
*/
|
|
16
36
|
'statusCode'?: number | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof ResourceTypeInformationDtoResponse
|
|
41
|
+
*/
|
|
17
42
|
'traceId'?: string | null;
|
|
18
43
|
}
|
|
@@ -14,77 +14,128 @@ import type { ResourceCreationPageDto } from './resource-creation-page-dto';
|
|
|
14
14
|
import type { ResourceTypeStatus } from './resource-type-status';
|
|
15
15
|
/**
|
|
16
16
|
* Represents information about a resource type.
|
|
17
|
+
* @export
|
|
18
|
+
* @interface ResourceTypeInformationDto
|
|
17
19
|
*/
|
|
18
20
|
export interface ResourceTypeInformationDto {
|
|
19
21
|
/**
|
|
20
22
|
* The unique identifier of the resource type.
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof ResourceTypeInformationDto
|
|
21
25
|
*/
|
|
22
26
|
'id'?: string;
|
|
23
27
|
/**
|
|
24
28
|
* The general type of the resource.
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof ResourceTypeInformationDto
|
|
25
31
|
*/
|
|
26
32
|
'generalType'?: string | null;
|
|
27
33
|
/**
|
|
28
34
|
* The specific type of the resource.
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof ResourceTypeInformationDto
|
|
29
37
|
*/
|
|
30
38
|
'specificType'?: string | null;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {ResourceTypeStatus}
|
|
42
|
+
* @memberof ResourceTypeInformationDto
|
|
43
|
+
*/
|
|
31
44
|
'status'?: ResourceTypeStatus;
|
|
32
45
|
/**
|
|
33
46
|
* Indicates if the resource type supports creation.
|
|
47
|
+
* @type {boolean}
|
|
48
|
+
* @memberof ResourceTypeInformationDto
|
|
34
49
|
*/
|
|
35
50
|
'canCreate'?: boolean;
|
|
36
51
|
/**
|
|
37
52
|
* Indicates if the resource type supports reading.
|
|
53
|
+
* @type {boolean}
|
|
54
|
+
* @memberof ResourceTypeInformationDto
|
|
38
55
|
*/
|
|
39
56
|
'canRead'?: boolean;
|
|
40
57
|
/**
|
|
41
58
|
* Indicates if the resource type supports read-only.
|
|
59
|
+
* @type {boolean}
|
|
60
|
+
* @memberof ResourceTypeInformationDto
|
|
42
61
|
*/
|
|
43
62
|
'canSetResourceReadonly'?: boolean;
|
|
44
63
|
/**
|
|
45
64
|
* Indicates if the resource type supports updating.
|
|
65
|
+
* @type {boolean}
|
|
66
|
+
* @memberof ResourceTypeInformationDto
|
|
46
67
|
*/
|
|
47
68
|
'canUpdate'?: boolean;
|
|
48
69
|
/**
|
|
49
70
|
* Indicates if the resource type supports updating (not an Object).
|
|
71
|
+
* @type {boolean}
|
|
72
|
+
* @memberof ResourceTypeInformationDto
|
|
50
73
|
*/
|
|
51
74
|
'canUpdateResource'?: boolean;
|
|
52
75
|
/**
|
|
53
76
|
* Indicates if the resource type supports deletion.
|
|
77
|
+
* @type {boolean}
|
|
78
|
+
* @memberof ResourceTypeInformationDto
|
|
54
79
|
*/
|
|
55
80
|
'canDelete'?: boolean;
|
|
56
81
|
/**
|
|
57
82
|
* Indicates if the resource type supports deletion (not an Object).
|
|
83
|
+
* @type {boolean}
|
|
84
|
+
* @memberof ResourceTypeInformationDto
|
|
58
85
|
*/
|
|
59
86
|
'canDeleteResource'?: boolean;
|
|
60
87
|
/**
|
|
61
88
|
* Indicates if the resource type supports listing.
|
|
89
|
+
* @type {boolean}
|
|
90
|
+
* @memberof ResourceTypeInformationDto
|
|
62
91
|
*/
|
|
63
92
|
'canList'?: boolean;
|
|
64
93
|
/**
|
|
65
94
|
* Indicates if the resource type supports linking.
|
|
95
|
+
* @type {boolean}
|
|
96
|
+
* @memberof ResourceTypeInformationDto
|
|
66
97
|
*/
|
|
67
98
|
'canCreateLinks'?: boolean;
|
|
68
99
|
/**
|
|
69
100
|
* Indicates whether local backup of metadata is supported.
|
|
101
|
+
* @type {boolean}
|
|
102
|
+
* @memberof ResourceTypeInformationDto
|
|
70
103
|
*/
|
|
71
104
|
'canCopyLocalMetadata'?: boolean;
|
|
72
105
|
/**
|
|
73
106
|
* Indicates if the resource type is archived.
|
|
107
|
+
* @type {boolean}
|
|
108
|
+
* @memberof ResourceTypeInformationDto
|
|
74
109
|
*/
|
|
75
110
|
'isArchived'?: boolean;
|
|
76
111
|
/**
|
|
77
112
|
* Indicates if the resource type supports quota.
|
|
113
|
+
* @type {boolean}
|
|
114
|
+
* @memberof ResourceTypeInformationDto
|
|
78
115
|
*/
|
|
79
116
|
'isQuotaAvailable'?: boolean;
|
|
80
117
|
/**
|
|
81
118
|
* Indicates if the resource type quota can be changed.
|
|
119
|
+
* @type {boolean}
|
|
120
|
+
* @memberof ResourceTypeInformationDto
|
|
82
121
|
*/
|
|
83
122
|
'isQuotaAdjustable'?: boolean;
|
|
84
123
|
/**
|
|
85
124
|
* Indicates if the resource type is enabled.
|
|
125
|
+
* @type {boolean}
|
|
126
|
+
* @memberof ResourceTypeInformationDto
|
|
86
127
|
*/
|
|
87
128
|
'isEnabled'?: boolean;
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @type {ResourceCreationPageDto}
|
|
132
|
+
* @memberof ResourceTypeInformationDto
|
|
133
|
+
*/
|
|
88
134
|
'resourceCreation'?: ResourceCreationPageDto;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @type {ResourceContentPageDto}
|
|
138
|
+
* @memberof ResourceTypeInformationDto
|
|
139
|
+
*/
|
|
89
140
|
'resourceContent'?: ResourceContentPageDto;
|
|
90
141
|
}
|
|
@@ -11,14 +11,20 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Represents a minimal Data Transfer Object (DTO) for a resource type.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ResourceTypeMinimalDto
|
|
14
16
|
*/
|
|
15
17
|
export interface ResourceTypeMinimalDto {
|
|
16
18
|
/**
|
|
17
19
|
* The unique identifier of the resource type.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ResourceTypeMinimalDto
|
|
18
22
|
*/
|
|
19
23
|
'id': string;
|
|
20
24
|
/**
|
|
21
25
|
* The specific type of the resource.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ResourceTypeMinimalDto
|
|
22
28
|
*/
|
|
23
29
|
'specificType': string;
|
|
24
30
|
}
|
|
@@ -19,18 +19,62 @@ import type { RdsS3OptionsDto } from './rds-s3-options-dto';
|
|
|
19
19
|
import type { RdsS3WormOptionsDto } from './rds-s3-worm-options-dto';
|
|
20
20
|
/**
|
|
21
21
|
* Represents the options available for different resource types.
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ResourceTypeOptionsDto
|
|
22
24
|
*/
|
|
23
25
|
export interface ResourceTypeOptionsDto {
|
|
24
26
|
/**
|
|
25
27
|
* Represents the data transfer object (DTO) for Linked Data options.
|
|
28
|
+
* @type {object}
|
|
29
|
+
* @memberof ResourceTypeOptionsDto
|
|
26
30
|
*/
|
|
27
31
|
'linkedData'?: object;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {GitLabOptionsDto}
|
|
35
|
+
* @memberof ResourceTypeOptionsDto
|
|
36
|
+
*/
|
|
28
37
|
'gitLab'?: GitLabOptionsDto;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {RdsOptionsDto}
|
|
41
|
+
* @memberof ResourceTypeOptionsDto
|
|
42
|
+
*/
|
|
29
43
|
'rds'?: RdsOptionsDto;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {RdsS3OptionsDto}
|
|
47
|
+
* @memberof ResourceTypeOptionsDto
|
|
48
|
+
*/
|
|
30
49
|
'rdsS3'?: RdsS3OptionsDto;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {RdsS3WormOptionsDto}
|
|
53
|
+
* @memberof ResourceTypeOptionsDto
|
|
54
|
+
*/
|
|
31
55
|
'rdsS3Worm'?: RdsS3WormOptionsDto;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {FileSystemStorageOptionsDto}
|
|
59
|
+
* @memberof ResourceTypeOptionsDto
|
|
60
|
+
*/
|
|
32
61
|
'fileSystemStorage'?: FileSystemStorageOptionsDto;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {DataStorageNrwWebOptionsDto}
|
|
65
|
+
* @memberof ResourceTypeOptionsDto
|
|
66
|
+
*/
|
|
33
67
|
'dataStorageNrwWeb'?: DataStorageNrwWebOptionsDto;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {DataStorageNrwS3OptionsDto}
|
|
71
|
+
* @memberof ResourceTypeOptionsDto
|
|
72
|
+
*/
|
|
34
73
|
'dataStorageNrwS3'?: DataStorageNrwS3OptionsDto;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {DataStorageNrwS3WormOptionsDto}
|
|
77
|
+
* @memberof ResourceTypeOptionsDto
|
|
78
|
+
*/
|
|
35
79
|
'dataStorageNrwS3Worm'?: DataStorageNrwS3WormOptionsDto;
|
|
36
80
|
}
|
|
@@ -18,17 +18,56 @@ import type { RdsS3ResourceTypeOptionsForManipulationDto } from './rds-s3-resour
|
|
|
18
18
|
import type { RdsS3WormResourceTypeOptionsForManipulationDto } from './rds-s3-worm-resource-type-options-for-manipulation-dto';
|
|
19
19
|
/**
|
|
20
20
|
* Represents the data transfer object (DTO) for creating options related to any resource type.
|
|
21
|
+
* @export
|
|
22
|
+
* @interface ResourceTypeOptionsForCreationDto
|
|
21
23
|
*/
|
|
22
24
|
export interface ResourceTypeOptionsForCreationDto {
|
|
23
25
|
/**
|
|
24
26
|
* Represents the data transfer object (DTO) for manipulating linked data resource type options.
|
|
27
|
+
* @type {object}
|
|
28
|
+
* @memberof ResourceTypeOptionsForCreationDto
|
|
25
29
|
*/
|
|
26
30
|
'linkedResourceTypeOptions'?: object;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {GitlabResourceTypeOptionsForCreationDto}
|
|
34
|
+
* @memberof ResourceTypeOptionsForCreationDto
|
|
35
|
+
*/
|
|
27
36
|
'gitlabResourceTypeOptions'?: GitlabResourceTypeOptionsForCreationDto;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {RdsResourceTypeOptionsForManipulationDto}
|
|
40
|
+
* @memberof ResourceTypeOptionsForCreationDto
|
|
41
|
+
*/
|
|
28
42
|
'rdsResourceTypeOptions'?: RdsResourceTypeOptionsForManipulationDto;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {RdsS3ResourceTypeOptionsForManipulationDto}
|
|
46
|
+
* @memberof ResourceTypeOptionsForCreationDto
|
|
47
|
+
*/
|
|
29
48
|
'rdsS3ResourceTypeOptions'?: RdsS3ResourceTypeOptionsForManipulationDto;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {RdsS3WormResourceTypeOptionsForManipulationDto}
|
|
52
|
+
* @memberof ResourceTypeOptionsForCreationDto
|
|
53
|
+
*/
|
|
30
54
|
'rdsS3WormResourceTypeOptions'?: RdsS3WormResourceTypeOptionsForManipulationDto;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {DataStorageNrwWebResourceTypeOptionsForManipulationDto}
|
|
58
|
+
* @memberof ResourceTypeOptionsForCreationDto
|
|
59
|
+
*/
|
|
31
60
|
'dataStorageNrwWebResourceTypeOptions'?: DataStorageNrwWebResourceTypeOptionsForManipulationDto;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {DataStorageNrwS3ResourceTypeOptionsForManipulationDto}
|
|
64
|
+
* @memberof ResourceTypeOptionsForCreationDto
|
|
65
|
+
*/
|
|
32
66
|
'dataStorageNrwS3ResourceTypeOptions'?: DataStorageNrwS3ResourceTypeOptionsForManipulationDto;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {DataStorageNrwS3WormResourceTypeOptionsForManipulationDto}
|
|
70
|
+
* @memberof ResourceTypeOptionsForCreationDto
|
|
71
|
+
*/
|
|
33
72
|
'dataStorageNrwS3WormResourceTypeOptions'?: DataStorageNrwS3WormResourceTypeOptionsForManipulationDto;
|
|
34
73
|
}
|
|
@@ -18,17 +18,56 @@ import type { RdsS3ResourceTypeOptionsForManipulationDto } from './rds-s3-resour
|
|
|
18
18
|
import type { RdsS3WormResourceTypeOptionsForManipulationDto } from './rds-s3-worm-resource-type-options-for-manipulation-dto';
|
|
19
19
|
/**
|
|
20
20
|
* Represents the data transfer object (DTO) used for updating options related to any resource type.
|
|
21
|
+
* @export
|
|
22
|
+
* @interface ResourceTypeOptionsForUpdateDto
|
|
21
23
|
*/
|
|
22
24
|
export interface ResourceTypeOptionsForUpdateDto {
|
|
23
25
|
/**
|
|
24
26
|
* Represents the data transfer object (DTO) for manipulating linked data resource type options.
|
|
27
|
+
* @type {object}
|
|
28
|
+
* @memberof ResourceTypeOptionsForUpdateDto
|
|
25
29
|
*/
|
|
26
30
|
'linkedResourceTypeOptions'?: object;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {GitlabResourceTypeOptionsForUpdateDto}
|
|
34
|
+
* @memberof ResourceTypeOptionsForUpdateDto
|
|
35
|
+
*/
|
|
27
36
|
'gitlabResourceTypeOptions'?: GitlabResourceTypeOptionsForUpdateDto;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {RdsResourceTypeOptionsForManipulationDto}
|
|
40
|
+
* @memberof ResourceTypeOptionsForUpdateDto
|
|
41
|
+
*/
|
|
28
42
|
'rdsResourceTypeOptions'?: RdsResourceTypeOptionsForManipulationDto;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {RdsS3ResourceTypeOptionsForManipulationDto}
|
|
46
|
+
* @memberof ResourceTypeOptionsForUpdateDto
|
|
47
|
+
*/
|
|
29
48
|
'rdsS3ResourceTypeOptions'?: RdsS3ResourceTypeOptionsForManipulationDto;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {RdsS3WormResourceTypeOptionsForManipulationDto}
|
|
52
|
+
* @memberof ResourceTypeOptionsForUpdateDto
|
|
53
|
+
*/
|
|
30
54
|
'rdsS3WormResourceTypeOptions'?: RdsS3WormResourceTypeOptionsForManipulationDto;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {DataStorageNrwWebResourceTypeOptionsForManipulationDto}
|
|
58
|
+
* @memberof ResourceTypeOptionsForUpdateDto
|
|
59
|
+
*/
|
|
31
60
|
'dataStorageNrwWebResourceTypeOptions'?: DataStorageNrwWebResourceTypeOptionsForManipulationDto;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {DataStorageNrwS3ResourceTypeOptionsForManipulationDto}
|
|
64
|
+
* @memberof ResourceTypeOptionsForUpdateDto
|
|
65
|
+
*/
|
|
32
66
|
'dataStorageNrwS3ResourceTypeOptions'?: DataStorageNrwS3ResourceTypeOptionsForManipulationDto;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {DataStorageNrwS3WormResourceTypeOptionsForManipulationDto}
|
|
70
|
+
* @memberof ResourceTypeOptionsForUpdateDto
|
|
71
|
+
*/
|
|
33
72
|
'dataStorageNrwS3WormResourceTypeOptions'?: DataStorageNrwS3WormResourceTypeOptionsForManipulationDto;
|
|
34
73
|
}
|
|
@@ -11,10 +11,40 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { Pagination } from './pagination';
|
|
13
13
|
import type { RoleDto } from './role-dto';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface RoleDtoPagedResponse
|
|
18
|
+
*/
|
|
14
19
|
export interface RoleDtoPagedResponse {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<RoleDto>}
|
|
23
|
+
* @memberof RoleDtoPagedResponse
|
|
24
|
+
*/
|
|
15
25
|
'data'?: Array<RoleDto> | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {boolean}
|
|
29
|
+
* @memberof RoleDtoPagedResponse
|
|
30
|
+
*/
|
|
16
31
|
'isSuccess'?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof RoleDtoPagedResponse
|
|
36
|
+
*/
|
|
17
37
|
'statusCode'?: number | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof RoleDtoPagedResponse
|
|
42
|
+
*/
|
|
18
43
|
'traceId'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Pagination}
|
|
47
|
+
* @memberof RoleDtoPagedResponse
|
|
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 { RoleDto } from './role-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RoleDtoResponse
|
|
17
|
+
*/
|
|
13
18
|
export interface RoleDtoResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {RoleDto}
|
|
22
|
+
* @memberof RoleDtoResponse
|
|
23
|
+
*/
|
|
14
24
|
'data'?: RoleDto;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof RoleDtoResponse
|
|
29
|
+
*/
|
|
15
30
|
'isSuccess'?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof RoleDtoResponse
|
|
35
|
+
*/
|
|
16
36
|
'statusCode'?: number | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof RoleDtoResponse
|
|
41
|
+
*/
|
|
17
42
|
'traceId'?: string | null;
|
|
18
43
|
}
|
|
@@ -11,18 +11,26 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Represents a Data Transfer Object (DTO) for a role.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface RoleDto
|
|
14
16
|
*/
|
|
15
17
|
export interface RoleDto {
|
|
16
18
|
/**
|
|
17
19
|
* The unique identifier of the role.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof RoleDto
|
|
18
22
|
*/
|
|
19
23
|
'id': string;
|
|
20
24
|
/**
|
|
21
25
|
* The display name of the role.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof RoleDto
|
|
22
28
|
*/
|
|
23
29
|
'displayName': string;
|
|
24
30
|
/**
|
|
25
31
|
* The description of the role.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof RoleDto
|
|
26
34
|
*/
|
|
27
35
|
'description': string;
|
|
28
36
|
}
|
|
@@ -11,10 +11,14 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Represents a Data Transfer Object (DTO) containing minimal information about a role.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface RoleMinimalDto
|
|
14
16
|
*/
|
|
15
17
|
export interface RoleMinimalDto {
|
|
16
18
|
/**
|
|
17
19
|
* The unique identifier of the role.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof RoleMinimalDto
|
|
18
22
|
*/
|
|
19
23
|
'id': string;
|
|
20
24
|
}
|
|
@@ -11,14 +11,20 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Represents a search category with a name and count of occurrences.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SearchCategory
|
|
14
16
|
*/
|
|
15
17
|
export interface SearchCategory {
|
|
16
18
|
/**
|
|
17
19
|
* The name of the search category.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SearchCategory
|
|
18
22
|
*/
|
|
19
23
|
'name'?: string;
|
|
20
24
|
/**
|
|
21
25
|
* The count of occurrences for the search category.
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof SearchCategory
|
|
22
28
|
*/
|
|
23
29
|
'count'?: number;
|
|
24
30
|
}
|
|
@@ -12,11 +12,46 @@
|
|
|
12
12
|
import type { Pagination } from './pagination';
|
|
13
13
|
import type { SearchCategory } from './search-category';
|
|
14
14
|
import type { SearchResultDto } from './search-result-dto';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface SearchResultDtoPagedSearchResponse
|
|
19
|
+
*/
|
|
15
20
|
export interface SearchResultDtoPagedSearchResponse {
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {Array<SearchResultDto>}
|
|
24
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
25
|
+
*/
|
|
16
26
|
'data'?: Array<SearchResultDto> | null;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {boolean}
|
|
30
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
31
|
+
*/
|
|
17
32
|
'isSuccess'?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {number}
|
|
36
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
37
|
+
*/
|
|
18
38
|
'statusCode'?: number | null;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
43
|
+
*/
|
|
19
44
|
'traceId'?: string | null;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {Pagination}
|
|
48
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
49
|
+
*/
|
|
20
50
|
'pagination'?: Pagination;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {Array<SearchCategory>}
|
|
54
|
+
* @memberof SearchResultDtoPagedSearchResponse
|
|
55
|
+
*/
|
|
21
56
|
'categories'?: Array<SearchCategory> | null;
|
|
22
57
|
}
|