@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,10 +12,12 @@
|
|
|
12
12
|
import type { Configuration } from '../../configuration';
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../../base';
|
|
15
|
+
import type { MessageDto } from '../../@coscine/model';
|
|
15
16
|
import type { MessageDtoPagedResponse } from '../../@coscine/model';
|
|
16
17
|
import type { MessageType } from '../../@coscine/model';
|
|
17
18
|
/**
|
|
18
19
|
* SystemStatusApi - axios parameter creator
|
|
20
|
+
* @export
|
|
19
21
|
*/
|
|
20
22
|
export declare const SystemStatusApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
21
23
|
/**
|
|
@@ -25,6 +27,13 @@ export declare const SystemStatusApiAxiosParamCreator: (configuration?: Configur
|
|
|
25
27
|
* @throws {RequiredError}
|
|
26
28
|
*/
|
|
27
29
|
apiV2SystemStatusOptions: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @summary Retrieves the NOC messages.
|
|
33
|
+
* @param {*} [options] Override http request option.
|
|
34
|
+
* @throws {RequiredError}
|
|
35
|
+
*/
|
|
36
|
+
getActiveNocMessages: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
28
37
|
/**
|
|
29
38
|
*
|
|
30
39
|
* @summary Retrieves the internal messages.
|
|
@@ -44,22 +53,17 @@ export declare const SystemStatusApiAxiosParamCreator: (configuration?: Configur
|
|
|
44
53
|
/**
|
|
45
54
|
*
|
|
46
55
|
* @summary Retrieves the NOC messages.
|
|
47
|
-
* @param {string} [startDateAfter] Will only return messages that have their start date after this date (UTC).
|
|
48
|
-
* @param {string} [startDateBefore] Will only return messages that have their start date before this date (UTC).
|
|
49
|
-
* @param {string} [endDateAfter] Will only return messages that have their end date after this date (UTC).
|
|
50
|
-
* @param {string} [endDateBefore] Will only return messages that have their end date before this date (UTC).
|
|
51
|
-
* @param {MessageType} [type] Filter messages by their type (e.g. information, warning, error).
|
|
52
|
-
* @param {string} [searchTerm] Filter messages by text contained in the messages or title.
|
|
53
56
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
54
57
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
55
58
|
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
56
59
|
* @param {*} [options] Override http request option.
|
|
57
60
|
* @throws {RequiredError}
|
|
58
61
|
*/
|
|
59
|
-
getNocMessages: (
|
|
62
|
+
getNocMessages: (pageNumber?: number, pageSize?: number, orderBy?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
60
63
|
};
|
|
61
64
|
/**
|
|
62
65
|
* SystemStatusApi - functional programming interface
|
|
66
|
+
* @export
|
|
63
67
|
*/
|
|
64
68
|
export declare const SystemStatusApiFp: (configuration?: Configuration) => {
|
|
65
69
|
/**
|
|
@@ -69,6 +73,13 @@ export declare const SystemStatusApiFp: (configuration?: Configuration) => {
|
|
|
69
73
|
* @throws {RequiredError}
|
|
70
74
|
*/
|
|
71
75
|
apiV2SystemStatusOptions(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
76
|
+
/**
|
|
77
|
+
*
|
|
78
|
+
* @summary Retrieves the NOC messages.
|
|
79
|
+
* @param {*} [options] Override http request option.
|
|
80
|
+
* @throws {RequiredError}
|
|
81
|
+
*/
|
|
82
|
+
getActiveNocMessages(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MessageDto>>>;
|
|
72
83
|
/**
|
|
73
84
|
*
|
|
74
85
|
* @summary Retrieves the internal messages.
|
|
@@ -88,22 +99,17 @@ export declare const SystemStatusApiFp: (configuration?: Configuration) => {
|
|
|
88
99
|
/**
|
|
89
100
|
*
|
|
90
101
|
* @summary Retrieves the NOC messages.
|
|
91
|
-
* @param {string} [startDateAfter] Will only return messages that have their start date after this date (UTC).
|
|
92
|
-
* @param {string} [startDateBefore] Will only return messages that have their start date before this date (UTC).
|
|
93
|
-
* @param {string} [endDateAfter] Will only return messages that have their end date after this date (UTC).
|
|
94
|
-
* @param {string} [endDateBefore] Will only return messages that have their end date before this date (UTC).
|
|
95
|
-
* @param {MessageType} [type] Filter messages by their type (e.g. information, warning, error).
|
|
96
|
-
* @param {string} [searchTerm] Filter messages by text contained in the messages or title.
|
|
97
102
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
98
103
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
99
104
|
* @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
100
105
|
* @param {*} [options] Override http request option.
|
|
101
106
|
* @throws {RequiredError}
|
|
102
107
|
*/
|
|
103
|
-
getNocMessages(
|
|
108
|
+
getNocMessages(pageNumber?: number, pageSize?: number, orderBy?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessageDtoPagedResponse>>;
|
|
104
109
|
};
|
|
105
110
|
/**
|
|
106
111
|
* SystemStatusApi - factory interface
|
|
112
|
+
* @export
|
|
107
113
|
*/
|
|
108
114
|
export declare const SystemStatusApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
109
115
|
/**
|
|
@@ -113,6 +119,13 @@ export declare const SystemStatusApiFactory: (configuration?: Configuration, bas
|
|
|
113
119
|
* @throws {RequiredError}
|
|
114
120
|
*/
|
|
115
121
|
apiV2SystemStatusOptions(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @summary Retrieves the NOC messages.
|
|
125
|
+
* @param {*} [options] Override http request option.
|
|
126
|
+
* @throws {RequiredError}
|
|
127
|
+
*/
|
|
128
|
+
getActiveNocMessages(options?: RawAxiosRequestConfig): AxiosPromise<Array<MessageDto>>;
|
|
116
129
|
/**
|
|
117
130
|
*
|
|
118
131
|
* @summary Retrieves the internal messages.
|
|
@@ -132,88 +145,95 @@ export declare const SystemStatusApiFactory: (configuration?: Configuration, bas
|
|
|
132
145
|
};
|
|
133
146
|
/**
|
|
134
147
|
* Request parameters for getInternalMessages operation in SystemStatusApi.
|
|
148
|
+
* @export
|
|
149
|
+
* @interface SystemStatusApiGetInternalMessagesRequest
|
|
135
150
|
*/
|
|
136
151
|
export interface SystemStatusApiGetInternalMessagesRequest {
|
|
137
152
|
/**
|
|
138
153
|
* Will only return messages that have their start date after this date (UTC).
|
|
154
|
+
* @type {string}
|
|
155
|
+
* @memberof SystemStatusApiGetInternalMessages
|
|
139
156
|
*/
|
|
140
157
|
readonly startDateAfter?: string;
|
|
141
158
|
/**
|
|
142
159
|
* Will only return messages that have their start date before this date (UTC).
|
|
160
|
+
* @type {string}
|
|
161
|
+
* @memberof SystemStatusApiGetInternalMessages
|
|
143
162
|
*/
|
|
144
163
|
readonly startDateBefore?: string;
|
|
145
164
|
/**
|
|
146
165
|
* Will only return messages that have their end date after this date (UTC).
|
|
166
|
+
* @type {string}
|
|
167
|
+
* @memberof SystemStatusApiGetInternalMessages
|
|
147
168
|
*/
|
|
148
169
|
readonly endDateAfter?: string;
|
|
149
170
|
/**
|
|
150
171
|
* Will only return messages that have their end date before this date (UTC).
|
|
172
|
+
* @type {string}
|
|
173
|
+
* @memberof SystemStatusApiGetInternalMessages
|
|
151
174
|
*/
|
|
152
175
|
readonly endDateBefore?: string;
|
|
153
176
|
/**
|
|
154
177
|
* Filter messages by their type (e.g. information, warning, error).
|
|
178
|
+
* @type {MessageType}
|
|
179
|
+
* @memberof SystemStatusApiGetInternalMessages
|
|
155
180
|
*/
|
|
156
181
|
readonly type?: MessageType;
|
|
157
182
|
/**
|
|
158
183
|
* Filter messages by text contained in the messages or title.
|
|
184
|
+
* @type {string}
|
|
185
|
+
* @memberof SystemStatusApiGetInternalMessages
|
|
159
186
|
*/
|
|
160
187
|
readonly searchTerm?: string;
|
|
161
188
|
/**
|
|
162
189
|
* The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
190
|
+
* @type {number}
|
|
191
|
+
* @memberof SystemStatusApiGetInternalMessages
|
|
163
192
|
*/
|
|
164
193
|
readonly pageNumber?: number;
|
|
165
194
|
/**
|
|
166
195
|
* The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
196
|
+
* @type {number}
|
|
197
|
+
* @memberof SystemStatusApiGetInternalMessages
|
|
167
198
|
*/
|
|
168
199
|
readonly pageSize?: number;
|
|
169
200
|
/**
|
|
170
201
|
* Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
202
|
+
* @type {string}
|
|
203
|
+
* @memberof SystemStatusApiGetInternalMessages
|
|
171
204
|
*/
|
|
172
205
|
readonly orderBy?: string;
|
|
173
206
|
}
|
|
174
207
|
/**
|
|
175
208
|
* Request parameters for getNocMessages operation in SystemStatusApi.
|
|
209
|
+
* @export
|
|
210
|
+
* @interface SystemStatusApiGetNocMessagesRequest
|
|
176
211
|
*/
|
|
177
212
|
export interface SystemStatusApiGetNocMessagesRequest {
|
|
178
|
-
/**
|
|
179
|
-
* Will only return messages that have their start date after this date (UTC).
|
|
180
|
-
*/
|
|
181
|
-
readonly startDateAfter?: string;
|
|
182
|
-
/**
|
|
183
|
-
* Will only return messages that have their start date before this date (UTC).
|
|
184
|
-
*/
|
|
185
|
-
readonly startDateBefore?: string;
|
|
186
|
-
/**
|
|
187
|
-
* Will only return messages that have their end date after this date (UTC).
|
|
188
|
-
*/
|
|
189
|
-
readonly endDateAfter?: string;
|
|
190
|
-
/**
|
|
191
|
-
* Will only return messages that have their end date before this date (UTC).
|
|
192
|
-
*/
|
|
193
|
-
readonly endDateBefore?: string;
|
|
194
|
-
/**
|
|
195
|
-
* Filter messages by their type (e.g. information, warning, error).
|
|
196
|
-
*/
|
|
197
|
-
readonly type?: MessageType;
|
|
198
|
-
/**
|
|
199
|
-
* Filter messages by text contained in the messages or title.
|
|
200
|
-
*/
|
|
201
|
-
readonly searchTerm?: string;
|
|
202
213
|
/**
|
|
203
214
|
* The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
215
|
+
* @type {number}
|
|
216
|
+
* @memberof SystemStatusApiGetNocMessages
|
|
204
217
|
*/
|
|
205
218
|
readonly pageNumber?: number;
|
|
206
219
|
/**
|
|
207
220
|
* The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
221
|
+
* @type {number}
|
|
222
|
+
* @memberof SystemStatusApiGetNocMessages
|
|
208
223
|
*/
|
|
209
224
|
readonly pageSize?: number;
|
|
210
225
|
/**
|
|
211
226
|
* Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
227
|
+
* @type {string}
|
|
228
|
+
* @memberof SystemStatusApiGetNocMessages
|
|
212
229
|
*/
|
|
213
230
|
readonly orderBy?: string;
|
|
214
231
|
}
|
|
215
232
|
/**
|
|
216
233
|
* SystemStatusApi - object-oriented interface
|
|
234
|
+
* @export
|
|
235
|
+
* @class SystemStatusApi
|
|
236
|
+
* @extends {BaseAPI}
|
|
217
237
|
*/
|
|
218
238
|
export declare class SystemStatusApi extends BaseAPI {
|
|
219
239
|
/**
|
|
@@ -221,14 +241,24 @@ export declare class SystemStatusApi extends BaseAPI {
|
|
|
221
241
|
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
222
242
|
* @param {*} [options] Override http request option.
|
|
223
243
|
* @throws {RequiredError}
|
|
244
|
+
* @memberof SystemStatusApi
|
|
224
245
|
*/
|
|
225
246
|
apiV2SystemStatusOptions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
247
|
+
/**
|
|
248
|
+
*
|
|
249
|
+
* @summary Retrieves the NOC messages.
|
|
250
|
+
* @param {*} [options] Override http request option.
|
|
251
|
+
* @throws {RequiredError}
|
|
252
|
+
* @memberof SystemStatusApi
|
|
253
|
+
*/
|
|
254
|
+
getActiveNocMessages(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageDto[], any>>;
|
|
226
255
|
/**
|
|
227
256
|
*
|
|
228
257
|
* @summary Retrieves the internal messages.
|
|
229
258
|
* @param {SystemStatusApiGetInternalMessagesRequest} requestParameters Request parameters.
|
|
230
259
|
* @param {*} [options] Override http request option.
|
|
231
260
|
* @throws {RequiredError}
|
|
261
|
+
* @memberof SystemStatusApi
|
|
232
262
|
*/
|
|
233
263
|
getInternalMessages(requestParameters?: SystemStatusApiGetInternalMessagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageDtoPagedResponse, any>>;
|
|
234
264
|
/**
|
|
@@ -237,6 +267,7 @@ export declare class SystemStatusApi extends BaseAPI {
|
|
|
237
267
|
* @param {SystemStatusApiGetNocMessagesRequest} requestParameters Request parameters.
|
|
238
268
|
* @param {*} [options] Override http request option.
|
|
239
269
|
* @throws {RequiredError}
|
|
270
|
+
* @memberof SystemStatusApi
|
|
240
271
|
*/
|
|
241
272
|
getNocMessages(requestParameters?: SystemStatusApiGetNocMessagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MessageDtoPagedResponse, any>>;
|
|
242
273
|
}
|
|
@@ -16,6 +16,7 @@ import type { TitleDtoIEnumerableResponse } from '../../@coscine/model';
|
|
|
16
16
|
import type { TitleDtoResponse } from '../../@coscine/model';
|
|
17
17
|
/**
|
|
18
18
|
* TitleApi - axios parameter creator
|
|
19
|
+
* @export
|
|
19
20
|
*/
|
|
20
21
|
export declare const TitleApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
21
22
|
/**
|
|
@@ -46,6 +47,7 @@ export declare const TitleApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
46
47
|
};
|
|
47
48
|
/**
|
|
48
49
|
* TitleApi - functional programming interface
|
|
50
|
+
* @export
|
|
49
51
|
*/
|
|
50
52
|
export declare const TitleApiFp: (configuration?: Configuration) => {
|
|
51
53
|
/**
|
|
@@ -76,6 +78,7 @@ export declare const TitleApiFp: (configuration?: Configuration) => {
|
|
|
76
78
|
};
|
|
77
79
|
/**
|
|
78
80
|
* TitleApi - factory interface
|
|
81
|
+
* @export
|
|
79
82
|
*/
|
|
80
83
|
export declare const TitleApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
81
84
|
/**
|
|
@@ -104,32 +107,47 @@ export declare const TitleApiFactory: (configuration?: Configuration, basePath?:
|
|
|
104
107
|
};
|
|
105
108
|
/**
|
|
106
109
|
* Request parameters for getTitle operation in TitleApi.
|
|
110
|
+
* @export
|
|
111
|
+
* @interface TitleApiGetTitleRequest
|
|
107
112
|
*/
|
|
108
113
|
export interface TitleApiGetTitleRequest {
|
|
109
114
|
/**
|
|
110
115
|
* The ID of the title.
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof TitleApiGetTitle
|
|
111
118
|
*/
|
|
112
119
|
readonly titleId: string;
|
|
113
120
|
}
|
|
114
121
|
/**
|
|
115
122
|
* Request parameters for getTitles operation in TitleApi.
|
|
123
|
+
* @export
|
|
124
|
+
* @interface TitleApiGetTitlesRequest
|
|
116
125
|
*/
|
|
117
126
|
export interface TitleApiGetTitlesRequest {
|
|
118
127
|
/**
|
|
119
128
|
* The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
129
|
+
* @type {number}
|
|
130
|
+
* @memberof TitleApiGetTitles
|
|
120
131
|
*/
|
|
121
132
|
readonly pageNumber?: number;
|
|
122
133
|
/**
|
|
123
134
|
* The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
135
|
+
* @type {number}
|
|
136
|
+
* @memberof TitleApiGetTitles
|
|
124
137
|
*/
|
|
125
138
|
readonly pageSize?: number;
|
|
126
139
|
/**
|
|
127
140
|
* Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
141
|
+
* @type {string}
|
|
142
|
+
* @memberof TitleApiGetTitles
|
|
128
143
|
*/
|
|
129
144
|
readonly orderBy?: string;
|
|
130
145
|
}
|
|
131
146
|
/**
|
|
132
147
|
* TitleApi - object-oriented interface
|
|
148
|
+
* @export
|
|
149
|
+
* @class TitleApi
|
|
150
|
+
* @extends {BaseAPI}
|
|
133
151
|
*/
|
|
134
152
|
export declare class TitleApi extends BaseAPI {
|
|
135
153
|
/**
|
|
@@ -137,6 +155,7 @@ export declare class TitleApi extends BaseAPI {
|
|
|
137
155
|
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
138
156
|
* @param {*} [options] Override http request option.
|
|
139
157
|
* @throws {RequiredError}
|
|
158
|
+
* @memberof TitleApi
|
|
140
159
|
*/
|
|
141
160
|
apiV2TitlesOptions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
142
161
|
/**
|
|
@@ -145,6 +164,7 @@ export declare class TitleApi extends BaseAPI {
|
|
|
145
164
|
* @param {TitleApiGetTitleRequest} requestParameters Request parameters.
|
|
146
165
|
* @param {*} [options] Override http request option.
|
|
147
166
|
* @throws {RequiredError}
|
|
167
|
+
* @memberof TitleApi
|
|
148
168
|
*/
|
|
149
169
|
getTitle(requestParameters: TitleApiGetTitleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TitleDtoResponse, any>>;
|
|
150
170
|
/**
|
|
@@ -153,6 +173,7 @@ export declare class TitleApi extends BaseAPI {
|
|
|
153
173
|
* @param {TitleApiGetTitlesRequest} requestParameters Request parameters.
|
|
154
174
|
* @param {*} [options] Override http request option.
|
|
155
175
|
* @throws {RequiredError}
|
|
176
|
+
* @memberof TitleApi
|
|
156
177
|
*/
|
|
157
178
|
getTitles(requestParameters?: TitleApiGetTitlesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TitleDtoIEnumerableResponse, any>>;
|
|
158
179
|
}
|
|
@@ -15,6 +15,7 @@ import { type RequestArgs, BaseAPI } from '../../base';
|
|
|
15
15
|
import type { TermsOfServiceDtoResponse } from '../../@coscine/model';
|
|
16
16
|
/**
|
|
17
17
|
* TosApi - axios parameter creator
|
|
18
|
+
* @export
|
|
18
19
|
*/
|
|
19
20
|
export declare const TosApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20
21
|
/**
|
|
@@ -34,6 +35,7 @@ export declare const TosApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
34
35
|
};
|
|
35
36
|
/**
|
|
36
37
|
* TosApi - functional programming interface
|
|
38
|
+
* @export
|
|
37
39
|
*/
|
|
38
40
|
export declare const TosApiFp: (configuration?: Configuration) => {
|
|
39
41
|
/**
|
|
@@ -53,6 +55,7 @@ export declare const TosApiFp: (configuration?: Configuration) => {
|
|
|
53
55
|
};
|
|
54
56
|
/**
|
|
55
57
|
* TosApi - factory interface
|
|
58
|
+
* @export
|
|
56
59
|
*/
|
|
57
60
|
export declare const TosApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
58
61
|
/**
|
|
@@ -72,6 +75,9 @@ export declare const TosApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
72
75
|
};
|
|
73
76
|
/**
|
|
74
77
|
* TosApi - object-oriented interface
|
|
78
|
+
* @export
|
|
79
|
+
* @class TosApi
|
|
80
|
+
* @extends {BaseAPI}
|
|
75
81
|
*/
|
|
76
82
|
export declare class TosApi extends BaseAPI {
|
|
77
83
|
/**
|
|
@@ -79,6 +85,7 @@ export declare class TosApi extends BaseAPI {
|
|
|
79
85
|
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
80
86
|
* @param {*} [options] Override http request option.
|
|
81
87
|
* @throws {RequiredError}
|
|
88
|
+
* @memberof TosApi
|
|
82
89
|
*/
|
|
83
90
|
apiV2TosOptions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
84
91
|
/**
|
|
@@ -86,6 +93,7 @@ export declare class TosApi extends BaseAPI {
|
|
|
86
93
|
* @summary Retrieves the current Terms of Service version.
|
|
87
94
|
* @param {*} [options] Override http request option.
|
|
88
95
|
* @throws {RequiredError}
|
|
96
|
+
* @memberof TosApi
|
|
89
97
|
*/
|
|
90
98
|
getTos(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TermsOfServiceDtoResponse, any>>;
|
|
91
99
|
}
|