@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
package/dist/index.js
CHANGED
|
@@ -1,39 +1,67 @@
|
|
|
1
1
|
var ct = Object.defineProperty;
|
|
2
2
|
var pt = (e, s, o) => s in e ? ct(e, s, { enumerable: !0, configurable: !0, writable: !0, value: o }) : e[s] = o;
|
|
3
|
-
var
|
|
4
|
-
class
|
|
3
|
+
var z = (e, s, o) => (pt(e, typeof s != "symbol" ? s + "" : s, o), o);
|
|
4
|
+
class T {
|
|
5
5
|
constructor(s = {}) {
|
|
6
6
|
/**
|
|
7
7
|
* parameter for apiKey security
|
|
8
8
|
* @param name security name
|
|
9
|
+
* @memberof Configuration
|
|
9
10
|
*/
|
|
10
|
-
|
|
11
|
+
z(this, "apiKey");
|
|
11
12
|
/**
|
|
12
13
|
* parameter for basic security
|
|
14
|
+
*
|
|
15
|
+
* @type {string}
|
|
16
|
+
* @memberof Configuration
|
|
13
17
|
*/
|
|
14
|
-
|
|
18
|
+
z(this, "username");
|
|
15
19
|
/**
|
|
16
20
|
* parameter for basic security
|
|
21
|
+
*
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof Configuration
|
|
17
24
|
*/
|
|
18
|
-
|
|
25
|
+
z(this, "password");
|
|
19
26
|
/**
|
|
20
27
|
* parameter for oauth2 security
|
|
21
28
|
* @param name security name
|
|
22
29
|
* @param scopes oauth2 scope
|
|
30
|
+
* @memberof Configuration
|
|
31
|
+
*/
|
|
32
|
+
z(this, "accessToken");
|
|
33
|
+
/**
|
|
34
|
+
* parameter for aws4 signature security
|
|
35
|
+
* @param {Object} AWS4Signature - AWS4 Signature security
|
|
36
|
+
* @param {string} options.region - aws region
|
|
37
|
+
* @param {string} options.service - name of the service.
|
|
38
|
+
* @param {string} credentials.accessKeyId - aws access key id
|
|
39
|
+
* @param {string} credentials.secretAccessKey - aws access key
|
|
40
|
+
* @param {string} credentials.sessionToken - aws session token
|
|
41
|
+
* @memberof Configuration
|
|
23
42
|
*/
|
|
24
|
-
|
|
43
|
+
z(this, "awsv4");
|
|
25
44
|
/**
|
|
26
45
|
* override base path
|
|
46
|
+
*
|
|
47
|
+
* @type {string}
|
|
48
|
+
* @memberof Configuration
|
|
27
49
|
*/
|
|
28
|
-
|
|
50
|
+
z(this, "basePath");
|
|
29
51
|
/**
|
|
30
52
|
* override server index
|
|
53
|
+
*
|
|
54
|
+
* @type {number}
|
|
55
|
+
* @memberof Configuration
|
|
31
56
|
*/
|
|
32
|
-
|
|
57
|
+
z(this, "serverIndex");
|
|
33
58
|
/**
|
|
34
59
|
* base options for axios calls
|
|
60
|
+
*
|
|
61
|
+
* @type {any}
|
|
62
|
+
* @memberof Configuration
|
|
35
63
|
*/
|
|
36
|
-
|
|
64
|
+
z(this, "baseOptions");
|
|
37
65
|
/**
|
|
38
66
|
* The FormData constructor that will be used to create multipart form data
|
|
39
67
|
* requests. You can inject this here so that execution environments that
|
|
@@ -41,9 +69,9 @@ class U {
|
|
|
41
69
|
*
|
|
42
70
|
* @type {new () => FormData}
|
|
43
71
|
*/
|
|
44
|
-
|
|
72
|
+
z(this, "formDataCtor");
|
|
45
73
|
var o;
|
|
46
|
-
this.apiKey = s.apiKey, this.username = s.username, this.password = s.password, this.accessToken = s.accessToken, this.basePath = s.basePath, this.serverIndex = s.serverIndex, this.baseOptions = {
|
|
74
|
+
this.apiKey = s.apiKey, this.username = s.username, this.password = s.password, this.accessToken = s.accessToken, this.awsv4 = s.awsv4, this.basePath = s.basePath, this.serverIndex = s.serverIndex, this.baseOptions = {
|
|
47
75
|
...s.baseOptions,
|
|
48
76
|
headers: {
|
|
49
77
|
...(o = s.baseOptions) == null ? void 0 : o.headers
|
|
@@ -73,25 +101,25 @@ function Me(e, s) {
|
|
|
73
101
|
const { toString: it } = Object.prototype, { getPrototypeOf: be } = Object, le = /* @__PURE__ */ ((e) => (s) => {
|
|
74
102
|
const o = it.call(s);
|
|
75
103
|
return e[o] || (e[o] = o.slice(8, -1).toLowerCase());
|
|
76
|
-
})(/* @__PURE__ */ Object.create(null)),
|
|
104
|
+
})(/* @__PURE__ */ Object.create(null)), M = (e) => (e = e.toLowerCase(), (s) => le(s) === e), ne = (e) => (s) => typeof s === e, { isArray: Z } = Array, g = ne("undefined");
|
|
77
105
|
function dt(e) {
|
|
78
|
-
return e !== null && !g(e) && e.constructor !== null && !g(e.constructor) &&
|
|
106
|
+
return e !== null && !g(e) && e.constructor !== null && !g(e.constructor) && H(e.constructor.isBuffer) && e.constructor.isBuffer(e);
|
|
79
107
|
}
|
|
80
|
-
const De =
|
|
108
|
+
const De = M("ArrayBuffer");
|
|
81
109
|
function ht(e) {
|
|
82
110
|
let s;
|
|
83
111
|
return typeof ArrayBuffer < "u" && ArrayBuffer.isView ? s = ArrayBuffer.isView(e) : s = e && e.buffer && De(e.buffer), s;
|
|
84
112
|
}
|
|
85
|
-
const Ot = ne("string"),
|
|
113
|
+
const Ot = ne("string"), H = ne("function"), ke = ne("number"), ce = (e) => e !== null && typeof e == "object", Vt = (e) => e === !0 || e === !1, re = (e) => {
|
|
86
114
|
if (le(e) !== "object")
|
|
87
115
|
return !1;
|
|
88
116
|
const s = be(e);
|
|
89
117
|
return (s === null || s === Object.prototype || Object.getPrototypeOf(s) === null) && !(Symbol.toStringTag in e) && !(Symbol.iterator in e);
|
|
90
|
-
}, ut =
|
|
118
|
+
}, ut = M("Date"), At = M("File"), Pt = M("Blob"), mt = M("FileList"), Rt = (e) => ce(e) && H(e.pipe), yt = (e) => {
|
|
91
119
|
let s;
|
|
92
|
-
return e && (typeof FormData == "function" && e instanceof FormData ||
|
|
93
|
-
s === "object" &&
|
|
94
|
-
},
|
|
120
|
+
return e && (typeof FormData == "function" && e instanceof FormData || H(e.append) && ((s = le(e)) === "formdata" || // detect form-data instance
|
|
121
|
+
s === "object" && H(e.toString) && e.toString() === "[object FormData]"));
|
|
122
|
+
}, It = M("URLSearchParams"), bt = (e) => e.trim ? e.trim() : e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
|
|
95
123
|
function ee(e, s, { allOwnKeys: o = !1 } = {}) {
|
|
96
124
|
if (e === null || typeof e > "u")
|
|
97
125
|
return;
|
|
@@ -126,7 +154,7 @@ function ue() {
|
|
|
126
154
|
return s;
|
|
127
155
|
}
|
|
128
156
|
const vt = (e, s, o, { allOwnKeys: l } = {}) => (ee(s, (t, r) => {
|
|
129
|
-
o &&
|
|
157
|
+
o && H(t) ? e[r] = Me(t, o) : e[r] = t;
|
|
130
158
|
}, { allOwnKeys: l }), e), jt = (e) => (e.charCodeAt(0) === 65279 && (e = e.slice(1)), e), St = (e, s, o, l) => {
|
|
131
159
|
e.prototype = Object.create(s.prototype, l), e.prototype.constructor = e, Object.defineProperty(e, "super", {
|
|
132
160
|
value: s.prototype
|
|
@@ -142,11 +170,11 @@ const vt = (e, s, o, { allOwnKeys: l } = {}) => (ee(s, (t, r) => {
|
|
|
142
170
|
e = o !== !1 && be(e);
|
|
143
171
|
} while (e && (!o || o(e, s)) && e !== Object.prototype);
|
|
144
172
|
return s;
|
|
145
|
-
},
|
|
173
|
+
}, Ut = (e, s, o) => {
|
|
146
174
|
e = String(e), (o === void 0 || o > e.length) && (o = e.length), o -= s.length;
|
|
147
175
|
const l = e.indexOf(s, o);
|
|
148
176
|
return l !== -1 && l === o;
|
|
149
|
-
},
|
|
177
|
+
}, Tt = (e) => {
|
|
150
178
|
if (!e)
|
|
151
179
|
return null;
|
|
152
180
|
if (Z(e))
|
|
@@ -171,23 +199,23 @@ const vt = (e, s, o, { allOwnKeys: l } = {}) => (ee(s, (t, r) => {
|
|
|
171
199
|
for (; (o = e.exec(s)) !== null; )
|
|
172
200
|
l.push(o);
|
|
173
201
|
return l;
|
|
174
|
-
}, Ct =
|
|
202
|
+
}, Ct = M("HTMLFormElement"), Lt = (e) => e.toLowerCase().replace(
|
|
175
203
|
/[-_\s]([a-z\d])(\w*)/g,
|
|
176
204
|
function(o, l, t) {
|
|
177
205
|
return l.toUpperCase() + t;
|
|
178
206
|
}
|
|
179
|
-
),
|
|
207
|
+
), Te = (({ hasOwnProperty: e }) => (s, o) => e.call(s, o))(Object.prototype), Et = M("RegExp"), _e = (e, s) => {
|
|
180
208
|
const o = Object.getOwnPropertyDescriptors(e), l = {};
|
|
181
209
|
ee(o, (t, r) => {
|
|
182
210
|
let a;
|
|
183
211
|
(a = s(t, r, e)) !== !1 && (l[r] = a || t);
|
|
184
212
|
}), Object.defineProperties(e, l);
|
|
185
|
-
},
|
|
213
|
+
}, Nt = (e) => {
|
|
186
214
|
_e(e, (s, o) => {
|
|
187
|
-
if (
|
|
215
|
+
if (H(e) && ["arguments", "caller", "callee"].indexOf(o) !== -1)
|
|
188
216
|
return !1;
|
|
189
217
|
const l = e[o];
|
|
190
|
-
if (
|
|
218
|
+
if (H(l)) {
|
|
191
219
|
if (s.enumerable = !1, "writable" in s) {
|
|
192
220
|
s.writable = !1;
|
|
193
221
|
return;
|
|
@@ -197,7 +225,7 @@ const vt = (e, s, o, { allOwnKeys: l } = {}) => (ee(s, (t, r) => {
|
|
|
197
225
|
});
|
|
198
226
|
}
|
|
199
227
|
});
|
|
200
|
-
},
|
|
228
|
+
}, Ht = (e, s) => {
|
|
201
229
|
const o = {}, l = (t) => {
|
|
202
230
|
t.forEach((r) => {
|
|
203
231
|
o[r] = !0;
|
|
@@ -217,7 +245,7 @@ const vt = (e, s, o, { allOwnKeys: l } = {}) => (ee(s, (t, r) => {
|
|
|
217
245
|
return o;
|
|
218
246
|
};
|
|
219
247
|
function Dt(e) {
|
|
220
|
-
return !!(e &&
|
|
248
|
+
return !!(e && H(e.append) && e[Symbol.toStringTag] === "FormData" && e[Symbol.iterator]);
|
|
221
249
|
}
|
|
222
250
|
const kt = (e) => {
|
|
223
251
|
const s = new Array(10), o = (l, t) => {
|
|
@@ -236,11 +264,11 @@ const kt = (e) => {
|
|
|
236
264
|
return l;
|
|
237
265
|
};
|
|
238
266
|
return o(e, 0);
|
|
239
|
-
}, Gt =
|
|
267
|
+
}, Gt = M("AsyncFunction"), $t = (e) => e && (ce(e) || H(e)) && H(e.then) && H(e.catch), j = {
|
|
240
268
|
isArray: Z,
|
|
241
269
|
isArrayBuffer: De,
|
|
242
270
|
isBuffer: dt,
|
|
243
|
-
isFormData:
|
|
271
|
+
isFormData: yt,
|
|
244
272
|
isArrayBufferView: ht,
|
|
245
273
|
isString: Ot,
|
|
246
274
|
isNumber: ke,
|
|
@@ -250,13 +278,13 @@ const kt = (e) => {
|
|
|
250
278
|
isUndefined: g,
|
|
251
279
|
isDate: ut,
|
|
252
280
|
isFile: At,
|
|
253
|
-
isBlob:
|
|
281
|
+
isBlob: Pt,
|
|
254
282
|
isRegExp: Et,
|
|
255
|
-
isFunction:
|
|
283
|
+
isFunction: H,
|
|
256
284
|
isStream: Rt,
|
|
257
|
-
isURLSearchParams:
|
|
285
|
+
isURLSearchParams: It,
|
|
258
286
|
isTypedArray: xt,
|
|
259
|
-
isFileList:
|
|
287
|
+
isFileList: mt,
|
|
260
288
|
forEach: ee,
|
|
261
289
|
merge: ue,
|
|
262
290
|
extend: vt,
|
|
@@ -265,18 +293,18 @@ const kt = (e) => {
|
|
|
265
293
|
inherits: St,
|
|
266
294
|
toFlatObject: wt,
|
|
267
295
|
kindOf: le,
|
|
268
|
-
kindOfTest:
|
|
269
|
-
endsWith:
|
|
270
|
-
toArray:
|
|
296
|
+
kindOfTest: M,
|
|
297
|
+
endsWith: Ut,
|
|
298
|
+
toArray: Tt,
|
|
271
299
|
forEachEntry: Bt,
|
|
272
300
|
matchAll: Ft,
|
|
273
301
|
isHTMLForm: Ct,
|
|
274
|
-
hasOwnProperty:
|
|
275
|
-
hasOwnProp:
|
|
302
|
+
hasOwnProperty: Te,
|
|
303
|
+
hasOwnProp: Te,
|
|
276
304
|
// an alias to avoid ESLint no-prototype-builtins detection
|
|
277
305
|
reduceDescriptors: _e,
|
|
278
|
-
freezeMethods:
|
|
279
|
-
toObjectSet:
|
|
306
|
+
freezeMethods: Nt,
|
|
307
|
+
toObjectSet: Ht,
|
|
280
308
|
toCamelCase: Lt,
|
|
281
309
|
noop: zt,
|
|
282
310
|
toFiniteNumber: Qt,
|
|
@@ -401,24 +429,24 @@ function pe(e, s, o) {
|
|
|
401
429
|
convertValue: p,
|
|
402
430
|
isVisitable: Ae
|
|
403
431
|
});
|
|
404
|
-
function
|
|
432
|
+
function I(b, S) {
|
|
405
433
|
if (!j.isUndefined(b)) {
|
|
406
434
|
if (d.indexOf(b) !== -1)
|
|
407
435
|
throw Error("Circular reference detected in " + S.join("."));
|
|
408
|
-
d.push(b), j.forEach(b, function(C,
|
|
436
|
+
d.push(b), j.forEach(b, function(C, N) {
|
|
409
437
|
(!(j.isUndefined(C) || C === null) && t.call(
|
|
410
438
|
s,
|
|
411
439
|
C,
|
|
412
|
-
j.isString(
|
|
440
|
+
j.isString(N) ? N.trim() : N,
|
|
413
441
|
S,
|
|
414
442
|
h
|
|
415
|
-
)) === !0 &&
|
|
443
|
+
)) === !0 && I(C, S ? S.concat(N) : [N]);
|
|
416
444
|
}), d.pop();
|
|
417
445
|
}
|
|
418
446
|
}
|
|
419
447
|
if (!j.isObject(e))
|
|
420
448
|
throw new TypeError("data must be an object");
|
|
421
|
-
return
|
|
449
|
+
return I(e), s;
|
|
422
450
|
}
|
|
423
451
|
function Fe(e) {
|
|
424
452
|
const s = {
|
|
@@ -535,14 +563,14 @@ self instanceof WorkerGlobalScope && typeof self.importScripts == "function", tr
|
|
|
535
563
|
hasBrowserEnv: ge,
|
|
536
564
|
hasStandardBrowserEnv: gt,
|
|
537
565
|
hasStandardBrowserWebWorkerEnv: er
|
|
538
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
566
|
+
}, Symbol.toStringTag, { value: "Module" })), Q = {
|
|
539
567
|
...tr,
|
|
540
568
|
...ft
|
|
541
569
|
};
|
|
542
570
|
function rr(e, s) {
|
|
543
|
-
return pe(e, new
|
|
571
|
+
return pe(e, new Q.classes.URLSearchParams(), Object.assign({
|
|
544
572
|
visitor: function(o, l, t, r) {
|
|
545
|
-
return
|
|
573
|
+
return Q.isNode && j.isBuffer(o) ? (this.append(l, o.toString("base64")), !1) : r.defaultVisitor.apply(this, arguments);
|
|
546
574
|
}
|
|
547
575
|
}, s));
|
|
548
576
|
}
|
|
@@ -633,8 +661,8 @@ const je = {
|
|
|
633
661
|
maxContentLength: -1,
|
|
634
662
|
maxBodyLength: -1,
|
|
635
663
|
env: {
|
|
636
|
-
FormData:
|
|
637
|
-
Blob:
|
|
664
|
+
FormData: Q.classes.FormData,
|
|
665
|
+
Blob: Q.classes.Blob
|
|
638
666
|
},
|
|
639
667
|
validateStatus: function(s) {
|
|
640
668
|
return s >= 200 && s < 300;
|
|
@@ -860,7 +888,7 @@ function hr(e, s, o) {
|
|
|
860
888
|
o
|
|
861
889
|
));
|
|
862
890
|
}
|
|
863
|
-
const Or =
|
|
891
|
+
const Or = Q.hasStandardBrowserEnv ? (
|
|
864
892
|
// Standard browser envs support document.cookie
|
|
865
893
|
{
|
|
866
894
|
write(e, s, o, l, t, r) {
|
|
@@ -896,7 +924,7 @@ function ur(e, s) {
|
|
|
896
924
|
function rt(e, s) {
|
|
897
925
|
return e && !Vr(s) ? ur(e, s) : s;
|
|
898
926
|
}
|
|
899
|
-
const Ar =
|
|
927
|
+
const Ar = Q.hasStandardBrowserEnv ? (
|
|
900
928
|
// Standard browser envs have full support of the APIs needed to test
|
|
901
929
|
// whether the request URL is of the same origin as current location.
|
|
902
930
|
function() {
|
|
@@ -928,11 +956,11 @@ const Ar = z.hasStandardBrowserEnv ? (
|
|
|
928
956
|
};
|
|
929
957
|
}()
|
|
930
958
|
);
|
|
931
|
-
function
|
|
959
|
+
function Pr(e) {
|
|
932
960
|
const s = /^([-+\w]{1,25})(:?\/\/|:)/.exec(e);
|
|
933
961
|
return s && s[1] || "";
|
|
934
962
|
}
|
|
935
|
-
function
|
|
963
|
+
function mr(e, s) {
|
|
936
964
|
e = e || 10;
|
|
937
965
|
const o = new Array(e), l = new Array(e);
|
|
938
966
|
let t = 0, r = 0, a;
|
|
@@ -944,13 +972,13 @@ function Pr(e, s) {
|
|
|
944
972
|
h += o[d++], d = d % e;
|
|
945
973
|
if (t = (t + 1) % e, t === r && (r = (r + 1) % e), p - a < s)
|
|
946
974
|
return;
|
|
947
|
-
const
|
|
948
|
-
return
|
|
975
|
+
const I = i && p - i;
|
|
976
|
+
return I ? Math.round(h * 1e3 / I) : void 0;
|
|
949
977
|
};
|
|
950
978
|
}
|
|
951
979
|
function Ee(e, s) {
|
|
952
980
|
let o = 0;
|
|
953
|
-
const l =
|
|
981
|
+
const l = mr(50, 250);
|
|
954
982
|
return (t) => {
|
|
955
983
|
const r = t.loaded, a = t.lengthComputable ? t.total : void 0, n = r - o, c = l(n), p = r <= a;
|
|
956
984
|
o = r;
|
|
@@ -966,7 +994,7 @@ function Ee(e, s) {
|
|
|
966
994
|
i[s ? "download" : "upload"] = !0, e(i);
|
|
967
995
|
};
|
|
968
996
|
}
|
|
969
|
-
const Rr = typeof XMLHttpRequest < "u",
|
|
997
|
+
const Rr = typeof XMLHttpRequest < "u", yr = Rr && function(e) {
|
|
970
998
|
return new Promise(function(o, l) {
|
|
971
999
|
let t = e.data;
|
|
972
1000
|
const r = D.from(e.headers).normalize();
|
|
@@ -976,7 +1004,7 @@ const Rr = typeof XMLHttpRequest < "u", Ir = Rr && function(e) {
|
|
|
976
1004
|
}
|
|
977
1005
|
let i;
|
|
978
1006
|
if (j.isFormData(t)) {
|
|
979
|
-
if (
|
|
1007
|
+
if (Q.hasStandardBrowserEnv || Q.hasStandardBrowserWebWorkerEnv)
|
|
980
1008
|
r.setContentType(!1);
|
|
981
1009
|
else if ((i = r.getContentType()) !== !1) {
|
|
982
1010
|
const [S, ...w] = i ? i.split(";").map((C) => C.trim()).filter(Boolean) : [];
|
|
@@ -990,7 +1018,7 @@ const Rr = typeof XMLHttpRequest < "u", Ir = Rr && function(e) {
|
|
|
990
1018
|
}
|
|
991
1019
|
const h = rt(e.baseURL, e.url);
|
|
992
1020
|
d.open(e.method.toUpperCase(), Ze(h, e.params, e.paramsSerializer), !0), d.timeout = e.timeout;
|
|
993
|
-
function
|
|
1021
|
+
function I() {
|
|
994
1022
|
if (!d)
|
|
995
1023
|
return;
|
|
996
1024
|
const S = D.from(
|
|
@@ -1009,8 +1037,8 @@ const Rr = typeof XMLHttpRequest < "u", Ir = Rr && function(e) {
|
|
|
1009
1037
|
l(W), p();
|
|
1010
1038
|
}, C), d = null;
|
|
1011
1039
|
}
|
|
1012
|
-
if ("onloadend" in d ? d.onloadend =
|
|
1013
|
-
!d || d.readyState !== 4 || d.status === 0 && !(d.responseURL && d.responseURL.indexOf("file:") === 0) || setTimeout(
|
|
1040
|
+
if ("onloadend" in d ? d.onloadend = I : d.onreadystatechange = function() {
|
|
1041
|
+
!d || d.readyState !== 4 || d.status === 0 && !(d.responseURL && d.responseURL.indexOf("file:") === 0) || setTimeout(I);
|
|
1014
1042
|
}, d.onabort = function() {
|
|
1015
1043
|
d && (l(new F("Request aborted", F.ECONNABORTED, e, d)), d = null);
|
|
1016
1044
|
}, d.onerror = function() {
|
|
@@ -1024,7 +1052,7 @@ const Rr = typeof XMLHttpRequest < "u", Ir = Rr && function(e) {
|
|
|
1024
1052
|
e,
|
|
1025
1053
|
d
|
|
1026
1054
|
)), d = null;
|
|
1027
|
-
},
|
|
1055
|
+
}, Q.hasStandardBrowserEnv && (n && j.isFunction(n) && (n = n(e)), n || n !== !1 && Ar(h))) {
|
|
1028
1056
|
const S = e.xsrfHeaderName && e.xsrfCookieName && Or.read(e.xsrfCookieName);
|
|
1029
1057
|
S && r.set(e.xsrfHeaderName, S);
|
|
1030
1058
|
}
|
|
@@ -1033,18 +1061,18 @@ const Rr = typeof XMLHttpRequest < "u", Ir = Rr && function(e) {
|
|
|
1033
1061
|
}), j.isUndefined(e.withCredentials) || (d.withCredentials = !!e.withCredentials), a && a !== "json" && (d.responseType = e.responseType), typeof e.onDownloadProgress == "function" && d.addEventListener("progress", Ee(e.onDownloadProgress, !0)), typeof e.onUploadProgress == "function" && d.upload && d.upload.addEventListener("progress", Ee(e.onUploadProgress)), (e.cancelToken || e.signal) && (c = (S) => {
|
|
1034
1062
|
d && (l(!S || S.type ? new te(null, e, d) : S), d.abort(), d = null);
|
|
1035
1063
|
}, e.cancelToken && e.cancelToken.subscribe(c), e.signal && (e.signal.aborted ? c() : e.signal.addEventListener("abort", c)));
|
|
1036
|
-
const b =
|
|
1037
|
-
if (b &&
|
|
1064
|
+
const b = Pr(h);
|
|
1065
|
+
if (b && Q.protocols.indexOf(b) === -1) {
|
|
1038
1066
|
l(new F("Unsupported protocol " + b + ":", F.ERR_BAD_REQUEST, e));
|
|
1039
1067
|
return;
|
|
1040
1068
|
}
|
|
1041
1069
|
d.send(t || null);
|
|
1042
1070
|
});
|
|
1043
|
-
},
|
|
1071
|
+
}, Pe = {
|
|
1044
1072
|
http: qt,
|
|
1045
|
-
xhr:
|
|
1073
|
+
xhr: yr
|
|
1046
1074
|
};
|
|
1047
|
-
j.forEach(
|
|
1075
|
+
j.forEach(Pe, (e, s) => {
|
|
1048
1076
|
if (e) {
|
|
1049
1077
|
try {
|
|
1050
1078
|
Object.defineProperty(e, "name", { value: s });
|
|
@@ -1053,7 +1081,7 @@ j.forEach(me, (e, s) => {
|
|
|
1053
1081
|
Object.defineProperty(e, "adapterName", { value: s });
|
|
1054
1082
|
}
|
|
1055
1083
|
});
|
|
1056
|
-
const
|
|
1084
|
+
const Ne = (e) => `- ${e}`, Ir = (e) => j.isFunction(e) || e === null || e === !1, at = {
|
|
1057
1085
|
getAdapter: (e) => {
|
|
1058
1086
|
e = j.isArray(e) ? e : [e];
|
|
1059
1087
|
const { length: s } = e;
|
|
@@ -1062,7 +1090,7 @@ const He = (e) => `- ${e}`, yr = (e) => j.isFunction(e) || e === null || e === !
|
|
|
1062
1090
|
for (let r = 0; r < s; r++) {
|
|
1063
1091
|
o = e[r];
|
|
1064
1092
|
let a;
|
|
1065
|
-
if (l = o, !
|
|
1093
|
+
if (l = o, !Ir(o) && (l = Pe[(a = String(o)).toLowerCase()], l === void 0))
|
|
1066
1094
|
throw new F(`Unknown adapter '${a}'`);
|
|
1067
1095
|
if (l)
|
|
1068
1096
|
break;
|
|
@@ -1073,8 +1101,8 @@ const He = (e) => `- ${e}`, yr = (e) => j.isFunction(e) || e === null || e === !
|
|
|
1073
1101
|
([n, c]) => `adapter ${n} ` + (c === !1 ? "is not supported by the environment" : "is not available in the build")
|
|
1074
1102
|
);
|
|
1075
1103
|
let a = s ? r.length > 1 ? `since :
|
|
1076
|
-
` + r.map(
|
|
1077
|
-
`) : " " +
|
|
1104
|
+
` + r.map(Ne).join(`
|
|
1105
|
+
`) : " " + Ne(r[0]) : "as no adapter specified";
|
|
1078
1106
|
throw new F(
|
|
1079
1107
|
"There is no suitable adapter to dispatch the request " + a,
|
|
1080
1108
|
"ERR_NOT_SUPPORT"
|
|
@@ -1082,13 +1110,13 @@ const He = (e) => `- ${e}`, yr = (e) => j.isFunction(e) || e === null || e === !
|
|
|
1082
1110
|
}
|
|
1083
1111
|
return l;
|
|
1084
1112
|
},
|
|
1085
|
-
adapters:
|
|
1113
|
+
adapters: Pe
|
|
1086
1114
|
};
|
|
1087
1115
|
function Ve(e) {
|
|
1088
1116
|
if (e.cancelToken && e.cancelToken.throwIfRequested(), e.signal && e.signal.aborted)
|
|
1089
1117
|
throw new te(null, e);
|
|
1090
1118
|
}
|
|
1091
|
-
function
|
|
1119
|
+
function He(e) {
|
|
1092
1120
|
return Ve(e), e.headers = D.from(e.headers), e.data = Oe.call(
|
|
1093
1121
|
e,
|
|
1094
1122
|
e.transformRequest
|
|
@@ -1215,10 +1243,10 @@ function br(e, s, o) {
|
|
|
1215
1243
|
throw new F("Unknown option " + r, F.ERR_BAD_OPTION);
|
|
1216
1244
|
}
|
|
1217
1245
|
}
|
|
1218
|
-
const
|
|
1246
|
+
const me = {
|
|
1219
1247
|
assertOptions: br,
|
|
1220
1248
|
validators: we
|
|
1221
|
-
}, X =
|
|
1249
|
+
}, X = me.validators;
|
|
1222
1250
|
class oe {
|
|
1223
1251
|
constructor(s) {
|
|
1224
1252
|
this.defaults = s, this.interceptors = {
|
|
@@ -1237,13 +1265,13 @@ class oe {
|
|
|
1237
1265
|
request(s, o) {
|
|
1238
1266
|
typeof s == "string" ? (o = o || {}, o.url = s) : o = s || {}, o = Y(this.defaults, o);
|
|
1239
1267
|
const { transitional: l, paramsSerializer: t, headers: r } = o;
|
|
1240
|
-
l !== void 0 &&
|
|
1268
|
+
l !== void 0 && me.assertOptions(l, {
|
|
1241
1269
|
silentJSONParsing: X.transitional(X.boolean),
|
|
1242
1270
|
forcedJSONParsing: X.transitional(X.boolean),
|
|
1243
1271
|
clarifyTimeoutError: X.transitional(X.boolean)
|
|
1244
1272
|
}, !1), t != null && (j.isFunction(t) ? o.paramsSerializer = {
|
|
1245
1273
|
serialize: t
|
|
1246
|
-
} :
|
|
1274
|
+
} : me.assertOptions(t, {
|
|
1247
1275
|
encode: X.function,
|
|
1248
1276
|
serialize: X.function
|
|
1249
1277
|
}, !0)), o.method = (o.method || this.defaults.method || "get").toLowerCase();
|
|
@@ -1268,24 +1296,24 @@ class oe {
|
|
|
1268
1296
|
});
|
|
1269
1297
|
let i, d = 0, h;
|
|
1270
1298
|
if (!c) {
|
|
1271
|
-
const b = [
|
|
1299
|
+
const b = [He.bind(this), void 0];
|
|
1272
1300
|
for (b.unshift.apply(b, n), b.push.apply(b, p), h = b.length, i = Promise.resolve(o); d < h; )
|
|
1273
1301
|
i = i.then(b[d++], b[d++]);
|
|
1274
1302
|
return i;
|
|
1275
1303
|
}
|
|
1276
1304
|
h = n.length;
|
|
1277
|
-
let
|
|
1305
|
+
let I = o;
|
|
1278
1306
|
for (d = 0; d < h; ) {
|
|
1279
1307
|
const b = n[d++], S = n[d++];
|
|
1280
1308
|
try {
|
|
1281
|
-
|
|
1309
|
+
I = b(I);
|
|
1282
1310
|
} catch (w) {
|
|
1283
1311
|
S.call(this, w);
|
|
1284
1312
|
break;
|
|
1285
1313
|
}
|
|
1286
1314
|
}
|
|
1287
1315
|
try {
|
|
1288
|
-
i =
|
|
1316
|
+
i = He.call(this, I);
|
|
1289
1317
|
} catch (b) {
|
|
1290
1318
|
return Promise.reject(b);
|
|
1291
1319
|
}
|
|
@@ -1324,7 +1352,7 @@ j.forEach(["post", "put", "patch"], function(s) {
|
|
|
1324
1352
|
oe.prototype[s] = o(), oe.prototype[s + "Form"] = o(!0);
|
|
1325
1353
|
});
|
|
1326
1354
|
const se = oe;
|
|
1327
|
-
class
|
|
1355
|
+
class Ue {
|
|
1328
1356
|
constructor(s) {
|
|
1329
1357
|
if (typeof s != "function")
|
|
1330
1358
|
throw new TypeError("executor must be a function.");
|
|
@@ -1385,14 +1413,14 @@ class Te {
|
|
|
1385
1413
|
static source() {
|
|
1386
1414
|
let s;
|
|
1387
1415
|
return {
|
|
1388
|
-
token: new
|
|
1416
|
+
token: new Ue(function(t) {
|
|
1389
1417
|
s = t;
|
|
1390
1418
|
}),
|
|
1391
1419
|
cancel: s
|
|
1392
1420
|
};
|
|
1393
1421
|
}
|
|
1394
1422
|
}
|
|
1395
|
-
const vr =
|
|
1423
|
+
const vr = Ue;
|
|
1396
1424
|
function jr(e) {
|
|
1397
1425
|
return function(o) {
|
|
1398
1426
|
return e.apply(null, o);
|
|
@@ -1496,40 +1524,40 @@ E.formToJSON = (e) => et(j.isHTMLForm(e) ? new FormData(e) : e);
|
|
|
1496
1524
|
E.getAdapter = at.getAdapter;
|
|
1497
1525
|
E.HttpStatusCode = wr;
|
|
1498
1526
|
E.default = E;
|
|
1499
|
-
const O = E, V = "https://coscine-
|
|
1500
|
-
class
|
|
1527
|
+
const O = E, V = "https://coscine-westerhoff.web.vulcanus.otc.coscine.dev/coscine".replace(/\/+$/, "");
|
|
1528
|
+
class Ur extends Error {
|
|
1501
1529
|
constructor(s, o) {
|
|
1502
1530
|
super(o), this.field = s, this.name = "RequiredError";
|
|
1503
1531
|
}
|
|
1504
1532
|
}
|
|
1505
1533
|
const u = {}, A = "https://example.com", v = function(e, s, o) {
|
|
1506
1534
|
if (o == null)
|
|
1507
|
-
throw new
|
|
1508
|
-
},
|
|
1535
|
+
throw new Ur(s, `Required parameter ${s} was null or undefined when calling ${e}.`);
|
|
1536
|
+
}, P = async function(e, s, o) {
|
|
1509
1537
|
if (o && o.apiKey) {
|
|
1510
1538
|
const l = typeof o.apiKey == "function" ? await o.apiKey(s) : await o.apiKey;
|
|
1511
1539
|
e[s] = l;
|
|
1512
1540
|
}
|
|
1513
1541
|
};
|
|
1514
|
-
function
|
|
1515
|
-
s != null && (typeof s == "object" ? Array.isArray(s) ? s.forEach((l) =>
|
|
1516
|
-
(l) =>
|
|
1542
|
+
function ye(e, s, o = "") {
|
|
1543
|
+
s != null && (typeof s == "object" ? Array.isArray(s) ? s.forEach((l) => ye(e, l, o)) : Object.keys(s).forEach(
|
|
1544
|
+
(l) => ye(e, s[l], `${o}${o !== "" ? "." : ""}${l}`)
|
|
1517
1545
|
) : e.has(o) ? e.append(o, s) : e.set(o, s));
|
|
1518
1546
|
}
|
|
1519
|
-
const
|
|
1547
|
+
const m = function(e, ...s) {
|
|
1520
1548
|
const o = new URLSearchParams(e.search);
|
|
1521
|
-
|
|
1549
|
+
ye(o, s), e.search = o.toString();
|
|
1522
1550
|
}, L = function(e, s, o) {
|
|
1523
1551
|
const l = typeof e != "string";
|
|
1524
1552
|
return (l && o && o.isJsonMime ? o.isJsonMime(s.headers["Content-Type"]) : l) ? JSON.stringify(e !== void 0 ? e : {}) : e || "";
|
|
1525
1553
|
}, R = function(e) {
|
|
1526
1554
|
return e.pathname + e.search + e.hash;
|
|
1527
|
-
},
|
|
1555
|
+
}, y = function(e, s, o, l) {
|
|
1528
1556
|
return (t = s, r = o) => {
|
|
1529
1557
|
const a = { ...e.options, url: (t.defaults.baseURL ? "" : (l == null ? void 0 : l.basePath) ?? r) + e.url };
|
|
1530
1558
|
return t.request(a);
|
|
1531
1559
|
};
|
|
1532
|
-
},
|
|
1560
|
+
}, Tr = function(e) {
|
|
1533
1561
|
return {
|
|
1534
1562
|
/**
|
|
1535
1563
|
*
|
|
@@ -1542,33 +1570,54 @@ const P = function(e, ...s) {
|
|
|
1542
1570
|
let t;
|
|
1543
1571
|
e && (t = e.baseOptions);
|
|
1544
1572
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
1545
|
-
await
|
|
1573
|
+
await P(a, "Authorization", e), m(l, n);
|
|
1546
1574
|
let c = t && t.headers ? t.headers : {};
|
|
1547
1575
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
1548
1576
|
url: R(l),
|
|
1549
1577
|
options: r
|
|
1550
1578
|
};
|
|
1551
1579
|
},
|
|
1580
|
+
/**
|
|
1581
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
1582
|
+
* @summary Deletes the given user.
|
|
1583
|
+
* @param {string} userId The id of the user.
|
|
1584
|
+
* @param {*} [options] Override http request option.
|
|
1585
|
+
* @throws {RequiredError}
|
|
1586
|
+
*/
|
|
1587
|
+
apiV2AdminUsersUserIdDelete: async (s, o = {}) => {
|
|
1588
|
+
v("apiV2AdminUsersUserIdDelete", "userId", s);
|
|
1589
|
+
const l = "/api/v2/admin/users/{userId}".replace("{userId}", encodeURIComponent(String(s))), t = new URL(l, A);
|
|
1590
|
+
let r;
|
|
1591
|
+
e && (r = e.baseOptions);
|
|
1592
|
+
const a = { method: "DELETE", ...r, ...o }, n = {}, c = {};
|
|
1593
|
+
await P(n, "Authorization", e), m(t, c);
|
|
1594
|
+
let p = r && r.headers ? r.headers : {};
|
|
1595
|
+
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
1596
|
+
url: R(t),
|
|
1597
|
+
options: a
|
|
1598
|
+
};
|
|
1599
|
+
},
|
|
1552
1600
|
/**
|
|
1553
1601
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
1554
1602
|
* @summary Creates a new datasource for a specified resource and type.
|
|
1555
1603
|
* @param {string} resourceId The unique identifier of the resource.
|
|
1556
1604
|
* @param {string} typeId The unique identifier of the datasource type.
|
|
1557
1605
|
* @param {number} [quota] The allocated quota for the datasource.
|
|
1606
|
+
* @param {DsNrwReplicationGroup} [dsNrwReplicationGroup] The optional replication grouo for the datasource.
|
|
1558
1607
|
* @param {*} [options] Override http request option.
|
|
1559
1608
|
* @throws {RequiredError}
|
|
1560
1609
|
*/
|
|
1561
|
-
createDatasource: async (s, o, l, t = {}) => {
|
|
1610
|
+
createDatasource: async (s, o, l, t, r = {}) => {
|
|
1562
1611
|
v("createDatasource", "resourceId", s), v("createDatasource", "typeId", o);
|
|
1563
|
-
const
|
|
1564
|
-
let
|
|
1565
|
-
e && (
|
|
1566
|
-
const
|
|
1567
|
-
await
|
|
1568
|
-
let
|
|
1569
|
-
return
|
|
1570
|
-
url: R(
|
|
1571
|
-
options:
|
|
1612
|
+
const a = "/api/v2/admin/resource/{resourceId}/type/{typeId}".replace("{resourceId}", encodeURIComponent(String(s))).replace("{typeId}", encodeURIComponent(String(o))), n = new URL(a, A);
|
|
1613
|
+
let c;
|
|
1614
|
+
e && (c = e.baseOptions);
|
|
1615
|
+
const p = { method: "POST", ...c, ...r }, i = {}, d = {};
|
|
1616
|
+
await P(i, "Authorization", e), l !== void 0 && (d.quota = l), t !== void 0 && (d.dsNrwReplicationGroup = t), m(n, d);
|
|
1617
|
+
let h = c && c.headers ? c.headers : {};
|
|
1618
|
+
return p.headers = { ...i, ...h, ...r.headers }, {
|
|
1619
|
+
url: R(n),
|
|
1620
|
+
options: p
|
|
1572
1621
|
};
|
|
1573
1622
|
},
|
|
1574
1623
|
/**
|
|
@@ -1588,11 +1637,11 @@ const P = function(e, ...s) {
|
|
|
1588
1637
|
*/
|
|
1589
1638
|
getAllActivityLogs: async (s, o, l, t, r, a, n, c, p, i = {}) => {
|
|
1590
1639
|
const d = "/api/v2/admin/activity-logs", h = new URL(d, A);
|
|
1591
|
-
let
|
|
1592
|
-
e && (
|
|
1593
|
-
const b = { method: "GET", ...
|
|
1594
|
-
await
|
|
1595
|
-
let C =
|
|
1640
|
+
let I;
|
|
1641
|
+
e && (I = e.baseOptions);
|
|
1642
|
+
const b = { method: "GET", ...I, ...i }, S = {}, w = {};
|
|
1643
|
+
await P(S, "Authorization", e), s !== void 0 && (w.ActivityTimestampBefore = s instanceof Date ? s.toISOString() : s), o !== void 0 && (w.ActivityTimestampAfter = o instanceof Date ? o.toISOString() : o), l !== void 0 && (w.Guid = l), t !== void 0 && (w.UserId = t), r !== void 0 && (w.RegularExpression = r), a !== void 0 && (w.HttpMethod = a), n !== void 0 && (w.PageNumber = n), c !== void 0 && (w.PageSize = c), p !== void 0 && (w.OrderBy = p), m(h, w);
|
|
1644
|
+
let C = I && I.headers ? I.headers : {};
|
|
1596
1645
|
return b.headers = { ...S, ...C, ...i.headers }, {
|
|
1597
1646
|
url: R(h),
|
|
1598
1647
|
options: b
|
|
@@ -1615,10 +1664,10 @@ const P = function(e, ...s) {
|
|
|
1615
1664
|
const p = "/api/v2/admin/projects", i = new URL(p, A);
|
|
1616
1665
|
let d;
|
|
1617
1666
|
e && (d = e.baseOptions);
|
|
1618
|
-
const h = { method: "GET", ...d, ...c },
|
|
1619
|
-
await
|
|
1667
|
+
const h = { method: "GET", ...d, ...c }, I = {}, b = {};
|
|
1668
|
+
await P(I, "Authorization", e), s !== void 0 && (b.TopLevel = s), o !== void 0 && (b.IncludeDeleted = o), l !== void 0 && (b.IncludeQuotas = l), t !== void 0 && (b.IncludePublicationRequests = t), r !== void 0 && (b.PageSize = r), a !== void 0 && (b.PageNumber = a), n !== void 0 && (b.OrderBy = n), m(i, b);
|
|
1620
1669
|
let S = d && d.headers ? d.headers : {};
|
|
1621
|
-
return h.headers = { ...
|
|
1670
|
+
return h.headers = { ...I, ...S, ...c.headers }, {
|
|
1622
1671
|
url: R(i),
|
|
1623
1672
|
options: h
|
|
1624
1673
|
};
|
|
@@ -1639,9 +1688,9 @@ const P = function(e, ...s) {
|
|
|
1639
1688
|
let p;
|
|
1640
1689
|
e && (p = e.baseOptions);
|
|
1641
1690
|
const i = { method: "GET", ...p, ...a }, d = {}, h = {};
|
|
1642
|
-
await
|
|
1643
|
-
let
|
|
1644
|
-
return i.headers = { ...d, ...
|
|
1691
|
+
await P(d, "Authorization", e), s !== void 0 && (h.IncludeDeleted = s), o !== void 0 && (h.IncludeQuotas = o), l !== void 0 && (h.PageSize = l), t !== void 0 && (h.PageNumber = t), r !== void 0 && (h.OrderBy = r), m(c, h);
|
|
1692
|
+
let I = p && p.headers ? p.headers : {};
|
|
1693
|
+
return i.headers = { ...d, ...I, ...a.headers }, {
|
|
1645
1694
|
url: R(c),
|
|
1646
1695
|
options: i
|
|
1647
1696
|
};
|
|
@@ -1662,9 +1711,9 @@ const P = function(e, ...s) {
|
|
|
1662
1711
|
let p;
|
|
1663
1712
|
e && (p = e.baseOptions);
|
|
1664
1713
|
const i = { method: "GET", ...p, ...a }, d = {}, h = {};
|
|
1665
|
-
await
|
|
1666
|
-
let
|
|
1667
|
-
return i.headers = { ...d, ...
|
|
1714
|
+
await P(d, "Authorization", e), s !== void 0 && (h.TosAccepted = s), o !== void 0 && (h.PageSize = o), l !== void 0 && (h.DataProcessingConsentGranted = l), t !== void 0 && (h.PageNumber = t), r !== void 0 && (h.OrderBy = r), m(c, h);
|
|
1715
|
+
let I = p && p.headers ? p.headers : {};
|
|
1716
|
+
return i.headers = { ...d, ...I, ...a.headers }, {
|
|
1668
1717
|
url: R(c),
|
|
1669
1718
|
options: i
|
|
1670
1719
|
};
|
|
@@ -1683,7 +1732,7 @@ const P = function(e, ...s) {
|
|
|
1683
1732
|
let n;
|
|
1684
1733
|
e && (n = e.baseOptions);
|
|
1685
1734
|
const c = { method: "GET", ...n, ...t }, p = {}, i = {};
|
|
1686
|
-
await
|
|
1735
|
+
await P(p, "Authorization", e), s !== void 0 && (i.PageNumber = s), o !== void 0 && (i.PageSize = o), l !== void 0 && (i.OrderBy = l), m(a, i);
|
|
1687
1736
|
let d = n && n.headers ? n.headers : {};
|
|
1688
1737
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
1689
1738
|
url: R(a),
|
|
@@ -1704,7 +1753,7 @@ const P = function(e, ...s) {
|
|
|
1704
1753
|
let a;
|
|
1705
1754
|
e && (a = e.baseOptions);
|
|
1706
1755
|
const n = { method: "GET", ...a, ...l }, c = {}, p = {};
|
|
1707
|
-
await
|
|
1756
|
+
await P(c, "Authorization", e), o !== void 0 && (p.Format = o), m(r, p);
|
|
1708
1757
|
let i = a && a.headers ? a.headers : {};
|
|
1709
1758
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
1710
1759
|
url: R(r),
|
|
@@ -1725,7 +1774,7 @@ const P = function(e, ...s) {
|
|
|
1725
1774
|
let a;
|
|
1726
1775
|
e && (a = e.baseOptions);
|
|
1727
1776
|
const n = { method: "PATCH", ...a, ...l }, c = {}, p = {};
|
|
1728
|
-
await
|
|
1777
|
+
await P(c, "Authorization", e), c["Content-Type"] = "application/json", m(r, p);
|
|
1729
1778
|
let i = a && a.headers ? a.headers : {};
|
|
1730
1779
|
return n.headers = { ...c, ...i, ...l.headers }, n.data = L(o, n, e), {
|
|
1731
1780
|
url: R(r),
|
|
@@ -1746,7 +1795,7 @@ const P = function(e, ...s) {
|
|
|
1746
1795
|
let a;
|
|
1747
1796
|
e && (a = e.baseOptions);
|
|
1748
1797
|
const n = { method: "PUT", ...a, ...l }, c = {}, p = {};
|
|
1749
|
-
await
|
|
1798
|
+
await P(c, "Authorization", e), c["Content-Type"] = "application/json", m(r, p);
|
|
1750
1799
|
let i = a && a.headers ? a.headers : {};
|
|
1751
1800
|
return n.headers = { ...c, ...i, ...l.headers }, n.data = L(o, n, e), {
|
|
1752
1801
|
url: R(r),
|
|
@@ -1768,7 +1817,7 @@ const P = function(e, ...s) {
|
|
|
1768
1817
|
let n;
|
|
1769
1818
|
e && (n = e.baseOptions);
|
|
1770
1819
|
const c = { method: "PUT", ...n, ...t }, p = {}, i = {};
|
|
1771
|
-
await
|
|
1820
|
+
await P(p, "Authorization", e), l !== void 0 && (i.optionId = l), m(a, i);
|
|
1772
1821
|
let d = n && n.headers ? n.headers : {};
|
|
1773
1822
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
1774
1823
|
url: R(a),
|
|
@@ -1777,7 +1826,7 @@ const P = function(e, ...s) {
|
|
|
1777
1826
|
}
|
|
1778
1827
|
};
|
|
1779
1828
|
}, xr = function(e) {
|
|
1780
|
-
const s =
|
|
1829
|
+
const s = Tr(e);
|
|
1781
1830
|
return {
|
|
1782
1831
|
/**
|
|
1783
1832
|
*
|
|
@@ -1788,7 +1837,19 @@ const P = function(e, ...s) {
|
|
|
1788
1837
|
async apiV2AdminOptions(o) {
|
|
1789
1838
|
var a, n;
|
|
1790
1839
|
const l = await s.apiV2AdminOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["AdminApi.apiV2AdminOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
1791
|
-
return (c, p) =>
|
|
1840
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
1841
|
+
},
|
|
1842
|
+
/**
|
|
1843
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
1844
|
+
* @summary Deletes the given user.
|
|
1845
|
+
* @param {string} userId The id of the user.
|
|
1846
|
+
* @param {*} [options] Override http request option.
|
|
1847
|
+
* @throws {RequiredError}
|
|
1848
|
+
*/
|
|
1849
|
+
async apiV2AdminUsersUserIdDelete(o, l) {
|
|
1850
|
+
var n, c;
|
|
1851
|
+
const t = await s.apiV2AdminUsersUserIdDelete(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["AdminApi.apiV2AdminUsersUserIdDelete"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
1852
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
1792
1853
|
},
|
|
1793
1854
|
/**
|
|
1794
1855
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -1796,13 +1857,14 @@ const P = function(e, ...s) {
|
|
|
1796
1857
|
* @param {string} resourceId The unique identifier of the resource.
|
|
1797
1858
|
* @param {string} typeId The unique identifier of the datasource type.
|
|
1798
1859
|
* @param {number} [quota] The allocated quota for the datasource.
|
|
1860
|
+
* @param {DsNrwReplicationGroup} [dsNrwReplicationGroup] The optional replication grouo for the datasource.
|
|
1799
1861
|
* @param {*} [options] Override http request option.
|
|
1800
1862
|
* @throws {RequiredError}
|
|
1801
1863
|
*/
|
|
1802
|
-
async createDatasource(o, l, t, r) {
|
|
1803
|
-
var
|
|
1804
|
-
const
|
|
1805
|
-
return (
|
|
1864
|
+
async createDatasource(o, l, t, r, a) {
|
|
1865
|
+
var i, d;
|
|
1866
|
+
const n = await s.createDatasource(o, l, t, r, a), c = (e == null ? void 0 : e.serverIndex) ?? 0, p = (d = (i = u["AdminApi.createDatasource"]) == null ? void 0 : i[c]) == null ? void 0 : d.url;
|
|
1867
|
+
return (h, I) => y(n, O, V, e)(h, p || I);
|
|
1806
1868
|
},
|
|
1807
1869
|
/**
|
|
1808
1870
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -1821,8 +1883,8 @@ const P = function(e, ...s) {
|
|
|
1821
1883
|
*/
|
|
1822
1884
|
async getAllActivityLogs(o, l, t, r, a, n, c, p, i, d) {
|
|
1823
1885
|
var S, w;
|
|
1824
|
-
const h = await s.getAllActivityLogs(o, l, t, r, a, n, c, p, i, d),
|
|
1825
|
-
return (C,
|
|
1886
|
+
const h = await s.getAllActivityLogs(o, l, t, r, a, n, c, p, i, d), I = (e == null ? void 0 : e.serverIndex) ?? 0, b = (w = (S = u["AdminApi.getAllActivityLogs"]) == null ? void 0 : S[I]) == null ? void 0 : w.url;
|
|
1887
|
+
return (C, N) => y(h, O, V, e)(C, b || N);
|
|
1826
1888
|
},
|
|
1827
1889
|
/**
|
|
1828
1890
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -1838,9 +1900,9 @@ const P = function(e, ...s) {
|
|
|
1838
1900
|
* @throws {RequiredError}
|
|
1839
1901
|
*/
|
|
1840
1902
|
async getAllProjects(o, l, t, r, a, n, c, p) {
|
|
1841
|
-
var
|
|
1842
|
-
const i = await s.getAllProjects(o, l, t, r, a, n, c, p), d = (e == null ? void 0 : e.serverIndex) ?? 0, h = (b = (
|
|
1843
|
-
return (S, w) =>
|
|
1903
|
+
var I, b;
|
|
1904
|
+
const i = await s.getAllProjects(o, l, t, r, a, n, c, p), d = (e == null ? void 0 : e.serverIndex) ?? 0, h = (b = (I = u["AdminApi.getAllProjects"]) == null ? void 0 : I[d]) == null ? void 0 : b.url;
|
|
1905
|
+
return (S, w) => y(i, O, V, e)(S, h || w);
|
|
1844
1906
|
},
|
|
1845
1907
|
/**
|
|
1846
1908
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -1856,7 +1918,7 @@ const P = function(e, ...s) {
|
|
|
1856
1918
|
async getAllResources(o, l, t, r, a, n) {
|
|
1857
1919
|
var d, h;
|
|
1858
1920
|
const c = await s.getAllResources(o, l, t, r, a, n), p = (e == null ? void 0 : e.serverIndex) ?? 0, i = (h = (d = u["AdminApi.getAllResources"]) == null ? void 0 : d[p]) == null ? void 0 : h.url;
|
|
1859
|
-
return (
|
|
1921
|
+
return (I, b) => y(c, O, V, e)(I, i || b);
|
|
1860
1922
|
},
|
|
1861
1923
|
/**
|
|
1862
1924
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -1872,7 +1934,7 @@ const P = function(e, ...s) {
|
|
|
1872
1934
|
async getAllUsers(o, l, t, r, a, n) {
|
|
1873
1935
|
var d, h;
|
|
1874
1936
|
const c = await s.getAllUsers(o, l, t, r, a, n), p = (e == null ? void 0 : e.serverIndex) ?? 0, i = (h = (d = u["AdminApi.getAllUsers"]) == null ? void 0 : d[p]) == null ? void 0 : h.url;
|
|
1875
|
-
return (
|
|
1937
|
+
return (I, b) => y(c, O, V, e)(I, i || b);
|
|
1876
1938
|
},
|
|
1877
1939
|
/**
|
|
1878
1940
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -1886,7 +1948,7 @@ const P = function(e, ...s) {
|
|
|
1886
1948
|
async getDeployedGraphs(o, l, t, r) {
|
|
1887
1949
|
var p, i;
|
|
1888
1950
|
const a = await s.getDeployedGraphs(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["AdminApi.getDeployedGraphs"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
1889
|
-
return (d, h) =>
|
|
1951
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
1890
1952
|
},
|
|
1891
1953
|
/**
|
|
1892
1954
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -1899,7 +1961,7 @@ const P = function(e, ...s) {
|
|
|
1899
1961
|
async getMetadataGraph(o, l, t) {
|
|
1900
1962
|
var c, p;
|
|
1901
1963
|
const r = await s.getMetadataGraph(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["AdminApi.getMetadataGraph"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
1902
|
-
return (i, d) =>
|
|
1964
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
1903
1965
|
},
|
|
1904
1966
|
/**
|
|
1905
1967
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -1912,7 +1974,7 @@ const P = function(e, ...s) {
|
|
|
1912
1974
|
async patchMetadata(o, l, t) {
|
|
1913
1975
|
var c, p;
|
|
1914
1976
|
const r = await s.patchMetadata(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["AdminApi.patchMetadata"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
1915
|
-
return (i, d) =>
|
|
1977
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
1916
1978
|
},
|
|
1917
1979
|
/**
|
|
1918
1980
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -1925,7 +1987,7 @@ const P = function(e, ...s) {
|
|
|
1925
1987
|
async updateMetadataGraph(o, l, t) {
|
|
1926
1988
|
var c, p;
|
|
1927
1989
|
const r = await s.updateMetadataGraph(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["AdminApi.updateMetadataGraph"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
1928
|
-
return (i, d) =>
|
|
1990
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
1929
1991
|
},
|
|
1930
1992
|
/**
|
|
1931
1993
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -1939,7 +2001,7 @@ const P = function(e, ...s) {
|
|
|
1939
2001
|
async updateResourceType(o, l, t, r) {
|
|
1940
2002
|
var p, i;
|
|
1941
2003
|
const a = await s.updateResourceType(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["AdminApi.updateResourceType"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
1942
|
-
return (d, h) =>
|
|
2004
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
1943
2005
|
}
|
|
1944
2006
|
};
|
|
1945
2007
|
}, Br = function(e, s, o) {
|
|
@@ -1954,6 +2016,16 @@ const P = function(e, ...s) {
|
|
|
1954
2016
|
apiV2AdminOptions(t) {
|
|
1955
2017
|
return l.apiV2AdminOptions(t).then((r) => r(o, s));
|
|
1956
2018
|
},
|
|
2019
|
+
/**
|
|
2020
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
2021
|
+
* @summary Deletes the given user.
|
|
2022
|
+
* @param {AdminApiApiV2AdminUsersUserIdDeleteRequest} requestParameters Request parameters.
|
|
2023
|
+
* @param {*} [options] Override http request option.
|
|
2024
|
+
* @throws {RequiredError}
|
|
2025
|
+
*/
|
|
2026
|
+
apiV2AdminUsersUserIdDelete(t, r) {
|
|
2027
|
+
return l.apiV2AdminUsersUserIdDelete(t.userId, r).then((a) => a(o, s));
|
|
2028
|
+
},
|
|
1957
2029
|
/**
|
|
1958
2030
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
1959
2031
|
* @summary Creates a new datasource for a specified resource and type.
|
|
@@ -1962,7 +2034,7 @@ const P = function(e, ...s) {
|
|
|
1962
2034
|
* @throws {RequiredError}
|
|
1963
2035
|
*/
|
|
1964
2036
|
createDatasource(t, r) {
|
|
1965
|
-
return l.createDatasource(t.resourceId, t.typeId, t.quota, r).then((a) => a(o, s));
|
|
2037
|
+
return l.createDatasource(t.resourceId, t.typeId, t.quota, t.dsNrwReplicationGroup, r).then((a) => a(o, s));
|
|
1966
2038
|
},
|
|
1967
2039
|
/**
|
|
1968
2040
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -2068,7 +2140,7 @@ const P = function(e, ...s) {
|
|
|
2068
2140
|
let t;
|
|
2069
2141
|
e && (t = e.baseOptions);
|
|
2070
2142
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
2071
|
-
await
|
|
2143
|
+
await P(a, "Authorization", e), m(l, n);
|
|
2072
2144
|
let c = t && t.headers ? t.headers : {};
|
|
2073
2145
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
2074
2146
|
url: R(l),
|
|
@@ -2087,7 +2159,7 @@ const P = function(e, ...s) {
|
|
|
2087
2159
|
let r;
|
|
2088
2160
|
e && (r = e.baseOptions);
|
|
2089
2161
|
const a = { method: "POST", ...r, ...o }, n = {}, c = {};
|
|
2090
|
-
await
|
|
2162
|
+
await P(n, "Authorization", e), n["Content-Type"] = "application/json", m(t, c);
|
|
2091
2163
|
let p = r && r.headers ? r.headers : {};
|
|
2092
2164
|
return a.headers = { ...n, ...p, ...o.headers }, a.data = L(s, a, e), {
|
|
2093
2165
|
url: R(t),
|
|
@@ -2109,7 +2181,7 @@ const P = function(e, ...s) {
|
|
|
2109
2181
|
let n;
|
|
2110
2182
|
e && (n = e.baseOptions);
|
|
2111
2183
|
const c = { method: "GET", ...n, ...t }, p = {}, i = {};
|
|
2112
|
-
await
|
|
2184
|
+
await P(p, "Authorization", e), o !== void 0 && (i.format = o), l != null && (p["Accept-Language"] = typeof l == "string" ? l : JSON.stringify(l)), m(a, i);
|
|
2113
2185
|
let d = n && n.headers ? n.headers : {};
|
|
2114
2186
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
2115
2187
|
url: R(a),
|
|
@@ -2132,8 +2204,8 @@ const P = function(e, ...s) {
|
|
|
2132
2204
|
const c = "/api/v2/application-profiles/profiles", p = new URL(c, A);
|
|
2133
2205
|
let i;
|
|
2134
2206
|
e && (i = e.baseOptions);
|
|
2135
|
-
const d = { method: "GET", ...i, ...n }, h = {},
|
|
2136
|
-
await
|
|
2207
|
+
const d = { method: "GET", ...i, ...n }, h = {}, I = {};
|
|
2208
|
+
await P(h, "Authorization", e), s !== void 0 && (I.SearchTerm = s), o !== void 0 && (I.Language = o), l !== void 0 && (I.Modules = l), t !== void 0 && (I.PageNumber = t), r !== void 0 && (I.PageSize = r), a !== void 0 && (I.OrderBy = a), m(p, I);
|
|
2137
2209
|
let b = i && i.headers ? i.headers : {};
|
|
2138
2210
|
return d.headers = { ...h, ...b, ...n.headers }, {
|
|
2139
2211
|
url: R(p),
|
|
@@ -2153,7 +2225,7 @@ const P = function(e, ...s) {
|
|
|
2153
2225
|
let r;
|
|
2154
2226
|
e && (r = e.baseOptions);
|
|
2155
2227
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
2156
|
-
await
|
|
2228
|
+
await P(n, "Authorization", e), m(t, c);
|
|
2157
2229
|
let p = r && r.headers ? r.headers : {};
|
|
2158
2230
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
2159
2231
|
url: R(t),
|
|
@@ -2173,7 +2245,7 @@ const P = function(e, ...s) {
|
|
|
2173
2245
|
async apiV2ApplicationProfilesOptions(o) {
|
|
2174
2246
|
var a, n;
|
|
2175
2247
|
const l = await s.apiV2ApplicationProfilesOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["ApplicationProfileApi.apiV2ApplicationProfilesOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
2176
|
-
return (c, p) =>
|
|
2248
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
2177
2249
|
},
|
|
2178
2250
|
/**
|
|
2179
2251
|
*
|
|
@@ -2185,7 +2257,7 @@ const P = function(e, ...s) {
|
|
|
2185
2257
|
async createApplicationProfileRequest(o, l) {
|
|
2186
2258
|
var n, c;
|
|
2187
2259
|
const t = await s.createApplicationProfileRequest(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["ApplicationProfileApi.createApplicationProfileRequest"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
2188
|
-
return (p, i) =>
|
|
2260
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
2189
2261
|
},
|
|
2190
2262
|
/**
|
|
2191
2263
|
*
|
|
@@ -2199,7 +2271,7 @@ const P = function(e, ...s) {
|
|
|
2199
2271
|
async getApplicationProfile(o, l, t, r) {
|
|
2200
2272
|
var p, i;
|
|
2201
2273
|
const a = await s.getApplicationProfile(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["ApplicationProfileApi.getApplicationProfile"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
2202
|
-
return (d, h) =>
|
|
2274
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
2203
2275
|
},
|
|
2204
2276
|
/**
|
|
2205
2277
|
*
|
|
@@ -2214,9 +2286,9 @@ const P = function(e, ...s) {
|
|
|
2214
2286
|
* @throws {RequiredError}
|
|
2215
2287
|
*/
|
|
2216
2288
|
async getApplicationProfiles(o, l, t, r, a, n, c) {
|
|
2217
|
-
var h,
|
|
2218
|
-
const p = await s.getApplicationProfiles(o, l, t, r, a, n, c), i = (e == null ? void 0 : e.serverIndex) ?? 0, d = (
|
|
2219
|
-
return (b, S) =>
|
|
2289
|
+
var h, I;
|
|
2290
|
+
const p = await s.getApplicationProfiles(o, l, t, r, a, n, c), i = (e == null ? void 0 : e.serverIndex) ?? 0, d = (I = (h = u["ApplicationProfileApi.getApplicationProfiles"]) == null ? void 0 : h[i]) == null ? void 0 : I.url;
|
|
2291
|
+
return (b, S) => y(p, O, V, e)(b, d || S);
|
|
2220
2292
|
},
|
|
2221
2293
|
/**
|
|
2222
2294
|
*
|
|
@@ -2228,7 +2300,7 @@ const P = function(e, ...s) {
|
|
|
2228
2300
|
async getRawApplicationProfile(o, l) {
|
|
2229
2301
|
var n, c;
|
|
2230
2302
|
const t = await s.getRawApplicationProfile(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["ApplicationProfileApi.getRawApplicationProfile"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
2231
|
-
return (p, i) =>
|
|
2303
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
2232
2304
|
}
|
|
2233
2305
|
};
|
|
2234
2306
|
}, Lr = function(e, s, o) {
|
|
@@ -2300,7 +2372,7 @@ const P = function(e, ...s) {
|
|
|
2300
2372
|
let a;
|
|
2301
2373
|
e && (a = e.baseOptions);
|
|
2302
2374
|
const n = { method: "OPTIONS", ...a, ...l }, c = {}, p = {};
|
|
2303
|
-
await
|
|
2375
|
+
await P(c, "Authorization", e), m(r, p);
|
|
2304
2376
|
let i = a && a.headers ? a.headers : {};
|
|
2305
2377
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
2306
2378
|
url: R(r),
|
|
@@ -2323,9 +2395,9 @@ const P = function(e, ...s) {
|
|
|
2323
2395
|
let c;
|
|
2324
2396
|
e && (c = e.baseOptions);
|
|
2325
2397
|
const p = { method: "POST", ...c, ...r }, i = {}, d = {}, h = new (e && e.formDataCtor || FormData)();
|
|
2326
|
-
await
|
|
2327
|
-
let
|
|
2328
|
-
return p.headers = { ...i, ...
|
|
2398
|
+
await P(i, "Authorization", e), t !== void 0 && h.append("file", t), i["Content-Type"] = "multipart/form-data", m(n, d);
|
|
2399
|
+
let I = c && c.headers ? c.headers : {};
|
|
2400
|
+
return p.headers = { ...i, ...I, ...r.headers }, p.data = h, {
|
|
2329
2401
|
url: R(n),
|
|
2330
2402
|
options: p
|
|
2331
2403
|
};
|
|
@@ -2345,7 +2417,7 @@ const P = function(e, ...s) {
|
|
|
2345
2417
|
let n;
|
|
2346
2418
|
e && (n = e.baseOptions);
|
|
2347
2419
|
const c = { method: "DELETE", ...n, ...t }, p = {}, i = {};
|
|
2348
|
-
await
|
|
2420
|
+
await P(p, "Authorization", e), m(a, i);
|
|
2349
2421
|
let d = n && n.headers ? n.headers : {};
|
|
2350
2422
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
2351
2423
|
url: R(a),
|
|
@@ -2367,7 +2439,7 @@ const P = function(e, ...s) {
|
|
|
2367
2439
|
let n;
|
|
2368
2440
|
e && (n = e.baseOptions);
|
|
2369
2441
|
const c = { method: "GET", ...n, ...t }, p = {}, i = {};
|
|
2370
|
-
await
|
|
2442
|
+
await P(p, "Authorization", e), m(a, i);
|
|
2371
2443
|
let d = n && n.headers ? n.headers : {};
|
|
2372
2444
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
2373
2445
|
url: R(a),
|
|
@@ -2390,15 +2462,15 @@ const P = function(e, ...s) {
|
|
|
2390
2462
|
let c;
|
|
2391
2463
|
e && (c = e.baseOptions);
|
|
2392
2464
|
const p = { method: "PUT", ...c, ...r }, i = {}, d = {}, h = new (e && e.formDataCtor || FormData)();
|
|
2393
|
-
await
|
|
2394
|
-
let
|
|
2395
|
-
return p.headers = { ...i, ...
|
|
2465
|
+
await P(i, "Authorization", e), t !== void 0 && h.append("file", t), i["Content-Type"] = "multipart/form-data", m(n, d);
|
|
2466
|
+
let I = c && c.headers ? c.headers : {};
|
|
2467
|
+
return p.headers = { ...i, ...I, ...r.headers }, p.data = h, {
|
|
2396
2468
|
url: R(n),
|
|
2397
2469
|
options: p
|
|
2398
2470
|
};
|
|
2399
2471
|
}
|
|
2400
2472
|
};
|
|
2401
|
-
},
|
|
2473
|
+
}, Nr = function(e) {
|
|
2402
2474
|
const s = Er(e);
|
|
2403
2475
|
return {
|
|
2404
2476
|
/**
|
|
@@ -2412,7 +2484,7 @@ const P = function(e, ...s) {
|
|
|
2412
2484
|
async apiV2ProjectsProjectIdResourcesResourceIdBlobsOptions(o, l, t) {
|
|
2413
2485
|
var c, p;
|
|
2414
2486
|
const r = await s.apiV2ProjectsProjectIdResourcesResourceIdBlobsOptions(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["BlobApi.apiV2ProjectsProjectIdResourcesResourceIdBlobsOptions"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
2415
|
-
return (i, d) =>
|
|
2487
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
2416
2488
|
},
|
|
2417
2489
|
/**
|
|
2418
2490
|
*
|
|
@@ -2427,7 +2499,7 @@ const P = function(e, ...s) {
|
|
|
2427
2499
|
async createBlob(o, l, t, r, a) {
|
|
2428
2500
|
var i, d;
|
|
2429
2501
|
const n = await s.createBlob(o, l, t, r, a), c = (e == null ? void 0 : e.serverIndex) ?? 0, p = (d = (i = u["BlobApi.createBlob"]) == null ? void 0 : i[c]) == null ? void 0 : d.url;
|
|
2430
|
-
return (h,
|
|
2502
|
+
return (h, I) => y(n, O, V, e)(h, p || I);
|
|
2431
2503
|
},
|
|
2432
2504
|
/**
|
|
2433
2505
|
*
|
|
@@ -2441,7 +2513,7 @@ const P = function(e, ...s) {
|
|
|
2441
2513
|
async deleteBlob(o, l, t, r) {
|
|
2442
2514
|
var p, i;
|
|
2443
2515
|
const a = await s.deleteBlob(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["BlobApi.deleteBlob"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
2444
|
-
return (d, h) =>
|
|
2516
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
2445
2517
|
},
|
|
2446
2518
|
/**
|
|
2447
2519
|
*
|
|
@@ -2455,7 +2527,7 @@ const P = function(e, ...s) {
|
|
|
2455
2527
|
async getBlob(o, l, t, r) {
|
|
2456
2528
|
var p, i;
|
|
2457
2529
|
const a = await s.getBlob(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["BlobApi.getBlob"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
2458
|
-
return (d, h) =>
|
|
2530
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
2459
2531
|
},
|
|
2460
2532
|
/**
|
|
2461
2533
|
*
|
|
@@ -2470,11 +2542,11 @@ const P = function(e, ...s) {
|
|
|
2470
2542
|
async updateBlob(o, l, t, r, a) {
|
|
2471
2543
|
var i, d;
|
|
2472
2544
|
const n = await s.updateBlob(o, l, t, r, a), c = (e == null ? void 0 : e.serverIndex) ?? 0, p = (d = (i = u["BlobApi.updateBlob"]) == null ? void 0 : i[c]) == null ? void 0 : d.url;
|
|
2473
|
-
return (h,
|
|
2545
|
+
return (h, I) => y(n, O, V, e)(h, p || I);
|
|
2474
2546
|
}
|
|
2475
2547
|
};
|
|
2476
|
-
},
|
|
2477
|
-
const l =
|
|
2548
|
+
}, Hr = function(e, s, o) {
|
|
2549
|
+
const l = Nr(e);
|
|
2478
2550
|
return {
|
|
2479
2551
|
/**
|
|
2480
2552
|
*
|
|
@@ -2540,7 +2612,7 @@ const P = function(e, ...s) {
|
|
|
2540
2612
|
let t;
|
|
2541
2613
|
e && (t = e.baseOptions);
|
|
2542
2614
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
2543
|
-
await
|
|
2615
|
+
await P(a, "Authorization", e), m(l, n);
|
|
2544
2616
|
let c = t && t.headers ? t.headers : {};
|
|
2545
2617
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
2546
2618
|
url: R(l),
|
|
@@ -2558,7 +2630,7 @@ const P = function(e, ...s) {
|
|
|
2558
2630
|
let t;
|
|
2559
2631
|
e && (t = e.baseOptions);
|
|
2560
2632
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
2561
|
-
await
|
|
2633
|
+
await P(a, "Authorization", e), m(l, n);
|
|
2562
2634
|
let c = t && t.headers ? t.headers : {};
|
|
2563
2635
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
2564
2636
|
url: R(l),
|
|
@@ -2576,7 +2648,7 @@ const P = function(e, ...s) {
|
|
|
2576
2648
|
let t;
|
|
2577
2649
|
e && (t = e.baseOptions);
|
|
2578
2650
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
2579
|
-
await
|
|
2651
|
+
await P(a, "Authorization", e), m(l, n);
|
|
2580
2652
|
let c = t && t.headers ? t.headers : {};
|
|
2581
2653
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
2582
2654
|
url: R(l),
|
|
@@ -2594,7 +2666,7 @@ const P = function(e, ...s) {
|
|
|
2594
2666
|
let t;
|
|
2595
2667
|
e && (t = e.baseOptions);
|
|
2596
2668
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
2597
|
-
await
|
|
2669
|
+
await P(a, "Authorization", e), m(l, n);
|
|
2598
2670
|
let c = t && t.headers ? t.headers : {};
|
|
2599
2671
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
2600
2672
|
url: R(l),
|
|
@@ -2612,7 +2684,7 @@ const P = function(e, ...s) {
|
|
|
2612
2684
|
let t;
|
|
2613
2685
|
e && (t = e.baseOptions);
|
|
2614
2686
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
2615
|
-
await
|
|
2687
|
+
await P(a, "Authorization", e), m(l, n);
|
|
2616
2688
|
let c = t && t.headers ? t.headers : {};
|
|
2617
2689
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
2618
2690
|
url: R(l),
|
|
@@ -2632,7 +2704,7 @@ const P = function(e, ...s) {
|
|
|
2632
2704
|
let r;
|
|
2633
2705
|
e && (r = e.baseOptions);
|
|
2634
2706
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
2635
|
-
await
|
|
2707
|
+
await P(n, "Authorization", e), m(t, c);
|
|
2636
2708
|
let p = r && r.headers ? r.headers : {};
|
|
2637
2709
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
2638
2710
|
url: R(t),
|
|
@@ -2650,7 +2722,7 @@ const P = function(e, ...s) {
|
|
|
2650
2722
|
let t;
|
|
2651
2723
|
e && (t = e.baseOptions);
|
|
2652
2724
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
2653
|
-
await
|
|
2725
|
+
await P(a, "Authorization", e), m(l, n);
|
|
2654
2726
|
let c = t && t.headers ? t.headers : {};
|
|
2655
2727
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
2656
2728
|
url: R(l),
|
|
@@ -2670,7 +2742,7 @@ const P = function(e, ...s) {
|
|
|
2670
2742
|
async apiV2ReportsDataHamsterOptions(o) {
|
|
2671
2743
|
var a, n;
|
|
2672
2744
|
const l = await s.apiV2ReportsDataHamsterOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["DataHamsterReportApi.apiV2ReportsDataHamsterOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
2673
|
-
return (c, p) =>
|
|
2745
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
2674
2746
|
},
|
|
2675
2747
|
/**
|
|
2676
2748
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -2681,7 +2753,7 @@ const P = function(e, ...s) {
|
|
|
2681
2753
|
async getNumberOfArchivedResourcesKpi(o) {
|
|
2682
2754
|
var a, n;
|
|
2683
2755
|
const l = await s.getNumberOfArchivedResourcesKpi(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["DataHamsterReportApi.getNumberOfArchivedResourcesKpi"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
2684
|
-
return (c, p) =>
|
|
2756
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
2685
2757
|
},
|
|
2686
2758
|
/**
|
|
2687
2759
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -2692,7 +2764,7 @@ const P = function(e, ...s) {
|
|
|
2692
2764
|
async getNumberOfCreatedProjectsKpi(o) {
|
|
2693
2765
|
var a, n;
|
|
2694
2766
|
const l = await s.getNumberOfCreatedProjectsKpi(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["DataHamsterReportApi.getNumberOfCreatedProjectsKpi"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
2695
|
-
return (c, p) =>
|
|
2767
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
2696
2768
|
},
|
|
2697
2769
|
/**
|
|
2698
2770
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -2703,7 +2775,7 @@ const P = function(e, ...s) {
|
|
|
2703
2775
|
async getNumberOfCreatedResourcesKpi(o) {
|
|
2704
2776
|
var a, n;
|
|
2705
2777
|
const l = await s.getNumberOfCreatedResourcesKpi(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["DataHamsterReportApi.getNumberOfCreatedResourcesKpi"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
2706
|
-
return (c, p) =>
|
|
2778
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
2707
2779
|
},
|
|
2708
2780
|
/**
|
|
2709
2781
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -2714,7 +2786,7 @@ const P = function(e, ...s) {
|
|
|
2714
2786
|
async getNumberOfUsersPerDayKpi(o) {
|
|
2715
2787
|
var a, n;
|
|
2716
2788
|
const l = await s.getNumberOfUsersPerDayKpi(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["DataHamsterReportApi.getNumberOfUsersPerDayKpi"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
2717
|
-
return (c, p) =>
|
|
2789
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
2718
2790
|
},
|
|
2719
2791
|
/**
|
|
2720
2792
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -2726,7 +2798,7 @@ const P = function(e, ...s) {
|
|
|
2726
2798
|
async getStorageByResourceTypeKpi(o, l) {
|
|
2727
2799
|
var n, c;
|
|
2728
2800
|
const t = await s.getStorageByResourceTypeKpi(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["DataHamsterReportApi.getStorageByResourceTypeKpi"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
2729
|
-
return (p, i) =>
|
|
2801
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
2730
2802
|
},
|
|
2731
2803
|
/**
|
|
2732
2804
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -2737,7 +2809,7 @@ const P = function(e, ...s) {
|
|
|
2737
2809
|
async getUsersPerRorKpi(o) {
|
|
2738
2810
|
var a, n;
|
|
2739
2811
|
const l = await s.getUsersPerRorKpi(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["DataHamsterReportApi.getUsersPerRorKpi"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
2740
|
-
return (c, p) =>
|
|
2812
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
2741
2813
|
}
|
|
2742
2814
|
};
|
|
2743
2815
|
}, Mr = function(e, s, o) {
|
|
@@ -2821,7 +2893,7 @@ const P = function(e, ...s) {
|
|
|
2821
2893
|
let t;
|
|
2822
2894
|
e && (t = e.baseOptions);
|
|
2823
2895
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
2824
|
-
await
|
|
2896
|
+
await P(a, "Authorization", e), m(l, n);
|
|
2825
2897
|
let c = t && t.headers ? t.headers : {};
|
|
2826
2898
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
2827
2899
|
url: R(l),
|
|
@@ -2841,7 +2913,7 @@ const P = function(e, ...s) {
|
|
|
2841
2913
|
let r;
|
|
2842
2914
|
e && (r = e.baseOptions);
|
|
2843
2915
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
2844
|
-
await
|
|
2916
|
+
await P(n, "Authorization", e), m(t, c);
|
|
2845
2917
|
let p = r && r.headers ? r.headers : {};
|
|
2846
2918
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
2847
2919
|
url: R(t),
|
|
@@ -2862,7 +2934,7 @@ const P = function(e, ...s) {
|
|
|
2862
2934
|
let n;
|
|
2863
2935
|
e && (n = e.baseOptions);
|
|
2864
2936
|
const c = { method: "GET", ...n, ...t }, p = {}, i = {};
|
|
2865
|
-
await
|
|
2937
|
+
await P(p, "Authorization", e), s !== void 0 && (i.PageNumber = s), o !== void 0 && (i.PageSize = o), l !== void 0 && (i.OrderBy = l), m(a, i);
|
|
2866
2938
|
let d = n && n.headers ? n.headers : {};
|
|
2867
2939
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
2868
2940
|
url: R(a),
|
|
@@ -2882,7 +2954,7 @@ const P = function(e, ...s) {
|
|
|
2882
2954
|
async apiV2DisciplinesOptions(o) {
|
|
2883
2955
|
var a, n;
|
|
2884
2956
|
const l = await s.apiV2DisciplinesOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["DisciplineApi.apiV2DisciplinesOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
2885
|
-
return (c, p) =>
|
|
2957
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
2886
2958
|
},
|
|
2887
2959
|
/**
|
|
2888
2960
|
*
|
|
@@ -2894,7 +2966,7 @@ const P = function(e, ...s) {
|
|
|
2894
2966
|
async getDiscipline(o, l) {
|
|
2895
2967
|
var n, c;
|
|
2896
2968
|
const t = await s.getDiscipline(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["DisciplineApi.getDiscipline"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
2897
|
-
return (p, i) =>
|
|
2969
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
2898
2970
|
},
|
|
2899
2971
|
/**
|
|
2900
2972
|
*
|
|
@@ -2908,7 +2980,7 @@ const P = function(e, ...s) {
|
|
|
2908
2980
|
async getDisciplines(o, l, t, r) {
|
|
2909
2981
|
var p, i;
|
|
2910
2982
|
const a = await s.getDisciplines(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["DisciplineApi.getDisciplines"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
2911
|
-
return (d, h) =>
|
|
2983
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
2912
2984
|
}
|
|
2913
2985
|
};
|
|
2914
2986
|
}, Gr = function(e, s, o) {
|
|
@@ -2957,7 +3029,7 @@ const P = function(e, ...s) {
|
|
|
2957
3029
|
let t;
|
|
2958
3030
|
e && (t = e.baseOptions);
|
|
2959
3031
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
2960
|
-
await
|
|
3032
|
+
await P(a, "Authorization", e), m(l, n);
|
|
2961
3033
|
let c = t && t.headers ? t.headers : {};
|
|
2962
3034
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
2963
3035
|
url: R(l),
|
|
@@ -2978,7 +3050,7 @@ const P = function(e, ...s) {
|
|
|
2978
3050
|
let a;
|
|
2979
3051
|
e && (a = e.baseOptions);
|
|
2980
3052
|
const n = { method: "GET", ...a, ...l }, c = {}, p = {};
|
|
2981
|
-
await
|
|
3053
|
+
await P(c, "Authorization", e), m(r, p);
|
|
2982
3054
|
let i = a && a.headers ? a.headers : {};
|
|
2983
3055
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
2984
3056
|
url: R(r),
|
|
@@ -3000,7 +3072,7 @@ const P = function(e, ...s) {
|
|
|
3000
3072
|
let n;
|
|
3001
3073
|
e && (n = e.baseOptions);
|
|
3002
3074
|
const c = { method: "PUT", ...n, ...t }, p = {}, i = {};
|
|
3003
|
-
await
|
|
3075
|
+
await P(p, "Authorization", e), p["Content-Type"] = "application/json", m(a, i);
|
|
3004
3076
|
let d = n && n.headers ? n.headers : {};
|
|
3005
3077
|
return c.headers = { ...p, ...d, ...t.headers }, c.data = L(l, c, e), {
|
|
3006
3078
|
url: R(a),
|
|
@@ -3020,7 +3092,7 @@ const P = function(e, ...s) {
|
|
|
3020
3092
|
async apiV2HandlesOptions(o) {
|
|
3021
3093
|
var a, n;
|
|
3022
3094
|
const l = await s.apiV2HandlesOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["HandleApi.apiV2HandlesOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
3023
|
-
return (c, p) =>
|
|
3095
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
3024
3096
|
},
|
|
3025
3097
|
/**
|
|
3026
3098
|
*
|
|
@@ -3033,7 +3105,7 @@ const P = function(e, ...s) {
|
|
|
3033
3105
|
async getHandle(o, l, t) {
|
|
3034
3106
|
var c, p;
|
|
3035
3107
|
const r = await s.getHandle(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["HandleApi.getHandle"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
3036
|
-
return (i, d) =>
|
|
3108
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
3037
3109
|
},
|
|
3038
3110
|
/**
|
|
3039
3111
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -3047,7 +3119,7 @@ const P = function(e, ...s) {
|
|
|
3047
3119
|
async updateHandle(o, l, t, r) {
|
|
3048
3120
|
var p, i;
|
|
3049
3121
|
const a = await s.updateHandle(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["HandleApi.updateHandle"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
3050
|
-
return (d, h) =>
|
|
3122
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
3051
3123
|
}
|
|
3052
3124
|
};
|
|
3053
3125
|
}, _r = function(e, s, o) {
|
|
@@ -3096,7 +3168,7 @@ const P = function(e, ...s) {
|
|
|
3096
3168
|
let t;
|
|
3097
3169
|
e && (t = e.baseOptions);
|
|
3098
3170
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
3099
|
-
await
|
|
3171
|
+
await P(a, "Authorization", e), m(l, n);
|
|
3100
3172
|
let c = t && t.headers ? t.headers : {};
|
|
3101
3173
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
3102
3174
|
url: R(l),
|
|
@@ -3116,7 +3188,7 @@ const P = function(e, ...s) {
|
|
|
3116
3188
|
let r;
|
|
3117
3189
|
e && (r = e.baseOptions);
|
|
3118
3190
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
3119
|
-
await
|
|
3191
|
+
await P(n, "Authorization", e), m(t, c);
|
|
3120
3192
|
let p = r && r.headers ? r.headers : {};
|
|
3121
3193
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
3122
3194
|
url: R(t),
|
|
@@ -3137,7 +3209,7 @@ const P = function(e, ...s) {
|
|
|
3137
3209
|
let n;
|
|
3138
3210
|
e && (n = e.baseOptions);
|
|
3139
3211
|
const c = { method: "GET", ...n, ...t }, p = {}, i = {};
|
|
3140
|
-
await
|
|
3212
|
+
await P(p, "Authorization", e), s !== void 0 && (i.PageNumber = s), o !== void 0 && (i.PageSize = o), l !== void 0 && (i.OrderBy = l), m(a, i);
|
|
3141
3213
|
let d = n && n.headers ? n.headers : {};
|
|
3142
3214
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
3143
3215
|
url: R(a),
|
|
@@ -3157,7 +3229,7 @@ const P = function(e, ...s) {
|
|
|
3157
3229
|
async apiV2LanguagesOptions(o) {
|
|
3158
3230
|
var a, n;
|
|
3159
3231
|
const l = await s.apiV2LanguagesOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["LanguageApi.apiV2LanguagesOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
3160
|
-
return (c, p) =>
|
|
3232
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
3161
3233
|
},
|
|
3162
3234
|
/**
|
|
3163
3235
|
*
|
|
@@ -3169,7 +3241,7 @@ const P = function(e, ...s) {
|
|
|
3169
3241
|
async getLanguage(o, l) {
|
|
3170
3242
|
var n, c;
|
|
3171
3243
|
const t = await s.getLanguage(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["LanguageApi.getLanguage"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
3172
|
-
return (p, i) =>
|
|
3244
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
3173
3245
|
},
|
|
3174
3246
|
/**
|
|
3175
3247
|
*
|
|
@@ -3183,7 +3255,7 @@ const P = function(e, ...s) {
|
|
|
3183
3255
|
async getLanguages(o, l, t, r) {
|
|
3184
3256
|
var p, i;
|
|
3185
3257
|
const a = await s.getLanguages(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["LanguageApi.getLanguages"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
3186
|
-
return (d, h) =>
|
|
3258
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
3187
3259
|
}
|
|
3188
3260
|
};
|
|
3189
3261
|
}, Wr = function(e, s, o) {
|
|
@@ -3232,7 +3304,7 @@ const P = function(e, ...s) {
|
|
|
3232
3304
|
let t;
|
|
3233
3305
|
e && (t = e.baseOptions);
|
|
3234
3306
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
3235
|
-
await
|
|
3307
|
+
await P(a, "Authorization", e), m(l, n);
|
|
3236
3308
|
let c = t && t.headers ? t.headers : {};
|
|
3237
3309
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
3238
3310
|
url: R(l),
|
|
@@ -3252,7 +3324,7 @@ const P = function(e, ...s) {
|
|
|
3252
3324
|
let r;
|
|
3253
3325
|
e && (r = e.baseOptions);
|
|
3254
3326
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
3255
|
-
await
|
|
3327
|
+
await P(n, "Authorization", e), m(t, c);
|
|
3256
3328
|
let p = r && r.headers ? r.headers : {};
|
|
3257
3329
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
3258
3330
|
url: R(t),
|
|
@@ -3273,7 +3345,7 @@ const P = function(e, ...s) {
|
|
|
3273
3345
|
let n;
|
|
3274
3346
|
e && (n = e.baseOptions);
|
|
3275
3347
|
const c = { method: "GET", ...n, ...t }, p = {}, i = {};
|
|
3276
|
-
await
|
|
3348
|
+
await P(p, "Authorization", e), s !== void 0 && (i.PageNumber = s), o !== void 0 && (i.PageSize = o), l !== void 0 && (i.OrderBy = l), m(a, i);
|
|
3277
3349
|
let d = n && n.headers ? n.headers : {};
|
|
3278
3350
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
3279
3351
|
url: R(a),
|
|
@@ -3293,7 +3365,7 @@ const P = function(e, ...s) {
|
|
|
3293
3365
|
async apiV2LicensesOptions(o) {
|
|
3294
3366
|
var a, n;
|
|
3295
3367
|
const l = await s.apiV2LicensesOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["LicenseApi.apiV2LicensesOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
3296
|
-
return (c, p) =>
|
|
3368
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
3297
3369
|
},
|
|
3298
3370
|
/**
|
|
3299
3371
|
*
|
|
@@ -3305,7 +3377,7 @@ const P = function(e, ...s) {
|
|
|
3305
3377
|
async getLicense(o, l) {
|
|
3306
3378
|
var n, c;
|
|
3307
3379
|
const t = await s.getLicense(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["LicenseApi.getLicense"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
3308
|
-
return (p, i) =>
|
|
3380
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
3309
3381
|
},
|
|
3310
3382
|
/**
|
|
3311
3383
|
*
|
|
@@ -3319,7 +3391,7 @@ const P = function(e, ...s) {
|
|
|
3319
3391
|
async getLicenses(o, l, t, r) {
|
|
3320
3392
|
var p, i;
|
|
3321
3393
|
const a = await s.getLicenses(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["LicenseApi.getLicenses"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
3322
|
-
return (d, h) =>
|
|
3394
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
3323
3395
|
}
|
|
3324
3396
|
};
|
|
3325
3397
|
}, Zr = function(e, s, o) {
|
|
@@ -3368,7 +3440,7 @@ const P = function(e, ...s) {
|
|
|
3368
3440
|
let t;
|
|
3369
3441
|
e && (t = e.baseOptions);
|
|
3370
3442
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
3371
|
-
await
|
|
3443
|
+
await P(a, "Authorization", e), m(l, n);
|
|
3372
3444
|
let c = t && t.headers ? t.headers : {};
|
|
3373
3445
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
3374
3446
|
url: R(l),
|
|
@@ -3387,7 +3459,7 @@ const P = function(e, ...s) {
|
|
|
3387
3459
|
let t;
|
|
3388
3460
|
e && (t = e.baseOptions);
|
|
3389
3461
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
3390
|
-
await
|
|
3462
|
+
await P(a, "Authorization", e), m(l, n);
|
|
3391
3463
|
let c = t && t.headers ? t.headers : {};
|
|
3392
3464
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
3393
3465
|
url: R(l),
|
|
@@ -3407,7 +3479,7 @@ const P = function(e, ...s) {
|
|
|
3407
3479
|
async apiV2MaintenancesOptions(o) {
|
|
3408
3480
|
var a, n;
|
|
3409
3481
|
const l = await s.apiV2MaintenancesOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["MaintenanceApi.apiV2MaintenancesOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
3410
|
-
return (c, p) =>
|
|
3482
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
3411
3483
|
},
|
|
3412
3484
|
/**
|
|
3413
3485
|
*
|
|
@@ -3419,7 +3491,7 @@ const P = function(e, ...s) {
|
|
|
3419
3491
|
async getCurrentMaintenances(o) {
|
|
3420
3492
|
var a, n;
|
|
3421
3493
|
const l = await s.getCurrentMaintenances(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["MaintenanceApi.getCurrentMaintenances"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
3422
|
-
return (c, p) =>
|
|
3494
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
3423
3495
|
}
|
|
3424
3496
|
};
|
|
3425
3497
|
}, ea = function(e, s, o) {
|
|
@@ -3458,7 +3530,7 @@ const P = function(e, ...s) {
|
|
|
3458
3530
|
let t;
|
|
3459
3531
|
e && (t = e.baseOptions);
|
|
3460
3532
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
3461
|
-
await
|
|
3533
|
+
await P(a, "Authorization", e), m(l, n);
|
|
3462
3534
|
let c = t && t.headers ? t.headers : {};
|
|
3463
3535
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
3464
3536
|
url: R(l),
|
|
@@ -3478,7 +3550,7 @@ const P = function(e, ...s) {
|
|
|
3478
3550
|
let r;
|
|
3479
3551
|
e && (r = e.baseOptions);
|
|
3480
3552
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
3481
|
-
await
|
|
3553
|
+
await P(n, "Authorization", e), m(t, c);
|
|
3482
3554
|
let p = r && r.headers ? r.headers : {};
|
|
3483
3555
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
3484
3556
|
url: R(t),
|
|
@@ -3499,7 +3571,7 @@ const P = function(e, ...s) {
|
|
|
3499
3571
|
let n;
|
|
3500
3572
|
e && (n = e.baseOptions);
|
|
3501
3573
|
const c = { method: "GET", ...n, ...t }, p = {}, i = {};
|
|
3502
|
-
await
|
|
3574
|
+
await P(p, "Authorization", e), s !== void 0 && (i.PageNumber = s), o !== void 0 && (i.PageSize = o), l !== void 0 && (i.OrderBy = l), m(a, i);
|
|
3503
3575
|
let d = n && n.headers ? n.headers : {};
|
|
3504
3576
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
3505
3577
|
url: R(a),
|
|
@@ -3519,7 +3591,7 @@ const P = function(e, ...s) {
|
|
|
3519
3591
|
async apiV2NotificationsOptions(o) {
|
|
3520
3592
|
var a, n;
|
|
3521
3593
|
const l = await s.apiV2NotificationsOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["NotificationApi.apiV2NotificationsOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
3522
|
-
return (c, p) =>
|
|
3594
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
3523
3595
|
},
|
|
3524
3596
|
/**
|
|
3525
3597
|
*
|
|
@@ -3531,7 +3603,7 @@ const P = function(e, ...s) {
|
|
|
3531
3603
|
async getNotification(o, l) {
|
|
3532
3604
|
var n, c;
|
|
3533
3605
|
const t = await s.getNotification(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["NotificationApi.getNotification"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
3534
|
-
return (p, i) =>
|
|
3606
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
3535
3607
|
},
|
|
3536
3608
|
/**
|
|
3537
3609
|
*
|
|
@@ -3545,7 +3617,7 @@ const P = function(e, ...s) {
|
|
|
3545
3617
|
async getNotifications(o, l, t, r) {
|
|
3546
3618
|
var p, i;
|
|
3547
3619
|
const a = await s.getNotifications(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["NotificationApi.getNotifications"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
3548
|
-
return (d, h) =>
|
|
3620
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
3549
3621
|
}
|
|
3550
3622
|
};
|
|
3551
3623
|
}, aa = function(e, s, o) {
|
|
@@ -3594,7 +3666,7 @@ const P = function(e, ...s) {
|
|
|
3594
3666
|
let t;
|
|
3595
3667
|
e && (t = e.baseOptions);
|
|
3596
3668
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
3597
|
-
await
|
|
3669
|
+
await P(a, "Authorization", e), m(l, n);
|
|
3598
3670
|
let c = t && t.headers ? t.headers : {};
|
|
3599
3671
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
3600
3672
|
url: R(l),
|
|
@@ -3614,7 +3686,7 @@ const P = function(e, ...s) {
|
|
|
3614
3686
|
let r;
|
|
3615
3687
|
e && (r = e.baseOptions);
|
|
3616
3688
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
3617
|
-
await
|
|
3689
|
+
await P(n, "Authorization", e), m(t, c);
|
|
3618
3690
|
let p = r && r.headers ? r.headers : {};
|
|
3619
3691
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
3620
3692
|
url: R(t),
|
|
@@ -3637,8 +3709,8 @@ const P = function(e, ...s) {
|
|
|
3637
3709
|
const c = "/api/v2/organizations", p = new URL(c, A);
|
|
3638
3710
|
let i;
|
|
3639
3711
|
e && (i = e.baseOptions);
|
|
3640
|
-
const d = { method: "GET", ...i, ...n }, h = {},
|
|
3641
|
-
await
|
|
3712
|
+
const d = { method: "GET", ...i, ...n }, h = {}, I = {};
|
|
3713
|
+
await P(h, "Authorization", e), s !== void 0 && (I.SearchTerm = s), o !== void 0 && (I.Language = o), l !== void 0 && (I.FilterByPublicationService = l), t !== void 0 && (I.PageNumber = t), r !== void 0 && (I.PageSize = r), a !== void 0 && (I.OrderBy = a), m(p, I);
|
|
3642
3714
|
let b = i && i.headers ? i.headers : {};
|
|
3643
3715
|
return d.headers = { ...h, ...b, ...n.headers }, {
|
|
3644
3716
|
url: R(p),
|
|
@@ -3658,7 +3730,7 @@ const P = function(e, ...s) {
|
|
|
3658
3730
|
async apiV2OrganizationsOptions(o) {
|
|
3659
3731
|
var a, n;
|
|
3660
3732
|
const l = await s.apiV2OrganizationsOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["OrganizationApi.apiV2OrganizationsOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
3661
|
-
return (c, p) =>
|
|
3733
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
3662
3734
|
},
|
|
3663
3735
|
/**
|
|
3664
3736
|
*
|
|
@@ -3670,7 +3742,7 @@ const P = function(e, ...s) {
|
|
|
3670
3742
|
async getOrganization(o, l) {
|
|
3671
3743
|
var n, c;
|
|
3672
3744
|
const t = await s.getOrganization(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["OrganizationApi.getOrganization"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
3673
|
-
return (p, i) =>
|
|
3745
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
3674
3746
|
},
|
|
3675
3747
|
/**
|
|
3676
3748
|
*
|
|
@@ -3685,9 +3757,9 @@ const P = function(e, ...s) {
|
|
|
3685
3757
|
* @throws {RequiredError}
|
|
3686
3758
|
*/
|
|
3687
3759
|
async getOrganizations(o, l, t, r, a, n, c) {
|
|
3688
|
-
var h,
|
|
3689
|
-
const p = await s.getOrganizations(o, l, t, r, a, n, c), i = (e == null ? void 0 : e.serverIndex) ?? 0, d = (
|
|
3690
|
-
return (b, S) =>
|
|
3760
|
+
var h, I;
|
|
3761
|
+
const p = await s.getOrganizations(o, l, t, r, a, n, c), i = (e == null ? void 0 : e.serverIndex) ?? 0, d = (I = (h = u["OrganizationApi.getOrganizations"]) == null ? void 0 : h[i]) == null ? void 0 : I.url;
|
|
3762
|
+
return (b, S) => y(p, O, V, e)(b, d || S);
|
|
3691
3763
|
}
|
|
3692
3764
|
};
|
|
3693
3765
|
}, la = function(e, s, o) {
|
|
@@ -3736,7 +3808,7 @@ const P = function(e, ...s) {
|
|
|
3736
3808
|
let t;
|
|
3737
3809
|
e && (t = e.baseOptions);
|
|
3738
3810
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
3739
|
-
await
|
|
3811
|
+
await P(a, "Authorization", e), m(l, n);
|
|
3740
3812
|
let c = t && t.headers ? t.headers : {};
|
|
3741
3813
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
3742
3814
|
url: R(l),
|
|
@@ -3757,7 +3829,7 @@ const P = function(e, ...s) {
|
|
|
3757
3829
|
let a;
|
|
3758
3830
|
e && (a = e.baseOptions);
|
|
3759
3831
|
const n = { method: "GET", ...a, ...l }, c = {}, p = {};
|
|
3760
|
-
await
|
|
3832
|
+
await P(c, "Authorization", e), m(r, p);
|
|
3761
3833
|
let i = a && a.headers ? a.headers : {};
|
|
3762
3834
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
3763
3835
|
url: R(r),
|
|
@@ -3780,8 +3852,8 @@ const P = function(e, ...s) {
|
|
|
3780
3852
|
const c = "/api/v2/pids", p = new URL(c, A);
|
|
3781
3853
|
let i;
|
|
3782
3854
|
e && (i = e.baseOptions);
|
|
3783
|
-
const d = { method: "GET", ...i, ...n }, h = {},
|
|
3784
|
-
await
|
|
3855
|
+
const d = { method: "GET", ...i, ...n }, h = {}, I = {};
|
|
3856
|
+
await P(h, "Authorization", e), s !== void 0 && (I.IncludeProjects = s), o !== void 0 && (I.IncludeResources = o), l !== void 0 && (I.IncludeDeleted = l), t !== void 0 && (I.PageNumber = t), r !== void 0 && (I.PageSize = r), a !== void 0 && (I.OrderBy = a), m(p, I);
|
|
3785
3857
|
let b = i && i.headers ? i.headers : {};
|
|
3786
3858
|
return d.headers = { ...h, ...b, ...n.headers }, {
|
|
3787
3859
|
url: R(p),
|
|
@@ -3803,7 +3875,7 @@ const P = function(e, ...s) {
|
|
|
3803
3875
|
let n;
|
|
3804
3876
|
e && (n = e.baseOptions);
|
|
3805
3877
|
const c = { method: "POST", ...n, ...t }, p = {}, i = {};
|
|
3806
|
-
await
|
|
3878
|
+
await P(p, "Authorization", e), p["Content-Type"] = "application/json", m(a, i);
|
|
3807
3879
|
let d = n && n.headers ? n.headers : {};
|
|
3808
3880
|
return c.headers = { ...p, ...d, ...t.headers }, c.data = L(l, c, e), {
|
|
3809
3881
|
url: R(a),
|
|
@@ -3823,7 +3895,7 @@ const P = function(e, ...s) {
|
|
|
3823
3895
|
async apiV2PidsOptions(o) {
|
|
3824
3896
|
var a, n;
|
|
3825
3897
|
const l = await s.apiV2PidsOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["PidApi.apiV2PidsOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
3826
|
-
return (c, p) =>
|
|
3898
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
3827
3899
|
},
|
|
3828
3900
|
/**
|
|
3829
3901
|
*
|
|
@@ -3836,7 +3908,7 @@ const P = function(e, ...s) {
|
|
|
3836
3908
|
async getPid(o, l, t) {
|
|
3837
3909
|
var c, p;
|
|
3838
3910
|
const r = await s.getPid(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["PidApi.getPid"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
3839
|
-
return (i, d) =>
|
|
3911
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
3840
3912
|
},
|
|
3841
3913
|
/**
|
|
3842
3914
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -3851,9 +3923,9 @@ const P = function(e, ...s) {
|
|
|
3851
3923
|
* @throws {RequiredError}
|
|
3852
3924
|
*/
|
|
3853
3925
|
async getPids(o, l, t, r, a, n, c) {
|
|
3854
|
-
var h,
|
|
3855
|
-
const p = await s.getPids(o, l, t, r, a, n, c), i = (e == null ? void 0 : e.serverIndex) ?? 0, d = (
|
|
3856
|
-
return (b, S) =>
|
|
3926
|
+
var h, I;
|
|
3927
|
+
const p = await s.getPids(o, l, t, r, a, n, c), i = (e == null ? void 0 : e.serverIndex) ?? 0, d = (I = (h = u["PidApi.getPids"]) == null ? void 0 : h[i]) == null ? void 0 : I.url;
|
|
3928
|
+
return (b, S) => y(p, O, V, e)(b, d || S);
|
|
3857
3929
|
},
|
|
3858
3930
|
/**
|
|
3859
3931
|
*
|
|
@@ -3867,7 +3939,7 @@ const P = function(e, ...s) {
|
|
|
3867
3939
|
async sendRequestToOwner(o, l, t, r) {
|
|
3868
3940
|
var p, i;
|
|
3869
3941
|
const a = await s.sendRequestToOwner(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["PidApi.sendRequestToOwner"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
3870
|
-
return (d, h) =>
|
|
3942
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
3871
3943
|
}
|
|
3872
3944
|
};
|
|
3873
3945
|
}, pa = function(e, s, o) {
|
|
@@ -3926,7 +3998,7 @@ const P = function(e, ...s) {
|
|
|
3926
3998
|
let t;
|
|
3927
3999
|
e && (t = e.baseOptions);
|
|
3928
4000
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
3929
|
-
await
|
|
4001
|
+
await P(a, "Authorization", e), m(l, n);
|
|
3930
4002
|
let c = t && t.headers ? t.headers : {};
|
|
3931
4003
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
3932
4004
|
url: R(l),
|
|
@@ -3945,7 +4017,7 @@ const P = function(e, ...s) {
|
|
|
3945
4017
|
let r;
|
|
3946
4018
|
e && (r = e.baseOptions);
|
|
3947
4019
|
const a = { method: "POST", ...r, ...o }, n = {}, c = {};
|
|
3948
|
-
await
|
|
4020
|
+
await P(n, "Authorization", e), n["Content-Type"] = "application/json", m(t, c);
|
|
3949
4021
|
let p = r && r.headers ? r.headers : {};
|
|
3950
4022
|
return a.headers = { ...n, ...p, ...o.headers }, a.data = L(s, a, e), {
|
|
3951
4023
|
url: R(t),
|
|
@@ -3965,7 +4037,7 @@ const P = function(e, ...s) {
|
|
|
3965
4037
|
let r;
|
|
3966
4038
|
e && (r = e.baseOptions);
|
|
3967
4039
|
const a = { method: "DELETE", ...r, ...o }, n = {}, c = {};
|
|
3968
|
-
await
|
|
4040
|
+
await P(n, "Authorization", e), m(t, c);
|
|
3969
4041
|
let p = r && r.headers ? r.headers : {};
|
|
3970
4042
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
3971
4043
|
url: R(t),
|
|
@@ -3986,7 +4058,7 @@ const P = function(e, ...s) {
|
|
|
3986
4058
|
let a;
|
|
3987
4059
|
e && (a = e.baseOptions);
|
|
3988
4060
|
const n = { method: "GET", ...a, ...l }, c = {}, p = {};
|
|
3989
|
-
await
|
|
4061
|
+
await P(c, "Authorization", e), o !== void 0 && (p.IncludeSubProjects = o), m(r, p);
|
|
3990
4062
|
let i = a && a.headers ? a.headers : {};
|
|
3991
4063
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
3992
4064
|
url: R(r),
|
|
@@ -4009,9 +4081,9 @@ const P = function(e, ...s) {
|
|
|
4009
4081
|
let p;
|
|
4010
4082
|
e && (p = e.baseOptions);
|
|
4011
4083
|
const i = { method: "GET", ...p, ...a }, d = {}, h = {};
|
|
4012
|
-
await
|
|
4013
|
-
let
|
|
4014
|
-
return i.headers = { ...d, ...
|
|
4084
|
+
await P(d, "Authorization", e), s !== void 0 && (h.IncludeOrganizations = s), o !== void 0 && (h.TopLevel = o), l !== void 0 && (h.PageNumber = l), t !== void 0 && (h.PageSize = t), r !== void 0 && (h.OrderBy = r), m(c, h);
|
|
4085
|
+
let I = p && p.headers ? p.headers : {};
|
|
4086
|
+
return i.headers = { ...d, ...I, ...a.headers }, {
|
|
4015
4087
|
url: R(c),
|
|
4016
4088
|
options: i
|
|
4017
4089
|
};
|
|
@@ -4030,7 +4102,7 @@ const P = function(e, ...s) {
|
|
|
4030
4102
|
let a;
|
|
4031
4103
|
e && (a = e.baseOptions);
|
|
4032
4104
|
const n = { method: "PUT", ...a, ...l }, c = {}, p = {};
|
|
4033
|
-
await
|
|
4105
|
+
await P(c, "Authorization", e), c["Content-Type"] = "application/json", m(r, p);
|
|
4034
4106
|
let i = a && a.headers ? a.headers : {};
|
|
4035
4107
|
return n.headers = { ...c, ...i, ...l.headers }, n.data = L(o, n, e), {
|
|
4036
4108
|
url: R(r),
|
|
@@ -4050,7 +4122,7 @@ const P = function(e, ...s) {
|
|
|
4050
4122
|
async apiV2ProjectsOptions(o) {
|
|
4051
4123
|
var a, n;
|
|
4052
4124
|
const l = await s.apiV2ProjectsOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["ProjectApi.apiV2ProjectsOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
4053
|
-
return (c, p) =>
|
|
4125
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
4054
4126
|
},
|
|
4055
4127
|
/**
|
|
4056
4128
|
*
|
|
@@ -4062,7 +4134,7 @@ const P = function(e, ...s) {
|
|
|
4062
4134
|
async createProject(o, l) {
|
|
4063
4135
|
var n, c;
|
|
4064
4136
|
const t = await s.createProject(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["ProjectApi.createProject"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
4065
|
-
return (p, i) =>
|
|
4137
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
4066
4138
|
},
|
|
4067
4139
|
/**
|
|
4068
4140
|
*
|
|
@@ -4074,7 +4146,7 @@ const P = function(e, ...s) {
|
|
|
4074
4146
|
async deleteProject(o, l) {
|
|
4075
4147
|
var n, c;
|
|
4076
4148
|
const t = await s.deleteProject(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["ProjectApi.deleteProject"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
4077
|
-
return (p, i) =>
|
|
4149
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
4078
4150
|
},
|
|
4079
4151
|
/**
|
|
4080
4152
|
*
|
|
@@ -4087,7 +4159,7 @@ const P = function(e, ...s) {
|
|
|
4087
4159
|
async getProject(o, l, t) {
|
|
4088
4160
|
var c, p;
|
|
4089
4161
|
const r = await s.getProject(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectApi.getProject"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
4090
|
-
return (i, d) =>
|
|
4162
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
4091
4163
|
},
|
|
4092
4164
|
/**
|
|
4093
4165
|
*
|
|
@@ -4103,7 +4175,7 @@ const P = function(e, ...s) {
|
|
|
4103
4175
|
async getProjects(o, l, t, r, a, n) {
|
|
4104
4176
|
var d, h;
|
|
4105
4177
|
const c = await s.getProjects(o, l, t, r, a, n), p = (e == null ? void 0 : e.serverIndex) ?? 0, i = (h = (d = u["ProjectApi.getProjects"]) == null ? void 0 : d[p]) == null ? void 0 : h.url;
|
|
4106
|
-
return (
|
|
4178
|
+
return (I, b) => y(c, O, V, e)(I, i || b);
|
|
4107
4179
|
},
|
|
4108
4180
|
/**
|
|
4109
4181
|
*
|
|
@@ -4116,7 +4188,7 @@ const P = function(e, ...s) {
|
|
|
4116
4188
|
async updateProject(o, l, t) {
|
|
4117
4189
|
var c, p;
|
|
4118
4190
|
const r = await s.updateProject(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectApi.updateProject"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
4119
|
-
return (i, d) =>
|
|
4191
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
4120
4192
|
}
|
|
4121
4193
|
};
|
|
4122
4194
|
}, ha = function(e, s, o) {
|
|
@@ -4197,7 +4269,7 @@ const P = function(e, ...s) {
|
|
|
4197
4269
|
let r;
|
|
4198
4270
|
e && (r = e.baseOptions);
|
|
4199
4271
|
const a = { method: "OPTIONS", ...r, ...o }, n = {}, c = {};
|
|
4200
|
-
await
|
|
4272
|
+
await P(n, "Authorization", e), m(t, c);
|
|
4201
4273
|
let p = r && r.headers ? r.headers : {};
|
|
4202
4274
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
4203
4275
|
url: R(t),
|
|
@@ -4218,7 +4290,7 @@ const P = function(e, ...s) {
|
|
|
4218
4290
|
let a;
|
|
4219
4291
|
e && (a = e.baseOptions);
|
|
4220
4292
|
const n = { method: "POST", ...a, ...l }, c = {}, p = {};
|
|
4221
|
-
await
|
|
4293
|
+
await P(c, "Authorization", e), c["Content-Type"] = "application/json", m(r, p);
|
|
4222
4294
|
let i = a && a.headers ? a.headers : {};
|
|
4223
4295
|
return n.headers = { ...c, ...i, ...l.headers }, n.data = L(o, n, e), {
|
|
4224
4296
|
url: R(r),
|
|
@@ -4239,7 +4311,7 @@ const P = function(e, ...s) {
|
|
|
4239
4311
|
let a;
|
|
4240
4312
|
e && (a = e.baseOptions);
|
|
4241
4313
|
const n = { method: "DELETE", ...a, ...l }, c = {}, p = {};
|
|
4242
|
-
await
|
|
4314
|
+
await P(c, "Authorization", e), m(r, p);
|
|
4243
4315
|
let i = a && a.headers ? a.headers : {};
|
|
4244
4316
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
4245
4317
|
url: R(r),
|
|
@@ -4260,7 +4332,7 @@ const P = function(e, ...s) {
|
|
|
4260
4332
|
let a;
|
|
4261
4333
|
e && (a = e.baseOptions);
|
|
4262
4334
|
const n = { method: "GET", ...a, ...l }, c = {}, p = {};
|
|
4263
|
-
await
|
|
4335
|
+
await P(c, "Authorization", e), m(r, p);
|
|
4264
4336
|
let i = a && a.headers ? a.headers : {};
|
|
4265
4337
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
4266
4338
|
url: R(r),
|
|
@@ -4283,7 +4355,7 @@ const P = function(e, ...s) {
|
|
|
4283
4355
|
let c;
|
|
4284
4356
|
e && (c = e.baseOptions);
|
|
4285
4357
|
const p = { method: "GET", ...c, ...r }, i = {}, d = {};
|
|
4286
|
-
await
|
|
4358
|
+
await P(i, "Authorization", e), o !== void 0 && (d.PageNumber = o), l !== void 0 && (d.PageSize = l), t !== void 0 && (d.OrderBy = t), m(n, d);
|
|
4287
4359
|
let h = c && c.headers ? c.headers : {};
|
|
4288
4360
|
return p.headers = { ...i, ...h, ...r.headers }, {
|
|
4289
4361
|
url: R(n),
|
|
@@ -4304,7 +4376,7 @@ const P = function(e, ...s) {
|
|
|
4304
4376
|
async apiV2ProjectsProjectIdInvitationsOptions(o, l) {
|
|
4305
4377
|
var n, c;
|
|
4306
4378
|
const t = await s.apiV2ProjectsProjectIdInvitationsOptions(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["ProjectInvitationApi.apiV2ProjectsProjectIdInvitationsOptions"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
4307
|
-
return (p, i) =>
|
|
4379
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
4308
4380
|
},
|
|
4309
4381
|
/**
|
|
4310
4382
|
*
|
|
@@ -4317,7 +4389,7 @@ const P = function(e, ...s) {
|
|
|
4317
4389
|
async createProjectInvitation(o, l, t) {
|
|
4318
4390
|
var c, p;
|
|
4319
4391
|
const r = await s.createProjectInvitation(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectInvitationApi.createProjectInvitation"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
4320
|
-
return (i, d) =>
|
|
4392
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
4321
4393
|
},
|
|
4322
4394
|
/**
|
|
4323
4395
|
*
|
|
@@ -4330,7 +4402,7 @@ const P = function(e, ...s) {
|
|
|
4330
4402
|
async deleteProjectInvitation(o, l, t) {
|
|
4331
4403
|
var c, p;
|
|
4332
4404
|
const r = await s.deleteProjectInvitation(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectInvitationApi.deleteProjectInvitation"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
4333
|
-
return (i, d) =>
|
|
4405
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
4334
4406
|
},
|
|
4335
4407
|
/**
|
|
4336
4408
|
*
|
|
@@ -4343,7 +4415,7 @@ const P = function(e, ...s) {
|
|
|
4343
4415
|
async getProjectInvitation(o, l, t) {
|
|
4344
4416
|
var c, p;
|
|
4345
4417
|
const r = await s.getProjectInvitation(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectInvitationApi.getProjectInvitation"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
4346
|
-
return (i, d) =>
|
|
4418
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
4347
4419
|
},
|
|
4348
4420
|
/**
|
|
4349
4421
|
*
|
|
@@ -4358,7 +4430,7 @@ const P = function(e, ...s) {
|
|
|
4358
4430
|
async getProjectInvitations(o, l, t, r, a) {
|
|
4359
4431
|
var i, d;
|
|
4360
4432
|
const n = await s.getProjectInvitations(o, l, t, r, a), c = (e == null ? void 0 : e.serverIndex) ?? 0, p = (d = (i = u["ProjectInvitationApi.getProjectInvitations"]) == null ? void 0 : i[c]) == null ? void 0 : d.url;
|
|
4361
|
-
return (h,
|
|
4433
|
+
return (h, I) => y(n, O, V, e)(h, p || I);
|
|
4362
4434
|
}
|
|
4363
4435
|
};
|
|
4364
4436
|
}, ua = function(e, s, o) {
|
|
@@ -4431,7 +4503,7 @@ const P = function(e, ...s) {
|
|
|
4431
4503
|
let a;
|
|
4432
4504
|
e && (a = e.baseOptions);
|
|
4433
4505
|
const n = { method: "POST", ...a, ...l }, c = {}, p = {};
|
|
4434
|
-
await
|
|
4506
|
+
await P(c, "Authorization", e), c["Content-Type"] = "application/json", m(r, p);
|
|
4435
4507
|
let i = a && a.headers ? a.headers : {};
|
|
4436
4508
|
return n.headers = { ...c, ...i, ...l.headers }, n.data = L(o, n, e), {
|
|
4437
4509
|
url: R(r),
|
|
@@ -4451,7 +4523,7 @@ const P = function(e, ...s) {
|
|
|
4451
4523
|
let r;
|
|
4452
4524
|
e && (r = e.baseOptions);
|
|
4453
4525
|
const a = { method: "OPTIONS", ...r, ...o }, n = {}, c = {};
|
|
4454
|
-
await
|
|
4526
|
+
await P(n, "Authorization", e), m(t, c);
|
|
4455
4527
|
let p = r && r.headers ? r.headers : {};
|
|
4456
4528
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
4457
4529
|
url: R(t),
|
|
@@ -4472,7 +4544,7 @@ const P = function(e, ...s) {
|
|
|
4472
4544
|
let a;
|
|
4473
4545
|
e && (a = e.baseOptions);
|
|
4474
4546
|
const n = { method: "DELETE", ...a, ...l }, c = {}, p = {};
|
|
4475
|
-
await
|
|
4547
|
+
await P(c, "Authorization", e), m(r, p);
|
|
4476
4548
|
let i = a && a.headers ? a.headers : {};
|
|
4477
4549
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
4478
4550
|
url: R(r),
|
|
@@ -4493,7 +4565,7 @@ const P = function(e, ...s) {
|
|
|
4493
4565
|
let a;
|
|
4494
4566
|
e && (a = e.baseOptions);
|
|
4495
4567
|
const n = { method: "GET", ...a, ...l }, c = {}, p = {};
|
|
4496
|
-
await
|
|
4568
|
+
await P(c, "Authorization", e), m(r, p);
|
|
4497
4569
|
let i = a && a.headers ? a.headers : {};
|
|
4498
4570
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
4499
4571
|
url: R(r),
|
|
@@ -4516,7 +4588,7 @@ const P = function(e, ...s) {
|
|
|
4516
4588
|
let c;
|
|
4517
4589
|
e && (c = e.baseOptions);
|
|
4518
4590
|
const p = { method: "GET", ...c, ...r }, i = {}, d = {};
|
|
4519
|
-
await
|
|
4591
|
+
await P(i, "Authorization", e), o !== void 0 && (d.PageNumber = o), l !== void 0 && (d.PageSize = l), t !== void 0 && (d.OrderBy = t), m(n, d);
|
|
4520
4592
|
let h = c && c.headers ? c.headers : {};
|
|
4521
4593
|
return p.headers = { ...i, ...h, ...r.headers }, {
|
|
4522
4594
|
url: R(n),
|
|
@@ -4538,7 +4610,7 @@ const P = function(e, ...s) {
|
|
|
4538
4610
|
let n;
|
|
4539
4611
|
e && (n = e.baseOptions);
|
|
4540
4612
|
const c = { method: "PUT", ...n, ...t }, p = {}, i = {};
|
|
4541
|
-
await
|
|
4613
|
+
await P(p, "Authorization", e), p["Content-Type"] = "application/json", m(a, i);
|
|
4542
4614
|
let d = n && n.headers ? n.headers : {};
|
|
4543
4615
|
return c.headers = { ...p, ...d, ...t.headers }, c.data = L(l, c, e), {
|
|
4544
4616
|
url: R(a),
|
|
@@ -4546,7 +4618,7 @@ const P = function(e, ...s) {
|
|
|
4546
4618
|
};
|
|
4547
4619
|
}
|
|
4548
4620
|
};
|
|
4549
|
-
},
|
|
4621
|
+
}, Pa = function(e) {
|
|
4550
4622
|
const s = Aa(e);
|
|
4551
4623
|
return {
|
|
4552
4624
|
/**
|
|
@@ -4560,7 +4632,7 @@ const P = function(e, ...s) {
|
|
|
4560
4632
|
async addMembership(o, l, t) {
|
|
4561
4633
|
var c, p;
|
|
4562
4634
|
const r = await s.addMembership(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectMemberApi.addMembership"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
4563
|
-
return (i, d) =>
|
|
4635
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
4564
4636
|
},
|
|
4565
4637
|
/**
|
|
4566
4638
|
*
|
|
@@ -4572,7 +4644,7 @@ const P = function(e, ...s) {
|
|
|
4572
4644
|
async apiV2ProjectsProjectIdMembersOptions(o, l) {
|
|
4573
4645
|
var n, c;
|
|
4574
4646
|
const t = await s.apiV2ProjectsProjectIdMembersOptions(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["ProjectMemberApi.apiV2ProjectsProjectIdMembersOptions"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
4575
|
-
return (p, i) =>
|
|
4647
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
4576
4648
|
},
|
|
4577
4649
|
/**
|
|
4578
4650
|
*
|
|
@@ -4585,7 +4657,7 @@ const P = function(e, ...s) {
|
|
|
4585
4657
|
async deleteMembership(o, l, t) {
|
|
4586
4658
|
var c, p;
|
|
4587
4659
|
const r = await s.deleteMembership(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectMemberApi.deleteMembership"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
4588
|
-
return (i, d) =>
|
|
4660
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
4589
4661
|
},
|
|
4590
4662
|
/**
|
|
4591
4663
|
*
|
|
@@ -4598,7 +4670,7 @@ const P = function(e, ...s) {
|
|
|
4598
4670
|
async getMembership(o, l, t) {
|
|
4599
4671
|
var c, p;
|
|
4600
4672
|
const r = await s.getMembership(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectMemberApi.getMembership"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
4601
|
-
return (i, d) =>
|
|
4673
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
4602
4674
|
},
|
|
4603
4675
|
/**
|
|
4604
4676
|
*
|
|
@@ -4613,7 +4685,7 @@ const P = function(e, ...s) {
|
|
|
4613
4685
|
async getMemberships(o, l, t, r, a) {
|
|
4614
4686
|
var i, d;
|
|
4615
4687
|
const n = await s.getMemberships(o, l, t, r, a), c = (e == null ? void 0 : e.serverIndex) ?? 0, p = (d = (i = u["ProjectMemberApi.getMemberships"]) == null ? void 0 : i[c]) == null ? void 0 : d.url;
|
|
4616
|
-
return (h,
|
|
4688
|
+
return (h, I) => y(n, O, V, e)(h, p || I);
|
|
4617
4689
|
},
|
|
4618
4690
|
/**
|
|
4619
4691
|
*
|
|
@@ -4627,11 +4699,11 @@ const P = function(e, ...s) {
|
|
|
4627
4699
|
async updateMembership(o, l, t, r) {
|
|
4628
4700
|
var p, i;
|
|
4629
4701
|
const a = await s.updateMembership(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["ProjectMemberApi.updateMembership"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
4630
|
-
return (d, h) =>
|
|
4702
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
4631
4703
|
}
|
|
4632
4704
|
};
|
|
4633
|
-
},
|
|
4634
|
-
const l =
|
|
4705
|
+
}, ma = function(e, s, o) {
|
|
4706
|
+
const l = Pa(e);
|
|
4635
4707
|
return {
|
|
4636
4708
|
/**
|
|
4637
4709
|
*
|
|
@@ -4709,7 +4781,7 @@ const P = function(e, ...s) {
|
|
|
4709
4781
|
let r;
|
|
4710
4782
|
e && (r = e.baseOptions);
|
|
4711
4783
|
const a = { method: "OPTIONS", ...r, ...o }, n = {}, c = {};
|
|
4712
|
-
await
|
|
4784
|
+
await P(n, "Authorization", e), m(t, c);
|
|
4713
4785
|
let p = r && r.headers ? r.headers : {};
|
|
4714
4786
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
4715
4787
|
url: R(t),
|
|
@@ -4730,7 +4802,7 @@ const P = function(e, ...s) {
|
|
|
4730
4802
|
let a;
|
|
4731
4803
|
e && (a = e.baseOptions);
|
|
4732
4804
|
const n = { method: "POST", ...a, ...l }, c = {}, p = {};
|
|
4733
|
-
await
|
|
4805
|
+
await P(c, "Authorization", e), c["Content-Type"] = "application/json", m(r, p);
|
|
4734
4806
|
let i = a && a.headers ? a.headers : {};
|
|
4735
4807
|
return n.headers = { ...c, ...i, ...l.headers }, n.data = L(o, n, e), {
|
|
4736
4808
|
url: R(r),
|
|
@@ -4751,7 +4823,7 @@ const P = function(e, ...s) {
|
|
|
4751
4823
|
let a;
|
|
4752
4824
|
e && (a = e.baseOptions);
|
|
4753
4825
|
const n = { method: "GET", ...a, ...l }, c = {}, p = {};
|
|
4754
|
-
await
|
|
4826
|
+
await P(c, "Authorization", e), m(r, p);
|
|
4755
4827
|
let i = a && a.headers ? a.headers : {};
|
|
4756
4828
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
4757
4829
|
url: R(r),
|
|
@@ -4759,7 +4831,7 @@ const P = function(e, ...s) {
|
|
|
4759
4831
|
};
|
|
4760
4832
|
}
|
|
4761
4833
|
};
|
|
4762
|
-
},
|
|
4834
|
+
}, ya = function(e) {
|
|
4763
4835
|
const s = Ra(e);
|
|
4764
4836
|
return {
|
|
4765
4837
|
/**
|
|
@@ -4772,7 +4844,7 @@ const P = function(e, ...s) {
|
|
|
4772
4844
|
async apiV2ProjectsProjectIdPublicationsRequestsOptions(o, l) {
|
|
4773
4845
|
var n, c;
|
|
4774
4846
|
const t = await s.apiV2ProjectsProjectIdPublicationsRequestsOptions(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["ProjectPublicationRequestApi.apiV2ProjectsProjectIdPublicationsRequestsOptions"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
4775
|
-
return (p, i) =>
|
|
4847
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
4776
4848
|
},
|
|
4777
4849
|
/**
|
|
4778
4850
|
*
|
|
@@ -4785,7 +4857,7 @@ const P = function(e, ...s) {
|
|
|
4785
4857
|
async createPublicationRequest(o, l, t) {
|
|
4786
4858
|
var c, p;
|
|
4787
4859
|
const r = await s.createPublicationRequest(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectPublicationRequestApi.createPublicationRequest"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
4788
|
-
return (i, d) =>
|
|
4860
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
4789
4861
|
},
|
|
4790
4862
|
/**
|
|
4791
4863
|
*
|
|
@@ -4798,11 +4870,11 @@ const P = function(e, ...s) {
|
|
|
4798
4870
|
async getPublicationRequest(o, l, t) {
|
|
4799
4871
|
var c, p;
|
|
4800
4872
|
const r = await s.getPublicationRequest(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectPublicationRequestApi.getPublicationRequest"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
4801
|
-
return (i, d) =>
|
|
4873
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
4802
4874
|
}
|
|
4803
4875
|
};
|
|
4804
|
-
},
|
|
4805
|
-
const l =
|
|
4876
|
+
}, Ia = function(e, s, o) {
|
|
4877
|
+
const l = ya(e);
|
|
4806
4878
|
return {
|
|
4807
4879
|
/**
|
|
4808
4880
|
*
|
|
@@ -4850,7 +4922,7 @@ const P = function(e, ...s) {
|
|
|
4850
4922
|
let r;
|
|
4851
4923
|
e && (r = e.baseOptions);
|
|
4852
4924
|
const a = { method: "OPTIONS", ...r, ...o }, n = {}, c = {};
|
|
4853
|
-
await
|
|
4925
|
+
await P(n, "Authorization", e), m(t, c);
|
|
4854
4926
|
let p = r && r.headers ? r.headers : {};
|
|
4855
4927
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
4856
4928
|
url: R(t),
|
|
@@ -4871,7 +4943,7 @@ const P = function(e, ...s) {
|
|
|
4871
4943
|
let a;
|
|
4872
4944
|
e && (a = e.baseOptions);
|
|
4873
4945
|
const n = { method: "GET", ...a, ...l }, c = {}, p = {};
|
|
4874
|
-
await
|
|
4946
|
+
await P(c, "Authorization", e), m(r, p);
|
|
4875
4947
|
let i = a && a.headers ? a.headers : {};
|
|
4876
4948
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
4877
4949
|
url: R(r),
|
|
@@ -4894,7 +4966,7 @@ const P = function(e, ...s) {
|
|
|
4894
4966
|
let c;
|
|
4895
4967
|
e && (c = e.baseOptions);
|
|
4896
4968
|
const p = { method: "GET", ...c, ...r }, i = {}, d = {};
|
|
4897
|
-
await
|
|
4969
|
+
await P(i, "Authorization", e), o !== void 0 && (d.PageNumber = o), l !== void 0 && (d.PageSize = l), t !== void 0 && (d.OrderBy = t), m(n, d);
|
|
4898
4970
|
let h = c && c.headers ? c.headers : {};
|
|
4899
4971
|
return p.headers = { ...i, ...h, ...r.headers }, {
|
|
4900
4972
|
url: R(n),
|
|
@@ -4916,7 +4988,7 @@ const P = function(e, ...s) {
|
|
|
4916
4988
|
let n;
|
|
4917
4989
|
e && (n = e.baseOptions);
|
|
4918
4990
|
const c = { method: "PUT", ...n, ...t }, p = {}, i = {};
|
|
4919
|
-
await
|
|
4991
|
+
await P(p, "Authorization", e), p["Content-Type"] = "application/json", m(a, i);
|
|
4920
4992
|
let d = n && n.headers ? n.headers : {};
|
|
4921
4993
|
return c.headers = { ...p, ...d, ...t.headers }, c.data = L(l, c, e), {
|
|
4922
4994
|
url: R(a),
|
|
@@ -4937,7 +5009,7 @@ const P = function(e, ...s) {
|
|
|
4937
5009
|
async apiV2ProjectsProjectIdQuotasOptions(o, l) {
|
|
4938
5010
|
var n, c;
|
|
4939
5011
|
const t = await s.apiV2ProjectsProjectIdQuotasOptions(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["ProjectQuotaApi.apiV2ProjectsProjectIdQuotasOptions"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
4940
|
-
return (p, i) =>
|
|
5012
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
4941
5013
|
},
|
|
4942
5014
|
/**
|
|
4943
5015
|
*
|
|
@@ -4950,7 +5022,7 @@ const P = function(e, ...s) {
|
|
|
4950
5022
|
async getProjectQuota(o, l, t) {
|
|
4951
5023
|
var c, p;
|
|
4952
5024
|
const r = await s.getProjectQuota(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectQuotaApi.getProjectQuota"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
4953
|
-
return (i, d) =>
|
|
5025
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
4954
5026
|
},
|
|
4955
5027
|
/**
|
|
4956
5028
|
*
|
|
@@ -4965,7 +5037,7 @@ const P = function(e, ...s) {
|
|
|
4965
5037
|
async getProjectQuotas(o, l, t, r, a) {
|
|
4966
5038
|
var i, d;
|
|
4967
5039
|
const n = await s.getProjectQuotas(o, l, t, r, a), c = (e == null ? void 0 : e.serverIndex) ?? 0, p = (d = (i = u["ProjectQuotaApi.getProjectQuotas"]) == null ? void 0 : i[c]) == null ? void 0 : d.url;
|
|
4968
|
-
return (h,
|
|
5040
|
+
return (h, I) => y(n, O, V, e)(h, p || I);
|
|
4969
5041
|
},
|
|
4970
5042
|
/**
|
|
4971
5043
|
*
|
|
@@ -4979,7 +5051,7 @@ const P = function(e, ...s) {
|
|
|
4979
5051
|
async updateProjectQuota(o, l, t, r) {
|
|
4980
5052
|
var p, i;
|
|
4981
5053
|
const a = await s.updateProjectQuota(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["ProjectQuotaApi.updateProjectQuota"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
4982
|
-
return (d, h) =>
|
|
5054
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
4983
5055
|
}
|
|
4984
5056
|
};
|
|
4985
5057
|
}, ja = function(e, s, o) {
|
|
@@ -5041,7 +5113,7 @@ const P = function(e, ...s) {
|
|
|
5041
5113
|
let r;
|
|
5042
5114
|
e && (r = e.baseOptions);
|
|
5043
5115
|
const a = { method: "OPTIONS", ...r, ...o }, n = {}, c = {};
|
|
5044
|
-
await
|
|
5116
|
+
await P(n, "Authorization", e), m(t, c);
|
|
5045
5117
|
let p = r && r.headers ? r.headers : {};
|
|
5046
5118
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
5047
5119
|
url: R(t),
|
|
@@ -5062,7 +5134,7 @@ const P = function(e, ...s) {
|
|
|
5062
5134
|
let a;
|
|
5063
5135
|
e && (a = e.baseOptions);
|
|
5064
5136
|
const n = { method: "POST", ...a, ...l }, c = {}, p = {};
|
|
5065
|
-
await
|
|
5137
|
+
await P(c, "Authorization", e), c["Content-Type"] = "application/json", m(r, p);
|
|
5066
5138
|
let i = a && a.headers ? a.headers : {};
|
|
5067
5139
|
return n.headers = { ...c, ...i, ...l.headers }, n.data = L(o, n, e), {
|
|
5068
5140
|
url: R(r),
|
|
@@ -5083,7 +5155,7 @@ const P = function(e, ...s) {
|
|
|
5083
5155
|
let a;
|
|
5084
5156
|
e && (a = e.baseOptions);
|
|
5085
5157
|
const n = { method: "DELETE", ...a, ...l }, c = {}, p = {};
|
|
5086
|
-
await
|
|
5158
|
+
await P(c, "Authorization", e), m(r, p);
|
|
5087
5159
|
let i = a && a.headers ? a.headers : {};
|
|
5088
5160
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
5089
5161
|
url: R(r),
|
|
@@ -5104,7 +5176,7 @@ const P = function(e, ...s) {
|
|
|
5104
5176
|
let a;
|
|
5105
5177
|
e && (a = e.baseOptions);
|
|
5106
5178
|
const n = { method: "GET", ...a, ...l }, c = {}, p = {};
|
|
5107
|
-
await
|
|
5179
|
+
await P(c, "Authorization", e), m(r, p);
|
|
5108
5180
|
let i = a && a.headers ? a.headers : {};
|
|
5109
5181
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
5110
5182
|
url: R(r),
|
|
@@ -5127,7 +5199,7 @@ const P = function(e, ...s) {
|
|
|
5127
5199
|
let c;
|
|
5128
5200
|
e && (c = e.baseOptions);
|
|
5129
5201
|
const p = { method: "GET", ...c, ...r }, i = {}, d = {};
|
|
5130
|
-
await
|
|
5202
|
+
await P(i, "Authorization", e), o !== void 0 && (d.PageNumber = o), l !== void 0 && (d.PageSize = l), t !== void 0 && (d.OrderBy = t), m(n, d);
|
|
5131
5203
|
let h = c && c.headers ? c.headers : {};
|
|
5132
5204
|
return p.headers = { ...i, ...h, ...r.headers }, {
|
|
5133
5205
|
url: R(n),
|
|
@@ -5149,7 +5221,7 @@ const P = function(e, ...s) {
|
|
|
5149
5221
|
let n;
|
|
5150
5222
|
e && (n = e.baseOptions);
|
|
5151
5223
|
const c = { method: "PUT", ...n, ...t }, p = {}, i = {};
|
|
5152
|
-
await
|
|
5224
|
+
await P(p, "Authorization", e), p["Content-Type"] = "application/json", m(a, i);
|
|
5153
5225
|
let d = n && n.headers ? n.headers : {};
|
|
5154
5226
|
return c.headers = { ...p, ...d, ...t.headers }, c.data = L(l, c, e), {
|
|
5155
5227
|
url: R(a),
|
|
@@ -5170,7 +5242,7 @@ const P = function(e, ...s) {
|
|
|
5170
5242
|
async apiV2ProjectsProjectIdResourcesOptions(o, l) {
|
|
5171
5243
|
var n, c;
|
|
5172
5244
|
const t = await s.apiV2ProjectsProjectIdResourcesOptions(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["ProjectResourceApi.apiV2ProjectsProjectIdResourcesOptions"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
5173
|
-
return (p, i) =>
|
|
5245
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
5174
5246
|
},
|
|
5175
5247
|
/**
|
|
5176
5248
|
*
|
|
@@ -5183,7 +5255,7 @@ const P = function(e, ...s) {
|
|
|
5183
5255
|
async createResourceForProject(o, l, t) {
|
|
5184
5256
|
var c, p;
|
|
5185
5257
|
const r = await s.createResourceForProject(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectResourceApi.createResourceForProject"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
5186
|
-
return (i, d) =>
|
|
5258
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
5187
5259
|
},
|
|
5188
5260
|
/**
|
|
5189
5261
|
*
|
|
@@ -5196,7 +5268,7 @@ const P = function(e, ...s) {
|
|
|
5196
5268
|
async deleteResourceForProject(o, l, t) {
|
|
5197
5269
|
var c, p;
|
|
5198
5270
|
const r = await s.deleteResourceForProject(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectResourceApi.deleteResourceForProject"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
5199
|
-
return (i, d) =>
|
|
5271
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
5200
5272
|
},
|
|
5201
5273
|
/**
|
|
5202
5274
|
*
|
|
@@ -5209,7 +5281,7 @@ const P = function(e, ...s) {
|
|
|
5209
5281
|
async getResourceForProject(o, l, t) {
|
|
5210
5282
|
var c, p;
|
|
5211
5283
|
const r = await s.getResourceForProject(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectResourceApi.getResourceForProject"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
5212
|
-
return (i, d) =>
|
|
5284
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
5213
5285
|
},
|
|
5214
5286
|
/**
|
|
5215
5287
|
*
|
|
@@ -5224,7 +5296,7 @@ const P = function(e, ...s) {
|
|
|
5224
5296
|
async getResourcesForProject(o, l, t, r, a) {
|
|
5225
5297
|
var i, d;
|
|
5226
5298
|
const n = await s.getResourcesForProject(o, l, t, r, a), c = (e == null ? void 0 : e.serverIndex) ?? 0, p = (d = (i = u["ProjectResourceApi.getResourcesForProject"]) == null ? void 0 : i[c]) == null ? void 0 : d.url;
|
|
5227
|
-
return (h,
|
|
5299
|
+
return (h, I) => y(n, O, V, e)(h, p || I);
|
|
5228
5300
|
},
|
|
5229
5301
|
/**
|
|
5230
5302
|
*
|
|
@@ -5238,10 +5310,10 @@ const P = function(e, ...s) {
|
|
|
5238
5310
|
async updateResourceForProject(o, l, t, r) {
|
|
5239
5311
|
var p, i;
|
|
5240
5312
|
const a = await s.updateResourceForProject(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["ProjectResourceApi.updateResourceForProject"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
5241
|
-
return (d, h) =>
|
|
5313
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
5242
5314
|
}
|
|
5243
5315
|
};
|
|
5244
|
-
},
|
|
5316
|
+
}, Ua = function(e, s, o) {
|
|
5245
5317
|
const l = wa(e);
|
|
5246
5318
|
return {
|
|
5247
5319
|
/**
|
|
@@ -5305,7 +5377,7 @@ const P = function(e, ...s) {
|
|
|
5305
5377
|
return l.updateResourceForProject(t.projectId, t.resourceId, t.resourceForUpdateDto, r).then((a) => a(o, s));
|
|
5306
5378
|
}
|
|
5307
5379
|
};
|
|
5308
|
-
},
|
|
5380
|
+
}, Ta = function(e) {
|
|
5309
5381
|
return {
|
|
5310
5382
|
/**
|
|
5311
5383
|
*
|
|
@@ -5321,7 +5393,7 @@ const P = function(e, ...s) {
|
|
|
5321
5393
|
let a;
|
|
5322
5394
|
e && (a = e.baseOptions);
|
|
5323
5395
|
const n = { method: "OPTIONS", ...a, ...l }, c = {}, p = {};
|
|
5324
|
-
await
|
|
5396
|
+
await P(c, "Authorization", e), m(r, p);
|
|
5325
5397
|
let i = a && a.headers ? a.headers : {};
|
|
5326
5398
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
5327
5399
|
url: R(r),
|
|
@@ -5342,7 +5414,7 @@ const P = function(e, ...s) {
|
|
|
5342
5414
|
let a;
|
|
5343
5415
|
e && (a = e.baseOptions);
|
|
5344
5416
|
const n = { method: "GET", ...a, ...l }, c = {}, p = {};
|
|
5345
|
-
await
|
|
5417
|
+
await P(c, "Authorization", e), m(r, p);
|
|
5346
5418
|
let i = a && a.headers ? a.headers : {};
|
|
5347
5419
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
5348
5420
|
url: R(r),
|
|
@@ -5351,7 +5423,7 @@ const P = function(e, ...s) {
|
|
|
5351
5423
|
}
|
|
5352
5424
|
};
|
|
5353
5425
|
}, xa = function(e) {
|
|
5354
|
-
const s =
|
|
5426
|
+
const s = Ta(e);
|
|
5355
5427
|
return {
|
|
5356
5428
|
/**
|
|
5357
5429
|
*
|
|
@@ -5364,7 +5436,7 @@ const P = function(e, ...s) {
|
|
|
5364
5436
|
async apiV2ProjectsProjectIdResourcesResourceIdQuotaOptions(o, l, t) {
|
|
5365
5437
|
var c, p;
|
|
5366
5438
|
const r = await s.apiV2ProjectsProjectIdResourcesResourceIdQuotaOptions(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectResourceQuotaApi.apiV2ProjectsProjectIdResourcesResourceIdQuotaOptions"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
5367
|
-
return (i, d) =>
|
|
5439
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
5368
5440
|
},
|
|
5369
5441
|
/**
|
|
5370
5442
|
*
|
|
@@ -5377,7 +5449,7 @@ const P = function(e, ...s) {
|
|
|
5377
5449
|
async getQuotaForResourceForProject(o, l, t) {
|
|
5378
5450
|
var c, p;
|
|
5379
5451
|
const r = await s.getQuotaForResourceForProject(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ProjectResourceQuotaApi.getQuotaForResourceForProject"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
5380
|
-
return (i, d) =>
|
|
5452
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
5381
5453
|
}
|
|
5382
5454
|
};
|
|
5383
5455
|
}, Ba = function(e, s, o) {
|
|
@@ -5419,7 +5491,7 @@ const P = function(e, ...s) {
|
|
|
5419
5491
|
let r;
|
|
5420
5492
|
e && (r = e.baseOptions);
|
|
5421
5493
|
const a = { method: "OPTIONS", ...r, ...o }, n = {}, c = {};
|
|
5422
|
-
await
|
|
5494
|
+
await P(n, "Authorization", e), m(t, c);
|
|
5423
5495
|
let p = r && r.headers ? r.headers : {};
|
|
5424
5496
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
5425
5497
|
url: R(t),
|
|
@@ -5439,7 +5511,7 @@ const P = function(e, ...s) {
|
|
|
5439
5511
|
let r;
|
|
5440
5512
|
e && (r = e.baseOptions);
|
|
5441
5513
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
5442
|
-
await
|
|
5514
|
+
await P(n, "Authorization", e), m(t, c);
|
|
5443
5515
|
let p = r && r.headers ? r.headers : {};
|
|
5444
5516
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
5445
5517
|
url: R(t),
|
|
@@ -5460,7 +5532,7 @@ const P = function(e, ...s) {
|
|
|
5460
5532
|
async apiV2ProjectsProjectIdResourceTypesOptions(o, l) {
|
|
5461
5533
|
var n, c;
|
|
5462
5534
|
const t = await s.apiV2ProjectsProjectIdResourceTypesOptions(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["ProjectResourceTypeApi.apiV2ProjectsProjectIdResourceTypesOptions"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
5463
|
-
return (p, i) =>
|
|
5535
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
5464
5536
|
},
|
|
5465
5537
|
/**
|
|
5466
5538
|
*
|
|
@@ -5472,7 +5544,7 @@ const P = function(e, ...s) {
|
|
|
5472
5544
|
async getAvailableResourceTypesInformationForProject(o, l) {
|
|
5473
5545
|
var n, c;
|
|
5474
5546
|
const t = await s.getAvailableResourceTypesInformationForProject(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["ProjectResourceTypeApi.getAvailableResourceTypesInformationForProject"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
5475
|
-
return (p, i) =>
|
|
5547
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
5476
5548
|
}
|
|
5477
5549
|
};
|
|
5478
5550
|
}, La = function(e, s, o) {
|
|
@@ -5514,7 +5586,7 @@ const P = function(e, ...s) {
|
|
|
5514
5586
|
let r;
|
|
5515
5587
|
e && (r = e.baseOptions);
|
|
5516
5588
|
const a = { method: "OPTIONS", ...r, ...o }, n = {}, c = {};
|
|
5517
|
-
await
|
|
5589
|
+
await P(n, "Authorization", e), m(t, c);
|
|
5518
5590
|
let p = r && r.headers ? r.headers : {};
|
|
5519
5591
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
5520
5592
|
url: R(t),
|
|
@@ -5538,15 +5610,15 @@ const P = function(e, ...s) {
|
|
|
5538
5610
|
let p;
|
|
5539
5611
|
e && (p = e.baseOptions);
|
|
5540
5612
|
const i = { method: "GET", ...p, ...a }, d = {}, h = {};
|
|
5541
|
-
await
|
|
5542
|
-
let
|
|
5543
|
-
return i.headers = { ...d, ...
|
|
5613
|
+
await P(d, "Authorization", e), o !== void 0 && (h.IncludeOrganizations = o), l !== void 0 && (h.PageNumber = l), t !== void 0 && (h.PageSize = t), r !== void 0 && (h.OrderBy = r), m(c, h);
|
|
5614
|
+
let I = p && p.headers ? p.headers : {};
|
|
5615
|
+
return i.headers = { ...d, ...I, ...a.headers }, {
|
|
5544
5616
|
url: R(c),
|
|
5545
5617
|
options: i
|
|
5546
5618
|
};
|
|
5547
5619
|
}
|
|
5548
5620
|
};
|
|
5549
|
-
},
|
|
5621
|
+
}, Na = function(e) {
|
|
5550
5622
|
const s = Ea(e);
|
|
5551
5623
|
return {
|
|
5552
5624
|
/**
|
|
@@ -5559,7 +5631,7 @@ const P = function(e, ...s) {
|
|
|
5559
5631
|
async apiV2ProjectsProjectIdSubprojectsOptions(o, l) {
|
|
5560
5632
|
var n, c;
|
|
5561
5633
|
const t = await s.apiV2ProjectsProjectIdSubprojectsOptions(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["ProjectSubProjectsApi.apiV2ProjectsProjectIdSubprojectsOptions"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
5562
|
-
return (p, i) =>
|
|
5634
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
5563
5635
|
},
|
|
5564
5636
|
/**
|
|
5565
5637
|
*
|
|
@@ -5575,11 +5647,11 @@ const P = function(e, ...s) {
|
|
|
5575
5647
|
async getSubProjectsForProject(o, l, t, r, a, n) {
|
|
5576
5648
|
var d, h;
|
|
5577
5649
|
const c = await s.getSubProjectsForProject(o, l, t, r, a, n), p = (e == null ? void 0 : e.serverIndex) ?? 0, i = (h = (d = u["ProjectSubProjectsApi.getSubProjectsForProject"]) == null ? void 0 : d[p]) == null ? void 0 : h.url;
|
|
5578
|
-
return (
|
|
5650
|
+
return (I, b) => y(c, O, V, e)(I, i || b);
|
|
5579
5651
|
}
|
|
5580
5652
|
};
|
|
5581
|
-
},
|
|
5582
|
-
const l =
|
|
5653
|
+
}, Ha = function(e, s, o) {
|
|
5654
|
+
const l = Na(e);
|
|
5583
5655
|
return {
|
|
5584
5656
|
/**
|
|
5585
5657
|
*
|
|
@@ -5603,6 +5675,104 @@ const P = function(e, ...s) {
|
|
|
5603
5675
|
}
|
|
5604
5676
|
};
|
|
5605
5677
|
}, za = function(e) {
|
|
5678
|
+
return {
|
|
5679
|
+
/**
|
|
5680
|
+
*
|
|
5681
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
5682
|
+
* @param {*} [options] Override http request option.
|
|
5683
|
+
* @throws {RequiredError}
|
|
5684
|
+
*/
|
|
5685
|
+
apiV2PublicationServiceOptions: async (s = {}) => {
|
|
5686
|
+
const o = "/api/v2/publication-service", l = new URL(o, A);
|
|
5687
|
+
let t;
|
|
5688
|
+
e && (t = e.baseOptions);
|
|
5689
|
+
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
5690
|
+
await P(a, "Authorization", e), m(l, n);
|
|
5691
|
+
let c = t && t.headers ? t.headers : {};
|
|
5692
|
+
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
5693
|
+
url: R(l),
|
|
5694
|
+
options: r
|
|
5695
|
+
};
|
|
5696
|
+
},
|
|
5697
|
+
/**
|
|
5698
|
+
*
|
|
5699
|
+
* @summary Retrieves all relevant publication services for an organization.
|
|
5700
|
+
* @param {string} [searchTerm] Gets or sets the search term used to filter organizations.
|
|
5701
|
+
* @param {AcceptedLanguage} [language] Gets or sets language of name or text (dataPublicationService).
|
|
5702
|
+
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
5703
|
+
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
5704
|
+
* @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.
|
|
5705
|
+
* @param {*} [options] Override http request option.
|
|
5706
|
+
* @throws {RequiredError}
|
|
5707
|
+
*/
|
|
5708
|
+
getPublicationServices: async (s, o, l, t, r, a = {}) => {
|
|
5709
|
+
const n = "/api/v2/publication-service", c = new URL(n, A);
|
|
5710
|
+
let p;
|
|
5711
|
+
e && (p = e.baseOptions);
|
|
5712
|
+
const i = { method: "GET", ...p, ...a }, d = {}, h = {};
|
|
5713
|
+
await P(d, "Authorization", e), s !== void 0 && (h.SearchTerm = s), o !== void 0 && (h.Language = o), l !== void 0 && (h.PageNumber = l), t !== void 0 && (h.PageSize = t), r !== void 0 && (h.OrderBy = r), m(c, h);
|
|
5714
|
+
let I = p && p.headers ? p.headers : {};
|
|
5715
|
+
return i.headers = { ...d, ...I, ...a.headers }, {
|
|
5716
|
+
url: R(c),
|
|
5717
|
+
options: i
|
|
5718
|
+
};
|
|
5719
|
+
}
|
|
5720
|
+
};
|
|
5721
|
+
}, Qa = function(e) {
|
|
5722
|
+
const s = za(e);
|
|
5723
|
+
return {
|
|
5724
|
+
/**
|
|
5725
|
+
*
|
|
5726
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
5727
|
+
* @param {*} [options] Override http request option.
|
|
5728
|
+
* @throws {RequiredError}
|
|
5729
|
+
*/
|
|
5730
|
+
async apiV2PublicationServiceOptions(o) {
|
|
5731
|
+
var a, n;
|
|
5732
|
+
const l = await s.apiV2PublicationServiceOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["PublicationAdvisoryServiceApi.apiV2PublicationServiceOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
5733
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
5734
|
+
},
|
|
5735
|
+
/**
|
|
5736
|
+
*
|
|
5737
|
+
* @summary Retrieves all relevant publication services for an organization.
|
|
5738
|
+
* @param {string} [searchTerm] Gets or sets the search term used to filter organizations.
|
|
5739
|
+
* @param {AcceptedLanguage} [language] Gets or sets language of name or text (dataPublicationService).
|
|
5740
|
+
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
5741
|
+
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
5742
|
+
* @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.
|
|
5743
|
+
* @param {*} [options] Override http request option.
|
|
5744
|
+
* @throws {RequiredError}
|
|
5745
|
+
*/
|
|
5746
|
+
async getPublicationServices(o, l, t, r, a, n) {
|
|
5747
|
+
var d, h;
|
|
5748
|
+
const c = await s.getPublicationServices(o, l, t, r, a, n), p = (e == null ? void 0 : e.serverIndex) ?? 0, i = (h = (d = u["PublicationAdvisoryServiceApi.getPublicationServices"]) == null ? void 0 : d[p]) == null ? void 0 : h.url;
|
|
5749
|
+
return (I, b) => y(c, O, V, e)(I, i || b);
|
|
5750
|
+
}
|
|
5751
|
+
};
|
|
5752
|
+
}, Ma = function(e, s, o) {
|
|
5753
|
+
const l = Qa(e);
|
|
5754
|
+
return {
|
|
5755
|
+
/**
|
|
5756
|
+
*
|
|
5757
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
5758
|
+
* @param {*} [options] Override http request option.
|
|
5759
|
+
* @throws {RequiredError}
|
|
5760
|
+
*/
|
|
5761
|
+
apiV2PublicationServiceOptions(t) {
|
|
5762
|
+
return l.apiV2PublicationServiceOptions(t).then((r) => r(o, s));
|
|
5763
|
+
},
|
|
5764
|
+
/**
|
|
5765
|
+
*
|
|
5766
|
+
* @summary Retrieves all relevant publication services for an organization.
|
|
5767
|
+
* @param {PublicationAdvisoryServiceApiGetPublicationServicesRequest} requestParameters Request parameters.
|
|
5768
|
+
* @param {*} [options] Override http request option.
|
|
5769
|
+
* @throws {RequiredError}
|
|
5770
|
+
*/
|
|
5771
|
+
getPublicationServices(t = {}, r) {
|
|
5772
|
+
return l.getPublicationServices(t.searchTerm, t.language, t.pageNumber, t.pageSize, t.orderBy, r).then((a) => a(o, s));
|
|
5773
|
+
}
|
|
5774
|
+
};
|
|
5775
|
+
}, Da = function(e) {
|
|
5606
5776
|
return {
|
|
5607
5777
|
/**
|
|
5608
5778
|
*
|
|
@@ -5615,7 +5785,7 @@ const P = function(e, ...s) {
|
|
|
5615
5785
|
let t;
|
|
5616
5786
|
e && (t = e.baseOptions);
|
|
5617
5787
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
5618
|
-
await
|
|
5788
|
+
await P(a, "Authorization", e), m(l, n);
|
|
5619
5789
|
let c = t && t.headers ? t.headers : {};
|
|
5620
5790
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
5621
5791
|
url: R(l),
|
|
@@ -5633,7 +5803,7 @@ const P = function(e, ...s) {
|
|
|
5633
5803
|
let t;
|
|
5634
5804
|
e && (t = e.baseOptions);
|
|
5635
5805
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
5636
|
-
await
|
|
5806
|
+
await P(a, "Authorization", e), m(l, n);
|
|
5637
5807
|
let c = t && t.headers ? t.headers : {};
|
|
5638
5808
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
5639
5809
|
url: R(l),
|
|
@@ -5651,7 +5821,7 @@ const P = function(e, ...s) {
|
|
|
5651
5821
|
let t;
|
|
5652
5822
|
e && (t = e.baseOptions);
|
|
5653
5823
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
5654
|
-
await
|
|
5824
|
+
await P(a, "Authorization", e), m(l, n);
|
|
5655
5825
|
let c = t && t.headers ? t.headers : {};
|
|
5656
5826
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
5657
5827
|
url: R(l),
|
|
@@ -5669,7 +5839,7 @@ const P = function(e, ...s) {
|
|
|
5669
5839
|
let t;
|
|
5670
5840
|
e && (t = e.baseOptions);
|
|
5671
5841
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
5672
|
-
await
|
|
5842
|
+
await P(a, "Authorization", e), m(l, n);
|
|
5673
5843
|
let c = t && t.headers ? t.headers : {};
|
|
5674
5844
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
5675
5845
|
url: R(l),
|
|
@@ -5687,7 +5857,7 @@ const P = function(e, ...s) {
|
|
|
5687
5857
|
let t;
|
|
5688
5858
|
e && (t = e.baseOptions);
|
|
5689
5859
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
5690
|
-
await
|
|
5860
|
+
await P(a, "Authorization", e), m(l, n);
|
|
5691
5861
|
let c = t && t.headers ? t.headers : {};
|
|
5692
5862
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
5693
5863
|
url: R(l),
|
|
@@ -5705,7 +5875,7 @@ const P = function(e, ...s) {
|
|
|
5705
5875
|
let t;
|
|
5706
5876
|
e && (t = e.baseOptions);
|
|
5707
5877
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
5708
|
-
await
|
|
5878
|
+
await P(a, "Authorization", e), m(l, n);
|
|
5709
5879
|
let c = t && t.headers ? t.headers : {};
|
|
5710
5880
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
5711
5881
|
url: R(l),
|
|
@@ -5723,7 +5893,7 @@ const P = function(e, ...s) {
|
|
|
5723
5893
|
let t;
|
|
5724
5894
|
e && (t = e.baseOptions);
|
|
5725
5895
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
5726
|
-
await
|
|
5896
|
+
await P(a, "Authorization", e), m(l, n);
|
|
5727
5897
|
let c = t && t.headers ? t.headers : {};
|
|
5728
5898
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
5729
5899
|
url: R(l),
|
|
@@ -5741,7 +5911,7 @@ const P = function(e, ...s) {
|
|
|
5741
5911
|
let t;
|
|
5742
5912
|
e && (t = e.baseOptions);
|
|
5743
5913
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
5744
|
-
await
|
|
5914
|
+
await P(a, "Authorization", e), m(l, n);
|
|
5745
5915
|
let c = t && t.headers ? t.headers : {};
|
|
5746
5916
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
5747
5917
|
url: R(l),
|
|
@@ -5749,8 +5919,8 @@ const P = function(e, ...s) {
|
|
|
5749
5919
|
};
|
|
5750
5920
|
}
|
|
5751
5921
|
};
|
|
5752
|
-
},
|
|
5753
|
-
const s =
|
|
5922
|
+
}, ka = function(e) {
|
|
5923
|
+
const s = Da(e);
|
|
5754
5924
|
return {
|
|
5755
5925
|
/**
|
|
5756
5926
|
*
|
|
@@ -5761,7 +5931,7 @@ const P = function(e, ...s) {
|
|
|
5761
5931
|
async apiV2ReportsOptions(o) {
|
|
5762
5932
|
var a, n;
|
|
5763
5933
|
const l = await s.apiV2ReportsOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["ReportApi.apiV2ReportsOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
5764
|
-
return (c, p) =>
|
|
5934
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
5765
5935
|
},
|
|
5766
5936
|
/**
|
|
5767
5937
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -5772,7 +5942,7 @@ const P = function(e, ...s) {
|
|
|
5772
5942
|
async getApplicationProfileReport(o) {
|
|
5773
5943
|
var a, n;
|
|
5774
5944
|
const l = await s.getApplicationProfileReport(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["ReportApi.getApplicationProfileReport"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
5775
|
-
return (c, p) =>
|
|
5945
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
5776
5946
|
},
|
|
5777
5947
|
/**
|
|
5778
5948
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -5783,7 +5953,7 @@ const P = function(e, ...s) {
|
|
|
5783
5953
|
async getMaintenanceReport(o) {
|
|
5784
5954
|
var a, n;
|
|
5785
5955
|
const l = await s.getMaintenanceReport(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["ReportApi.getMaintenanceReport"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
5786
|
-
return (c, p) =>
|
|
5956
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
5787
5957
|
},
|
|
5788
5958
|
/**
|
|
5789
5959
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -5794,7 +5964,7 @@ const P = function(e, ...s) {
|
|
|
5794
5964
|
async getProjectQuotaReport(o) {
|
|
5795
5965
|
var a, n;
|
|
5796
5966
|
const l = await s.getProjectQuotaReport(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["ReportApi.getProjectQuotaReport"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
5797
|
-
return (c, p) =>
|
|
5967
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
5798
5968
|
},
|
|
5799
5969
|
/**
|
|
5800
5970
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -5805,7 +5975,7 @@ const P = function(e, ...s) {
|
|
|
5805
5975
|
async getProjectReport(o) {
|
|
5806
5976
|
var a, n;
|
|
5807
5977
|
const l = await s.getProjectReport(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["ReportApi.getProjectReport"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
5808
|
-
return (c, p) =>
|
|
5978
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
5809
5979
|
},
|
|
5810
5980
|
/**
|
|
5811
5981
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -5816,7 +5986,7 @@ const P = function(e, ...s) {
|
|
|
5816
5986
|
async getResourceQuotaReport(o) {
|
|
5817
5987
|
var a, n;
|
|
5818
5988
|
const l = await s.getResourceQuotaReport(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["ReportApi.getResourceQuotaReport"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
5819
|
-
return (c, p) =>
|
|
5989
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
5820
5990
|
},
|
|
5821
5991
|
/**
|
|
5822
5992
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -5827,7 +5997,7 @@ const P = function(e, ...s) {
|
|
|
5827
5997
|
async getResourceReport(o) {
|
|
5828
5998
|
var a, n;
|
|
5829
5999
|
const l = await s.getResourceReport(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["ReportApi.getResourceReport"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
5830
|
-
return (c, p) =>
|
|
6000
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
5831
6001
|
},
|
|
5832
6002
|
/**
|
|
5833
6003
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -5838,11 +6008,11 @@ const P = function(e, ...s) {
|
|
|
5838
6008
|
async getUserReport(o) {
|
|
5839
6009
|
var a, n;
|
|
5840
6010
|
const l = await s.getUserReport(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["ReportApi.getUserReport"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
5841
|
-
return (c, p) =>
|
|
6011
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
5842
6012
|
}
|
|
5843
6013
|
};
|
|
5844
|
-
},
|
|
5845
|
-
const l =
|
|
6014
|
+
}, Ga = function(e, s, o) {
|
|
6015
|
+
const l = ka(e);
|
|
5846
6016
|
return {
|
|
5847
6017
|
/**
|
|
5848
6018
|
*
|
|
@@ -5917,7 +6087,7 @@ const P = function(e, ...s) {
|
|
|
5917
6087
|
return l.getUserReport(t).then((r) => r(o, s));
|
|
5918
6088
|
}
|
|
5919
6089
|
};
|
|
5920
|
-
},
|
|
6090
|
+
}, $a = function(e) {
|
|
5921
6091
|
return {
|
|
5922
6092
|
/**
|
|
5923
6093
|
*
|
|
@@ -5930,7 +6100,7 @@ const P = function(e, ...s) {
|
|
|
5930
6100
|
let t;
|
|
5931
6101
|
e && (t = e.baseOptions);
|
|
5932
6102
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
5933
|
-
await
|
|
6103
|
+
await P(a, "Authorization", e), m(l, n);
|
|
5934
6104
|
let c = t && t.headers ? t.headers : {};
|
|
5935
6105
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
5936
6106
|
url: R(l),
|
|
@@ -5950,7 +6120,7 @@ const P = function(e, ...s) {
|
|
|
5950
6120
|
let r;
|
|
5951
6121
|
e && (r = e.baseOptions);
|
|
5952
6122
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
5953
|
-
await
|
|
6123
|
+
await P(n, "Authorization", e), m(t, c);
|
|
5954
6124
|
let p = r && r.headers ? r.headers : {};
|
|
5955
6125
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
5956
6126
|
url: R(t),
|
|
@@ -5958,8 +6128,8 @@ const P = function(e, ...s) {
|
|
|
5958
6128
|
};
|
|
5959
6129
|
}
|
|
5960
6130
|
};
|
|
5961
|
-
},
|
|
5962
|
-
const s =
|
|
6131
|
+
}, qa = function(e) {
|
|
6132
|
+
const s = $a(e);
|
|
5963
6133
|
return {
|
|
5964
6134
|
/**
|
|
5965
6135
|
*
|
|
@@ -5970,7 +6140,7 @@ const P = function(e, ...s) {
|
|
|
5970
6140
|
async apiV2ResourcesOptions(o) {
|
|
5971
6141
|
var a, n;
|
|
5972
6142
|
const l = await s.apiV2ResourcesOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["ResourceApi.apiV2ResourcesOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
5973
|
-
return (c, p) =>
|
|
6143
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
5974
6144
|
},
|
|
5975
6145
|
/**
|
|
5976
6146
|
*
|
|
@@ -5982,11 +6152,11 @@ const P = function(e, ...s) {
|
|
|
5982
6152
|
async getResource(o, l) {
|
|
5983
6153
|
var n, c;
|
|
5984
6154
|
const t = await s.getResource(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["ResourceApi.getResource"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
5985
|
-
return (p, i) =>
|
|
6155
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
5986
6156
|
}
|
|
5987
6157
|
};
|
|
5988
|
-
},
|
|
5989
|
-
const l =
|
|
6158
|
+
}, _a = function(e, s, o) {
|
|
6159
|
+
const l = qa(e);
|
|
5990
6160
|
return {
|
|
5991
6161
|
/**
|
|
5992
6162
|
*
|
|
@@ -6008,7 +6178,7 @@ const P = function(e, ...s) {
|
|
|
6008
6178
|
return l.getResource(t.resourceId, r).then((a) => a(o, s));
|
|
6009
6179
|
}
|
|
6010
6180
|
};
|
|
6011
|
-
},
|
|
6181
|
+
}, Ka = function(e) {
|
|
6012
6182
|
return {
|
|
6013
6183
|
/**
|
|
6014
6184
|
*
|
|
@@ -6021,7 +6191,7 @@ const P = function(e, ...s) {
|
|
|
6021
6191
|
let t;
|
|
6022
6192
|
e && (t = e.baseOptions);
|
|
6023
6193
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
6024
|
-
await
|
|
6194
|
+
await P(a, "Authorization", e), m(l, n);
|
|
6025
6195
|
let c = t && t.headers ? t.headers : {};
|
|
6026
6196
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
6027
6197
|
url: R(l),
|
|
@@ -6039,7 +6209,7 @@ const P = function(e, ...s) {
|
|
|
6039
6209
|
let t;
|
|
6040
6210
|
e && (t = e.baseOptions);
|
|
6041
6211
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
6042
|
-
await
|
|
6212
|
+
await P(a, "Authorization", e), m(l, n);
|
|
6043
6213
|
let c = t && t.headers ? t.headers : {};
|
|
6044
6214
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
6045
6215
|
url: R(l),
|
|
@@ -6059,7 +6229,7 @@ const P = function(e, ...s) {
|
|
|
6059
6229
|
let r;
|
|
6060
6230
|
e && (r = e.baseOptions);
|
|
6061
6231
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
6062
|
-
await
|
|
6232
|
+
await P(n, "Authorization", e), m(t, c);
|
|
6063
6233
|
let p = r && r.headers ? r.headers : {};
|
|
6064
6234
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
6065
6235
|
url: R(t),
|
|
@@ -6067,8 +6237,8 @@ const P = function(e, ...s) {
|
|
|
6067
6237
|
};
|
|
6068
6238
|
}
|
|
6069
6239
|
};
|
|
6070
|
-
},
|
|
6071
|
-
const s =
|
|
6240
|
+
}, Ja = function(e) {
|
|
6241
|
+
const s = Ka(e);
|
|
6072
6242
|
return {
|
|
6073
6243
|
/**
|
|
6074
6244
|
*
|
|
@@ -6079,7 +6249,7 @@ const P = function(e, ...s) {
|
|
|
6079
6249
|
async apiV2ResourceTypesOptions(o) {
|
|
6080
6250
|
var a, n;
|
|
6081
6251
|
const l = await s.apiV2ResourceTypesOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["ResourceTypeApi.apiV2ResourceTypesOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
6082
|
-
return (c, p) =>
|
|
6252
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
6083
6253
|
},
|
|
6084
6254
|
/**
|
|
6085
6255
|
*
|
|
@@ -6090,7 +6260,7 @@ const P = function(e, ...s) {
|
|
|
6090
6260
|
async getAllResourceTypesInformation(o) {
|
|
6091
6261
|
var a, n;
|
|
6092
6262
|
const l = await s.getAllResourceTypesInformation(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["ResourceTypeApi.getAllResourceTypesInformation"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
6093
|
-
return (c, p) =>
|
|
6263
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
6094
6264
|
},
|
|
6095
6265
|
/**
|
|
6096
6266
|
*
|
|
@@ -6102,11 +6272,11 @@ const P = function(e, ...s) {
|
|
|
6102
6272
|
async getResourceTypeInformation(o, l) {
|
|
6103
6273
|
var n, c;
|
|
6104
6274
|
const t = await s.getResourceTypeInformation(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["ResourceTypeApi.getResourceTypeInformation"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
6105
|
-
return (p, i) =>
|
|
6275
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
6106
6276
|
}
|
|
6107
6277
|
};
|
|
6108
|
-
},
|
|
6109
|
-
const l =
|
|
6278
|
+
}, Wa = function(e, s, o) {
|
|
6279
|
+
const l = Ja(e);
|
|
6110
6280
|
return {
|
|
6111
6281
|
/**
|
|
6112
6282
|
*
|
|
@@ -6137,7 +6307,7 @@ const P = function(e, ...s) {
|
|
|
6137
6307
|
return l.getResourceTypeInformation(t.resourceTypeId, r).then((a) => a(o, s));
|
|
6138
6308
|
}
|
|
6139
6309
|
};
|
|
6140
|
-
},
|
|
6310
|
+
}, Xa = function(e) {
|
|
6141
6311
|
return {
|
|
6142
6312
|
/**
|
|
6143
6313
|
*
|
|
@@ -6150,7 +6320,7 @@ const P = function(e, ...s) {
|
|
|
6150
6320
|
let t;
|
|
6151
6321
|
e && (t = e.baseOptions);
|
|
6152
6322
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
6153
|
-
await
|
|
6323
|
+
await P(a, "Authorization", e), m(l, n);
|
|
6154
6324
|
let c = t && t.headers ? t.headers : {};
|
|
6155
6325
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
6156
6326
|
url: R(l),
|
|
@@ -6172,7 +6342,7 @@ const P = function(e, ...s) {
|
|
|
6172
6342
|
let n;
|
|
6173
6343
|
e && (n = e.baseOptions);
|
|
6174
6344
|
const c = { method: "GET", ...n, ...t }, p = {}, i = {};
|
|
6175
|
-
await
|
|
6345
|
+
await P(p, "Authorization", e), o !== void 0 && (i.Domain = o), l !== void 0 && (i.AccessToken = l), m(a, i);
|
|
6176
6346
|
let d = n && n.headers ? n.headers : {};
|
|
6177
6347
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
6178
6348
|
url: R(a),
|
|
@@ -6193,7 +6363,7 @@ const P = function(e, ...s) {
|
|
|
6193
6363
|
let a;
|
|
6194
6364
|
e && (a = e.baseOptions);
|
|
6195
6365
|
const n = { method: "GET", ...a, ...l }, c = {}, p = {};
|
|
6196
|
-
await
|
|
6366
|
+
await P(c, "Authorization", e), s !== void 0 && (p.Domain = s), o !== void 0 && (p.AccessToken = o), m(r, p);
|
|
6197
6367
|
let i = a && a.headers ? a.headers : {};
|
|
6198
6368
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
6199
6369
|
url: R(r),
|
|
@@ -6215,7 +6385,7 @@ const P = function(e, ...s) {
|
|
|
6215
6385
|
let n;
|
|
6216
6386
|
e && (n = e.baseOptions);
|
|
6217
6387
|
const c = { method: "GET", ...n, ...t }, p = {}, i = {};
|
|
6218
|
-
await
|
|
6388
|
+
await P(p, "Authorization", e), o !== void 0 && (i.Domain = o), l !== void 0 && (i.AccessToken = l), m(a, i);
|
|
6219
6389
|
let d = n && n.headers ? n.headers : {};
|
|
6220
6390
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
6221
6391
|
url: R(a),
|
|
@@ -6223,8 +6393,8 @@ const P = function(e, ...s) {
|
|
|
6223
6393
|
};
|
|
6224
6394
|
}
|
|
6225
6395
|
};
|
|
6226
|
-
},
|
|
6227
|
-
const s =
|
|
6396
|
+
}, Ya = function(e) {
|
|
6397
|
+
const s = Xa(e);
|
|
6228
6398
|
return {
|
|
6229
6399
|
/**
|
|
6230
6400
|
*
|
|
@@ -6235,7 +6405,7 @@ const P = function(e, ...s) {
|
|
|
6235
6405
|
async apiV2ResourceTypesGitlabOptions(o) {
|
|
6236
6406
|
var a, n;
|
|
6237
6407
|
const l = await s.apiV2ResourceTypesGitlabOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["ResourceTypeGitLabApi.apiV2ResourceTypesGitlabOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
6238
|
-
return (c, p) =>
|
|
6408
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
6239
6409
|
},
|
|
6240
6410
|
/**
|
|
6241
6411
|
*
|
|
@@ -6249,7 +6419,7 @@ const P = function(e, ...s) {
|
|
|
6249
6419
|
async getAllGitlabBranchesForProject(o, l, t, r) {
|
|
6250
6420
|
var p, i;
|
|
6251
6421
|
const a = await s.getAllGitlabBranchesForProject(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["ResourceTypeGitLabApi.getAllGitlabBranchesForProject"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
6252
|
-
return (d, h) =>
|
|
6422
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
6253
6423
|
},
|
|
6254
6424
|
/**
|
|
6255
6425
|
*
|
|
@@ -6262,7 +6432,7 @@ const P = function(e, ...s) {
|
|
|
6262
6432
|
async getAllGitlabProjects(o, l, t) {
|
|
6263
6433
|
var c, p;
|
|
6264
6434
|
const r = await s.getAllGitlabProjects(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["ResourceTypeGitLabApi.getAllGitlabProjects"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
6265
|
-
return (i, d) =>
|
|
6435
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
6266
6436
|
},
|
|
6267
6437
|
/**
|
|
6268
6438
|
*
|
|
@@ -6276,11 +6446,11 @@ const P = function(e, ...s) {
|
|
|
6276
6446
|
async getGitlabProject(o, l, t, r) {
|
|
6277
6447
|
var p, i;
|
|
6278
6448
|
const a = await s.getGitlabProject(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["ResourceTypeGitLabApi.getGitlabProject"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
6279
|
-
return (d, h) =>
|
|
6449
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
6280
6450
|
}
|
|
6281
6451
|
};
|
|
6282
|
-
},
|
|
6283
|
-
const l =
|
|
6452
|
+
}, Za = function(e, s, o) {
|
|
6453
|
+
const l = Ya(e);
|
|
6284
6454
|
return {
|
|
6285
6455
|
/**
|
|
6286
6456
|
*
|
|
@@ -6322,7 +6492,7 @@ const P = function(e, ...s) {
|
|
|
6322
6492
|
return l.getGitlabProject(t.gitlabProjectId, t.domain, t.accessToken, r).then((a) => a(o, s));
|
|
6323
6493
|
}
|
|
6324
6494
|
};
|
|
6325
|
-
},
|
|
6495
|
+
}, fa = function(e) {
|
|
6326
6496
|
return {
|
|
6327
6497
|
/**
|
|
6328
6498
|
*
|
|
@@ -6335,7 +6505,7 @@ const P = function(e, ...s) {
|
|
|
6335
6505
|
let t;
|
|
6336
6506
|
e && (t = e.baseOptions);
|
|
6337
6507
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
6338
|
-
await
|
|
6508
|
+
await P(a, "Authorization", e), m(l, n);
|
|
6339
6509
|
let c = t && t.headers ? t.headers : {};
|
|
6340
6510
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
6341
6511
|
url: R(l),
|
|
@@ -6355,7 +6525,7 @@ const P = function(e, ...s) {
|
|
|
6355
6525
|
let r;
|
|
6356
6526
|
e && (r = e.baseOptions);
|
|
6357
6527
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
6358
|
-
await
|
|
6528
|
+
await P(n, "Authorization", e), m(t, c);
|
|
6359
6529
|
let p = r && r.headers ? r.headers : {};
|
|
6360
6530
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
6361
6531
|
url: R(t),
|
|
@@ -6376,7 +6546,7 @@ const P = function(e, ...s) {
|
|
|
6376
6546
|
let n;
|
|
6377
6547
|
e && (n = e.baseOptions);
|
|
6378
6548
|
const c = { method: "GET", ...n, ...t }, p = {}, i = {};
|
|
6379
|
-
await
|
|
6549
|
+
await P(p, "Authorization", e), s !== void 0 && (i.PageNumber = s), o !== void 0 && (i.PageSize = o), l !== void 0 && (i.OrderBy = l), m(a, i);
|
|
6380
6550
|
let d = n && n.headers ? n.headers : {};
|
|
6381
6551
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
6382
6552
|
url: R(a),
|
|
@@ -6384,8 +6554,8 @@ const P = function(e, ...s) {
|
|
|
6384
6554
|
};
|
|
6385
6555
|
}
|
|
6386
6556
|
};
|
|
6387
|
-
},
|
|
6388
|
-
const s =
|
|
6557
|
+
}, ga = function(e) {
|
|
6558
|
+
const s = fa(e);
|
|
6389
6559
|
return {
|
|
6390
6560
|
/**
|
|
6391
6561
|
*
|
|
@@ -6396,7 +6566,7 @@ const P = function(e, ...s) {
|
|
|
6396
6566
|
async apiV2RolesOptions(o) {
|
|
6397
6567
|
var a, n;
|
|
6398
6568
|
const l = await s.apiV2RolesOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["RoleApi.apiV2RolesOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
6399
|
-
return (c, p) =>
|
|
6569
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
6400
6570
|
},
|
|
6401
6571
|
/**
|
|
6402
6572
|
*
|
|
@@ -6408,7 +6578,7 @@ const P = function(e, ...s) {
|
|
|
6408
6578
|
async getRole(o, l) {
|
|
6409
6579
|
var n, c;
|
|
6410
6580
|
const t = await s.getRole(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["RoleApi.getRole"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
6411
|
-
return (p, i) =>
|
|
6581
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
6412
6582
|
},
|
|
6413
6583
|
/**
|
|
6414
6584
|
*
|
|
@@ -6422,11 +6592,11 @@ const P = function(e, ...s) {
|
|
|
6422
6592
|
async getRoles(o, l, t, r) {
|
|
6423
6593
|
var p, i;
|
|
6424
6594
|
const a = await s.getRoles(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["RoleApi.getRoles"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
6425
|
-
return (d, h) =>
|
|
6595
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
6426
6596
|
}
|
|
6427
6597
|
};
|
|
6428
|
-
},
|
|
6429
|
-
const l =
|
|
6598
|
+
}, es = function(e, s, o) {
|
|
6599
|
+
const l = ga(e);
|
|
6430
6600
|
return {
|
|
6431
6601
|
/**
|
|
6432
6602
|
*
|
|
@@ -6458,7 +6628,7 @@ const P = function(e, ...s) {
|
|
|
6458
6628
|
return l.getRoles(t.pageNumber, t.pageSize, t.orderBy, r).then((a) => a(o, s));
|
|
6459
6629
|
}
|
|
6460
6630
|
};
|
|
6461
|
-
},
|
|
6631
|
+
}, ts = function(e) {
|
|
6462
6632
|
return {
|
|
6463
6633
|
/**
|
|
6464
6634
|
*
|
|
@@ -6471,7 +6641,7 @@ const P = function(e, ...s) {
|
|
|
6471
6641
|
let t;
|
|
6472
6642
|
e && (t = e.baseOptions);
|
|
6473
6643
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
6474
|
-
await
|
|
6644
|
+
await P(a, "Authorization", e), m(l, n);
|
|
6475
6645
|
let c = t && t.headers ? t.headers : {};
|
|
6476
6646
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
6477
6647
|
url: R(l),
|
|
@@ -6495,17 +6665,17 @@ const P = function(e, ...s) {
|
|
|
6495
6665
|
const p = "/api/v2/search", i = new URL(p, A);
|
|
6496
6666
|
let d;
|
|
6497
6667
|
e && (d = e.baseOptions);
|
|
6498
|
-
const h = { method: "GET", ...d, ...c },
|
|
6499
|
-
await
|
|
6668
|
+
const h = { method: "GET", ...d, ...c }, I = {}, b = {};
|
|
6669
|
+
await P(I, "Authorization", e), s !== void 0 && (b.Query = s), o !== void 0 && (b.UseAdvancedSyntax = o), l && (b.Languages = l), t !== void 0 && (b.Category = t), r !== void 0 && (b.PageNumber = r), a !== void 0 && (b.PageSize = a), n !== void 0 && (b.OrderBy = n), m(i, b);
|
|
6500
6670
|
let S = d && d.headers ? d.headers : {};
|
|
6501
|
-
return h.headers = { ...
|
|
6671
|
+
return h.headers = { ...I, ...S, ...c.headers }, {
|
|
6502
6672
|
url: R(i),
|
|
6503
6673
|
options: h
|
|
6504
6674
|
};
|
|
6505
6675
|
}
|
|
6506
6676
|
};
|
|
6507
|
-
},
|
|
6508
|
-
const s =
|
|
6677
|
+
}, rs = function(e) {
|
|
6678
|
+
const s = ts(e);
|
|
6509
6679
|
return {
|
|
6510
6680
|
/**
|
|
6511
6681
|
*
|
|
@@ -6516,7 +6686,7 @@ const P = function(e, ...s) {
|
|
|
6516
6686
|
async apiV2SearchOptions(o) {
|
|
6517
6687
|
var a, n;
|
|
6518
6688
|
const l = await s.apiV2SearchOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["SearchApi.apiV2SearchOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
6519
|
-
return (c, p) =>
|
|
6689
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
6520
6690
|
},
|
|
6521
6691
|
/**
|
|
6522
6692
|
*
|
|
@@ -6532,13 +6702,13 @@ const P = function(e, ...s) {
|
|
|
6532
6702
|
* @throws {RequiredError}
|
|
6533
6703
|
*/
|
|
6534
6704
|
async getSearchResults(o, l, t, r, a, n, c, p) {
|
|
6535
|
-
var
|
|
6536
|
-
const i = await s.getSearchResults(o, l, t, r, a, n, c, p), d = (e == null ? void 0 : e.serverIndex) ?? 0, h = (b = (
|
|
6537
|
-
return (S, w) =>
|
|
6705
|
+
var I, b;
|
|
6706
|
+
const i = await s.getSearchResults(o, l, t, r, a, n, c, p), d = (e == null ? void 0 : e.serverIndex) ?? 0, h = (b = (I = u["SearchApi.getSearchResults"]) == null ? void 0 : I[d]) == null ? void 0 : b.url;
|
|
6707
|
+
return (S, w) => y(i, O, V, e)(S, h || w);
|
|
6538
6708
|
}
|
|
6539
6709
|
};
|
|
6540
|
-
},
|
|
6541
|
-
const l =
|
|
6710
|
+
}, as = function(e, s, o) {
|
|
6711
|
+
const l = rs(e);
|
|
6542
6712
|
return {
|
|
6543
6713
|
/**
|
|
6544
6714
|
*
|
|
@@ -6560,7 +6730,7 @@ const P = function(e, ...s) {
|
|
|
6560
6730
|
return l.getSearchResults(t.query, t.useAdvancedSyntax, t.languages, t.category, t.pageNumber, t.pageSize, t.orderBy, r).then((a) => a(o, s));
|
|
6561
6731
|
}
|
|
6562
6732
|
};
|
|
6563
|
-
},
|
|
6733
|
+
}, ss = function(e) {
|
|
6564
6734
|
return {
|
|
6565
6735
|
/**
|
|
6566
6736
|
*
|
|
@@ -6574,7 +6744,7 @@ const P = function(e, ...s) {
|
|
|
6574
6744
|
let r;
|
|
6575
6745
|
e && (r = e.baseOptions);
|
|
6576
6746
|
const a = { method: "POST", ...r, ...o }, n = {}, c = {};
|
|
6577
|
-
await
|
|
6747
|
+
await P(n, "Authorization", e), n["Content-Type"] = "application/json", m(t, c);
|
|
6578
6748
|
let p = r && r.headers ? r.headers : {};
|
|
6579
6749
|
return a.headers = { ...n, ...p, ...o.headers }, a.data = L(s, a, e), {
|
|
6580
6750
|
url: R(t),
|
|
@@ -6592,7 +6762,7 @@ const P = function(e, ...s) {
|
|
|
6592
6762
|
let t;
|
|
6593
6763
|
e && (t = e.baseOptions);
|
|
6594
6764
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
6595
|
-
await
|
|
6765
|
+
await P(a, "Authorization", e), m(l, n);
|
|
6596
6766
|
let c = t && t.headers ? t.headers : {};
|
|
6597
6767
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
6598
6768
|
url: R(l),
|
|
@@ -6612,13 +6782,31 @@ const P = function(e, ...s) {
|
|
|
6612
6782
|
let r;
|
|
6613
6783
|
e && (r = e.baseOptions);
|
|
6614
6784
|
const a = { method: "POST", ...r, ...o }, n = {}, c = {};
|
|
6615
|
-
await
|
|
6785
|
+
await P(n, "Authorization", e), s !== void 0 && (c.ConfirmationToken = s), m(t, c);
|
|
6616
6786
|
let p = r && r.headers ? r.headers : {};
|
|
6617
6787
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
6618
6788
|
url: R(t),
|
|
6619
6789
|
options: a
|
|
6620
6790
|
};
|
|
6621
6791
|
},
|
|
6792
|
+
/**
|
|
6793
|
+
*
|
|
6794
|
+
* @summary Deletes the current authenticated user.
|
|
6795
|
+
* @param {*} [options] Override http request option.
|
|
6796
|
+
* @throws {RequiredError}
|
|
6797
|
+
*/
|
|
6798
|
+
deleteCurrentUser: async (s = {}) => {
|
|
6799
|
+
const o = "/api/v2/self", l = new URL(o, A);
|
|
6800
|
+
let t;
|
|
6801
|
+
e && (t = e.baseOptions);
|
|
6802
|
+
const r = { method: "DELETE", ...t, ...s }, a = {}, n = {};
|
|
6803
|
+
await P(a, "Authorization", e), m(l, n);
|
|
6804
|
+
let c = t && t.headers ? t.headers : {};
|
|
6805
|
+
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
6806
|
+
url: R(l),
|
|
6807
|
+
options: r
|
|
6808
|
+
};
|
|
6809
|
+
},
|
|
6622
6810
|
/**
|
|
6623
6811
|
*
|
|
6624
6812
|
* @summary Retrieves the current authenticated user.
|
|
@@ -6630,7 +6818,7 @@ const P = function(e, ...s) {
|
|
|
6630
6818
|
let t;
|
|
6631
6819
|
e && (t = e.baseOptions);
|
|
6632
6820
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
6633
|
-
await
|
|
6821
|
+
await P(a, "Authorization", e), m(l, n);
|
|
6634
6822
|
let c = t && t.headers ? t.headers : {};
|
|
6635
6823
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
6636
6824
|
url: R(l),
|
|
@@ -6648,7 +6836,7 @@ const P = function(e, ...s) {
|
|
|
6648
6836
|
let t;
|
|
6649
6837
|
e && (t = e.baseOptions);
|
|
6650
6838
|
const r = { method: "POST", ...t, ...s }, a = {}, n = {};
|
|
6651
|
-
await
|
|
6839
|
+
await P(a, "Authorization", e), m(l, n);
|
|
6652
6840
|
let c = t && t.headers ? t.headers : {};
|
|
6653
6841
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
6654
6842
|
url: R(l),
|
|
@@ -6668,7 +6856,7 @@ const P = function(e, ...s) {
|
|
|
6668
6856
|
let r;
|
|
6669
6857
|
e && (r = e.baseOptions);
|
|
6670
6858
|
const a = { method: "POST", ...r, ...o }, n = {}, c = {};
|
|
6671
|
-
await
|
|
6859
|
+
await P(n, "Authorization", e), s !== void 0 && (c.IdentityProvider = s), m(t, c);
|
|
6672
6860
|
let p = r && r.headers ? r.headers : {};
|
|
6673
6861
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
6674
6862
|
url: R(t),
|
|
@@ -6687,7 +6875,7 @@ const P = function(e, ...s) {
|
|
|
6687
6875
|
let r;
|
|
6688
6876
|
e && (r = e.baseOptions);
|
|
6689
6877
|
const a = { method: "POST", ...r, ...o }, n = {}, c = {};
|
|
6690
|
-
await
|
|
6878
|
+
await P(n, "Authorization", e), n["Content-Type"] = "application/json", m(t, c);
|
|
6691
6879
|
let p = r && r.headers ? r.headers : {};
|
|
6692
6880
|
return a.headers = { ...n, ...p, ...o.headers }, a.data = L(s, a, e), {
|
|
6693
6881
|
url: R(t),
|
|
@@ -6706,7 +6894,7 @@ const P = function(e, ...s) {
|
|
|
6706
6894
|
let r;
|
|
6707
6895
|
e && (r = e.baseOptions);
|
|
6708
6896
|
const a = { method: "PUT", ...r, ...o }, n = {}, c = {};
|
|
6709
|
-
await
|
|
6897
|
+
await P(n, "Authorization", e), n["Content-Type"] = "application/json", m(t, c);
|
|
6710
6898
|
let p = r && r.headers ? r.headers : {};
|
|
6711
6899
|
return a.headers = { ...n, ...p, ...o.headers }, a.data = L(s, a, e), {
|
|
6712
6900
|
url: R(t),
|
|
@@ -6714,8 +6902,8 @@ const P = function(e, ...s) {
|
|
|
6714
6902
|
};
|
|
6715
6903
|
}
|
|
6716
6904
|
};
|
|
6717
|
-
},
|
|
6718
|
-
const s =
|
|
6905
|
+
}, os = function(e) {
|
|
6906
|
+
const s = ss(e);
|
|
6719
6907
|
return {
|
|
6720
6908
|
/**
|
|
6721
6909
|
*
|
|
@@ -6727,7 +6915,7 @@ const P = function(e, ...s) {
|
|
|
6727
6915
|
async acceptCurrentTos(o, l) {
|
|
6728
6916
|
var n, c;
|
|
6729
6917
|
const t = await s.acceptCurrentTos(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["SelfApi.acceptCurrentTos"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
6730
|
-
return (p, i) =>
|
|
6918
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
6731
6919
|
},
|
|
6732
6920
|
/**
|
|
6733
6921
|
*
|
|
@@ -6738,7 +6926,7 @@ const P = function(e, ...s) {
|
|
|
6738
6926
|
async apiV2SelfOptions(o) {
|
|
6739
6927
|
var a, n;
|
|
6740
6928
|
const l = await s.apiV2SelfOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["SelfApi.apiV2SelfOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
6741
|
-
return (c, p) =>
|
|
6929
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
6742
6930
|
},
|
|
6743
6931
|
/**
|
|
6744
6932
|
*
|
|
@@ -6750,7 +6938,18 @@ const P = function(e, ...s) {
|
|
|
6750
6938
|
async confirmUserEmail(o, l) {
|
|
6751
6939
|
var n, c;
|
|
6752
6940
|
const t = await s.confirmUserEmail(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["SelfApi.confirmUserEmail"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
6753
|
-
return (p, i) =>
|
|
6941
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
6942
|
+
},
|
|
6943
|
+
/**
|
|
6944
|
+
*
|
|
6945
|
+
* @summary Deletes the current authenticated user.
|
|
6946
|
+
* @param {*} [options] Override http request option.
|
|
6947
|
+
* @throws {RequiredError}
|
|
6948
|
+
*/
|
|
6949
|
+
async deleteCurrentUser(o) {
|
|
6950
|
+
var a, n;
|
|
6951
|
+
const l = await s.deleteCurrentUser(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["SelfApi.deleteCurrentUser"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
6952
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
6754
6953
|
},
|
|
6755
6954
|
/**
|
|
6756
6955
|
*
|
|
@@ -6761,7 +6960,7 @@ const P = function(e, ...s) {
|
|
|
6761
6960
|
async getCurrentUser(o) {
|
|
6762
6961
|
var a, n;
|
|
6763
6962
|
const l = await s.getCurrentUser(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["SelfApi.getCurrentUser"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
6764
|
-
return (c, p) =>
|
|
6963
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
6765
6964
|
},
|
|
6766
6965
|
/**
|
|
6767
6966
|
*
|
|
@@ -6772,7 +6971,7 @@ const P = function(e, ...s) {
|
|
|
6772
6971
|
async giveDataProcessingConsent(o) {
|
|
6773
6972
|
var a, n;
|
|
6774
6973
|
const l = await s.giveDataProcessingConsent(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["SelfApi.giveDataProcessingConsent"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
6775
|
-
return (c, p) =>
|
|
6974
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
6776
6975
|
},
|
|
6777
6976
|
/**
|
|
6778
6977
|
*
|
|
@@ -6784,7 +6983,7 @@ const P = function(e, ...s) {
|
|
|
6784
6983
|
async initiateUserMerge(o, l) {
|
|
6785
6984
|
var n, c;
|
|
6786
6985
|
const t = await s.initiateUserMerge(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["SelfApi.initiateUserMerge"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
6787
|
-
return (p, i) =>
|
|
6986
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
6788
6987
|
},
|
|
6789
6988
|
/**
|
|
6790
6989
|
*
|
|
@@ -6796,7 +6995,7 @@ const P = function(e, ...s) {
|
|
|
6796
6995
|
async resolveProjectInvitation(o, l) {
|
|
6797
6996
|
var n, c;
|
|
6798
6997
|
const t = await s.resolveProjectInvitation(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["SelfApi.resolveProjectInvitation"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
6799
|
-
return (p, i) =>
|
|
6998
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
6800
6999
|
},
|
|
6801
7000
|
/**
|
|
6802
7001
|
*
|
|
@@ -6808,11 +7007,11 @@ const P = function(e, ...s) {
|
|
|
6808
7007
|
async updateCurrentUser(o, l) {
|
|
6809
7008
|
var n, c;
|
|
6810
7009
|
const t = await s.updateCurrentUser(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["SelfApi.updateCurrentUser"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
6811
|
-
return (p, i) =>
|
|
7010
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
6812
7011
|
}
|
|
6813
7012
|
};
|
|
6814
|
-
},
|
|
6815
|
-
const l =
|
|
7013
|
+
}, ls = function(e, s, o) {
|
|
7014
|
+
const l = os(e);
|
|
6816
7015
|
return {
|
|
6817
7016
|
/**
|
|
6818
7017
|
*
|
|
@@ -6843,6 +7042,15 @@ const P = function(e, ...s) {
|
|
|
6843
7042
|
confirmUserEmail(t, r) {
|
|
6844
7043
|
return l.confirmUserEmail(t.confirmationToken, r).then((a) => a(o, s));
|
|
6845
7044
|
},
|
|
7045
|
+
/**
|
|
7046
|
+
*
|
|
7047
|
+
* @summary Deletes the current authenticated user.
|
|
7048
|
+
* @param {*} [options] Override http request option.
|
|
7049
|
+
* @throws {RequiredError}
|
|
7050
|
+
*/
|
|
7051
|
+
deleteCurrentUser(t) {
|
|
7052
|
+
return l.deleteCurrentUser(t).then((r) => r(o, s));
|
|
7053
|
+
},
|
|
6846
7054
|
/**
|
|
6847
7055
|
*
|
|
6848
7056
|
* @summary Retrieves the current authenticated user.
|
|
@@ -6892,7 +7100,7 @@ const P = function(e, ...s) {
|
|
|
6892
7100
|
return l.updateCurrentUser(t.userForUpdateDto, r).then((a) => a(o, s));
|
|
6893
7101
|
}
|
|
6894
7102
|
};
|
|
6895
|
-
},
|
|
7103
|
+
}, ns = function(e) {
|
|
6896
7104
|
return {
|
|
6897
7105
|
/**
|
|
6898
7106
|
*
|
|
@@ -6905,7 +7113,7 @@ const P = function(e, ...s) {
|
|
|
6905
7113
|
let t;
|
|
6906
7114
|
e && (t = e.baseOptions);
|
|
6907
7115
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
6908
|
-
await
|
|
7116
|
+
await P(a, "Authorization", e), m(l, n);
|
|
6909
7117
|
let c = t && t.headers ? t.headers : {};
|
|
6910
7118
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
6911
7119
|
url: R(l),
|
|
@@ -6924,7 +7132,7 @@ const P = function(e, ...s) {
|
|
|
6924
7132
|
let r;
|
|
6925
7133
|
e && (r = e.baseOptions);
|
|
6926
7134
|
const a = { method: "POST", ...r, ...o }, n = {}, c = {};
|
|
6927
|
-
await
|
|
7135
|
+
await P(n, "Authorization", e), n["Content-Type"] = "application/json", m(t, c);
|
|
6928
7136
|
let p = r && r.headers ? r.headers : {};
|
|
6929
7137
|
return a.headers = { ...n, ...p, ...o.headers }, a.data = L(s, a, e), {
|
|
6930
7138
|
url: R(t),
|
|
@@ -6945,7 +7153,7 @@ const P = function(e, ...s) {
|
|
|
6945
7153
|
let n;
|
|
6946
7154
|
e && (n = e.baseOptions);
|
|
6947
7155
|
const c = { method: "GET", ...n, ...t }, p = {}, i = {};
|
|
6948
|
-
await
|
|
7156
|
+
await P(p, "Authorization", e), s !== void 0 && (i.PageNumber = s), o !== void 0 && (i.PageSize = o), l !== void 0 && (i.OrderBy = l), m(a, i);
|
|
6949
7157
|
let d = n && n.headers ? n.headers : {};
|
|
6950
7158
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
6951
7159
|
url: R(a),
|
|
@@ -6965,7 +7173,7 @@ const P = function(e, ...s) {
|
|
|
6965
7173
|
let r;
|
|
6966
7174
|
e && (r = e.baseOptions);
|
|
6967
7175
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
6968
|
-
await
|
|
7176
|
+
await P(n, "Authorization", e), m(t, c);
|
|
6969
7177
|
let p = r && r.headers ? r.headers : {};
|
|
6970
7178
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
6971
7179
|
url: R(t),
|
|
@@ -6985,7 +7193,7 @@ const P = function(e, ...s) {
|
|
|
6985
7193
|
let r;
|
|
6986
7194
|
e && (r = e.baseOptions);
|
|
6987
7195
|
const a = { method: "DELETE", ...r, ...o }, n = {}, c = {};
|
|
6988
|
-
await
|
|
7196
|
+
await P(n, "Authorization", e), m(t, c);
|
|
6989
7197
|
let p = r && r.headers ? r.headers : {};
|
|
6990
7198
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
6991
7199
|
url: R(t),
|
|
@@ -6993,8 +7201,8 @@ const P = function(e, ...s) {
|
|
|
6993
7201
|
};
|
|
6994
7202
|
}
|
|
6995
7203
|
};
|
|
6996
|
-
},
|
|
6997
|
-
const s =
|
|
7204
|
+
}, cs = function(e) {
|
|
7205
|
+
const s = ns(e);
|
|
6998
7206
|
return {
|
|
6999
7207
|
/**
|
|
7000
7208
|
*
|
|
@@ -7005,7 +7213,7 @@ const P = function(e, ...s) {
|
|
|
7005
7213
|
async apiV2SelfApiTokensOptions(o) {
|
|
7006
7214
|
var a, n;
|
|
7007
7215
|
const l = await s.apiV2SelfApiTokensOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["SelfApiTokenApi.apiV2SelfApiTokensOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
7008
|
-
return (c, p) =>
|
|
7216
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
7009
7217
|
},
|
|
7010
7218
|
/**
|
|
7011
7219
|
*
|
|
@@ -7017,7 +7225,7 @@ const P = function(e, ...s) {
|
|
|
7017
7225
|
async createApiToken(o, l) {
|
|
7018
7226
|
var n, c;
|
|
7019
7227
|
const t = await s.createApiToken(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["SelfApiTokenApi.createApiToken"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
7020
|
-
return (p, i) =>
|
|
7228
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
7021
7229
|
},
|
|
7022
7230
|
/**
|
|
7023
7231
|
*
|
|
@@ -7031,7 +7239,7 @@ const P = function(e, ...s) {
|
|
|
7031
7239
|
async getAllApiTokens(o, l, t, r) {
|
|
7032
7240
|
var p, i;
|
|
7033
7241
|
const a = await s.getAllApiTokens(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["SelfApiTokenApi.getAllApiTokens"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
7034
|
-
return (d, h) =>
|
|
7242
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
7035
7243
|
},
|
|
7036
7244
|
/**
|
|
7037
7245
|
*
|
|
@@ -7043,7 +7251,7 @@ const P = function(e, ...s) {
|
|
|
7043
7251
|
async getApiToken(o, l) {
|
|
7044
7252
|
var n, c;
|
|
7045
7253
|
const t = await s.getApiToken(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["SelfApiTokenApi.getApiToken"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
7046
|
-
return (p, i) =>
|
|
7254
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
7047
7255
|
},
|
|
7048
7256
|
/**
|
|
7049
7257
|
*
|
|
@@ -7055,11 +7263,11 @@ const P = function(e, ...s) {
|
|
|
7055
7263
|
async revokeToken(o, l) {
|
|
7056
7264
|
var n, c;
|
|
7057
7265
|
const t = await s.revokeToken(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["SelfApiTokenApi.revokeToken"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
7058
|
-
return (p, i) =>
|
|
7266
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
7059
7267
|
}
|
|
7060
7268
|
};
|
|
7061
|
-
},
|
|
7062
|
-
const l =
|
|
7269
|
+
}, ps = function(e, s, o) {
|
|
7270
|
+
const l = cs(e);
|
|
7063
7271
|
return {
|
|
7064
7272
|
/**
|
|
7065
7273
|
*
|
|
@@ -7111,7 +7319,7 @@ const P = function(e, ...s) {
|
|
|
7111
7319
|
return l.revokeToken(t.apiTokenId, r).then((a) => a(o, s));
|
|
7112
7320
|
}
|
|
7113
7321
|
};
|
|
7114
|
-
},
|
|
7322
|
+
}, is = function(e) {
|
|
7115
7323
|
return {
|
|
7116
7324
|
/**
|
|
7117
7325
|
*
|
|
@@ -7124,7 +7332,7 @@ const P = function(e, ...s) {
|
|
|
7124
7332
|
let t;
|
|
7125
7333
|
e && (t = e.baseOptions);
|
|
7126
7334
|
const r = { method: "POST", ...t, ...s }, a = {}, n = {};
|
|
7127
|
-
await
|
|
7335
|
+
await P(a, "Authorization", e), m(l, n);
|
|
7128
7336
|
let c = t && t.headers ? t.headers : {};
|
|
7129
7337
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
7130
7338
|
url: R(l),
|
|
@@ -7142,7 +7350,7 @@ const P = function(e, ...s) {
|
|
|
7142
7350
|
let t;
|
|
7143
7351
|
e && (t = e.baseOptions);
|
|
7144
7352
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
7145
|
-
await
|
|
7353
|
+
await P(a, "Authorization", e), m(l, n);
|
|
7146
7354
|
let c = t && t.headers ? t.headers : {};
|
|
7147
7355
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
7148
7356
|
url: R(l),
|
|
@@ -7160,7 +7368,7 @@ const P = function(e, ...s) {
|
|
|
7160
7368
|
let t;
|
|
7161
7369
|
e && (t = e.baseOptions);
|
|
7162
7370
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
7163
|
-
await
|
|
7371
|
+
await P(a, "Authorization", e), m(l, n);
|
|
7164
7372
|
let c = t && t.headers ? t.headers : {};
|
|
7165
7373
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
7166
7374
|
url: R(l),
|
|
@@ -7180,7 +7388,7 @@ const P = function(e, ...s) {
|
|
|
7180
7388
|
let r;
|
|
7181
7389
|
e && (r = e.baseOptions);
|
|
7182
7390
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
7183
|
-
await
|
|
7391
|
+
await P(n, "Authorization", e), m(t, c);
|
|
7184
7392
|
let p = r && r.headers ? r.headers : {};
|
|
7185
7393
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
7186
7394
|
url: R(t),
|
|
@@ -7200,7 +7408,7 @@ const P = function(e, ...s) {
|
|
|
7200
7408
|
let r;
|
|
7201
7409
|
e && (r = e.baseOptions);
|
|
7202
7410
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
7203
|
-
await
|
|
7411
|
+
await P(n, "Authorization", e), m(t, c);
|
|
7204
7412
|
let p = r && r.headers ? r.headers : {};
|
|
7205
7413
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
7206
7414
|
url: R(t),
|
|
@@ -7208,8 +7416,8 @@ const P = function(e, ...s) {
|
|
|
7208
7416
|
};
|
|
7209
7417
|
}
|
|
7210
7418
|
};
|
|
7211
|
-
},
|
|
7212
|
-
const s =
|
|
7419
|
+
}, ds = function(e) {
|
|
7420
|
+
const s = is(e);
|
|
7213
7421
|
return {
|
|
7214
7422
|
/**
|
|
7215
7423
|
*
|
|
@@ -7220,7 +7428,7 @@ const P = function(e, ...s) {
|
|
|
7220
7428
|
async apiV2SelfSessionLogoutPost(o) {
|
|
7221
7429
|
var a, n;
|
|
7222
7430
|
const l = await s.apiV2SelfSessionLogoutPost(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["SelfSessionApi.apiV2SelfSessionLogoutPost"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
7223
|
-
return (c, p) =>
|
|
7431
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
7224
7432
|
},
|
|
7225
7433
|
/**
|
|
7226
7434
|
*
|
|
@@ -7231,7 +7439,7 @@ const P = function(e, ...s) {
|
|
|
7231
7439
|
async apiV2SelfSessionOptions(o) {
|
|
7232
7440
|
var a, n;
|
|
7233
7441
|
const l = await s.apiV2SelfSessionOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["SelfSessionApi.apiV2SelfSessionOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
7234
|
-
return (c, p) =>
|
|
7442
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
7235
7443
|
},
|
|
7236
7444
|
/**
|
|
7237
7445
|
*
|
|
@@ -7242,7 +7450,7 @@ const P = function(e, ...s) {
|
|
|
7242
7450
|
async login(o) {
|
|
7243
7451
|
var a, n;
|
|
7244
7452
|
const l = await s.login(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["SelfSessionApi.login"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
7245
|
-
return (c, p) =>
|
|
7453
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
7246
7454
|
},
|
|
7247
7455
|
/**
|
|
7248
7456
|
*
|
|
@@ -7254,7 +7462,7 @@ const P = function(e, ...s) {
|
|
|
7254
7462
|
async loginWithProvider(o, l) {
|
|
7255
7463
|
var n, c;
|
|
7256
7464
|
const t = await s.loginWithProvider(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["SelfSessionApi.loginWithProvider"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
7257
|
-
return (p, i) =>
|
|
7465
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
7258
7466
|
},
|
|
7259
7467
|
/**
|
|
7260
7468
|
*
|
|
@@ -7266,11 +7474,11 @@ const P = function(e, ...s) {
|
|
|
7266
7474
|
async merge(o, l) {
|
|
7267
7475
|
var n, c;
|
|
7268
7476
|
const t = await s.merge(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["SelfSessionApi.merge"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
7269
|
-
return (p, i) =>
|
|
7477
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
7270
7478
|
}
|
|
7271
7479
|
};
|
|
7272
|
-
},
|
|
7273
|
-
const l =
|
|
7480
|
+
}, hs = function(e, s, o) {
|
|
7481
|
+
const l = ds(e);
|
|
7274
7482
|
return {
|
|
7275
7483
|
/**
|
|
7276
7484
|
*
|
|
@@ -7320,7 +7528,7 @@ const P = function(e, ...s) {
|
|
|
7320
7528
|
return l.merge(t.externalAuthenticatorId, r).then((a) => a(o, s));
|
|
7321
7529
|
}
|
|
7322
7530
|
};
|
|
7323
|
-
},
|
|
7531
|
+
}, Os = function(e) {
|
|
7324
7532
|
return {
|
|
7325
7533
|
/**
|
|
7326
7534
|
*
|
|
@@ -7333,7 +7541,25 @@ const P = function(e, ...s) {
|
|
|
7333
7541
|
let t;
|
|
7334
7542
|
e && (t = e.baseOptions);
|
|
7335
7543
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
7336
|
-
await
|
|
7544
|
+
await P(a, "Authorization", e), m(l, n);
|
|
7545
|
+
let c = t && t.headers ? t.headers : {};
|
|
7546
|
+
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
7547
|
+
url: R(l),
|
|
7548
|
+
options: r
|
|
7549
|
+
};
|
|
7550
|
+
},
|
|
7551
|
+
/**
|
|
7552
|
+
*
|
|
7553
|
+
* @summary Retrieves the NOC messages.
|
|
7554
|
+
* @param {*} [options] Override http request option.
|
|
7555
|
+
* @throws {RequiredError}
|
|
7556
|
+
*/
|
|
7557
|
+
getActiveNocMessages: async (s = {}) => {
|
|
7558
|
+
const o = "/api/v2/system/status/noc/active", l = new URL(o, A);
|
|
7559
|
+
let t;
|
|
7560
|
+
e && (t = e.baseOptions);
|
|
7561
|
+
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
7562
|
+
await P(a, "Authorization", e), m(l, n);
|
|
7337
7563
|
let c = t && t.headers ? t.headers : {};
|
|
7338
7564
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
7339
7565
|
url: R(l),
|
|
@@ -7357,11 +7583,11 @@ const P = function(e, ...s) {
|
|
|
7357
7583
|
*/
|
|
7358
7584
|
getInternalMessages: async (s, o, l, t, r, a, n, c, p, i = {}) => {
|
|
7359
7585
|
const d = "/api/v2/system/status/internal", h = new URL(d, A);
|
|
7360
|
-
let
|
|
7361
|
-
e && (
|
|
7362
|
-
const b = { method: "GET", ...
|
|
7363
|
-
await
|
|
7364
|
-
let C =
|
|
7586
|
+
let I;
|
|
7587
|
+
e && (I = e.baseOptions);
|
|
7588
|
+
const b = { method: "GET", ...I, ...i }, S = {}, w = {};
|
|
7589
|
+
await P(S, "Authorization", e), s !== void 0 && (w.StartDateAfter = s instanceof Date ? s.toISOString() : s), o !== void 0 && (w.StartDateBefore = o instanceof Date ? o.toISOString() : o), l !== void 0 && (w.EndDateAfter = l instanceof Date ? l.toISOString() : l), t !== void 0 && (w.EndDateBefore = t instanceof Date ? t.toISOString() : t), r !== void 0 && (w.Type = r), a !== void 0 && (w.SearchTerm = a), n !== void 0 && (w.PageNumber = n), c !== void 0 && (w.PageSize = c), p !== void 0 && (w.OrderBy = p), m(h, w);
|
|
7590
|
+
let C = I && I.headers ? I.headers : {};
|
|
7365
7591
|
return b.headers = { ...S, ...C, ...i.headers }, {
|
|
7366
7592
|
url: R(h),
|
|
7367
7593
|
options: b
|
|
@@ -7370,33 +7596,27 @@ const P = function(e, ...s) {
|
|
|
7370
7596
|
/**
|
|
7371
7597
|
*
|
|
7372
7598
|
* @summary Retrieves the NOC messages.
|
|
7373
|
-
* @param {string} [startDateAfter] Will only return messages that have their start date after this date (UTC).
|
|
7374
|
-
* @param {string} [startDateBefore] Will only return messages that have their start date before this date (UTC).
|
|
7375
|
-
* @param {string} [endDateAfter] Will only return messages that have their end date after this date (UTC).
|
|
7376
|
-
* @param {string} [endDateBefore] Will only return messages that have their end date before this date (UTC).
|
|
7377
|
-
* @param {MessageType} [type] Filter messages by their type (e.g. information, warning, error).
|
|
7378
|
-
* @param {string} [searchTerm] Filter messages by text contained in the messages or title.
|
|
7379
7599
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
7380
7600
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
7381
7601
|
* @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.
|
|
7382
7602
|
* @param {*} [options] Override http request option.
|
|
7383
7603
|
* @throws {RequiredError}
|
|
7384
7604
|
*/
|
|
7385
|
-
getNocMessages: async (s, o, l, t
|
|
7386
|
-
const
|
|
7387
|
-
let
|
|
7388
|
-
e && (
|
|
7389
|
-
const
|
|
7390
|
-
await
|
|
7391
|
-
let
|
|
7392
|
-
return
|
|
7393
|
-
url: R(
|
|
7394
|
-
options:
|
|
7605
|
+
getNocMessages: async (s, o, l, t = {}) => {
|
|
7606
|
+
const r = "/api/v2/system/status/noc", a = new URL(r, A);
|
|
7607
|
+
let n;
|
|
7608
|
+
e && (n = e.baseOptions);
|
|
7609
|
+
const c = { method: "GET", ...n, ...t }, p = {}, i = {};
|
|
7610
|
+
await P(p, "Authorization", e), s !== void 0 && (i.PageNumber = s), o !== void 0 && (i.PageSize = o), l !== void 0 && (i.OrderBy = l), m(a, i);
|
|
7611
|
+
let d = n && n.headers ? n.headers : {};
|
|
7612
|
+
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
7613
|
+
url: R(a),
|
|
7614
|
+
options: c
|
|
7395
7615
|
};
|
|
7396
7616
|
}
|
|
7397
7617
|
};
|
|
7398
|
-
},
|
|
7399
|
-
const s =
|
|
7618
|
+
}, Vs = function(e) {
|
|
7619
|
+
const s = Os(e);
|
|
7400
7620
|
return {
|
|
7401
7621
|
/**
|
|
7402
7622
|
*
|
|
@@ -7407,7 +7627,18 @@ const P = function(e, ...s) {
|
|
|
7407
7627
|
async apiV2SystemStatusOptions(o) {
|
|
7408
7628
|
var a, n;
|
|
7409
7629
|
const l = await s.apiV2SystemStatusOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["SystemStatusApi.apiV2SystemStatusOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
7410
|
-
return (c, p) =>
|
|
7630
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
7631
|
+
},
|
|
7632
|
+
/**
|
|
7633
|
+
*
|
|
7634
|
+
* @summary Retrieves the NOC messages.
|
|
7635
|
+
* @param {*} [options] Override http request option.
|
|
7636
|
+
* @throws {RequiredError}
|
|
7637
|
+
*/
|
|
7638
|
+
async getActiveNocMessages(o) {
|
|
7639
|
+
var a, n;
|
|
7640
|
+
const l = await s.getActiveNocMessages(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["SystemStatusApi.getActiveNocMessages"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
7641
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
7411
7642
|
},
|
|
7412
7643
|
/**
|
|
7413
7644
|
*
|
|
@@ -7426,32 +7657,26 @@ const P = function(e, ...s) {
|
|
|
7426
7657
|
*/
|
|
7427
7658
|
async getInternalMessages(o, l, t, r, a, n, c, p, i, d) {
|
|
7428
7659
|
var S, w;
|
|
7429
|
-
const h = await s.getInternalMessages(o, l, t, r, a, n, c, p, i, d),
|
|
7430
|
-
return (C,
|
|
7660
|
+
const h = await s.getInternalMessages(o, l, t, r, a, n, c, p, i, d), I = (e == null ? void 0 : e.serverIndex) ?? 0, b = (w = (S = u["SystemStatusApi.getInternalMessages"]) == null ? void 0 : S[I]) == null ? void 0 : w.url;
|
|
7661
|
+
return (C, N) => y(h, O, V, e)(C, b || N);
|
|
7431
7662
|
},
|
|
7432
7663
|
/**
|
|
7433
7664
|
*
|
|
7434
7665
|
* @summary Retrieves the NOC messages.
|
|
7435
|
-
* @param {string} [startDateAfter] Will only return messages that have their start date after this date (UTC).
|
|
7436
|
-
* @param {string} [startDateBefore] Will only return messages that have their start date before this date (UTC).
|
|
7437
|
-
* @param {string} [endDateAfter] Will only return messages that have their end date after this date (UTC).
|
|
7438
|
-
* @param {string} [endDateBefore] Will only return messages that have their end date before this date (UTC).
|
|
7439
|
-
* @param {MessageType} [type] Filter messages by their type (e.g. information, warning, error).
|
|
7440
|
-
* @param {string} [searchTerm] Filter messages by text contained in the messages or title.
|
|
7441
7666
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
7442
7667
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
7443
7668
|
* @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.
|
|
7444
7669
|
* @param {*} [options] Override http request option.
|
|
7445
7670
|
* @throws {RequiredError}
|
|
7446
7671
|
*/
|
|
7447
|
-
async getNocMessages(o, l, t, r
|
|
7448
|
-
var
|
|
7449
|
-
const
|
|
7450
|
-
return (
|
|
7672
|
+
async getNocMessages(o, l, t, r) {
|
|
7673
|
+
var p, i;
|
|
7674
|
+
const a = await s.getNocMessages(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["SystemStatusApi.getNocMessages"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
7675
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
7451
7676
|
}
|
|
7452
7677
|
};
|
|
7453
|
-
},
|
|
7454
|
-
const l =
|
|
7678
|
+
}, us = function(e, s, o) {
|
|
7679
|
+
const l = Vs(e);
|
|
7455
7680
|
return {
|
|
7456
7681
|
/**
|
|
7457
7682
|
*
|
|
@@ -7462,6 +7687,15 @@ const P = function(e, ...s) {
|
|
|
7462
7687
|
apiV2SystemStatusOptions(t) {
|
|
7463
7688
|
return l.apiV2SystemStatusOptions(t).then((r) => r(o, s));
|
|
7464
7689
|
},
|
|
7690
|
+
/**
|
|
7691
|
+
*
|
|
7692
|
+
* @summary Retrieves the NOC messages.
|
|
7693
|
+
* @param {*} [options] Override http request option.
|
|
7694
|
+
* @throws {RequiredError}
|
|
7695
|
+
*/
|
|
7696
|
+
getActiveNocMessages(t) {
|
|
7697
|
+
return l.getActiveNocMessages(t).then((r) => r(o, s));
|
|
7698
|
+
},
|
|
7465
7699
|
/**
|
|
7466
7700
|
*
|
|
7467
7701
|
* @summary Retrieves the internal messages.
|
|
@@ -7480,10 +7714,10 @@ const P = function(e, ...s) {
|
|
|
7480
7714
|
* @throws {RequiredError}
|
|
7481
7715
|
*/
|
|
7482
7716
|
getNocMessages(t = {}, r) {
|
|
7483
|
-
return l.getNocMessages(t.
|
|
7717
|
+
return l.getNocMessages(t.pageNumber, t.pageSize, t.orderBy, r).then((a) => a(o, s));
|
|
7484
7718
|
}
|
|
7485
7719
|
};
|
|
7486
|
-
},
|
|
7720
|
+
}, As = function(e) {
|
|
7487
7721
|
return {
|
|
7488
7722
|
/**
|
|
7489
7723
|
*
|
|
@@ -7496,7 +7730,7 @@ const P = function(e, ...s) {
|
|
|
7496
7730
|
let t;
|
|
7497
7731
|
e && (t = e.baseOptions);
|
|
7498
7732
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
7499
|
-
await
|
|
7733
|
+
await P(a, "Authorization", e), m(l, n);
|
|
7500
7734
|
let c = t && t.headers ? t.headers : {};
|
|
7501
7735
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
7502
7736
|
url: R(l),
|
|
@@ -7516,7 +7750,7 @@ const P = function(e, ...s) {
|
|
|
7516
7750
|
let r;
|
|
7517
7751
|
e && (r = e.baseOptions);
|
|
7518
7752
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
7519
|
-
await
|
|
7753
|
+
await P(n, "Authorization", e), m(t, c);
|
|
7520
7754
|
let p = r && r.headers ? r.headers : {};
|
|
7521
7755
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
7522
7756
|
url: R(t),
|
|
@@ -7537,7 +7771,7 @@ const P = function(e, ...s) {
|
|
|
7537
7771
|
let n;
|
|
7538
7772
|
e && (n = e.baseOptions);
|
|
7539
7773
|
const c = { method: "GET", ...n, ...t }, p = {}, i = {};
|
|
7540
|
-
await
|
|
7774
|
+
await P(p, "Authorization", e), s !== void 0 && (i.PageNumber = s), o !== void 0 && (i.PageSize = o), l !== void 0 && (i.OrderBy = l), m(a, i);
|
|
7541
7775
|
let d = n && n.headers ? n.headers : {};
|
|
7542
7776
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
7543
7777
|
url: R(a),
|
|
@@ -7545,8 +7779,8 @@ const P = function(e, ...s) {
|
|
|
7545
7779
|
};
|
|
7546
7780
|
}
|
|
7547
7781
|
};
|
|
7548
|
-
},
|
|
7549
|
-
const s =
|
|
7782
|
+
}, Ps = function(e) {
|
|
7783
|
+
const s = As(e);
|
|
7550
7784
|
return {
|
|
7551
7785
|
/**
|
|
7552
7786
|
*
|
|
@@ -7557,7 +7791,7 @@ const P = function(e, ...s) {
|
|
|
7557
7791
|
async apiV2TitlesOptions(o) {
|
|
7558
7792
|
var a, n;
|
|
7559
7793
|
const l = await s.apiV2TitlesOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["TitleApi.apiV2TitlesOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
7560
|
-
return (c, p) =>
|
|
7794
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
7561
7795
|
},
|
|
7562
7796
|
/**
|
|
7563
7797
|
*
|
|
@@ -7569,7 +7803,7 @@ const P = function(e, ...s) {
|
|
|
7569
7803
|
async getTitle(o, l) {
|
|
7570
7804
|
var n, c;
|
|
7571
7805
|
const t = await s.getTitle(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["TitleApi.getTitle"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
7572
|
-
return (p, i) =>
|
|
7806
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
7573
7807
|
},
|
|
7574
7808
|
/**
|
|
7575
7809
|
*
|
|
@@ -7583,11 +7817,11 @@ const P = function(e, ...s) {
|
|
|
7583
7817
|
async getTitles(o, l, t, r) {
|
|
7584
7818
|
var p, i;
|
|
7585
7819
|
const a = await s.getTitles(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["TitleApi.getTitles"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
7586
|
-
return (d, h) =>
|
|
7820
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
7587
7821
|
}
|
|
7588
7822
|
};
|
|
7589
|
-
},
|
|
7590
|
-
const l =
|
|
7823
|
+
}, ms = function(e, s, o) {
|
|
7824
|
+
const l = Ps(e);
|
|
7591
7825
|
return {
|
|
7592
7826
|
/**
|
|
7593
7827
|
*
|
|
@@ -7619,7 +7853,7 @@ const P = function(e, ...s) {
|
|
|
7619
7853
|
return l.getTitles(t.pageNumber, t.pageSize, t.orderBy, r).then((a) => a(o, s));
|
|
7620
7854
|
}
|
|
7621
7855
|
};
|
|
7622
|
-
},
|
|
7856
|
+
}, Rs = function(e) {
|
|
7623
7857
|
return {
|
|
7624
7858
|
/**
|
|
7625
7859
|
*
|
|
@@ -7632,7 +7866,7 @@ const P = function(e, ...s) {
|
|
|
7632
7866
|
let t;
|
|
7633
7867
|
e && (t = e.baseOptions);
|
|
7634
7868
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
7635
|
-
await
|
|
7869
|
+
await P(a, "Authorization", e), m(l, n);
|
|
7636
7870
|
let c = t && t.headers ? t.headers : {};
|
|
7637
7871
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
7638
7872
|
url: R(l),
|
|
@@ -7650,7 +7884,7 @@ const P = function(e, ...s) {
|
|
|
7650
7884
|
let t;
|
|
7651
7885
|
e && (t = e.baseOptions);
|
|
7652
7886
|
const r = { method: "GET", ...t, ...s }, a = {}, n = {};
|
|
7653
|
-
await
|
|
7887
|
+
await P(a, "Authorization", e), m(l, n);
|
|
7654
7888
|
let c = t && t.headers ? t.headers : {};
|
|
7655
7889
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
7656
7890
|
url: R(l),
|
|
@@ -7658,8 +7892,8 @@ const P = function(e, ...s) {
|
|
|
7658
7892
|
};
|
|
7659
7893
|
}
|
|
7660
7894
|
};
|
|
7661
|
-
},
|
|
7662
|
-
const s =
|
|
7895
|
+
}, ys = function(e) {
|
|
7896
|
+
const s = Rs(e);
|
|
7663
7897
|
return {
|
|
7664
7898
|
/**
|
|
7665
7899
|
*
|
|
@@ -7670,7 +7904,7 @@ const P = function(e, ...s) {
|
|
|
7670
7904
|
async apiV2TosOptions(o) {
|
|
7671
7905
|
var a, n;
|
|
7672
7906
|
const l = await s.apiV2TosOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["TosApi.apiV2TosOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
7673
|
-
return (c, p) =>
|
|
7907
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
7674
7908
|
},
|
|
7675
7909
|
/**
|
|
7676
7910
|
*
|
|
@@ -7681,11 +7915,11 @@ const P = function(e, ...s) {
|
|
|
7681
7915
|
async getTos(o) {
|
|
7682
7916
|
var a, n;
|
|
7683
7917
|
const l = await s.getTos(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["TosApi.getTos"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
7684
|
-
return (c, p) =>
|
|
7918
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
7685
7919
|
}
|
|
7686
7920
|
};
|
|
7687
|
-
},
|
|
7688
|
-
const l =
|
|
7921
|
+
}, Is = function(e, s, o) {
|
|
7922
|
+
const l = ys(e);
|
|
7689
7923
|
return {
|
|
7690
7924
|
/**
|
|
7691
7925
|
*
|
|
@@ -7706,7 +7940,7 @@ const P = function(e, ...s) {
|
|
|
7706
7940
|
return l.getTos(t).then((r) => r(o, s));
|
|
7707
7941
|
}
|
|
7708
7942
|
};
|
|
7709
|
-
},
|
|
7943
|
+
}, bs = function(e) {
|
|
7710
7944
|
return {
|
|
7711
7945
|
/**
|
|
7712
7946
|
*
|
|
@@ -7722,7 +7956,7 @@ const P = function(e, ...s) {
|
|
|
7722
7956
|
let a;
|
|
7723
7957
|
e && (a = e.baseOptions);
|
|
7724
7958
|
const n = { method: "OPTIONS", ...a, ...l }, c = {}, p = {};
|
|
7725
|
-
await
|
|
7959
|
+
await P(c, "Authorization", e), m(r, p);
|
|
7726
7960
|
let i = a && a.headers ? a.headers : {};
|
|
7727
7961
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
7728
7962
|
url: R(r),
|
|
@@ -7744,7 +7978,7 @@ const P = function(e, ...s) {
|
|
|
7744
7978
|
let n;
|
|
7745
7979
|
e && (n = e.baseOptions);
|
|
7746
7980
|
const c = { method: "POST", ...n, ...t }, p = {}, i = {};
|
|
7747
|
-
await
|
|
7981
|
+
await P(p, "Authorization", e), p["Content-Type"] = "application/json", m(a, i);
|
|
7748
7982
|
let d = n && n.headers ? n.headers : {};
|
|
7749
7983
|
return c.headers = { ...p, ...d, ...t.headers }, c.data = L(l, c, e), {
|
|
7750
7984
|
url: R(a),
|
|
@@ -7766,7 +8000,7 @@ const P = function(e, ...s) {
|
|
|
7766
8000
|
let n;
|
|
7767
8001
|
e && (n = e.baseOptions);
|
|
7768
8002
|
const c = { method: "POST", ...n, ...t }, p = {}, i = {};
|
|
7769
|
-
await
|
|
8003
|
+
await P(p, "Authorization", e), p["Content-Type"] = "application/json", m(a, i);
|
|
7770
8004
|
let d = n && n.headers ? n.headers : {};
|
|
7771
8005
|
return c.headers = { ...p, ...d, ...t.headers }, c.data = L(l, c, e), {
|
|
7772
8006
|
url: R(a),
|
|
@@ -7788,7 +8022,7 @@ const P = function(e, ...s) {
|
|
|
7788
8022
|
let n;
|
|
7789
8023
|
e && (n = e.baseOptions);
|
|
7790
8024
|
const c = { method: "DELETE", ...n, ...t }, p = {}, i = {};
|
|
7791
|
-
await
|
|
8025
|
+
await P(p, "Authorization", e), p["Content-Type"] = "application/json", m(a, i);
|
|
7792
8026
|
let d = n && n.headers ? n.headers : {};
|
|
7793
8027
|
return c.headers = { ...p, ...d, ...t.headers }, c.data = L(l, c, e), {
|
|
7794
8028
|
url: R(a),
|
|
@@ -7812,8 +8046,8 @@ const P = function(e, ...s) {
|
|
|
7812
8046
|
const c = "/api/v2/projects/{projectId}/resources/{resourceId}/trees/files".replace("{projectId}", encodeURIComponent(String(s))).replace("{resourceId}", encodeURIComponent(String(o))), p = new URL(c, A);
|
|
7813
8047
|
let i;
|
|
7814
8048
|
e && (i = e.baseOptions);
|
|
7815
|
-
const d = { method: "GET", ...i, ...n }, h = {},
|
|
7816
|
-
await
|
|
8049
|
+
const d = { method: "GET", ...i, ...n }, h = {}, I = {};
|
|
8050
|
+
await P(h, "Authorization", e), l !== void 0 && (I.Path = l), t !== void 0 && (I.PageNumber = t), r !== void 0 && (I.PageSize = r), a !== void 0 && (I.OrderBy = a), m(p, I);
|
|
7817
8051
|
let b = i && i.headers ? i.headers : {};
|
|
7818
8052
|
return d.headers = { ...h, ...b, ...n.headers }, {
|
|
7819
8053
|
url: R(p),
|
|
@@ -7838,11 +8072,11 @@ const P = function(e, ...s) {
|
|
|
7838
8072
|
getMetadataTree: async (s, o, l, t, r, a, n, c, p, i = {}) => {
|
|
7839
8073
|
v("getMetadataTree", "projectId", s), v("getMetadataTree", "resourceId", o);
|
|
7840
8074
|
const d = "/api/v2/projects/{projectId}/resources/{resourceId}/trees/metadata".replace("{projectId}", encodeURIComponent(String(s))).replace("{resourceId}", encodeURIComponent(String(o))), h = new URL(d, A);
|
|
7841
|
-
let
|
|
7842
|
-
e && (
|
|
7843
|
-
const b = { method: "GET", ...
|
|
7844
|
-
await
|
|
7845
|
-
let C =
|
|
8075
|
+
let I;
|
|
8076
|
+
e && (I = e.baseOptions);
|
|
8077
|
+
const b = { method: "GET", ...I, ...i }, S = {}, w = {};
|
|
8078
|
+
await P(S, "Authorization", e), l !== void 0 && (w.Path = l), t !== void 0 && (w.Format = t), r !== void 0 && (w.IncludeExtractedMetadata = r), a !== void 0 && (w.IncludeProvenance = a), n !== void 0 && (w.PageNumber = n), c !== void 0 && (w.PageSize = c), p !== void 0 && (w.OrderBy = p), m(h, w);
|
|
8079
|
+
let C = I && I.headers ? I.headers : {};
|
|
7846
8080
|
return b.headers = { ...S, ...C, ...i.headers }, {
|
|
7847
8081
|
url: R(h),
|
|
7848
8082
|
options: b
|
|
@@ -7866,10 +8100,10 @@ const P = function(e, ...s) {
|
|
|
7866
8100
|
const p = "/api/v2/projects/{projectId}/resources/{resourceId}/trees/metadata/specific".replace("{projectId}", encodeURIComponent(String(s))).replace("{resourceId}", encodeURIComponent(String(o))), i = new URL(p, A);
|
|
7867
8101
|
let d;
|
|
7868
8102
|
e && (d = e.baseOptions);
|
|
7869
|
-
const h = { method: "GET", ...d, ...c },
|
|
7870
|
-
await
|
|
8103
|
+
const h = { method: "GET", ...d, ...c }, I = {}, b = {};
|
|
8104
|
+
await P(I, "Authorization", e), l !== void 0 && (b.Path = l), t !== void 0 && (b.Format = t), r !== void 0 && (b.IncludeExtractedMetadata = r), a !== void 0 && (b.IncludeProvenance = a), n !== void 0 && (b.Version = n), m(i, b);
|
|
7871
8105
|
let S = d && d.headers ? d.headers : {};
|
|
7872
|
-
return h.headers = { ...
|
|
8106
|
+
return h.headers = { ...I, ...S, ...c.headers }, {
|
|
7873
8107
|
url: R(i),
|
|
7874
8108
|
options: h
|
|
7875
8109
|
};
|
|
@@ -7889,7 +8123,7 @@ const P = function(e, ...s) {
|
|
|
7889
8123
|
let n;
|
|
7890
8124
|
e && (n = e.baseOptions);
|
|
7891
8125
|
const c = { method: "PUT", ...n, ...t }, p = {}, i = {};
|
|
7892
|
-
await
|
|
8126
|
+
await P(p, "Authorization", e), p["Content-Type"] = "application/json", m(a, i);
|
|
7893
8127
|
let d = n && n.headers ? n.headers : {};
|
|
7894
8128
|
return c.headers = { ...p, ...d, ...t.headers }, c.data = L(l, c, e), {
|
|
7895
8129
|
url: R(a),
|
|
@@ -7911,7 +8145,7 @@ const P = function(e, ...s) {
|
|
|
7911
8145
|
let n;
|
|
7912
8146
|
e && (n = e.baseOptions);
|
|
7913
8147
|
const c = { method: "PUT", ...n, ...t }, p = {}, i = {};
|
|
7914
|
-
await
|
|
8148
|
+
await P(p, "Authorization", e), p["Content-Type"] = "application/json", m(a, i);
|
|
7915
8149
|
let d = n && n.headers ? n.headers : {};
|
|
7916
8150
|
return c.headers = { ...p, ...d, ...t.headers }, c.data = L(l, c, e), {
|
|
7917
8151
|
url: R(a),
|
|
@@ -7919,8 +8153,8 @@ const P = function(e, ...s) {
|
|
|
7919
8153
|
};
|
|
7920
8154
|
}
|
|
7921
8155
|
};
|
|
7922
|
-
},
|
|
7923
|
-
const s =
|
|
8156
|
+
}, vs = function(e) {
|
|
8157
|
+
const s = bs(e);
|
|
7924
8158
|
return {
|
|
7925
8159
|
/**
|
|
7926
8160
|
*
|
|
@@ -7933,7 +8167,7 @@ const P = function(e, ...s) {
|
|
|
7933
8167
|
async apiV2ProjectsProjectIdResourcesResourceIdTreesOptions(o, l, t) {
|
|
7934
8168
|
var c, p;
|
|
7935
8169
|
const r = await s.apiV2ProjectsProjectIdResourcesResourceIdTreesOptions(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["TreeApi.apiV2ProjectsProjectIdResourcesResourceIdTreesOptions"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
7936
|
-
return (i, d) =>
|
|
8170
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
7937
8171
|
},
|
|
7938
8172
|
/**
|
|
7939
8173
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -7947,7 +8181,7 @@ const P = function(e, ...s) {
|
|
|
7947
8181
|
async createExtractedMetadataTree(o, l, t, r) {
|
|
7948
8182
|
var p, i;
|
|
7949
8183
|
const a = await s.createExtractedMetadataTree(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["TreeApi.createExtractedMetadataTree"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
7950
|
-
return (d, h) =>
|
|
8184
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
7951
8185
|
},
|
|
7952
8186
|
/**
|
|
7953
8187
|
*
|
|
@@ -7961,7 +8195,7 @@ const P = function(e, ...s) {
|
|
|
7961
8195
|
async createMetadataTree(o, l, t, r) {
|
|
7962
8196
|
var p, i;
|
|
7963
8197
|
const a = await s.createMetadataTree(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["TreeApi.createMetadataTree"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
7964
|
-
return (d, h) =>
|
|
8198
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
7965
8199
|
},
|
|
7966
8200
|
/**
|
|
7967
8201
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -7975,7 +8209,7 @@ const P = function(e, ...s) {
|
|
|
7975
8209
|
async deleteMetadataTree(o, l, t, r) {
|
|
7976
8210
|
var p, i;
|
|
7977
8211
|
const a = await s.deleteMetadataTree(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["TreeApi.deleteMetadataTree"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
7978
|
-
return (d, h) =>
|
|
8212
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
7979
8213
|
},
|
|
7980
8214
|
/**
|
|
7981
8215
|
* The `OrderBy` query is currently not supported.
|
|
@@ -7990,9 +8224,9 @@ const P = function(e, ...s) {
|
|
|
7990
8224
|
* @throws {RequiredError}
|
|
7991
8225
|
*/
|
|
7992
8226
|
async getFileTree(o, l, t, r, a, n, c) {
|
|
7993
|
-
var h,
|
|
7994
|
-
const p = await s.getFileTree(o, l, t, r, a, n, c), i = (e == null ? void 0 : e.serverIndex) ?? 0, d = (
|
|
7995
|
-
return (b, S) =>
|
|
8227
|
+
var h, I;
|
|
8228
|
+
const p = await s.getFileTree(o, l, t, r, a, n, c), i = (e == null ? void 0 : e.serverIndex) ?? 0, d = (I = (h = u["TreeApi.getFileTree"]) == null ? void 0 : h[i]) == null ? void 0 : I.url;
|
|
8229
|
+
return (b, S) => y(p, O, V, e)(b, d || S);
|
|
7996
8230
|
},
|
|
7997
8231
|
/**
|
|
7998
8232
|
*
|
|
@@ -8011,8 +8245,8 @@ const P = function(e, ...s) {
|
|
|
8011
8245
|
*/
|
|
8012
8246
|
async getMetadataTree(o, l, t, r, a, n, c, p, i, d) {
|
|
8013
8247
|
var S, w;
|
|
8014
|
-
const h = await s.getMetadataTree(o, l, t, r, a, n, c, p, i, d),
|
|
8015
|
-
return (C,
|
|
8248
|
+
const h = await s.getMetadataTree(o, l, t, r, a, n, c, p, i, d), I = (e == null ? void 0 : e.serverIndex) ?? 0, b = (w = (S = u["TreeApi.getMetadataTree"]) == null ? void 0 : S[I]) == null ? void 0 : w.url;
|
|
8249
|
+
return (C, N) => y(h, O, V, e)(C, b || N);
|
|
8016
8250
|
},
|
|
8017
8251
|
/**
|
|
8018
8252
|
*
|
|
@@ -8028,9 +8262,9 @@ const P = function(e, ...s) {
|
|
|
8028
8262
|
* @throws {RequiredError}
|
|
8029
8263
|
*/
|
|
8030
8264
|
async getSpecificMetadataTree(o, l, t, r, a, n, c, p) {
|
|
8031
|
-
var
|
|
8032
|
-
const i = await s.getSpecificMetadataTree(o, l, t, r, a, n, c, p), d = (e == null ? void 0 : e.serverIndex) ?? 0, h = (b = (
|
|
8033
|
-
return (S, w) =>
|
|
8265
|
+
var I, b;
|
|
8266
|
+
const i = await s.getSpecificMetadataTree(o, l, t, r, a, n, c, p), d = (e == null ? void 0 : e.serverIndex) ?? 0, h = (b = (I = u["TreeApi.getSpecificMetadataTree"]) == null ? void 0 : I[d]) == null ? void 0 : b.url;
|
|
8267
|
+
return (S, w) => y(i, O, V, e)(S, h || w);
|
|
8034
8268
|
},
|
|
8035
8269
|
/**
|
|
8036
8270
|
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
@@ -8044,7 +8278,7 @@ const P = function(e, ...s) {
|
|
|
8044
8278
|
async updateExtractedMetadataTree(o, l, t, r) {
|
|
8045
8279
|
var p, i;
|
|
8046
8280
|
const a = await s.updateExtractedMetadataTree(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["TreeApi.updateExtractedMetadataTree"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
8047
|
-
return (d, h) =>
|
|
8281
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
8048
8282
|
},
|
|
8049
8283
|
/**
|
|
8050
8284
|
*
|
|
@@ -8058,11 +8292,11 @@ const P = function(e, ...s) {
|
|
|
8058
8292
|
async updateMetadataTree(o, l, t, r) {
|
|
8059
8293
|
var p, i;
|
|
8060
8294
|
const a = await s.updateMetadataTree(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["TreeApi.updateMetadataTree"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
8061
|
-
return (d, h) =>
|
|
8295
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
8062
8296
|
}
|
|
8063
8297
|
};
|
|
8064
|
-
},
|
|
8065
|
-
const l =
|
|
8298
|
+
}, js = function(e, s, o) {
|
|
8299
|
+
const l = vs(e);
|
|
8066
8300
|
return {
|
|
8067
8301
|
/**
|
|
8068
8302
|
*
|
|
@@ -8155,7 +8389,7 @@ const P = function(e, ...s) {
|
|
|
8155
8389
|
return l.updateMetadataTree(t.projectId, t.resourceId, t.metadataTreeForUpdateDto, r).then((a) => a(o, s));
|
|
8156
8390
|
}
|
|
8157
8391
|
};
|
|
8158
|
-
},
|
|
8392
|
+
}, Ss = function(e) {
|
|
8159
8393
|
return {
|
|
8160
8394
|
/**
|
|
8161
8395
|
*
|
|
@@ -8168,7 +8402,7 @@ const P = function(e, ...s) {
|
|
|
8168
8402
|
let t;
|
|
8169
8403
|
e && (t = e.baseOptions);
|
|
8170
8404
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
8171
|
-
await
|
|
8405
|
+
await P(a, "Authorization", e), m(l, n);
|
|
8172
8406
|
let c = t && t.headers ? t.headers : {};
|
|
8173
8407
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
8174
8408
|
url: R(l),
|
|
@@ -8189,7 +8423,7 @@ const P = function(e, ...s) {
|
|
|
8189
8423
|
let a;
|
|
8190
8424
|
e && (a = e.baseOptions);
|
|
8191
8425
|
const n = { method: "GET", ...a, ...l }, c = {}, p = {};
|
|
8192
|
-
await
|
|
8426
|
+
await P(c, "Authorization", e), o !== void 0 && (p.OrderBy = o), s !== void 0 && (p.SearchTerm = s), m(r, p);
|
|
8193
8427
|
let i = a && a.headers ? a.headers : {};
|
|
8194
8428
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
8195
8429
|
url: R(r),
|
|
@@ -8197,8 +8431,8 @@ const P = function(e, ...s) {
|
|
|
8197
8431
|
};
|
|
8198
8432
|
}
|
|
8199
8433
|
};
|
|
8200
|
-
},
|
|
8201
|
-
const s =
|
|
8434
|
+
}, ws = function(e) {
|
|
8435
|
+
const s = Ss(e);
|
|
8202
8436
|
return {
|
|
8203
8437
|
/**
|
|
8204
8438
|
*
|
|
@@ -8209,7 +8443,7 @@ const P = function(e, ...s) {
|
|
|
8209
8443
|
async apiV2UsersOptions(o) {
|
|
8210
8444
|
var a, n;
|
|
8211
8445
|
const l = await s.apiV2UsersOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["UserApi.apiV2UsersOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
8212
|
-
return (c, p) =>
|
|
8446
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
8213
8447
|
},
|
|
8214
8448
|
/**
|
|
8215
8449
|
*
|
|
@@ -8222,11 +8456,11 @@ const P = function(e, ...s) {
|
|
|
8222
8456
|
async getUsers(o, l, t) {
|
|
8223
8457
|
var c, p;
|
|
8224
8458
|
const r = await s.getUsers(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["UserApi.getUsers"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
8225
|
-
return (i, d) =>
|
|
8459
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
8226
8460
|
}
|
|
8227
8461
|
};
|
|
8228
|
-
},
|
|
8229
|
-
const l =
|
|
8462
|
+
}, Us = function(e, s, o) {
|
|
8463
|
+
const l = ws(e);
|
|
8230
8464
|
return {
|
|
8231
8465
|
/**
|
|
8232
8466
|
*
|
|
@@ -8248,7 +8482,7 @@ const P = function(e, ...s) {
|
|
|
8248
8482
|
return l.getUsers(t.searchTerm, t.orderBy, r).then((a) => a(o, s));
|
|
8249
8483
|
}
|
|
8250
8484
|
};
|
|
8251
|
-
},
|
|
8485
|
+
}, Ts = function(e) {
|
|
8252
8486
|
return {
|
|
8253
8487
|
/**
|
|
8254
8488
|
*
|
|
@@ -8261,7 +8495,7 @@ const P = function(e, ...s) {
|
|
|
8261
8495
|
let t;
|
|
8262
8496
|
e && (t = e.baseOptions);
|
|
8263
8497
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
8264
|
-
await
|
|
8498
|
+
await P(a, "Authorization", e), m(l, n);
|
|
8265
8499
|
let c = t && t.headers ? t.headers : {};
|
|
8266
8500
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
8267
8501
|
url: R(l),
|
|
@@ -8280,7 +8514,7 @@ const P = function(e, ...s) {
|
|
|
8280
8514
|
let r;
|
|
8281
8515
|
e && (r = e.baseOptions);
|
|
8282
8516
|
const a = { method: "POST", ...r, ...o }, n = {}, c = {};
|
|
8283
|
-
await
|
|
8517
|
+
await P(n, "Authorization", e), n["Content-Type"] = "application/json", m(t, c);
|
|
8284
8518
|
let p = r && r.headers ? r.headers : {};
|
|
8285
8519
|
return a.headers = { ...n, ...p, ...o.headers }, a.data = L(s, a, e), {
|
|
8286
8520
|
url: R(t),
|
|
@@ -8300,7 +8534,7 @@ const P = function(e, ...s) {
|
|
|
8300
8534
|
let r;
|
|
8301
8535
|
e && (r = e.baseOptions);
|
|
8302
8536
|
const a = { method: "DELETE", ...r, ...o }, n = {}, c = {};
|
|
8303
|
-
await
|
|
8537
|
+
await P(n, "Authorization", e), m(t, c);
|
|
8304
8538
|
let p = r && r.headers ? r.headers : {};
|
|
8305
8539
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
8306
8540
|
url: R(t),
|
|
@@ -8320,7 +8554,7 @@ const P = function(e, ...s) {
|
|
|
8320
8554
|
let r;
|
|
8321
8555
|
e && (r = e.baseOptions);
|
|
8322
8556
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
8323
|
-
await
|
|
8557
|
+
await P(n, "Authorization", e), m(t, c);
|
|
8324
8558
|
let p = r && r.headers ? r.headers : {};
|
|
8325
8559
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
8326
8560
|
url: R(t),
|
|
@@ -8341,7 +8575,7 @@ const P = function(e, ...s) {
|
|
|
8341
8575
|
let n;
|
|
8342
8576
|
e && (n = e.baseOptions);
|
|
8343
8577
|
const c = { method: "GET", ...n, ...t }, p = {}, i = {};
|
|
8344
|
-
await
|
|
8578
|
+
await P(p, "Authorization", e), s !== void 0 && (i.PageNumber = s), o !== void 0 && (i.PageSize = o), l !== void 0 && (i.OrderBy = l), m(a, i);
|
|
8345
8579
|
let d = n && n.headers ? n.headers : {};
|
|
8346
8580
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
8347
8581
|
url: R(a),
|
|
@@ -8349,8 +8583,8 @@ const P = function(e, ...s) {
|
|
|
8349
8583
|
};
|
|
8350
8584
|
}
|
|
8351
8585
|
};
|
|
8352
|
-
},
|
|
8353
|
-
const s =
|
|
8586
|
+
}, xs = function(e) {
|
|
8587
|
+
const s = Ts(e);
|
|
8354
8588
|
return {
|
|
8355
8589
|
/**
|
|
8356
8590
|
*
|
|
@@ -8361,7 +8595,7 @@ const P = function(e, ...s) {
|
|
|
8361
8595
|
async apiV2UserNotificationsOptions(o) {
|
|
8362
8596
|
var a, n;
|
|
8363
8597
|
const l = await s.apiV2UserNotificationsOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["UserNotificationOptOutApi.apiV2UserNotificationsOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
8364
|
-
return (c, p) =>
|
|
8598
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
8365
8599
|
},
|
|
8366
8600
|
/**
|
|
8367
8601
|
*
|
|
@@ -8373,7 +8607,7 @@ const P = function(e, ...s) {
|
|
|
8373
8607
|
async createUserNotification(o, l) {
|
|
8374
8608
|
var n, c;
|
|
8375
8609
|
const t = await s.createUserNotification(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["UserNotificationOptOutApi.createUserNotification"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
8376
|
-
return (p, i) =>
|
|
8610
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
8377
8611
|
},
|
|
8378
8612
|
/**
|
|
8379
8613
|
*
|
|
@@ -8385,7 +8619,7 @@ const P = function(e, ...s) {
|
|
|
8385
8619
|
async deleteUserNotification(o, l) {
|
|
8386
8620
|
var n, c;
|
|
8387
8621
|
const t = await s.deleteUserNotification(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["UserNotificationOptOutApi.deleteUserNotification"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
8388
|
-
return (p, i) =>
|
|
8622
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
8389
8623
|
},
|
|
8390
8624
|
/**
|
|
8391
8625
|
*
|
|
@@ -8397,7 +8631,7 @@ const P = function(e, ...s) {
|
|
|
8397
8631
|
async getUserNotification(o, l) {
|
|
8398
8632
|
var n, c;
|
|
8399
8633
|
const t = await s.getUserNotification(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["UserNotificationOptOutApi.getUserNotification"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
8400
|
-
return (p, i) =>
|
|
8634
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
8401
8635
|
},
|
|
8402
8636
|
/**
|
|
8403
8637
|
*
|
|
@@ -8411,11 +8645,11 @@ const P = function(e, ...s) {
|
|
|
8411
8645
|
async getUserNotifications(o, l, t, r) {
|
|
8412
8646
|
var p, i;
|
|
8413
8647
|
const a = await s.getUserNotifications(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["UserNotificationOptOutApi.getUserNotifications"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
8414
|
-
return (d, h) =>
|
|
8648
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
8415
8649
|
}
|
|
8416
8650
|
};
|
|
8417
|
-
},
|
|
8418
|
-
const l =
|
|
8651
|
+
}, Bs = function(e, s, o) {
|
|
8652
|
+
const l = xs(e);
|
|
8419
8653
|
return {
|
|
8420
8654
|
/**
|
|
8421
8655
|
*
|
|
@@ -8467,7 +8701,7 @@ const P = function(e, ...s) {
|
|
|
8467
8701
|
return l.getUserNotifications(t.pageNumber, t.pageSize, t.orderBy, r).then((a) => a(o, s));
|
|
8468
8702
|
}
|
|
8469
8703
|
};
|
|
8470
|
-
},
|
|
8704
|
+
}, Fs = function(e) {
|
|
8471
8705
|
return {
|
|
8472
8706
|
/**
|
|
8473
8707
|
*
|
|
@@ -8480,7 +8714,7 @@ const P = function(e, ...s) {
|
|
|
8480
8714
|
let t;
|
|
8481
8715
|
e && (t = e.baseOptions);
|
|
8482
8716
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
8483
|
-
await
|
|
8717
|
+
await P(a, "Authorization", e), m(l, n);
|
|
8484
8718
|
let c = t && t.headers ? t.headers : {};
|
|
8485
8719
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
8486
8720
|
url: R(l),
|
|
@@ -8501,7 +8735,7 @@ const P = function(e, ...s) {
|
|
|
8501
8735
|
let n;
|
|
8502
8736
|
e && (n = e.baseOptions);
|
|
8503
8737
|
const c = { method: "GET", ...n, ...t }, p = {}, i = {};
|
|
8504
|
-
await
|
|
8738
|
+
await P(p, "Authorization", e), s !== void 0 && (i.PageNumber = s), o !== void 0 && (i.PageSize = o), l !== void 0 && (i.OrderBy = l), m(a, i);
|
|
8505
8739
|
let d = n && n.headers ? n.headers : {};
|
|
8506
8740
|
return c.headers = { ...p, ...d, ...t.headers }, {
|
|
8507
8741
|
url: R(a),
|
|
@@ -8521,7 +8755,7 @@ const P = function(e, ...s) {
|
|
|
8521
8755
|
let r;
|
|
8522
8756
|
e && (r = e.baseOptions);
|
|
8523
8757
|
const a = { method: "GET", ...r, ...o }, n = {}, c = {};
|
|
8524
|
-
await
|
|
8758
|
+
await P(n, "Authorization", e), m(t, c);
|
|
8525
8759
|
let p = r && r.headers ? r.headers : {};
|
|
8526
8760
|
return a.headers = { ...n, ...p, ...o.headers }, {
|
|
8527
8761
|
url: R(t),
|
|
@@ -8529,8 +8763,8 @@ const P = function(e, ...s) {
|
|
|
8529
8763
|
};
|
|
8530
8764
|
}
|
|
8531
8765
|
};
|
|
8532
|
-
},
|
|
8533
|
-
const s =
|
|
8766
|
+
}, Cs = function(e) {
|
|
8767
|
+
const s = Fs(e);
|
|
8534
8768
|
return {
|
|
8535
8769
|
/**
|
|
8536
8770
|
*
|
|
@@ -8541,7 +8775,7 @@ const P = function(e, ...s) {
|
|
|
8541
8775
|
async apiV2VisibilitiesOptions(o) {
|
|
8542
8776
|
var a, n;
|
|
8543
8777
|
const l = await s.apiV2VisibilitiesOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["VisibilityApi.apiV2VisibilitiesOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
8544
|
-
return (c, p) =>
|
|
8778
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
8545
8779
|
},
|
|
8546
8780
|
/**
|
|
8547
8781
|
*
|
|
@@ -8555,7 +8789,7 @@ const P = function(e, ...s) {
|
|
|
8555
8789
|
async getVisibilities(o, l, t, r) {
|
|
8556
8790
|
var p, i;
|
|
8557
8791
|
const a = await s.getVisibilities(o, l, t, r), n = (e == null ? void 0 : e.serverIndex) ?? 0, c = (i = (p = u["VisibilityApi.getVisibilities"]) == null ? void 0 : p[n]) == null ? void 0 : i.url;
|
|
8558
|
-
return (d, h) =>
|
|
8792
|
+
return (d, h) => y(a, O, V, e)(d, c || h);
|
|
8559
8793
|
},
|
|
8560
8794
|
/**
|
|
8561
8795
|
*
|
|
@@ -8567,11 +8801,11 @@ const P = function(e, ...s) {
|
|
|
8567
8801
|
async getVisibility(o, l) {
|
|
8568
8802
|
var n, c;
|
|
8569
8803
|
const t = await s.getVisibility(o, l), r = (e == null ? void 0 : e.serverIndex) ?? 0, a = (c = (n = u["VisibilityApi.getVisibility"]) == null ? void 0 : n[r]) == null ? void 0 : c.url;
|
|
8570
|
-
return (p, i) =>
|
|
8804
|
+
return (p, i) => y(t, O, V, e)(p, a || i);
|
|
8571
8805
|
}
|
|
8572
8806
|
};
|
|
8573
|
-
},
|
|
8574
|
-
const l =
|
|
8807
|
+
}, Ls = function(e, s, o) {
|
|
8808
|
+
const l = Cs(e);
|
|
8575
8809
|
return {
|
|
8576
8810
|
/**
|
|
8577
8811
|
*
|
|
@@ -8603,7 +8837,7 @@ const P = function(e, ...s) {
|
|
|
8603
8837
|
return l.getVisibility(t.visibilityId, r).then((a) => a(o, s));
|
|
8604
8838
|
}
|
|
8605
8839
|
};
|
|
8606
|
-
},
|
|
8840
|
+
}, Es = function(e) {
|
|
8607
8841
|
return {
|
|
8608
8842
|
/**
|
|
8609
8843
|
*
|
|
@@ -8616,7 +8850,7 @@ const P = function(e, ...s) {
|
|
|
8616
8850
|
let t;
|
|
8617
8851
|
e && (t = e.baseOptions);
|
|
8618
8852
|
const r = { method: "OPTIONS", ...t, ...s }, a = {}, n = {};
|
|
8619
|
-
await
|
|
8853
|
+
await P(a, "Authorization", e), m(l, n);
|
|
8620
8854
|
let c = t && t.headers ? t.headers : {};
|
|
8621
8855
|
return r.headers = { ...a, ...c, ...s.headers }, {
|
|
8622
8856
|
url: R(l),
|
|
@@ -8639,9 +8873,9 @@ const P = function(e, ...s) {
|
|
|
8639
8873
|
let p;
|
|
8640
8874
|
e && (p = e.baseOptions);
|
|
8641
8875
|
const i = { method: "GET", ...p, ...a }, d = {}, h = {};
|
|
8642
|
-
await
|
|
8643
|
-
let
|
|
8644
|
-
return i.headers = { ...d, ...
|
|
8876
|
+
await P(d, "Authorization", e), s !== void 0 && (h.SearchTerm = s), o !== void 0 && (h.Language = o), l !== void 0 && (h.PageNumber = l), t !== void 0 && (h.PageSize = t), r !== void 0 && (h.OrderBy = r), m(c, h);
|
|
8877
|
+
let I = p && p.headers ? p.headers : {};
|
|
8878
|
+
return i.headers = { ...d, ...I, ...a.headers }, {
|
|
8645
8879
|
url: R(c),
|
|
8646
8880
|
options: i
|
|
8647
8881
|
};
|
|
@@ -8660,7 +8894,7 @@ const P = function(e, ...s) {
|
|
|
8660
8894
|
let a;
|
|
8661
8895
|
e && (a = e.baseOptions);
|
|
8662
8896
|
const n = { method: "GET", ...a, ...l }, c = {}, p = {};
|
|
8663
|
-
await
|
|
8897
|
+
await P(c, "Authorization", e), o != null && (c["Accept-Language"] = typeof o == "string" ? o : JSON.stringify(o)), m(r, p);
|
|
8664
8898
|
let i = a && a.headers ? a.headers : {};
|
|
8665
8899
|
return n.headers = { ...c, ...i, ...l.headers }, {
|
|
8666
8900
|
url: R(r),
|
|
@@ -8684,8 +8918,8 @@ const P = function(e, ...s) {
|
|
|
8684
8918
|
const c = "/api/v2/vocabularies/instances", p = new URL(c, A);
|
|
8685
8919
|
let i;
|
|
8686
8920
|
e && (i = e.baseOptions);
|
|
8687
|
-
const d = { method: "GET", ...i, ...n }, h = {},
|
|
8688
|
-
await
|
|
8921
|
+
const d = { method: "GET", ...i, ...n }, h = {}, I = {};
|
|
8922
|
+
await P(h, "Authorization", e), s !== void 0 && (I.Class = s), o !== void 0 && (I.SearchTerm = o), l !== void 0 && (I.Language = l), t !== void 0 && (I.PageSize = t), r !== void 0 && (I.PageNumber = r), a !== void 0 && (I.OrderBy = a), m(p, I);
|
|
8689
8923
|
let b = i && i.headers ? i.headers : {};
|
|
8690
8924
|
return d.headers = { ...h, ...b, ...n.headers }, {
|
|
8691
8925
|
url: R(p),
|
|
@@ -8693,8 +8927,8 @@ const P = function(e, ...s) {
|
|
|
8693
8927
|
};
|
|
8694
8928
|
}
|
|
8695
8929
|
};
|
|
8696
|
-
},
|
|
8697
|
-
const s =
|
|
8930
|
+
}, Ns = function(e) {
|
|
8931
|
+
const s = Es(e);
|
|
8698
8932
|
return {
|
|
8699
8933
|
/**
|
|
8700
8934
|
*
|
|
@@ -8705,7 +8939,7 @@ const P = function(e, ...s) {
|
|
|
8705
8939
|
async apiV2VocabulariesOptions(o) {
|
|
8706
8940
|
var a, n;
|
|
8707
8941
|
const l = await s.apiV2VocabulariesOptions(o), t = (e == null ? void 0 : e.serverIndex) ?? 0, r = (n = (a = u["VocabularyApi.apiV2VocabulariesOptions"]) == null ? void 0 : a[t]) == null ? void 0 : n.url;
|
|
8708
|
-
return (c, p) =>
|
|
8942
|
+
return (c, p) => y(l, O, V, e)(c, r || p);
|
|
8709
8943
|
},
|
|
8710
8944
|
/**
|
|
8711
8945
|
*
|
|
@@ -8721,7 +8955,7 @@ const P = function(e, ...s) {
|
|
|
8721
8955
|
async getVocabularies(o, l, t, r, a, n) {
|
|
8722
8956
|
var d, h;
|
|
8723
8957
|
const c = await s.getVocabularies(o, l, t, r, a, n), p = (e == null ? void 0 : e.serverIndex) ?? 0, i = (h = (d = u["VocabularyApi.getVocabularies"]) == null ? void 0 : d[p]) == null ? void 0 : h.url;
|
|
8724
|
-
return (
|
|
8958
|
+
return (I, b) => y(c, O, V, e)(I, i || b);
|
|
8725
8959
|
},
|
|
8726
8960
|
/**
|
|
8727
8961
|
* Could be a top-level instance, or an intermediate-level instance from a vocabulary.
|
|
@@ -8734,7 +8968,7 @@ const P = function(e, ...s) {
|
|
|
8734
8968
|
async getVocabularyInstance(o, l, t) {
|
|
8735
8969
|
var c, p;
|
|
8736
8970
|
const r = await s.getVocabularyInstance(o, l, t), a = (e == null ? void 0 : e.serverIndex) ?? 0, n = (p = (c = u["VocabularyApi.getVocabularyInstance"]) == null ? void 0 : c[a]) == null ? void 0 : p.url;
|
|
8737
|
-
return (i, d) =>
|
|
8971
|
+
return (i, d) => y(r, O, V, e)(i, n || d);
|
|
8738
8972
|
},
|
|
8739
8973
|
/**
|
|
8740
8974
|
*
|
|
@@ -8749,13 +8983,13 @@ const P = function(e, ...s) {
|
|
|
8749
8983
|
* @throws {RequiredError}
|
|
8750
8984
|
*/
|
|
8751
8985
|
async getVocabularyInstances(o, l, t, r, a, n, c) {
|
|
8752
|
-
var h,
|
|
8753
|
-
const p = await s.getVocabularyInstances(o, l, t, r, a, n, c), i = (e == null ? void 0 : e.serverIndex) ?? 0, d = (
|
|
8754
|
-
return (b, S) =>
|
|
8986
|
+
var h, I;
|
|
8987
|
+
const p = await s.getVocabularyInstances(o, l, t, r, a, n, c), i = (e == null ? void 0 : e.serverIndex) ?? 0, d = (I = (h = u["VocabularyApi.getVocabularyInstances"]) == null ? void 0 : h[i]) == null ? void 0 : I.url;
|
|
8988
|
+
return (b, S) => y(p, O, V, e)(b, d || S);
|
|
8755
8989
|
}
|
|
8756
8990
|
};
|
|
8757
|
-
},
|
|
8758
|
-
const l =
|
|
8991
|
+
}, Hs = function(e, s, o) {
|
|
8992
|
+
const l = Ns(e);
|
|
8759
8993
|
return {
|
|
8760
8994
|
/**
|
|
8761
8995
|
*
|
|
@@ -8803,14 +9037,14 @@ const P = function(e, ...s) {
|
|
|
8803
9037
|
e[s] = l;
|
|
8804
9038
|
}
|
|
8805
9039
|
};
|
|
8806
|
-
function
|
|
8807
|
-
s != null && (typeof s == "object" ? Array.isArray(s) ? s.forEach((l) =>
|
|
8808
|
-
(l) =>
|
|
9040
|
+
function Ie(e, s, o = "") {
|
|
9041
|
+
s != null && (typeof s == "object" ? Array.isArray(s) ? s.forEach((l) => Ie(e, l, o)) : Object.keys(s).forEach(
|
|
9042
|
+
(l) => Ie(e, s[l], `${o}${o !== "" ? "." : ""}${l}`)
|
|
8809
9043
|
) : e.has(o) ? e.append(o, s) : e.set(o, s));
|
|
8810
9044
|
}
|
|
8811
9045
|
const _ = function(e, ...s) {
|
|
8812
9046
|
const o = new URLSearchParams(e.search);
|
|
8813
|
-
|
|
9047
|
+
Ie(o, s), e.search = o.toString();
|
|
8814
9048
|
}, K = function(e) {
|
|
8815
9049
|
return e.pathname + e.search + e.hash;
|
|
8816
9050
|
}, J = function(e, s, o, l) {
|
|
@@ -8818,7 +9052,7 @@ const _ = function(e, ...s) {
|
|
|
8818
9052
|
const a = { ...e.options, url: ((l == null ? void 0 : l.basePath) || t.defaults.baseURL || r) + e.url };
|
|
8819
9053
|
return t.request(a);
|
|
8820
9054
|
};
|
|
8821
|
-
},
|
|
9055
|
+
}, zs = function(e) {
|
|
8822
9056
|
return {
|
|
8823
9057
|
/**
|
|
8824
9058
|
*
|
|
@@ -8857,8 +9091,8 @@ const _ = function(e, ...s) {
|
|
|
8857
9091
|
};
|
|
8858
9092
|
}
|
|
8859
9093
|
};
|
|
8860
|
-
},
|
|
8861
|
-
const s =
|
|
9094
|
+
}, Qs = function(e) {
|
|
9095
|
+
const s = zs(e);
|
|
8862
9096
|
return {
|
|
8863
9097
|
/**
|
|
8864
9098
|
*
|
|
@@ -8883,8 +9117,8 @@ const _ = function(e, ...s) {
|
|
|
8883
9117
|
return (c, p) => J(l, O, k, e)(c, r || p);
|
|
8884
9118
|
}
|
|
8885
9119
|
};
|
|
8886
|
-
},
|
|
8887
|
-
const l =
|
|
9120
|
+
}, Ms = function(e, s, o) {
|
|
9121
|
+
const l = Qs(e);
|
|
8888
9122
|
return {
|
|
8889
9123
|
/**
|
|
8890
9124
|
*
|
|
@@ -8905,7 +9139,7 @@ const _ = function(e, ...s) {
|
|
|
8905
9139
|
return l.accountLogout(t).then((r) => r(o, s));
|
|
8906
9140
|
}
|
|
8907
9141
|
};
|
|
8908
|
-
},
|
|
9142
|
+
}, Ds = function(e) {
|
|
8909
9143
|
return {
|
|
8910
9144
|
/**
|
|
8911
9145
|
*
|
|
@@ -8926,8 +9160,8 @@ const _ = function(e, ...s) {
|
|
|
8926
9160
|
};
|
|
8927
9161
|
}
|
|
8928
9162
|
};
|
|
8929
|
-
},
|
|
8930
|
-
const s =
|
|
9163
|
+
}, ks = function(e) {
|
|
9164
|
+
const s = Ds(e);
|
|
8931
9165
|
return {
|
|
8932
9166
|
/**
|
|
8933
9167
|
*
|
|
@@ -8941,8 +9175,8 @@ const _ = function(e, ...s) {
|
|
|
8941
9175
|
return (c, p) => J(l, O, k, e)(c, r || p);
|
|
8942
9176
|
}
|
|
8943
9177
|
};
|
|
8944
|
-
},
|
|
8945
|
-
const l =
|
|
9178
|
+
}, Gs = function(e, s, o) {
|
|
9179
|
+
const l = ks(e);
|
|
8946
9180
|
return {
|
|
8947
9181
|
/**
|
|
8948
9182
|
*
|
|
@@ -8954,7 +9188,7 @@ const _ = function(e, ...s) {
|
|
|
8954
9188
|
return l.homeIndex(t).then((r) => r(o, s));
|
|
8955
9189
|
}
|
|
8956
9190
|
};
|
|
8957
|
-
},
|
|
9191
|
+
}, $s = function(e) {
|
|
8958
9192
|
return {
|
|
8959
9193
|
/**
|
|
8960
9194
|
*
|
|
@@ -8993,8 +9227,8 @@ const _ = function(e, ...s) {
|
|
|
8993
9227
|
};
|
|
8994
9228
|
}
|
|
8995
9229
|
};
|
|
8996
|
-
},
|
|
8997
|
-
const s =
|
|
9230
|
+
}, qs = function(e) {
|
|
9231
|
+
const s = $s(e);
|
|
8998
9232
|
return {
|
|
8999
9233
|
/**
|
|
9000
9234
|
*
|
|
@@ -9019,8 +9253,8 @@ const _ = function(e, ...s) {
|
|
|
9019
9253
|
return (p, i) => J(t, O, k, e)(p, a || i);
|
|
9020
9254
|
}
|
|
9021
9255
|
};
|
|
9022
|
-
},
|
|
9023
|
-
const l =
|
|
9256
|
+
}, _s = function(e, s, o) {
|
|
9257
|
+
const l = qs(e);
|
|
9024
9258
|
return {
|
|
9025
9259
|
/**
|
|
9026
9260
|
*
|
|
@@ -9041,7 +9275,7 @@ const _ = function(e, ...s) {
|
|
|
9041
9275
|
return l.mergeLogin(t.returnUrl, r).then((a) => a(o, s));
|
|
9042
9276
|
}
|
|
9043
9277
|
};
|
|
9044
|
-
},
|
|
9278
|
+
}, Ks = function(e) {
|
|
9045
9279
|
return {
|
|
9046
9280
|
/**
|
|
9047
9281
|
*
|
|
@@ -9083,8 +9317,8 @@ const _ = function(e, ...s) {
|
|
|
9083
9317
|
};
|
|
9084
9318
|
}
|
|
9085
9319
|
};
|
|
9086
|
-
},
|
|
9087
|
-
const s =
|
|
9320
|
+
}, Js = function(e) {
|
|
9321
|
+
const s = Ks(e);
|
|
9088
9322
|
return {
|
|
9089
9323
|
/**
|
|
9090
9324
|
*
|
|
@@ -9112,8 +9346,8 @@ const _ = function(e, ...s) {
|
|
|
9112
9346
|
return (i, d) => J(r, O, k, e)(i, n || d);
|
|
9113
9347
|
}
|
|
9114
9348
|
};
|
|
9115
|
-
},
|
|
9116
|
-
const l =
|
|
9349
|
+
}, Ws = function(e, s, o) {
|
|
9350
|
+
const l = Js(e);
|
|
9117
9351
|
return {
|
|
9118
9352
|
/**
|
|
9119
9353
|
*
|
|
@@ -9136,7 +9370,7 @@ const _ = function(e, ...s) {
|
|
|
9136
9370
|
return l.oRCiDLoginPOST(t.oRCiDJWT, t.returnUrl, r).then((a) => a(o, s));
|
|
9137
9371
|
}
|
|
9138
9372
|
};
|
|
9139
|
-
},
|
|
9373
|
+
}, Xs = function(e) {
|
|
9140
9374
|
return {
|
|
9141
9375
|
/**
|
|
9142
9376
|
*
|
|
@@ -9179,8 +9413,8 @@ const _ = function(e, ...s) {
|
|
|
9179
9413
|
};
|
|
9180
9414
|
}
|
|
9181
9415
|
};
|
|
9182
|
-
},
|
|
9183
|
-
const s =
|
|
9416
|
+
}, Ys = function(e) {
|
|
9417
|
+
const s = Xs(e);
|
|
9184
9418
|
return {
|
|
9185
9419
|
/**
|
|
9186
9420
|
*
|
|
@@ -9209,8 +9443,8 @@ const _ = function(e, ...s) {
|
|
|
9209
9443
|
return (i, d) => J(r, O, k, e)(i, n || d);
|
|
9210
9444
|
}
|
|
9211
9445
|
};
|
|
9212
|
-
},
|
|
9213
|
-
const l =
|
|
9446
|
+
}, Zs = function(e, s, o) {
|
|
9447
|
+
const l = Ys(e);
|
|
9214
9448
|
return {
|
|
9215
9449
|
/**
|
|
9216
9450
|
*
|
|
@@ -9234,10 +9468,10 @@ const _ = function(e, ...s) {
|
|
|
9234
9468
|
}
|
|
9235
9469
|
};
|
|
9236
9470
|
};
|
|
9237
|
-
let
|
|
9471
|
+
let U = "";
|
|
9238
9472
|
if (typeof window < "u") {
|
|
9239
9473
|
const e = localStorage.getItem("coscine.authorization.bearer");
|
|
9240
|
-
e && (
|
|
9474
|
+
e && (U = "Bearer " + e);
|
|
9241
9475
|
}
|
|
9242
9476
|
const x = () => {
|
|
9243
9477
|
const e = typeof window < "u" ? localStorage.getItem("coscine.api.hostname") : null;
|
|
@@ -9246,109 +9480,111 @@ const x = () => {
|
|
|
9246
9480
|
let s = typeof window < "u" ? window.location.hostname : "coscine.rwth-aachen.de";
|
|
9247
9481
|
return s.indexOf(":") !== -1 && (s.indexOf("https://") !== -1 && (s = s.replace("https://", "")), s = s.substr(0, s.indexOf(":"))), s;
|
|
9248
9482
|
};
|
|
9249
|
-
function
|
|
9483
|
+
function fs(e) {
|
|
9250
9484
|
return {
|
|
9251
9485
|
// Upon adding or removing any API endpoints, the list of entries below may have to be manually updated:
|
|
9252
|
-
AccountApi:
|
|
9253
|
-
AdminApi: Br(new
|
|
9254
|
-
ApplicationProfileApi: Lr(new
|
|
9255
|
-
BlobApi:
|
|
9256
|
-
DataHamsterReportApi: Mr(new
|
|
9257
|
-
DisciplineApi: Gr(new
|
|
9258
|
-
HandleApi: _r(new
|
|
9259
|
-
HomeApi:
|
|
9260
|
-
LanguageApi: Wr(new
|
|
9261
|
-
LicenseApi: Zr(new
|
|
9262
|
-
MaintenanceApi: ea(new
|
|
9263
|
-
MergeApi:
|
|
9264
|
-
NotificationApi: aa(new
|
|
9265
|
-
ORCiDApi:
|
|
9266
|
-
OrganizationApi: la(new
|
|
9267
|
-
PidApi: pa(new
|
|
9268
|
-
ProjectApi: ha(new
|
|
9269
|
-
ProjectInvitationApi: ua(new
|
|
9270
|
-
ProjectMemberApi:
|
|
9271
|
-
ProjectPublicationRequestApi:
|
|
9272
|
-
ProjectQuotaApi: ja(new
|
|
9273
|
-
ProjectResourceApi:
|
|
9274
|
-
ProjectResourceQuotaApi: Ba(new
|
|
9275
|
-
ProjectResourceTypeApi: La(new
|
|
9276
|
-
ProjectSubProjectsApi:
|
|
9277
|
-
|
|
9278
|
-
|
|
9279
|
-
|
|
9280
|
-
|
|
9281
|
-
|
|
9282
|
-
|
|
9283
|
-
|
|
9284
|
-
|
|
9285
|
-
|
|
9286
|
-
|
|
9287
|
-
|
|
9288
|
-
|
|
9289
|
-
|
|
9290
|
-
|
|
9291
|
-
|
|
9292
|
-
|
|
9293
|
-
|
|
9294
|
-
|
|
9486
|
+
AccountApi: Ms(new T({ accessToken: U }), "https://" + x() + "/coscine/api/Coscine.Api.STS", e),
|
|
9487
|
+
AdminApi: Br(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9488
|
+
ApplicationProfileApi: Lr(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9489
|
+
BlobApi: Hr(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9490
|
+
DataHamsterReportApi: Mr(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9491
|
+
DisciplineApi: Gr(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9492
|
+
HandleApi: _r(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9493
|
+
HomeApi: Gs(new T({ accessToken: U }), "https://" + x() + "/coscine/api/Coscine.Api.STS", e),
|
|
9494
|
+
LanguageApi: Wr(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9495
|
+
LicenseApi: Zr(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9496
|
+
MaintenanceApi: ea(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9497
|
+
MergeApi: _s(new T({ accessToken: U }), "https://" + x() + "/coscine/api/Coscine.Api.STS", e),
|
|
9498
|
+
NotificationApi: aa(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9499
|
+
ORCiDApi: Ws(new T({ accessToken: U }), "https://" + x() + "/coscine/api/Coscine.Api.STS", e),
|
|
9500
|
+
OrganizationApi: la(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9501
|
+
PidApi: pa(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9502
|
+
ProjectApi: ha(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9503
|
+
ProjectInvitationApi: ua(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9504
|
+
ProjectMemberApi: ma(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9505
|
+
ProjectPublicationRequestApi: Ia(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9506
|
+
ProjectQuotaApi: ja(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9507
|
+
ProjectResourceApi: Ua(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9508
|
+
ProjectResourceQuotaApi: Ba(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9509
|
+
ProjectResourceTypeApi: La(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9510
|
+
ProjectSubProjectsApi: Ha(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9511
|
+
PublicationAdvisoryServiceApi: Ma(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9512
|
+
ReportApi: Ga(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9513
|
+
ResourceApi: _a(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9514
|
+
ResourceTypeApi: Wa(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9515
|
+
ResourceTypeGitLabApi: Za(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9516
|
+
RoleApi: es(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9517
|
+
SearchApi: as(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9518
|
+
SelfApi: ls(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9519
|
+
SelfApiTokenApi: ps(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9520
|
+
SelfSessionApi: hs(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9521
|
+
ShibbolethApi: Zs(new T({ accessToken: U }), "https://" + x() + "/coscine/api/Coscine.Api.STS", e),
|
|
9522
|
+
SystemStatusApi: us(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9523
|
+
TitleApi: ms(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9524
|
+
TosApi: Is(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9525
|
+
TreeApi: js(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9526
|
+
UserApi: Us(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9527
|
+
UserNotificationOptOutApi: Bs(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9528
|
+
VisibilityApi: Ls(new T({ accessToken: U }), "https://" + x() + "/coscine", e),
|
|
9529
|
+
VocabularyApi: Hs(new T({ accessToken: U }), "https://" + x() + "/coscine", e)
|
|
9295
9530
|
};
|
|
9296
9531
|
}
|
|
9297
9532
|
const lt = O.create({
|
|
9298
9533
|
withCredentials: !0
|
|
9299
|
-
}),
|
|
9300
|
-
function
|
|
9534
|
+
}), gs = "X-Coscine-Logging-CorrelationId";
|
|
9535
|
+
function eo(e) {
|
|
9301
9536
|
if (typeof window < "u") {
|
|
9302
9537
|
const s = localStorage.getItem("coscine.authorization.bearer");
|
|
9303
9538
|
s && e.headers.setAuthorization("Bearer " + s);
|
|
9304
9539
|
const o = localStorage.getItem("coscine.clientcorrelation.id");
|
|
9305
|
-
o && e.headers.set(
|
|
9540
|
+
o && e.headers.set(gs, o);
|
|
9306
9541
|
}
|
|
9307
9542
|
}
|
|
9308
|
-
lt.interceptors.request.use((e) => (
|
|
9309
|
-
const B =
|
|
9543
|
+
lt.interceptors.request.use((e) => (eo(e), e), (e) => Promise.reject(e), { synchronous: !0 });
|
|
9544
|
+
const B = fs(lt), ro = B.AccountApi, ao = B.AdminApi, so = B.ApplicationProfileApi, oo = B.BlobApi, lo = B.DataHamsterReportApi, no = B.DisciplineApi, co = B.HandleApi, po = B.HomeApi, io = B.LanguageApi, ho = B.LicenseApi, Oo = B.MaintenanceApi, Vo = B.MergeApi, uo = B.NotificationApi, Ao = B.ORCiDApi, Po = B.OrganizationApi, mo = B.PidApi, Ro = B.ProjectApi, yo = B.ProjectInvitationApi, Io = B.ProjectMemberApi, bo = B.ProjectPublicationRequestApi, vo = B.ProjectQuotaApi, jo = B.ProjectResourceApi, So = B.ProjectResourceQuotaApi, wo = B.ProjectResourceTypeApi, Uo = B.ProjectSubProjectsApi, To = B.PublicationAdvisoryServiceApi, xo = B.ReportApi, Bo = B.ResourceApi, Fo = B.ResourceTypeApi, Co = B.ResourceTypeGitLabApi, Lo = B.RoleApi, Eo = B.SearchApi, No = B.SelfApi, Ho = B.SelfApiTokenApi, zo = B.ShibbolethApi, Qo = B.SystemStatusApi, Mo = B.TitleApi, Do = B.TosApi, ko = B.TreeApi, Go = B.UserApi, $o = B.UserNotificationOptOutApi, qo = B.VisibilityApi, _o = B.VocabularyApi;
|
|
9310
9545
|
export {
|
|
9311
|
-
|
|
9312
|
-
|
|
9313
|
-
|
|
9314
|
-
|
|
9315
|
-
|
|
9316
|
-
|
|
9317
|
-
|
|
9318
|
-
|
|
9319
|
-
|
|
9320
|
-
|
|
9321
|
-
|
|
9322
|
-
|
|
9323
|
-
|
|
9324
|
-
|
|
9325
|
-
|
|
9326
|
-
|
|
9327
|
-
|
|
9328
|
-
|
|
9329
|
-
|
|
9330
|
-
|
|
9331
|
-
|
|
9332
|
-
|
|
9333
|
-
|
|
9334
|
-
|
|
9335
|
-
|
|
9336
|
-
|
|
9337
|
-
|
|
9338
|
-
|
|
9339
|
-
|
|
9340
|
-
|
|
9341
|
-
|
|
9342
|
-
|
|
9343
|
-
|
|
9344
|
-
|
|
9345
|
-
|
|
9346
|
-
|
|
9347
|
-
|
|
9348
|
-
|
|
9349
|
-
|
|
9350
|
-
|
|
9351
|
-
|
|
9352
|
-
|
|
9546
|
+
ro as AccountApi,
|
|
9547
|
+
ao as AdminApi,
|
|
9548
|
+
so as ApplicationProfileApi,
|
|
9549
|
+
oo as BlobApi,
|
|
9550
|
+
lo as DataHamsterReportApi,
|
|
9551
|
+
no as DisciplineApi,
|
|
9552
|
+
co as HandleApi,
|
|
9553
|
+
po as HomeApi,
|
|
9554
|
+
io as LanguageApi,
|
|
9555
|
+
ho as LicenseApi,
|
|
9556
|
+
Oo as MaintenanceApi,
|
|
9557
|
+
Vo as MergeApi,
|
|
9558
|
+
uo as NotificationApi,
|
|
9559
|
+
Ao as ORCiDApi,
|
|
9560
|
+
Po as OrganizationApi,
|
|
9561
|
+
mo as PidApi,
|
|
9562
|
+
Ro as ProjectApi,
|
|
9563
|
+
yo as ProjectInvitationApi,
|
|
9564
|
+
Io as ProjectMemberApi,
|
|
9565
|
+
bo as ProjectPublicationRequestApi,
|
|
9566
|
+
vo as ProjectQuotaApi,
|
|
9567
|
+
jo as ProjectResourceApi,
|
|
9568
|
+
So as ProjectResourceQuotaApi,
|
|
9569
|
+
wo as ProjectResourceTypeApi,
|
|
9570
|
+
Uo as ProjectSubProjectsApi,
|
|
9571
|
+
To as PublicationAdvisoryServiceApi,
|
|
9572
|
+
xo as ReportApi,
|
|
9573
|
+
Bo as ResourceApi,
|
|
9574
|
+
Fo as ResourceTypeApi,
|
|
9575
|
+
Co as ResourceTypeGitLabApi,
|
|
9576
|
+
Lo as RoleApi,
|
|
9577
|
+
Eo as SearchApi,
|
|
9578
|
+
No as SelfApi,
|
|
9579
|
+
Ho as SelfApiTokenApi,
|
|
9580
|
+
zo as ShibbolethApi,
|
|
9581
|
+
Qo as SystemStatusApi,
|
|
9582
|
+
Mo as TitleApi,
|
|
9583
|
+
Do as TosApi,
|
|
9584
|
+
ko as TreeApi,
|
|
9585
|
+
Go as UserApi,
|
|
9586
|
+
$o as UserNotificationOptOutApi,
|
|
9587
|
+
qo as VisibilityApi,
|
|
9588
|
+
_o as VocabularyApi,
|
|
9353
9589
|
B as default
|
|
9354
9590
|
};
|