Skip to content
Snippets Groups Projects
Commit b7773eee authored by Benedikt Heinrichs's avatar Benedikt Heinrichs Committed by Petar Hristov
Browse files

Fix: New API Endpoints

parent deb8fe79
Branches
Tags
2 merge requests!84Chore: 3.3.1,!83Fix: New API Endpoints
...@@ -22,7 +22,7 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj ...@@ -22,7 +22,7 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from './base'; import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from './base';
   
/** /**
* * Accepted languages by the API.
* @export * @export
* @enum {string} * @enum {string}
*/ */
...@@ -156,7 +156,7 @@ export interface ApiTokenForCreationDto { ...@@ -156,7 +156,7 @@ export interface ApiTokenForCreationDto {
*/ */
name: string; name: string;
/** /**
* * Gets or sets the expiration of the token.
* @type {number} * @type {number}
* @memberof ApiTokenForCreationDto * @memberof ApiTokenForCreationDto
*/ */
...@@ -481,8 +481,53 @@ export interface DisciplineForUserManipulationDto { ...@@ -481,8 +481,53 @@ export interface DisciplineForUserManipulationDto {
*/ */
id: string; id: string;
} }
/**
* Represents a Data Transfer Object (DTO) for file actions, including the URL and HTTP method.
* @export
* @interface FileActionDto
*/
export interface FileActionDto {
/**
* Gets or sets the presigned URL associated with the file action.
* @type {string}
* @memberof FileActionDto
*/
url?: string;
/** /**
* *
* @type {FileActionHttpMethod}
* @memberof FileActionDto
*/
method?: FileActionHttpMethod;
}
/**
* Represents the possible HTTP methods associated with file actions.
* @export
* @enum {string}
*/
export enum FileActionHttpMethod {
Get = 'GET',
Post = 'POST',
Put = 'PUT',
Delete = 'DELETE'
}
/**
* Represents a Data Transfer Object (DTO) for a collection of file actions, including download action details.
* @export
* @interface FileActionsDto
*/
export interface FileActionsDto {
/**
*
* @type {FileActionDto}
* @memberof FileActionsDto
*/
download?: FileActionDto;
}
/**
* Represents a Data Transfer Object (DTO) for a file within a tree structure, extending the base TreeDto.
* @export * @export
* @interface FileTreeDto * @interface FileTreeDto
*/ */
...@@ -500,41 +545,47 @@ export interface FileTreeDto { ...@@ -500,41 +545,47 @@ export interface FileTreeDto {
*/ */
type?: TreeDataType; type?: TreeDataType;
/** /**
* * Gets or sets the directory of the file.
* @type {string} * @type {string}
* @memberof FileTreeDto * @memberof FileTreeDto
*/ */
directory?: string; directory?: string;
/** /**
* * Gets or sets the name of the file.
* @type {string} * @type {string}
* @memberof FileTreeDto * @memberof FileTreeDto
*/ */
name?: string; name?: string;
/** /**
* * Gets or sets the extension of the file.
* @type {string} * @type {string}
* @memberof FileTreeDto * @memberof FileTreeDto
*/ */
extension?: string; extension?: string;
/** /**
* * Gets or sets the size of the file in bytes.
* @type {number} * @type {number}
* @memberof FileTreeDto * @memberof FileTreeDto
*/ */
size?: number; size?: number;
/** /**
* * Gets or sets the creation date of the file.
* @type {string} * @type {string}
* @memberof FileTreeDto * @memberof FileTreeDto
*/ */
creationDate?: string | null; creationDate?: string | null;
/** /**
* * Gets or sets the last change date of the file.
* @type {string} * @type {string}
* @memberof FileTreeDto * @memberof FileTreeDto
*/ */
changeDate?: string | null; changeDate?: string | null;
/**
*
* @type {FileActionsDto}
* @memberof FileTreeDto
*/
actions?: FileActionsDto;
} }
/** /**
* *
...@@ -574,7 +625,7 @@ export interface FileTreeDtoPagedResponse { ...@@ -574,7 +625,7 @@ export interface FileTreeDtoPagedResponse {
pagination?: Pagination; pagination?: Pagination;
} }
/** /**
* * Represents the data transfer object for manipulating a resource fixed value.
* @export * @export
* @interface FixedValueForResourceManipulationDto * @interface FixedValueForResourceManipulationDto
*/ */
...@@ -857,7 +908,7 @@ export interface GitlabProjectDtoResponse { ...@@ -857,7 +908,7 @@ export interface GitlabProjectDtoResponse {
traceId?: string | null; traceId?: string | null;
} }
/** /**
* * Represents the data transfer object for creating GitLab resource type options.
* @export * @export
* @interface GitlabResourceTypeOptionsForCreationDto * @interface GitlabResourceTypeOptionsForCreationDto
*/ */
...@@ -894,7 +945,7 @@ export interface GitlabResourceTypeOptionsForCreationDto { ...@@ -894,7 +945,7 @@ export interface GitlabResourceTypeOptionsForCreationDto {
tosAccepted: boolean; tosAccepted: boolean;
} }
/** /**
* * Represents the data transfer object for updating GitLab resource type options.
* @export * @export
* @interface GitlabResourceTypeOptionsForUpdateDto * @interface GitlabResourceTypeOptionsForUpdateDto
*/ */
...@@ -932,7 +983,7 @@ export interface IdentityProviderDto { ...@@ -932,7 +983,7 @@ export interface IdentityProviderDto {
displayName?: string; displayName?: string;
} }
/** /**
* * Specifies the supported external authentication services.
* @export * @export
* @enum {string} * @enum {string}
*/ */
...@@ -1149,43 +1200,43 @@ export interface LicenseForResourceManipulationDto { ...@@ -1149,43 +1200,43 @@ export interface LicenseForResourceManipulationDto {
id: string; id: string;
} }
/** /**
* * This class represents a maintenance with its significant properties, which is returned from the API.
* @export * @export
* @interface MaintenanceDto * @interface MaintenanceDto
*/ */
export interface MaintenanceDto { export interface MaintenanceDto {
/** /**
* * Maintenance title.
* @type {string} * @type {string}
* @memberof MaintenanceDto * @memberof MaintenanceDto
*/ */
displayName?: string; displayName?: string;
/** /**
* * Maintenance URL.
* @type {string} * @type {string}
* @memberof MaintenanceDto * @memberof MaintenanceDto
*/ */
href?: string; href?: string;
/** /**
* * Maintenance type.
* @type {string} * @type {string}
* @memberof MaintenanceDto * @memberof MaintenanceDto
*/ */
type?: string; type?: string;
/** /**
* * Maintenance description.
* @type {string} * @type {string}
* @memberof MaintenanceDto * @memberof MaintenanceDto
*/ */
body?: string; body?: string;
/** /**
* * Maintenance start.
* @type {string} * @type {string}
* @memberof MaintenanceDto * @memberof MaintenanceDto
*/ */
startsDate?: string | null; startsDate?: string | null;
/** /**
* * Maintenance end.
* @type {string} * @type {string}
* @memberof MaintenanceDto * @memberof MaintenanceDto
*/ */
...@@ -1397,19 +1448,19 @@ export interface MetadataUpdateAdminParameters { ...@@ -1397,19 +1448,19 @@ export interface MetadataUpdateAdminParameters {
*/ */
export interface OrganizationDto { export interface OrganizationDto {
/** /**
* * The ROR <i>(Research Organization Registry)</i> ID of the organization.
* @type {string} * @type {string}
* @memberof OrganizationDto * @memberof OrganizationDto
*/ */
uri?: string; uri?: string;
/** /**
* * The display name of the organization.
* @type {string} * @type {string}
* @memberof OrganizationDto * @memberof OrganizationDto
*/ */
displayName?: string; displayName?: string;
/** /**
* * The email address of the organization.
* @type {string} * @type {string}
* @memberof OrganizationDto * @memberof OrganizationDto
*/ */
...@@ -1571,7 +1622,7 @@ export interface PidRequestDto { ...@@ -1571,7 +1622,7 @@ export interface PidRequestDto {
sendConfirmationEmail?: boolean; sendConfirmationEmail?: boolean;
} }
/** /**
* * Specifies the type of PID.
* @export * @export
* @enum {string} * @enum {string}
*/ */
...@@ -2305,7 +2356,7 @@ export interface ProjectMinimalDto { ...@@ -2305,7 +2356,7 @@ export interface ProjectMinimalDto {
*/ */
export interface ProjectQuotaDto { export interface ProjectQuotaDto {
/** /**
* * Id of the project.
* @type {string} * @type {string}
* @memberof ProjectQuotaDto * @memberof ProjectQuotaDto
*/ */
...@@ -2341,7 +2392,7 @@ export interface ProjectQuotaDto { ...@@ -2341,7 +2392,7 @@ export interface ProjectQuotaDto {
*/ */
resourceType?: ResourceTypeMinimalDto; resourceType?: ResourceTypeMinimalDto;
/** /**
* * Resources quota for all individual resources of a resource type in a selected project.
* @type {Array<ResourceQuotaDto>} * @type {Array<ResourceQuotaDto>}
* @memberof ProjectQuotaDto * @memberof ProjectQuotaDto
*/ */
...@@ -2703,13 +2754,13 @@ export interface QuotaDto { ...@@ -2703,13 +2754,13 @@ export interface QuotaDto {
unit: QuotaUnit; unit: QuotaUnit;
} }
/** /**
* * Represents the data transfer object for manipulating a quota value.
* @export * @export
* @interface QuotaForManipulationDto * @interface QuotaForManipulationDto
*/ */
export interface QuotaForManipulationDto { export interface QuotaForManipulationDto {
/** /**
* * Numerical value of the quota as a positive System.Int64.
* @type {number} * @type {number}
* @memberof QuotaForManipulationDto * @memberof QuotaForManipulationDto
*/ */
...@@ -2722,7 +2773,7 @@ export interface QuotaForManipulationDto { ...@@ -2722,7 +2773,7 @@ export interface QuotaForManipulationDto {
unit: QuotaUnit; unit: QuotaUnit;
} }
/** /**
* * Specifies the unit of quota.
* @export * @export
* @enum {string} * @enum {string}
*/ */
...@@ -2806,7 +2857,7 @@ export interface RdfDefinitionForManipulationDto { ...@@ -2806,7 +2857,7 @@ export interface RdfDefinitionForManipulationDto {
type: RdfFormat; type: RdfFormat;
} }
/** /**
* * Specifies the RDF <i>(Resource Description Framework)</i> format.
* @export * @export
* @enum {string} * @enum {string}
*/ */
...@@ -2836,7 +2887,7 @@ export interface RdsOptionsDto { ...@@ -2836,7 +2887,7 @@ export interface RdsOptionsDto {
size?: QuotaDto; size?: QuotaDto;
} }
/** /**
* * Represents the data transfer object for manipulating RDS Web resource type options.
* @export * @export
* @interface RdsResourceTypeOptionsForManipulationDto * @interface RdsResourceTypeOptionsForManipulationDto
*/ */
...@@ -2898,7 +2949,7 @@ export interface RdsS3OptionsDto { ...@@ -2898,7 +2949,7 @@ export interface RdsS3OptionsDto {
size?: QuotaDto; size?: QuotaDto;
} }
/** /**
* * Represents the data transfer object for manipulating RDS S3 resource type options.
* @export * @export
* @interface RdsS3ResourceTypeOptionsForManipulationDto * @interface RdsS3ResourceTypeOptionsForManipulationDto
*/ */
...@@ -2960,7 +3011,7 @@ export interface RdsS3WormOptionsDto { ...@@ -2960,7 +3011,7 @@ export interface RdsS3WormOptionsDto {
size?: QuotaDto; size?: QuotaDto;
} }
/** /**
* * Represents the data transfer object for manipulating RDS S3 WORM resource type options.
* @export * @export
* @interface RdsS3WormResourceTypeOptionsForManipulationDto * @interface RdsS3WormResourceTypeOptionsForManipulationDto
*/ */
...@@ -3131,7 +3182,7 @@ export interface ResourceAdminDtoIEnumerablePagedResponse { ...@@ -3131,7 +3182,7 @@ export interface ResourceAdminDtoIEnumerablePagedResponse {
*/ */
export interface ResourceContentPageColumnsDto { export interface ResourceContentPageColumnsDto {
/** /**
* * Set of columns that should always be displayed in the content view
* @type {Set<string>} * @type {Set<string>}
* @memberof ResourceContentPageColumnsDto * @memberof ResourceContentPageColumnsDto
*/ */
...@@ -3144,7 +3195,7 @@ export interface ResourceContentPageColumnsDto { ...@@ -3144,7 +3195,7 @@ export interface ResourceContentPageColumnsDto {
*/ */
export interface ResourceContentPageDto { export interface ResourceContentPageDto {
/** /**
* * Resource is read-only
* @type {boolean} * @type {boolean}
* @memberof ResourceContentPageDto * @memberof ResourceContentPageDto
*/ */
...@@ -3182,13 +3233,13 @@ export interface ResourceContentPageEntriesViewDto { ...@@ -3182,13 +3233,13 @@ export interface ResourceContentPageEntriesViewDto {
*/ */
export interface ResourceContentPageMetadataViewDto { export interface ResourceContentPageMetadataViewDto {
/** /**
* * A data URL can be provided and is editable
* @type {boolean} * @type {boolean}
* @memberof ResourceContentPageMetadataViewDto * @memberof ResourceContentPageMetadataViewDto
*/ */
editableDataUrl?: boolean; editableDataUrl?: boolean;
/** /**
* * A key can be provided and is editable
* @type {boolean} * @type {boolean}
* @memberof ResourceContentPageMetadataViewDto * @memberof ResourceContentPageMetadataViewDto
*/ */
...@@ -3201,7 +3252,7 @@ export interface ResourceContentPageMetadataViewDto { ...@@ -3201,7 +3252,7 @@ export interface ResourceContentPageMetadataViewDto {
*/ */
export interface ResourceCreationPageDto { export interface ResourceCreationPageDto {
/** /**
* * List of Lists containing all the resource type specific components for the steps in the resource creation page
* @type {Array<Array<string>>} * @type {Array<Array<string>>}
* @memberof ResourceCreationPageDto * @memberof ResourceCreationPageDto
*/ */
...@@ -3379,7 +3430,7 @@ export interface ResourceDtoResponse { ...@@ -3379,7 +3430,7 @@ export interface ResourceDtoResponse {
traceId?: string | null; traceId?: string | null;
} }
/** /**
* * Represents the data transfer object for creating a resource.
* @export * @export
* @interface ResourceForCreationDto * @interface ResourceForCreationDto
*/ */
...@@ -3458,7 +3509,7 @@ export interface ResourceForCreationDto { ...@@ -3458,7 +3509,7 @@ export interface ResourceForCreationDto {
resourceTypeOptions: ResourceTypeOptionsForCreationDto; resourceTypeOptions: ResourceTypeOptionsForCreationDto;
} }
/** /**
* * Represents the data transfer object for updating a resource.
* @export * @export
* @interface ResourceForUpdateDto * @interface ResourceForUpdateDto
*/ */
...@@ -3643,19 +3694,19 @@ export interface ResourceTypeDto { ...@@ -3643,19 +3694,19 @@ export interface ResourceTypeDto {
*/ */
export interface ResourceTypeInformationDto { export interface ResourceTypeInformationDto {
/** /**
* * Guid of the resource type
* @type {string} * @type {string}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
id?: string; id?: string;
/** /**
* * General resource type
* @type {string} * @type {string}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
generalType?: string | null; generalType?: string | null;
/** /**
* * Specific resource type
* @type {string} * @type {string}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
...@@ -3667,79 +3718,79 @@ export interface ResourceTypeInformationDto { ...@@ -3667,79 +3718,79 @@ export interface ResourceTypeInformationDto {
*/ */
status?: ResourceTypeStatus; status?: ResourceTypeStatus;
/** /**
* * The resource type supports creation
* @type {boolean} * @type {boolean}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
canCreate?: boolean; canCreate?: boolean;
/** /**
* * The resource type supports reading
* @type {boolean} * @type {boolean}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
canRead?: boolean; canRead?: boolean;
/** /**
* * The resource type supports read-only
* @type {boolean} * @type {boolean}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
canSetResourceReadonly?: boolean; canSetResourceReadonly?: boolean;
/** /**
* * The resource type supports updating
* @type {boolean} * @type {boolean}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
canUpdate?: boolean; canUpdate?: boolean;
/** /**
* * The resource type supports updating (not an Object)
* @type {boolean} * @type {boolean}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
canUpdateResource?: boolean; canUpdateResource?: boolean;
/** /**
* * The resource type supports deletion
* @type {boolean} * @type {boolean}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
canDelete?: boolean; canDelete?: boolean;
/** /**
* * The resource type supports deletion (not an Object)
* @type {boolean} * @type {boolean}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
canDeleteResource?: boolean; canDeleteResource?: boolean;
/** /**
* * The resource type supports listing
* @type {boolean} * @type {boolean}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
canList?: boolean; canList?: boolean;
/** /**
* * The resource type supports linking
* @type {boolean} * @type {boolean}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
canCreateLinks?: boolean; canCreateLinks?: boolean;
/** /**
* * The resource type is archived
* @type {boolean} * @type {boolean}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
isArchived?: boolean; isArchived?: boolean;
/** /**
* * Value to see, if the resource type supports quota
* @type {boolean} * @type {boolean}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
isQuotaAvailable?: boolean; isQuotaAvailable?: boolean;
/** /**
* * Value to see, if the resource type quota can be changed
* @type {boolean} * @type {boolean}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
isQuotaAdjustable?: boolean; isQuotaAdjustable?: boolean;
/** /**
* * The resource type is enabled
* @type {boolean} * @type {boolean}
* @memberof ResourceTypeInformationDto * @memberof ResourceTypeInformationDto
*/ */
...@@ -3876,13 +3927,13 @@ export interface ResourceTypeOptionsDto { ...@@ -3876,13 +3927,13 @@ export interface ResourceTypeOptionsDto {
rdsS3Worm?: RdsS3WormOptionsDto; rdsS3Worm?: RdsS3WormOptionsDto;
} }
/** /**
* * Represents the data transfer object for creating any resource type options.
* @export * @export
* @interface ResourceTypeOptionsForCreationDto * @interface ResourceTypeOptionsForCreationDto
*/ */
export interface ResourceTypeOptionsForCreationDto { export interface ResourceTypeOptionsForCreationDto {
/** /**
* * Represents the data transfer object for manipulating linked data resource type options.
* @type {object} * @type {object}
* @memberof ResourceTypeOptionsForCreationDto * @memberof ResourceTypeOptionsForCreationDto
*/ */
...@@ -3913,13 +3964,13 @@ export interface ResourceTypeOptionsForCreationDto { ...@@ -3913,13 +3964,13 @@ export interface ResourceTypeOptionsForCreationDto {
rdsS3WormResourceTypeOptions?: RdsS3WormResourceTypeOptionsForManipulationDto; rdsS3WormResourceTypeOptions?: RdsS3WormResourceTypeOptionsForManipulationDto;
} }
/** /**
* * Represents the data transfer object for updating any resource type options.
* @export * @export
* @interface ResourceTypeOptionsForUpdateDto * @interface ResourceTypeOptionsForUpdateDto
*/ */
export interface ResourceTypeOptionsForUpdateDto { export interface ResourceTypeOptionsForUpdateDto {
/** /**
* * Represents the data transfer object for manipulating linked data resource type options.
* @type {object} * @type {object}
* @memberof ResourceTypeOptionsForUpdateDto * @memberof ResourceTypeOptionsForUpdateDto
*/ */
...@@ -3950,7 +4001,7 @@ export interface ResourceTypeOptionsForUpdateDto { ...@@ -3950,7 +4001,7 @@ export interface ResourceTypeOptionsForUpdateDto {
rdsS3WormResourceTypeOptions?: RdsS3WormResourceTypeOptionsForManipulationDto; rdsS3WormResourceTypeOptions?: RdsS3WormResourceTypeOptionsForManipulationDto;
} }
/** /**
* * Specifies the status of a resource type.
* @export * @export
* @enum {string} * @enum {string}
*/ */
...@@ -4086,7 +4137,7 @@ export interface SearchCategory { ...@@ -4086,7 +4137,7 @@ export interface SearchCategory {
count?: number; count?: number;
} }
/** /**
* * Specifies the search item type.
* @export * @export
* @enum {string} * @enum {string}
*/ */
...@@ -4561,25 +4612,25 @@ export interface UserForUpdateDto { ...@@ -4561,25 +4612,25 @@ export interface UserForUpdateDto {
*/ */
export interface UserInstituteDto { export interface UserInstituteDto {
/** /**
* * The ROR <i>(Research Organization Registry)</i> ID of the organization.
* @type {string} * @type {string}
* @memberof UserInstituteDto * @memberof UserInstituteDto
*/ */
uri?: string; uri?: string;
/** /**
* * The display name of the organization.
* @type {string} * @type {string}
* @memberof UserInstituteDto * @memberof UserInstituteDto
*/ */
displayName?: string; displayName?: string;
/** /**
* * The email address of the organization.
* @type {string} * @type {string}
* @memberof UserInstituteDto * @memberof UserInstituteDto
*/ */
email?: string | null; email?: string | null;
/** /**
* * Determines if the organization\'s details can be modified. Default to `true`, manually set to `false`.
* @type {boolean} * @type {boolean}
* @memberof UserInstituteDto * @memberof UserInstituteDto
*/ */
...@@ -4649,25 +4700,25 @@ export interface UserMinimalDto { ...@@ -4649,25 +4700,25 @@ export interface UserMinimalDto {
*/ */
export interface UserOrganizationDto { export interface UserOrganizationDto {
/** /**
* * The ROR <i>(Research Organization Registry)</i> ID of the organization.
* @type {string} * @type {string}
* @memberof UserOrganizationDto * @memberof UserOrganizationDto
*/ */
uri?: string; uri?: string;
/** /**
* * The display name of the organization.
* @type {string} * @type {string}
* @memberof UserOrganizationDto * @memberof UserOrganizationDto
*/ */
displayName?: string; displayName?: string;
/** /**
* * The email address of the organization.
* @type {string} * @type {string}
* @memberof UserOrganizationDto * @memberof UserOrganizationDto
*/ */
email?: string | null; email?: string | null;
/** /**
* * Determines if the organization\'s details can be modified. Default to `true`, manually set to `false`.
* @type {boolean} * @type {boolean}
* @memberof UserOrganizationDto * @memberof UserOrganizationDto
*/ */
...@@ -4806,13 +4857,13 @@ export interface VisibilityForResourceManipulationDto { ...@@ -4806,13 +4857,13 @@ export interface VisibilityForResourceManipulationDto {
*/ */
export interface VocabularyDto { export interface VocabularyDto {
/** /**
* * The name of the graph, which contains the vocabulary.
* @type {string} * @type {string}
* @memberof VocabularyDto * @memberof VocabularyDto
*/ */
graphUri?: string; graphUri?: string;
/** /**
* * The top-level parent class in the vocabulary.
* @type {string} * @type {string}
* @memberof VocabularyDto * @memberof VocabularyDto
*/ */
...@@ -4874,25 +4925,25 @@ export interface VocabularyDtoPagedResponse { ...@@ -4874,25 +4925,25 @@ export interface VocabularyDtoPagedResponse {
*/ */
export interface VocabularyInstanceDto { export interface VocabularyInstanceDto {
/** /**
* * The name of the graph, which contains the vocabulary.
* @type {string} * @type {string}
* @memberof VocabularyInstanceDto * @memberof VocabularyInstanceDto
*/ */
graphUri?: string; graphUri?: string;
/** /**
* * URI of the instance.
* @type {string} * @type {string}
* @memberof VocabularyInstanceDto * @memberof VocabularyInstanceDto
*/ */
instanceUri?: string; instanceUri?: string;
/** /**
* * Type of the instance.
* @type {string} * @type {string}
* @memberof VocabularyInstanceDto * @memberof VocabularyInstanceDto
*/ */
typeUri?: string | null; typeUri?: string | null;
/** /**
* * The direct parent class.
* @type {string} * @type {string}
* @memberof VocabularyInstanceDto * @memberof VocabularyInstanceDto
*/ */
...@@ -5024,7 +5075,7 @@ export const AdminApiAxiosParamCreator = function (configuration?: Configuration ...@@ -5024,7 +5075,7 @@ export const AdminApiAxiosParamCreator = function (configuration?: Configuration
* @param {boolean} [topLevel] * @param {boolean} [topLevel]
* @param {boolean} [includeDeleted] * @param {boolean} [includeDeleted]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -5081,7 +5132,7 @@ export const AdminApiAxiosParamCreator = function (configuration?: Configuration ...@@ -5081,7 +5132,7 @@ export const AdminApiAxiosParamCreator = function (configuration?: Configuration
* @summary Retrieves all resources. * @summary Retrieves all resources.
* @param {boolean} [includeDeleted] * @param {boolean} [includeDeleted]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -5135,7 +5186,7 @@ export const AdminApiAxiosParamCreator = function (configuration?: Configuration ...@@ -5135,7 +5186,7 @@ export const AdminApiAxiosParamCreator = function (configuration?: Configuration
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {boolean} [tosAccepted] * @param {boolean} [tosAccepted]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
...@@ -5290,7 +5341,7 @@ export const AdminApiFp = function(configuration?: Configuration) { ...@@ -5290,7 +5341,7 @@ export const AdminApiFp = function(configuration?: Configuration) {
* @param {boolean} [topLevel] * @param {boolean} [topLevel]
* @param {boolean} [includeDeleted] * @param {boolean} [includeDeleted]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -5304,7 +5355,7 @@ export const AdminApiFp = function(configuration?: Configuration) { ...@@ -5304,7 +5355,7 @@ export const AdminApiFp = function(configuration?: Configuration) {
* @summary Retrieves all resources. * @summary Retrieves all resources.
* @param {boolean} [includeDeleted] * @param {boolean} [includeDeleted]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -5319,7 +5370,7 @@ export const AdminApiFp = function(configuration?: Configuration) { ...@@ -5319,7 +5370,7 @@ export const AdminApiFp = function(configuration?: Configuration) {
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {boolean} [tosAccepted] * @param {boolean} [tosAccepted]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
...@@ -5375,7 +5426,7 @@ export const AdminApiFactory = function (configuration?: Configuration, basePath ...@@ -5375,7 +5426,7 @@ export const AdminApiFactory = function (configuration?: Configuration, basePath
* @param {boolean} [topLevel] * @param {boolean} [topLevel]
* @param {boolean} [includeDeleted] * @param {boolean} [includeDeleted]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -5388,7 +5439,7 @@ export const AdminApiFactory = function (configuration?: Configuration, basePath ...@@ -5388,7 +5439,7 @@ export const AdminApiFactory = function (configuration?: Configuration, basePath
* @summary Retrieves all resources. * @summary Retrieves all resources.
* @param {boolean} [includeDeleted] * @param {boolean} [includeDeleted]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -5402,7 +5453,7 @@ export const AdminApiFactory = function (configuration?: Configuration, basePath ...@@ -5402,7 +5453,7 @@ export const AdminApiFactory = function (configuration?: Configuration, basePath
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {boolean} [tosAccepted] * @param {boolean} [tosAccepted]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
...@@ -5457,7 +5508,7 @@ export class AdminApi extends BaseAPI { ...@@ -5457,7 +5508,7 @@ export class AdminApi extends BaseAPI {
* @param {boolean} [topLevel] * @param {boolean} [topLevel]
* @param {boolean} [includeDeleted] * @param {boolean} [includeDeleted]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -5472,7 +5523,7 @@ export class AdminApi extends BaseAPI { ...@@ -5472,7 +5523,7 @@ export class AdminApi extends BaseAPI {
* @summary Retrieves all resources. * @summary Retrieves all resources.
* @param {boolean} [includeDeleted] * @param {boolean} [includeDeleted]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -5488,7 +5539,7 @@ export class AdminApi extends BaseAPI { ...@@ -5488,7 +5539,7 @@ export class AdminApi extends BaseAPI {
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {boolean} [tosAccepted] * @param {boolean} [tosAccepted]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
* @memberof AdminApi * @memberof AdminApi
...@@ -5654,7 +5705,7 @@ export const ApplicationProfileApiAxiosParamCreator = function (configuration?: ...@@ -5654,7 +5705,7 @@ export const ApplicationProfileApiAxiosParamCreator = function (configuration?:
* @param {AcceptedLanguage} [language] * @param {AcceptedLanguage} [language]
* @param {boolean} [modules] * @param {boolean} [modules]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -5798,7 +5849,7 @@ export const ApplicationProfileApiFp = function(configuration?: Configuration) { ...@@ -5798,7 +5849,7 @@ export const ApplicationProfileApiFp = function(configuration?: Configuration) {
* @param {AcceptedLanguage} [language] * @param {AcceptedLanguage} [language]
* @param {boolean} [modules] * @param {boolean} [modules]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -5866,7 +5917,7 @@ export const ApplicationProfileApiFactory = function (configuration?: Configurat ...@@ -5866,7 +5917,7 @@ export const ApplicationProfileApiFactory = function (configuration?: Configurat
* @param {AcceptedLanguage} [language] * @param {AcceptedLanguage} [language]
* @param {boolean} [modules] * @param {boolean} [modules]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -5938,7 +5989,7 @@ export class ApplicationProfileApi extends BaseAPI { ...@@ -5938,7 +5989,7 @@ export class ApplicationProfileApi extends BaseAPI {
* @param {AcceptedLanguage} [language] * @param {AcceptedLanguage} [language]
* @param {boolean} [modules] * @param {boolean} [modules]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -6517,7 +6568,7 @@ export const DisciplineApiAxiosParamCreator = function (configuration?: Configur ...@@ -6517,7 +6568,7 @@ export const DisciplineApiAxiosParamCreator = function (configuration?: Configur
* *
* @summary Retrieves all disciplines. * @summary Retrieves all disciplines.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -6596,7 +6647,7 @@ export const DisciplineApiFp = function(configuration?: Configuration) { ...@@ -6596,7 +6647,7 @@ export const DisciplineApiFp = function(configuration?: Configuration) {
* *
* @summary Retrieves all disciplines. * @summary Retrieves all disciplines.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -6638,7 +6689,7 @@ export const DisciplineApiFactory = function (configuration?: Configuration, bas ...@@ -6638,7 +6689,7 @@ export const DisciplineApiFactory = function (configuration?: Configuration, bas
* *
* @summary Retrieves all disciplines. * @summary Retrieves all disciplines.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -6683,7 +6734,7 @@ export class DisciplineApi extends BaseAPI { ...@@ -6683,7 +6734,7 @@ export class DisciplineApi extends BaseAPI {
* *
* @summary Retrieves all disciplines. * @summary Retrieves all disciplines.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -6775,7 +6826,7 @@ export const LanguageApiAxiosParamCreator = function (configuration?: Configurat ...@@ -6775,7 +6826,7 @@ export const LanguageApiAxiosParamCreator = function (configuration?: Configurat
* *
* @summary Retrieves all languages. * @summary Retrieves all languages.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -6854,7 +6905,7 @@ export const LanguageApiFp = function(configuration?: Configuration) { ...@@ -6854,7 +6905,7 @@ export const LanguageApiFp = function(configuration?: Configuration) {
* *
* @summary Retrieves all languages. * @summary Retrieves all languages.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -6896,7 +6947,7 @@ export const LanguageApiFactory = function (configuration?: Configuration, baseP ...@@ -6896,7 +6947,7 @@ export const LanguageApiFactory = function (configuration?: Configuration, baseP
* *
* @summary Retrieves all languages. * @summary Retrieves all languages.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -6941,7 +6992,7 @@ export class LanguageApi extends BaseAPI { ...@@ -6941,7 +6992,7 @@ export class LanguageApi extends BaseAPI {
* *
* @summary Retrieves all languages. * @summary Retrieves all languages.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -7033,7 +7084,7 @@ export const LicenseApiAxiosParamCreator = function (configuration?: Configurati ...@@ -7033,7 +7084,7 @@ export const LicenseApiAxiosParamCreator = function (configuration?: Configurati
* *
* @summary Retrieves all licenses. * @summary Retrieves all licenses.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -7112,7 +7163,7 @@ export const LicenseApiFp = function(configuration?: Configuration) { ...@@ -7112,7 +7163,7 @@ export const LicenseApiFp = function(configuration?: Configuration) {
* *
* @summary Retrieves all licenses. * @summary Retrieves all licenses.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -7154,7 +7205,7 @@ export const LicenseApiFactory = function (configuration?: Configuration, basePa ...@@ -7154,7 +7205,7 @@ export const LicenseApiFactory = function (configuration?: Configuration, basePa
* *
* @summary Retrieves all licenses. * @summary Retrieves all licenses.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -7199,7 +7250,7 @@ export class LicenseApi extends BaseAPI { ...@@ -7199,7 +7250,7 @@ export class LicenseApi extends BaseAPI {
* *
* @summary Retrieves all licenses. * @summary Retrieves all licenses.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -7456,7 +7507,7 @@ export const OrganizationApiAxiosParamCreator = function (configuration?: Config ...@@ -7456,7 +7507,7 @@ export const OrganizationApiAxiosParamCreator = function (configuration?: Config
* @summary Retrieves all organizations. * @summary Retrieves all organizations.
* @param {string} [searchTerm] * @param {string} [searchTerm]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -7540,7 +7591,7 @@ export const OrganizationApiFp = function(configuration?: Configuration) { ...@@ -7540,7 +7591,7 @@ export const OrganizationApiFp = function(configuration?: Configuration) {
* @summary Retrieves all organizations. * @summary Retrieves all organizations.
* @param {string} [searchTerm] * @param {string} [searchTerm]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -7583,7 +7634,7 @@ export const OrganizationApiFactory = function (configuration?: Configuration, b ...@@ -7583,7 +7634,7 @@ export const OrganizationApiFactory = function (configuration?: Configuration, b
* @summary Retrieves all organizations. * @summary Retrieves all organizations.
* @param {string} [searchTerm] * @param {string} [searchTerm]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -7629,7 +7680,7 @@ export class OrganizationApi extends BaseAPI { ...@@ -7629,7 +7680,7 @@ export class OrganizationApi extends BaseAPI {
* @summary Retrieves all organizations. * @summary Retrieves all organizations.
* @param {string} [searchTerm] * @param {string} [searchTerm]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -8063,7 +8114,7 @@ export const ProjectApiAxiosParamCreator = function (configuration?: Configurati ...@@ -8063,7 +8114,7 @@ export const ProjectApiAxiosParamCreator = function (configuration?: Configurati
* @summary Retrieves all projects. * @summary Retrieves all projects.
* @param {boolean} [topLevel] * @param {boolean} [topLevel]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -8211,7 +8262,7 @@ export const ProjectApiFp = function(configuration?: Configuration) { ...@@ -8211,7 +8262,7 @@ export const ProjectApiFp = function(configuration?: Configuration) {
* @summary Retrieves all projects. * @summary Retrieves all projects.
* @param {boolean} [topLevel] * @param {boolean} [topLevel]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -8287,7 +8338,7 @@ export const ProjectApiFactory = function (configuration?: Configuration, basePa ...@@ -8287,7 +8338,7 @@ export const ProjectApiFactory = function (configuration?: Configuration, basePa
* @summary Retrieves all projects. * @summary Retrieves all projects.
* @param {boolean} [topLevel] * @param {boolean} [topLevel]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -8369,7 +8420,7 @@ export class ProjectApi extends BaseAPI { ...@@ -8369,7 +8420,7 @@ export class ProjectApi extends BaseAPI {
* @summary Retrieves all projects. * @summary Retrieves all projects.
* @param {boolean} [topLevel] * @param {boolean} [topLevel]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -8565,7 +8616,7 @@ export const ProjectInvitationApiAxiosParamCreator = function (configuration?: C ...@@ -8565,7 +8616,7 @@ export const ProjectInvitationApiAxiosParamCreator = function (configuration?: C
* @summary Retrieves all project invitations for a specified project. * @summary Retrieves all project invitations for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -8674,7 +8725,7 @@ export const ProjectInvitationApiFp = function(configuration?: Configuration) { ...@@ -8674,7 +8725,7 @@ export const ProjectInvitationApiFp = function(configuration?: Configuration) {
* @summary Retrieves all project invitations for a specified project. * @summary Retrieves all project invitations for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -8741,7 +8792,7 @@ export const ProjectInvitationApiFactory = function (configuration?: Configurati ...@@ -8741,7 +8792,7 @@ export const ProjectInvitationApiFactory = function (configuration?: Configurati
* @summary Retrieves all project invitations for a specified project. * @summary Retrieves all project invitations for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -8815,7 +8866,7 @@ export class ProjectInvitationApi extends BaseAPI { ...@@ -8815,7 +8866,7 @@ export class ProjectInvitationApi extends BaseAPI {
* @summary Retrieves all project invitations for a specified project. * @summary Retrieves all project invitations for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -8998,7 +9049,7 @@ export const ProjectMemberApiAxiosParamCreator = function (configuration?: Confi ...@@ -8998,7 +9049,7 @@ export const ProjectMemberApiAxiosParamCreator = function (configuration?: Confi
* @summary Retrieves all project memberships for a specified project. * @summary Retrieves all project memberships for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -9152,7 +9203,7 @@ export const ProjectMemberApiFp = function(configuration?: Configuration) { ...@@ -9152,7 +9203,7 @@ export const ProjectMemberApiFp = function(configuration?: Configuration) {
* @summary Retrieves all project memberships for a specified project. * @summary Retrieves all project memberships for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -9232,7 +9283,7 @@ export const ProjectMemberApiFactory = function (configuration?: Configuration, ...@@ -9232,7 +9283,7 @@ export const ProjectMemberApiFactory = function (configuration?: Configuration,
* @summary Retrieves all project memberships for a specified project. * @summary Retrieves all project memberships for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -9318,7 +9369,7 @@ export class ProjectMemberApi extends BaseAPI { ...@@ -9318,7 +9369,7 @@ export class ProjectMemberApi extends BaseAPI {
* @summary Retrieves all project memberships for a specified project. * @summary Retrieves all project memberships for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -9433,7 +9484,7 @@ export const ProjectQuotaApiAxiosParamCreator = function (configuration?: Config ...@@ -9433,7 +9484,7 @@ export const ProjectQuotaApiAxiosParamCreator = function (configuration?: Config
* @summary Retrieves all project quotas for a specified project. * @summary Retrieves all project quotas for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -9563,7 +9614,7 @@ export const ProjectQuotaApiFp = function(configuration?: Configuration) { ...@@ -9563,7 +9614,7 @@ export const ProjectQuotaApiFp = function(configuration?: Configuration) {
* @summary Retrieves all project quotas for a specified project. * @summary Retrieves all project quotas for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -9621,7 +9672,7 @@ export const ProjectQuotaApiFactory = function (configuration?: Configuration, b ...@@ -9621,7 +9672,7 @@ export const ProjectQuotaApiFactory = function (configuration?: Configuration, b
* @summary Retrieves all project quotas for a specified project. * @summary Retrieves all project quotas for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -9681,7 +9732,7 @@ export class ProjectQuotaApi extends BaseAPI { ...@@ -9681,7 +9732,7 @@ export class ProjectQuotaApi extends BaseAPI {
* @summary Retrieves all project quotas for a specified project. * @summary Retrieves all project quotas for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -9878,7 +9929,7 @@ export const ProjectResourceApiAxiosParamCreator = function (configuration?: Con ...@@ -9878,7 +9929,7 @@ export const ProjectResourceApiAxiosParamCreator = function (configuration?: Con
* @summary Retrieves all resources for a specified project. * @summary Retrieves all resources for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -10032,7 +10083,7 @@ export const ProjectResourceApiFp = function(configuration?: Configuration) { ...@@ -10032,7 +10083,7 @@ export const ProjectResourceApiFp = function(configuration?: Configuration) {
* @summary Retrieves all resources for a specified project. * @summary Retrieves all resources for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -10112,7 +10163,7 @@ export const ProjectResourceApiFactory = function (configuration?: Configuration ...@@ -10112,7 +10163,7 @@ export const ProjectResourceApiFactory = function (configuration?: Configuration
* @summary Retrieves all resources for a specified project. * @summary Retrieves all resources for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -10198,7 +10249,7 @@ export class ProjectResourceApi extends BaseAPI { ...@@ -10198,7 +10249,7 @@ export class ProjectResourceApi extends BaseAPI {
* @summary Retrieves all resources for a specified project. * @summary Retrieves all resources for a specified project.
* @param {string} projectId The Id or slug of the project. * @param {string} projectId The Id or slug of the project.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -10808,8 +10859,8 @@ export const ResourceTypeApiAxiosParamCreator = function (configuration?: Config ...@@ -10808,8 +10859,8 @@ export const ResourceTypeApiAxiosParamCreator = function (configuration?: Config
* *
* @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials. * @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
* @param {number} gitlabProjectId The ID of the GitLab project. * @param {number} gitlabProjectId The ID of the GitLab project.
* @param {string} domain * @param {string} domain Domain/Host of the GitLab Provider
* @param {string} accessToken * @param {string} accessToken GitLab Project or Group Access Token
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
...@@ -10858,8 +10909,8 @@ export const ResourceTypeApiAxiosParamCreator = function (configuration?: Config ...@@ -10858,8 +10909,8 @@ export const ResourceTypeApiAxiosParamCreator = function (configuration?: Config
/** /**
* *
* @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials. * @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
* @param {string} domain * @param {string} domain Domain/Host of the GitLab Provider
* @param {string} accessToken * @param {string} accessToken GitLab Project or Group Access Token
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
...@@ -10939,8 +10990,8 @@ export const ResourceTypeApiAxiosParamCreator = function (configuration?: Config ...@@ -10939,8 +10990,8 @@ export const ResourceTypeApiAxiosParamCreator = function (configuration?: Config
* *
* @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials. * @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
* @param {number} gitlabProjectId The ID of the GitLab project. * @param {number} gitlabProjectId The ID of the GitLab project.
* @param {string} domain * @param {string} domain Domain/Host of the GitLab Provider
* @param {string} accessToken * @param {string} accessToken GitLab Project or Group Access Token
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
...@@ -11047,8 +11098,8 @@ export const ResourceTypeApiFp = function(configuration?: Configuration) { ...@@ -11047,8 +11098,8 @@ export const ResourceTypeApiFp = function(configuration?: Configuration) {
* *
* @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials. * @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
* @param {number} gitlabProjectId The ID of the GitLab project. * @param {number} gitlabProjectId The ID of the GitLab project.
* @param {string} domain * @param {string} domain Domain/Host of the GitLab Provider
* @param {string} accessToken * @param {string} accessToken GitLab Project or Group Access Token
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
...@@ -11059,8 +11110,8 @@ export const ResourceTypeApiFp = function(configuration?: Configuration) { ...@@ -11059,8 +11110,8 @@ export const ResourceTypeApiFp = function(configuration?: Configuration) {
/** /**
* *
* @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials. * @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
* @param {string} domain * @param {string} domain Domain/Host of the GitLab Provider
* @param {string} accessToken * @param {string} accessToken GitLab Project or Group Access Token
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
...@@ -11082,8 +11133,8 @@ export const ResourceTypeApiFp = function(configuration?: Configuration) { ...@@ -11082,8 +11133,8 @@ export const ResourceTypeApiFp = function(configuration?: Configuration) {
* *
* @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials. * @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
* @param {number} gitlabProjectId The ID of the GitLab project. * @param {number} gitlabProjectId The ID of the GitLab project.
* @param {string} domain * @param {string} domain Domain/Host of the GitLab Provider
* @param {string} accessToken * @param {string} accessToken GitLab Project or Group Access Token
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
...@@ -11125,8 +11176,8 @@ export const ResourceTypeApiFactory = function (configuration?: Configuration, b ...@@ -11125,8 +11176,8 @@ export const ResourceTypeApiFactory = function (configuration?: Configuration, b
* *
* @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials. * @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
* @param {number} gitlabProjectId The ID of the GitLab project. * @param {number} gitlabProjectId The ID of the GitLab project.
* @param {string} domain * @param {string} domain Domain/Host of the GitLab Provider
* @param {string} accessToken * @param {string} accessToken GitLab Project or Group Access Token
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
...@@ -11136,8 +11187,8 @@ export const ResourceTypeApiFactory = function (configuration?: Configuration, b ...@@ -11136,8 +11187,8 @@ export const ResourceTypeApiFactory = function (configuration?: Configuration, b
/** /**
* *
* @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials. * @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
* @param {string} domain * @param {string} domain Domain/Host of the GitLab Provider
* @param {string} accessToken * @param {string} accessToken GitLab Project or Group Access Token
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
...@@ -11157,8 +11208,8 @@ export const ResourceTypeApiFactory = function (configuration?: Configuration, b ...@@ -11157,8 +11208,8 @@ export const ResourceTypeApiFactory = function (configuration?: Configuration, b
* *
* @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials. * @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
* @param {number} gitlabProjectId The ID of the GitLab project. * @param {number} gitlabProjectId The ID of the GitLab project.
* @param {string} domain * @param {string} domain Domain/Host of the GitLab Provider
* @param {string} accessToken * @param {string} accessToken GitLab Project or Group Access Token
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
...@@ -11200,8 +11251,8 @@ export class ResourceTypeApi extends BaseAPI { ...@@ -11200,8 +11251,8 @@ export class ResourceTypeApi extends BaseAPI {
* *
* @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials. * @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
* @param {number} gitlabProjectId The ID of the GitLab project. * @param {number} gitlabProjectId The ID of the GitLab project.
* @param {string} domain * @param {string} domain Domain/Host of the GitLab Provider
* @param {string} accessToken * @param {string} accessToken GitLab Project or Group Access Token
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
* @memberof ResourceTypeApi * @memberof ResourceTypeApi
...@@ -11213,8 +11264,8 @@ export class ResourceTypeApi extends BaseAPI { ...@@ -11213,8 +11264,8 @@ export class ResourceTypeApi extends BaseAPI {
/** /**
* *
* @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials. * @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
* @param {string} domain * @param {string} domain Domain/Host of the GitLab Provider
* @param {string} accessToken * @param {string} accessToken GitLab Project or Group Access Token
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
* @memberof ResourceTypeApi * @memberof ResourceTypeApi
...@@ -11238,8 +11289,8 @@ export class ResourceTypeApi extends BaseAPI { ...@@ -11238,8 +11289,8 @@ export class ResourceTypeApi extends BaseAPI {
* *
* @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials. * @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
* @param {number} gitlabProjectId The ID of the GitLab project. * @param {number} gitlabProjectId The ID of the GitLab project.
* @param {string} domain * @param {string} domain Domain/Host of the GitLab Provider
* @param {string} accessToken * @param {string} accessToken GitLab Project or Group Access Token
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
* @memberof ResourceTypeApi * @memberof ResourceTypeApi
...@@ -11342,7 +11393,7 @@ export const RoleApiAxiosParamCreator = function (configuration?: Configuration) ...@@ -11342,7 +11393,7 @@ export const RoleApiAxiosParamCreator = function (configuration?: Configuration)
* *
* @summary Retrieves all roles. * @summary Retrieves all roles.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -11421,7 +11472,7 @@ export const RoleApiFp = function(configuration?: Configuration) { ...@@ -11421,7 +11472,7 @@ export const RoleApiFp = function(configuration?: Configuration) {
* *
* @summary Retrieves all roles. * @summary Retrieves all roles.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -11463,7 +11514,7 @@ export const RoleApiFactory = function (configuration?: Configuration, basePath? ...@@ -11463,7 +11514,7 @@ export const RoleApiFactory = function (configuration?: Configuration, basePath?
* *
* @summary Retrieves all roles. * @summary Retrieves all roles.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -11508,7 +11559,7 @@ export class RoleApi extends BaseAPI { ...@@ -11508,7 +11559,7 @@ export class RoleApi extends BaseAPI {
* *
* @summary Retrieves all roles. * @summary Retrieves all roles.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -11562,12 +11613,12 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio ...@@ -11562,12 +11613,12 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
/** /**
* *
* @summary Retrieves a search result by given search parameters. * @summary Retrieves a search result by given search parameters.
* @param {string} [query] * @param {string} [query] The search query
* @param {boolean} [useAdvancedSyntax] * @param {boolean} [useAdvancedSyntax] Set true for advanced Elasticsearch search syntax
* @param {Array<string>} [languages] * @param {Array<string>} [languages] Set the used languages
* @param {SearchCategoryType} [category] * @param {SearchCategoryType} [category] Set the category filter
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -11650,12 +11701,12 @@ export const SearchApiFp = function(configuration?: Configuration) { ...@@ -11650,12 +11701,12 @@ export const SearchApiFp = function(configuration?: Configuration) {
/** /**
* *
* @summary Retrieves a search result by given search parameters. * @summary Retrieves a search result by given search parameters.
* @param {string} [query] * @param {string} [query] The search query
* @param {boolean} [useAdvancedSyntax] * @param {boolean} [useAdvancedSyntax] Set true for advanced Elasticsearch search syntax
* @param {Array<string>} [languages] * @param {Array<string>} [languages] Set the used languages
* @param {SearchCategoryType} [category] * @param {SearchCategoryType} [category] Set the category filter
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -11686,12 +11737,12 @@ export const SearchApiFactory = function (configuration?: Configuration, basePat ...@@ -11686,12 +11737,12 @@ export const SearchApiFactory = function (configuration?: Configuration, basePat
/** /**
* *
* @summary Retrieves a search result by given search parameters. * @summary Retrieves a search result by given search parameters.
* @param {string} [query] * @param {string} [query] The search query
* @param {boolean} [useAdvancedSyntax] * @param {boolean} [useAdvancedSyntax] Set true for advanced Elasticsearch search syntax
* @param {Array<string>} [languages] * @param {Array<string>} [languages] Set the used languages
* @param {SearchCategoryType} [category] * @param {SearchCategoryType} [category] Set the category filter
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -11723,12 +11774,12 @@ export class SearchApi extends BaseAPI { ...@@ -11723,12 +11774,12 @@ export class SearchApi extends BaseAPI {
/** /**
* *
* @summary Retrieves a search result by given search parameters. * @summary Retrieves a search result by given search parameters.
* @param {string} [query] * @param {string} [query] The search query
* @param {boolean} [useAdvancedSyntax] * @param {boolean} [useAdvancedSyntax] Set true for advanced Elasticsearch search syntax
* @param {Array<string>} [languages] * @param {Array<string>} [languages] Set the used languages
* @param {SearchCategoryType} [category] * @param {SearchCategoryType} [category] Set the category filter
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -12340,7 +12391,7 @@ export const SelfApiTokenApiAxiosParamCreator = function (configuration?: Config ...@@ -12340,7 +12391,7 @@ export const SelfApiTokenApiAxiosParamCreator = function (configuration?: Config
* *
* @summary Retrieves all API tokens for the current authenticated user. * @summary Retrieves all API tokens for the current authenticated user.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -12493,7 +12544,7 @@ export const SelfApiTokenApiFp = function(configuration?: Configuration) { ...@@ -12493,7 +12544,7 @@ export const SelfApiTokenApiFp = function(configuration?: Configuration) {
* *
* @summary Retrieves all API tokens for the current authenticated user. * @summary Retrieves all API tokens for the current authenticated user.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -12557,7 +12608,7 @@ export const SelfApiTokenApiFactory = function (configuration?: Configuration, b ...@@ -12557,7 +12608,7 @@ export const SelfApiTokenApiFactory = function (configuration?: Configuration, b
* *
* @summary Retrieves all API tokens for the current authenticated user. * @summary Retrieves all API tokens for the current authenticated user.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -12622,7 +12673,7 @@ export class SelfApiTokenApi extends BaseAPI { ...@@ -12622,7 +12673,7 @@ export class SelfApiTokenApi extends BaseAPI {
* *
* @summary Retrieves all API tokens for the current authenticated user. * @summary Retrieves all API tokens for the current authenticated user.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -12738,7 +12789,7 @@ export const TitleApiAxiosParamCreator = function (configuration?: Configuration ...@@ -12738,7 +12789,7 @@ export const TitleApiAxiosParamCreator = function (configuration?: Configuration
* *
* @summary Retrieves all titles. * @summary Retrieves all titles.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -12817,7 +12868,7 @@ export const TitleApiFp = function(configuration?: Configuration) { ...@@ -12817,7 +12868,7 @@ export const TitleApiFp = function(configuration?: Configuration) {
* *
* @summary Retrieves all titles. * @summary Retrieves all titles.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -12859,7 +12910,7 @@ export const TitleApiFactory = function (configuration?: Configuration, basePath ...@@ -12859,7 +12910,7 @@ export const TitleApiFactory = function (configuration?: Configuration, basePath
* *
* @summary Retrieves all titles. * @summary Retrieves all titles.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -12904,7 +12955,7 @@ export class TitleApi extends BaseAPI { ...@@ -12904,7 +12955,7 @@ export class TitleApi extends BaseAPI {
* *
* @summary Retrieves all titles. * @summary Retrieves all titles.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -13179,7 +13230,7 @@ export const TreeApiAxiosParamCreator = function (configuration?: Configuration) ...@@ -13179,7 +13230,7 @@ export const TreeApiAxiosParamCreator = function (configuration?: Configuration)
* @param {string} resourceId The unique identifier of the resource. * @param {string} resourceId The unique identifier of the resource.
* @param {string} [path] * @param {string} [path]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -13239,9 +13290,9 @@ export const TreeApiAxiosParamCreator = function (configuration?: Configuration) ...@@ -13239,9 +13290,9 @@ export const TreeApiAxiosParamCreator = function (configuration?: Configuration)
* @param {string} projectId The unique identifier or slug of the project. * @param {string} projectId The unique identifier or slug of the project.
* @param {string} resourceId The unique identifier of the resource. * @param {string} resourceId The unique identifier of the resource.
* @param {string} [path] * @param {string} [path]
* @param {RdfFormat} [format] * @param {RdfFormat} [format] Value indicating whether to list folder contents recursively, including subfolders.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -13386,7 +13437,7 @@ export const TreeApiFp = function(configuration?: Configuration) { ...@@ -13386,7 +13437,7 @@ export const TreeApiFp = function(configuration?: Configuration) {
* @param {string} resourceId The unique identifier of the resource. * @param {string} resourceId The unique identifier of the resource.
* @param {string} [path] * @param {string} [path]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -13401,9 +13452,9 @@ export const TreeApiFp = function(configuration?: Configuration) { ...@@ -13401,9 +13452,9 @@ export const TreeApiFp = function(configuration?: Configuration) {
* @param {string} projectId The unique identifier or slug of the project. * @param {string} projectId The unique identifier or slug of the project.
* @param {string} resourceId The unique identifier of the resource. * @param {string} resourceId The unique identifier of the resource.
* @param {string} [path] * @param {string} [path]
* @param {RdfFormat} [format] * @param {RdfFormat} [format] Value indicating whether to list folder contents recursively, including subfolders.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -13465,7 +13516,7 @@ export const TreeApiFactory = function (configuration?: Configuration, basePath? ...@@ -13465,7 +13516,7 @@ export const TreeApiFactory = function (configuration?: Configuration, basePath?
* @param {string} resourceId The unique identifier of the resource. * @param {string} resourceId The unique identifier of the resource.
* @param {string} [path] * @param {string} [path]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -13479,9 +13530,9 @@ export const TreeApiFactory = function (configuration?: Configuration, basePath? ...@@ -13479,9 +13530,9 @@ export const TreeApiFactory = function (configuration?: Configuration, basePath?
* @param {string} projectId The unique identifier or slug of the project. * @param {string} projectId The unique identifier or slug of the project.
* @param {string} resourceId The unique identifier of the resource. * @param {string} resourceId The unique identifier of the resource.
* @param {string} [path] * @param {string} [path]
* @param {RdfFormat} [format] * @param {RdfFormat} [format] Value indicating whether to list folder contents recursively, including subfolders.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -13545,7 +13596,7 @@ export class TreeApi extends BaseAPI { ...@@ -13545,7 +13596,7 @@ export class TreeApi extends BaseAPI {
* @param {string} resourceId The unique identifier of the resource. * @param {string} resourceId The unique identifier of the resource.
* @param {string} [path] * @param {string} [path]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -13561,9 +13612,9 @@ export class TreeApi extends BaseAPI { ...@@ -13561,9 +13612,9 @@ export class TreeApi extends BaseAPI {
* @param {string} projectId The unique identifier or slug of the project. * @param {string} projectId The unique identifier or slug of the project.
* @param {string} resourceId The unique identifier of the resource. * @param {string} resourceId The unique identifier of the resource.
* @param {string} [path] * @param {string} [path]
* @param {RdfFormat} [format] * @param {RdfFormat} [format] Value indicating whether to list folder contents recursively, including subfolders.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -13814,7 +13865,7 @@ export const VisibilityApiAxiosParamCreator = function (configuration?: Configur ...@@ -13814,7 +13865,7 @@ export const VisibilityApiAxiosParamCreator = function (configuration?: Configur
* *
* @summary Retrieves all visibilities. * @summary Retrieves all visibilities.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -13919,7 +13970,7 @@ export const VisibilityApiFp = function(configuration?: Configuration) { ...@@ -13919,7 +13970,7 @@ export const VisibilityApiFp = function(configuration?: Configuration) {
* *
* @summary Retrieves all visibilities. * @summary Retrieves all visibilities.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -13962,7 +14013,7 @@ export const VisibilityApiFactory = function (configuration?: Configuration, bas ...@@ -13962,7 +14013,7 @@ export const VisibilityApiFactory = function (configuration?: Configuration, bas
* *
* @summary Retrieves all visibilities. * @summary Retrieves all visibilities.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -14005,7 +14056,7 @@ export class VisibilityApi extends BaseAPI { ...@@ -14005,7 +14056,7 @@ export class VisibilityApi extends BaseAPI {
* *
* @summary Retrieves all visibilities. * @summary Retrieves all visibilities.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -14074,7 +14125,7 @@ export const VocabularyApiAxiosParamCreator = function (configuration?: Configur ...@@ -14074,7 +14125,7 @@ export const VocabularyApiAxiosParamCreator = function (configuration?: Configur
* @param {string} [searchTerm] * @param {string} [searchTerm]
* @param {AcceptedLanguage} [language] * @param {AcceptedLanguage} [language]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -14174,13 +14225,13 @@ export const VocabularyApiAxiosParamCreator = function (configuration?: Configur ...@@ -14174,13 +14225,13 @@ export const VocabularyApiAxiosParamCreator = function (configuration?: Configur
* @param {string} _class * @param {string} _class
* @param {string} [searchTerm] * @param {string} [searchTerm]
* @param {AcceptedLanguage} [language] * @param {AcceptedLanguage} [language]
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;150&#x60;.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize]
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
getVocabularyInstances: async (_class: string, searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options: any = {}): Promise<RequestArgs> => { getVocabularyInstances: async (_class: string, searchTerm?: string, language?: AcceptedLanguage, pageSize?: number, pageNumber?: number, orderBy?: string, options: any = {}): Promise<RequestArgs> => {
// verify required parameter '_class' is not null or undefined // verify required parameter '_class' is not null or undefined
assertParamExists('getVocabularyInstances', '_class', _class) assertParamExists('getVocabularyInstances', '_class', _class)
const localVarPath = `/api/v2/vocabularies/instances`; const localVarPath = `/api/v2/vocabularies/instances`;
...@@ -14210,14 +14261,14 @@ export const VocabularyApiAxiosParamCreator = function (configuration?: Configur ...@@ -14210,14 +14261,14 @@ export const VocabularyApiAxiosParamCreator = function (configuration?: Configur
localVarQueryParameter['Language'] = language; localVarQueryParameter['Language'] = language;
} }
   
if (pageNumber !== undefined) {
localVarQueryParameter['PageNumber'] = pageNumber;
}
if (pageSize !== undefined) { if (pageSize !== undefined) {
localVarQueryParameter['PageSize'] = pageSize; localVarQueryParameter['PageSize'] = pageSize;
} }
   
if (pageNumber !== undefined) {
localVarQueryParameter['PageNumber'] = pageNumber;
}
if (orderBy !== undefined) { if (orderBy !== undefined) {
localVarQueryParameter['OrderBy'] = orderBy; localVarQueryParameter['OrderBy'] = orderBy;
} }
...@@ -14259,7 +14310,7 @@ export const VocabularyApiFp = function(configuration?: Configuration) { ...@@ -14259,7 +14310,7 @@ export const VocabularyApiFp = function(configuration?: Configuration) {
* @param {string} [searchTerm] * @param {string} [searchTerm]
* @param {AcceptedLanguage} [language] * @param {AcceptedLanguage} [language]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -14286,14 +14337,14 @@ export const VocabularyApiFp = function(configuration?: Configuration) { ...@@ -14286,14 +14337,14 @@ export const VocabularyApiFp = function(configuration?: Configuration) {
* @param {string} _class * @param {string} _class
* @param {string} [searchTerm] * @param {string} [searchTerm]
* @param {AcceptedLanguage} [language] * @param {AcceptedLanguage} [language]
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;150&#x60;.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize]
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
async getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VocabularyInstanceDtoPagedResponse>> { async getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageSize?: number, pageNumber?: number, orderBy?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VocabularyInstanceDtoPagedResponse>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.getVocabularyInstances(_class, searchTerm, language, pageNumber, pageSize, orderBy, options); const localVarAxiosArgs = await localVarAxiosParamCreator.getVocabularyInstances(_class, searchTerm, language, pageSize, pageNumber, orderBy, options);
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
}, },
} }
...@@ -14321,7 +14372,7 @@ export const VocabularyApiFactory = function (configuration?: Configuration, bas ...@@ -14321,7 +14372,7 @@ export const VocabularyApiFactory = function (configuration?: Configuration, bas
* @param {string} [searchTerm] * @param {string} [searchTerm]
* @param {AcceptedLanguage} [language] * @param {AcceptedLanguage} [language]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -14346,14 +14397,14 @@ export const VocabularyApiFactory = function (configuration?: Configuration, bas ...@@ -14346,14 +14397,14 @@ export const VocabularyApiFactory = function (configuration?: Configuration, bas
* @param {string} _class * @param {string} _class
* @param {string} [searchTerm] * @param {string} [searchTerm]
* @param {AcceptedLanguage} [language] * @param {AcceptedLanguage} [language]
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;150&#x60;.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize]
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
*/ */
getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any): AxiosPromise<VocabularyInstanceDtoPagedResponse> { getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageSize?: number, pageNumber?: number, orderBy?: string, options?: any): AxiosPromise<VocabularyInstanceDtoPagedResponse> {
return localVarFp.getVocabularyInstances(_class, searchTerm, language, pageNumber, pageSize, orderBy, options).then((request) => request(axios, basePath)); return localVarFp.getVocabularyInstances(_class, searchTerm, language, pageSize, pageNumber, orderBy, options).then((request) => request(axios, basePath));
}, },
}; };
}; };
...@@ -14382,7 +14433,7 @@ export class VocabularyApi extends BaseAPI { ...@@ -14382,7 +14433,7 @@ export class VocabularyApi extends BaseAPI {
* @param {string} [searchTerm] * @param {string} [searchTerm]
* @param {AcceptedLanguage} [language] * @param {AcceptedLanguage} [language]
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize] * @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;50&#x60;.
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
...@@ -14411,15 +14462,15 @@ export class VocabularyApi extends BaseAPI { ...@@ -14411,15 +14462,15 @@ export class VocabularyApi extends BaseAPI {
* @param {string} _class * @param {string} _class
* @param {string} [searchTerm] * @param {string} [searchTerm]
* @param {AcceptedLanguage} [language] * @param {AcceptedLanguage} [language]
* @param {number} [pageSize] Number of items per page. The maximum number of items per page is &#x60;150&#x60;.
* @param {number} [pageNumber] * @param {number} [pageNumber]
* @param {number} [pageSize]
* @param {string} [orderBy] * @param {string} [orderBy]
* @param {*} [options] Override http request option. * @param {*} [options] Override http request option.
* @throws {RequiredError} * @throws {RequiredError}
* @memberof VocabularyApi * @memberof VocabularyApi
*/ */
public getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageNumber?: number, pageSize?: number, orderBy?: string, options?: any) { public getVocabularyInstances(_class: string, searchTerm?: string, language?: AcceptedLanguage, pageSize?: number, pageNumber?: number, orderBy?: string, options?: any) {
return VocabularyApiFp(this.configuration).getVocabularyInstances(_class, searchTerm, language, pageNumber, pageSize, orderBy, options).then((request) => request(this.axios, this.basePath)); return VocabularyApiFp(this.configuration).getVocabularyInstances(_class, searchTerm, language, pageSize, pageNumber, orderBy, options).then((request) => request(this.axios, this.basePath));
} }
} }
   
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment