@coscine/api-client 3.14.0 → 3.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist/index.js +1020 -1149
  2. package/dist/types/Coscine.Api/@coscine/api/admin-api.d.ts +15 -15
  3. package/dist/types/Coscine.Api/@coscine/api/application-profile-api.d.ts +3 -3
  4. package/dist/types/Coscine.Api/@coscine/api/discipline-api.d.ts +3 -3
  5. package/dist/types/Coscine.Api/@coscine/api/language-api.d.ts +3 -3
  6. package/dist/types/Coscine.Api/@coscine/api/license-api.d.ts +3 -3
  7. package/dist/types/Coscine.Api/@coscine/api/organization-api.d.ts +3 -3
  8. package/dist/types/Coscine.Api/@coscine/api/pid-api.d.ts +3 -3
  9. package/dist/types/Coscine.Api/@coscine/api/project-api.d.ts +3 -3
  10. package/dist/types/Coscine.Api/@coscine/api/project-invitation-api.d.ts +3 -3
  11. package/dist/types/Coscine.Api/@coscine/api/project-member-api.d.ts +3 -3
  12. package/dist/types/Coscine.Api/@coscine/api/project-quota-api.d.ts +3 -3
  13. package/dist/types/Coscine.Api/@coscine/api/project-resource-api.d.ts +3 -3
  14. package/dist/types/Coscine.Api/@coscine/api/resource-type-api.d.ts +0 -181
  15. package/dist/types/Coscine.Api/@coscine/api/resource-type-git-lab-api.d.ts +250 -0
  16. package/dist/types/Coscine.Api/@coscine/api/role-api.d.ts +3 -3
  17. package/dist/types/Coscine.Api/@coscine/api/search-api.d.ts +3 -3
  18. package/dist/types/Coscine.Api/@coscine/api/self-api-token-api.d.ts +3 -3
  19. package/dist/types/Coscine.Api/@coscine/api/system-status-api.d.ts +6 -6
  20. package/dist/types/Coscine.Api/@coscine/api/title-api.d.ts +3 -3
  21. package/dist/types/Coscine.Api/@coscine/api/tree-api.d.ts +6 -6
  22. package/dist/types/Coscine.Api/@coscine/api/visibility-api.d.ts +3 -3
  23. package/dist/types/Coscine.Api/@coscine/api/vocabulary-api.d.ts +6 -6
  24. package/dist/types/Coscine.Api/@coscine/model/file-system-storage-options-dto.d.ts +24 -0
  25. package/dist/types/Coscine.Api/@coscine/model/index.d.ts +1 -0
  26. package/dist/types/Coscine.Api/@coscine/model/quota-unit.d.ts +6 -6
  27. package/dist/types/Coscine.Api/@coscine/model/resource-admin-dto.d.ts +8 -2
  28. package/dist/types/Coscine.Api/@coscine/model/resource-dto.d.ts +8 -2
  29. package/dist/types/Coscine.Api/@coscine/model/resource-for-update-dto.d.ts +6 -0
  30. package/dist/types/Coscine.Api/@coscine/model/resource-type-options-dto.d.ts +7 -0
  31. package/dist/types/Coscine.Api/api.d.ts +1 -0
  32. package/dist/types/apis.d.ts +0 -3
  33. package/dist/types/index.d.ts +0 -6
  34. package/package.json +1 -1
@@ -12,9 +12,6 @@
12
12
  import type { Configuration } from '../../configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import { type RequestArgs, BaseAPI } from '../../base';
15
- import type { GitlabBranchDtoIEnumerableResponse } from '../../@coscine/model';
16
- import type { GitlabProjectDtoIEnumerableResponse } from '../../@coscine/model';
17
- import type { GitlabProjectDtoResponse } from '../../@coscine/model';
18
15
  import type { ResourceTypeInformationDtoIEnumerableResponse } from '../../@coscine/model';
19
16
  import type { ResourceTypeInformationDtoResponse } from '../../@coscine/model';
20
17
  /**
@@ -29,25 +26,6 @@ export declare const ResourceTypeApiAxiosParamCreator: (configuration?: Configur
29
26
  * @throws {RequiredError}
30
27
  */
31
28
  apiV2ResourceTypesOptions: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
32
- /**
33
- *
34
- * @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
35
- * @param {number} gitlabProjectId The ID of the GitLab project.
36
- * @param {string} domain Domain/Host of the GitLab Provider.
37
- * @param {string} accessToken GitLab Project or Group Access Token.
38
- * @param {*} [options] Override http request option.
39
- * @throws {RequiredError}
40
- */
41
- getAllGitlabBranchesForProject: (gitlabProjectId: number, domain: string, accessToken: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
42
- /**
43
- *
44
- * @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
45
- * @param {string} domain Domain/Host of the GitLab Provider.
46
- * @param {string} accessToken GitLab Project or Group Access Token.
47
- * @param {*} [options] Override http request option.
48
- * @throws {RequiredError}
49
- */
50
- getAllGitlabProjects: (domain: string, accessToken: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
51
29
  /**
52
30
  *
53
31
  * @summary Retrieves the entire global resource types information.
@@ -55,16 +33,6 @@ export declare const ResourceTypeApiAxiosParamCreator: (configuration?: Configur
55
33
  * @throws {RequiredError}
56
34
  */
57
35
  getAllResourceTypesInformation: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58
- /**
59
- *
60
- * @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
61
- * @param {number} gitlabProjectId The ID of the GitLab project.
62
- * @param {string} domain Domain/Host of the GitLab Provider.
63
- * @param {string} accessToken GitLab Project or Group Access Token.
64
- * @param {*} [options] Override http request option.
65
- * @throws {RequiredError}
66
- */
67
- getGitlabProject: (gitlabProjectId: number, domain: string, accessToken: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
68
36
  /**
69
37
  *
70
38
  * @summary Retrieves the resource type information for a specific resource type.
@@ -86,25 +54,6 @@ export declare const ResourceTypeApiFp: (configuration?: Configuration) => {
86
54
  * @throws {RequiredError}
87
55
  */
88
56
  apiV2ResourceTypesOptions(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
89
- /**
90
- *
91
- * @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
92
- * @param {number} gitlabProjectId The ID of the GitLab project.
93
- * @param {string} domain Domain/Host of the GitLab Provider.
94
- * @param {string} accessToken GitLab Project or Group Access Token.
95
- * @param {*} [options] Override http request option.
96
- * @throws {RequiredError}
97
- */
98
- getAllGitlabBranchesForProject(gitlabProjectId: number, domain: string, accessToken: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GitlabBranchDtoIEnumerableResponse>>;
99
- /**
100
- *
101
- * @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
102
- * @param {string} domain Domain/Host of the GitLab Provider.
103
- * @param {string} accessToken GitLab Project or Group Access Token.
104
- * @param {*} [options] Override http request option.
105
- * @throws {RequiredError}
106
- */
107
- getAllGitlabProjects(domain: string, accessToken: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GitlabProjectDtoIEnumerableResponse>>;
108
57
  /**
109
58
  *
110
59
  * @summary Retrieves the entire global resource types information.
@@ -112,16 +61,6 @@ export declare const ResourceTypeApiFp: (configuration?: Configuration) => {
112
61
  * @throws {RequiredError}
113
62
  */
114
63
  getAllResourceTypesInformation(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResourceTypeInformationDtoIEnumerableResponse>>;
115
- /**
116
- *
117
- * @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
118
- * @param {number} gitlabProjectId The ID of the GitLab project.
119
- * @param {string} domain Domain/Host of the GitLab Provider.
120
- * @param {string} accessToken GitLab Project or Group Access Token.
121
- * @param {*} [options] Override http request option.
122
- * @throws {RequiredError}
123
- */
124
- getGitlabProject(gitlabProjectId: number, domain: string, accessToken: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GitlabProjectDtoResponse>>;
125
64
  /**
126
65
  *
127
66
  * @summary Retrieves the resource type information for a specific resource type.
@@ -143,22 +82,6 @@ export declare const ResourceTypeApiFactory: (configuration?: Configuration, bas
143
82
  * @throws {RequiredError}
144
83
  */
145
84
  apiV2ResourceTypesOptions(options?: RawAxiosRequestConfig): AxiosPromise<void>;
146
- /**
147
- *
148
- * @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
149
- * @param {ResourceTypeApiGetAllGitlabBranchesForProjectRequest} requestParameters Request parameters.
150
- * @param {*} [options] Override http request option.
151
- * @throws {RequiredError}
152
- */
153
- getAllGitlabBranchesForProject(requestParameters: ResourceTypeApiGetAllGitlabBranchesForProjectRequest, options?: RawAxiosRequestConfig): AxiosPromise<GitlabBranchDtoIEnumerableResponse>;
154
- /**
155
- *
156
- * @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
157
- * @param {ResourceTypeApiGetAllGitlabProjectsRequest} requestParameters Request parameters.
158
- * @param {*} [options] Override http request option.
159
- * @throws {RequiredError}
160
- */
161
- getAllGitlabProjects(requestParameters: ResourceTypeApiGetAllGitlabProjectsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GitlabProjectDtoIEnumerableResponse>;
162
85
  /**
163
86
  *
164
87
  * @summary Retrieves the entire global resource types information.
@@ -166,14 +89,6 @@ export declare const ResourceTypeApiFactory: (configuration?: Configuration, bas
166
89
  * @throws {RequiredError}
167
90
  */
168
91
  getAllResourceTypesInformation(options?: RawAxiosRequestConfig): AxiosPromise<ResourceTypeInformationDtoIEnumerableResponse>;
169
- /**
170
- *
171
- * @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
172
- * @param {ResourceTypeApiGetGitlabProjectRequest} requestParameters Request parameters.
173
- * @param {*} [options] Override http request option.
174
- * @throws {RequiredError}
175
- */
176
- getGitlabProject(requestParameters: ResourceTypeApiGetGitlabProjectRequest, options?: RawAxiosRequestConfig): AxiosPromise<GitlabProjectDtoResponse>;
177
92
  /**
178
93
  *
179
94
  * @summary Retrieves the resource type information for a specific resource type.
@@ -183,75 +98,6 @@ export declare const ResourceTypeApiFactory: (configuration?: Configuration, bas
183
98
  */
184
99
  getResourceTypeInformation(requestParameters: ResourceTypeApiGetResourceTypeInformationRequest, options?: RawAxiosRequestConfig): AxiosPromise<ResourceTypeInformationDtoResponse>;
185
100
  };
186
- /**
187
- * Request parameters for getAllGitlabBranchesForProject operation in ResourceTypeApi.
188
- * @export
189
- * @interface ResourceTypeApiGetAllGitlabBranchesForProjectRequest
190
- */
191
- export interface ResourceTypeApiGetAllGitlabBranchesForProjectRequest {
192
- /**
193
- * The ID of the GitLab project.
194
- * @type {number}
195
- * @memberof ResourceTypeApiGetAllGitlabBranchesForProject
196
- */
197
- readonly gitlabProjectId: number;
198
- /**
199
- * Domain/Host of the GitLab Provider.
200
- * @type {string}
201
- * @memberof ResourceTypeApiGetAllGitlabBranchesForProject
202
- */
203
- readonly domain: string;
204
- /**
205
- * GitLab Project or Group Access Token.
206
- * @type {string}
207
- * @memberof ResourceTypeApiGetAllGitlabBranchesForProject
208
- */
209
- readonly accessToken: string;
210
- }
211
- /**
212
- * Request parameters for getAllGitlabProjects operation in ResourceTypeApi.
213
- * @export
214
- * @interface ResourceTypeApiGetAllGitlabProjectsRequest
215
- */
216
- export interface ResourceTypeApiGetAllGitlabProjectsRequest {
217
- /**
218
- * Domain/Host of the GitLab Provider.
219
- * @type {string}
220
- * @memberof ResourceTypeApiGetAllGitlabProjects
221
- */
222
- readonly domain: string;
223
- /**
224
- * GitLab Project or Group Access Token.
225
- * @type {string}
226
- * @memberof ResourceTypeApiGetAllGitlabProjects
227
- */
228
- readonly accessToken: string;
229
- }
230
- /**
231
- * Request parameters for getGitlabProject operation in ResourceTypeApi.
232
- * @export
233
- * @interface ResourceTypeApiGetGitlabProjectRequest
234
- */
235
- export interface ResourceTypeApiGetGitlabProjectRequest {
236
- /**
237
- * The ID of the GitLab project.
238
- * @type {number}
239
- * @memberof ResourceTypeApiGetGitlabProject
240
- */
241
- readonly gitlabProjectId: number;
242
- /**
243
- * Domain/Host of the GitLab Provider.
244
- * @type {string}
245
- * @memberof ResourceTypeApiGetGitlabProject
246
- */
247
- readonly domain: string;
248
- /**
249
- * GitLab Project or Group Access Token.
250
- * @type {string}
251
- * @memberof ResourceTypeApiGetGitlabProject
252
- */
253
- readonly accessToken: string;
254
- }
255
101
  /**
256
102
  * Request parameters for getResourceTypeInformation operation in ResourceTypeApi.
257
103
  * @export
@@ -280,24 +126,6 @@ export declare class ResourceTypeApi extends BaseAPI {
280
126
  * @memberof ResourceTypeApi
281
127
  */
282
128
  apiV2ResourceTypesOptions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
283
- /**
284
- *
285
- * @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
286
- * @param {ResourceTypeApiGetAllGitlabBranchesForProjectRequest} requestParameters Request parameters.
287
- * @param {*} [options] Override http request option.
288
- * @throws {RequiredError}
289
- * @memberof ResourceTypeApi
290
- */
291
- getAllGitlabBranchesForProject(requestParameters: ResourceTypeApiGetAllGitlabBranchesForProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitlabBranchDtoIEnumerableResponse, any>>;
292
- /**
293
- *
294
- * @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
295
- * @param {ResourceTypeApiGetAllGitlabProjectsRequest} requestParameters Request parameters.
296
- * @param {*} [options] Override http request option.
297
- * @throws {RequiredError}
298
- * @memberof ResourceTypeApi
299
- */
300
- getAllGitlabProjects(requestParameters: ResourceTypeApiGetAllGitlabProjectsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitlabProjectDtoIEnumerableResponse, any>>;
301
129
  /**
302
130
  *
303
131
  * @summary Retrieves the entire global resource types information.
@@ -306,15 +134,6 @@ export declare class ResourceTypeApi extends BaseAPI {
306
134
  * @memberof ResourceTypeApi
307
135
  */
308
136
  getAllResourceTypesInformation(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ResourceTypeInformationDtoIEnumerableResponse, any>>;
309
- /**
310
- *
311
- * @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
312
- * @param {ResourceTypeApiGetGitlabProjectRequest} requestParameters Request parameters.
313
- * @param {*} [options] Override http request option.
314
- * @throws {RequiredError}
315
- * @memberof ResourceTypeApi
316
- */
317
- getGitlabProject(requestParameters: ResourceTypeApiGetGitlabProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitlabProjectDtoResponse, any>>;
318
137
  /**
319
138
  *
320
139
  * @summary Retrieves the resource type information for a specific resource type.
@@ -0,0 +1,250 @@
1
+ /**
2
+ * Coscine Web API
3
+ * Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
4
+ *
5
+ * The version of the OpenAPI document: 2.0
6
+ * Contact: servicedesk@itc.rwth-aachen.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { Configuration } from '../../configuration';
13
+ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
+ import { type RequestArgs, BaseAPI } from '../../base';
15
+ import type { GitlabBranchDtoIEnumerableResponse } from '../../@coscine/model';
16
+ import type { GitlabProjectDtoIEnumerableResponse } from '../../@coscine/model';
17
+ import type { GitlabProjectDtoResponse } from '../../@coscine/model';
18
+ /**
19
+ * ResourceTypeGitLabApi - axios parameter creator
20
+ * @export
21
+ */
22
+ export declare const ResourceTypeGitLabApiAxiosParamCreator: (configuration?: Configuration) => {
23
+ /**
24
+ *
25
+ * @summary Responds with the HTTP methods allowed for the endpoint.
26
+ * @param {*} [options] Override http request option.
27
+ * @throws {RequiredError}
28
+ */
29
+ apiV2ResourceTypesGitlabOptions: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30
+ /**
31
+ *
32
+ * @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
33
+ * @param {number} gitlabProjectId The ID of the GitLab project.
34
+ * @param {string} domain Domain/Host of the GitLab Provider.
35
+ * @param {string} accessToken GitLab Project or Group Access Token.
36
+ * @param {*} [options] Override http request option.
37
+ * @throws {RequiredError}
38
+ */
39
+ getAllGitlabBranchesForProject: (gitlabProjectId: number, domain: string, accessToken: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
40
+ /**
41
+ *
42
+ * @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
43
+ * @param {string} domain Domain/Host of the GitLab Provider.
44
+ * @param {string} accessToken GitLab Project or Group Access Token.
45
+ * @param {*} [options] Override http request option.
46
+ * @throws {RequiredError}
47
+ */
48
+ getAllGitlabProjects: (domain: string, accessToken: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
49
+ /**
50
+ *
51
+ * @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
52
+ * @param {number} gitlabProjectId The ID of the GitLab project.
53
+ * @param {string} domain Domain/Host of the GitLab Provider.
54
+ * @param {string} accessToken GitLab Project or Group Access Token.
55
+ * @param {*} [options] Override http request option.
56
+ * @throws {RequiredError}
57
+ */
58
+ getGitlabProject: (gitlabProjectId: number, domain: string, accessToken: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
59
+ };
60
+ /**
61
+ * ResourceTypeGitLabApi - functional programming interface
62
+ * @export
63
+ */
64
+ export declare const ResourceTypeGitLabApiFp: (configuration?: Configuration) => {
65
+ /**
66
+ *
67
+ * @summary Responds with the HTTP methods allowed for the endpoint.
68
+ * @param {*} [options] Override http request option.
69
+ * @throws {RequiredError}
70
+ */
71
+ apiV2ResourceTypesGitlabOptions(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
72
+ /**
73
+ *
74
+ * @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
75
+ * @param {number} gitlabProjectId The ID of the GitLab project.
76
+ * @param {string} domain Domain/Host of the GitLab Provider.
77
+ * @param {string} accessToken GitLab Project or Group Access Token.
78
+ * @param {*} [options] Override http request option.
79
+ * @throws {RequiredError}
80
+ */
81
+ getAllGitlabBranchesForProject(gitlabProjectId: number, domain: string, accessToken: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GitlabBranchDtoIEnumerableResponse>>;
82
+ /**
83
+ *
84
+ * @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
85
+ * @param {string} domain Domain/Host of the GitLab Provider.
86
+ * @param {string} accessToken GitLab Project or Group Access Token.
87
+ * @param {*} [options] Override http request option.
88
+ * @throws {RequiredError}
89
+ */
90
+ getAllGitlabProjects(domain: string, accessToken: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GitlabProjectDtoIEnumerableResponse>>;
91
+ /**
92
+ *
93
+ * @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
94
+ * @param {number} gitlabProjectId The ID of the GitLab project.
95
+ * @param {string} domain Domain/Host of the GitLab Provider.
96
+ * @param {string} accessToken GitLab Project or Group Access Token.
97
+ * @param {*} [options] Override http request option.
98
+ * @throws {RequiredError}
99
+ */
100
+ getGitlabProject(gitlabProjectId: number, domain: string, accessToken: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GitlabProjectDtoResponse>>;
101
+ };
102
+ /**
103
+ * ResourceTypeGitLabApi - factory interface
104
+ * @export
105
+ */
106
+ export declare const ResourceTypeGitLabApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
107
+ /**
108
+ *
109
+ * @summary Responds with the HTTP methods allowed for the endpoint.
110
+ * @param {*} [options] Override http request option.
111
+ * @throws {RequiredError}
112
+ */
113
+ apiV2ResourceTypesGitlabOptions(options?: RawAxiosRequestConfig): AxiosPromise<void>;
114
+ /**
115
+ *
116
+ * @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
117
+ * @param {ResourceTypeGitLabApiGetAllGitlabBranchesForProjectRequest} requestParameters Request parameters.
118
+ * @param {*} [options] Override http request option.
119
+ * @throws {RequiredError}
120
+ */
121
+ getAllGitlabBranchesForProject(requestParameters: ResourceTypeGitLabApiGetAllGitlabBranchesForProjectRequest, options?: RawAxiosRequestConfig): AxiosPromise<GitlabBranchDtoIEnumerableResponse>;
122
+ /**
123
+ *
124
+ * @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
125
+ * @param {ResourceTypeGitLabApiGetAllGitlabProjectsRequest} requestParameters Request parameters.
126
+ * @param {*} [options] Override http request option.
127
+ * @throws {RequiredError}
128
+ */
129
+ getAllGitlabProjects(requestParameters: ResourceTypeGitLabApiGetAllGitlabProjectsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GitlabProjectDtoIEnumerableResponse>;
130
+ /**
131
+ *
132
+ * @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
133
+ * @param {ResourceTypeGitLabApiGetGitlabProjectRequest} requestParameters Request parameters.
134
+ * @param {*} [options] Override http request option.
135
+ * @throws {RequiredError}
136
+ */
137
+ getGitlabProject(requestParameters: ResourceTypeGitLabApiGetGitlabProjectRequest, options?: RawAxiosRequestConfig): AxiosPromise<GitlabProjectDtoResponse>;
138
+ };
139
+ /**
140
+ * Request parameters for getAllGitlabBranchesForProject operation in ResourceTypeGitLabApi.
141
+ * @export
142
+ * @interface ResourceTypeGitLabApiGetAllGitlabBranchesForProjectRequest
143
+ */
144
+ export interface ResourceTypeGitLabApiGetAllGitlabBranchesForProjectRequest {
145
+ /**
146
+ * The ID of the GitLab project.
147
+ * @type {number}
148
+ * @memberof ResourceTypeGitLabApiGetAllGitlabBranchesForProject
149
+ */
150
+ readonly gitlabProjectId: number;
151
+ /**
152
+ * Domain/Host of the GitLab Provider.
153
+ * @type {string}
154
+ * @memberof ResourceTypeGitLabApiGetAllGitlabBranchesForProject
155
+ */
156
+ readonly domain: string;
157
+ /**
158
+ * GitLab Project or Group Access Token.
159
+ * @type {string}
160
+ * @memberof ResourceTypeGitLabApiGetAllGitlabBranchesForProject
161
+ */
162
+ readonly accessToken: string;
163
+ }
164
+ /**
165
+ * Request parameters for getAllGitlabProjects operation in ResourceTypeGitLabApi.
166
+ * @export
167
+ * @interface ResourceTypeGitLabApiGetAllGitlabProjectsRequest
168
+ */
169
+ export interface ResourceTypeGitLabApiGetAllGitlabProjectsRequest {
170
+ /**
171
+ * Domain/Host of the GitLab Provider.
172
+ * @type {string}
173
+ * @memberof ResourceTypeGitLabApiGetAllGitlabProjects
174
+ */
175
+ readonly domain: string;
176
+ /**
177
+ * GitLab Project or Group Access Token.
178
+ * @type {string}
179
+ * @memberof ResourceTypeGitLabApiGetAllGitlabProjects
180
+ */
181
+ readonly accessToken: string;
182
+ }
183
+ /**
184
+ * Request parameters for getGitlabProject operation in ResourceTypeGitLabApi.
185
+ * @export
186
+ * @interface ResourceTypeGitLabApiGetGitlabProjectRequest
187
+ */
188
+ export interface ResourceTypeGitLabApiGetGitlabProjectRequest {
189
+ /**
190
+ * The ID of the GitLab project.
191
+ * @type {number}
192
+ * @memberof ResourceTypeGitLabApiGetGitlabProject
193
+ */
194
+ readonly gitlabProjectId: number;
195
+ /**
196
+ * Domain/Host of the GitLab Provider.
197
+ * @type {string}
198
+ * @memberof ResourceTypeGitLabApiGetGitlabProject
199
+ */
200
+ readonly domain: string;
201
+ /**
202
+ * GitLab Project or Group Access Token.
203
+ * @type {string}
204
+ * @memberof ResourceTypeGitLabApiGetGitlabProject
205
+ */
206
+ readonly accessToken: string;
207
+ }
208
+ /**
209
+ * ResourceTypeGitLabApi - object-oriented interface
210
+ * @export
211
+ * @class ResourceTypeGitLabApi
212
+ * @extends {BaseAPI}
213
+ */
214
+ export declare class ResourceTypeGitLabApi extends BaseAPI {
215
+ /**
216
+ *
217
+ * @summary Responds with the HTTP methods allowed for the endpoint.
218
+ * @param {*} [options] Override http request option.
219
+ * @throws {RequiredError}
220
+ * @memberof ResourceTypeGitLabApi
221
+ */
222
+ apiV2ResourceTypesGitlabOptions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
223
+ /**
224
+ *
225
+ * @summary Retrieves all branches of a GitLab project, that the user is a member of, based on the provided credentials.
226
+ * @param {ResourceTypeGitLabApiGetAllGitlabBranchesForProjectRequest} requestParameters Request parameters.
227
+ * @param {*} [options] Override http request option.
228
+ * @throws {RequiredError}
229
+ * @memberof ResourceTypeGitLabApi
230
+ */
231
+ getAllGitlabBranchesForProject(requestParameters: ResourceTypeGitLabApiGetAllGitlabBranchesForProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitlabBranchDtoIEnumerableResponse, any>>;
232
+ /**
233
+ *
234
+ * @summary Retrieves all GitLab projects, that the user is a member of, based on the provided credentials.
235
+ * @param {ResourceTypeGitLabApiGetAllGitlabProjectsRequest} requestParameters Request parameters.
236
+ * @param {*} [options] Override http request option.
237
+ * @throws {RequiredError}
238
+ * @memberof ResourceTypeGitLabApi
239
+ */
240
+ getAllGitlabProjects(requestParameters: ResourceTypeGitLabApiGetAllGitlabProjectsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitlabProjectDtoIEnumerableResponse, any>>;
241
+ /**
242
+ *
243
+ * @summary Retrieves a single GitLab project, that the user is a member of, based on the provided credentials.
244
+ * @param {ResourceTypeGitLabApiGetGitlabProjectRequest} requestParameters Request parameters.
245
+ * @param {*} [options] Override http request option.
246
+ * @throws {RequiredError}
247
+ * @memberof ResourceTypeGitLabApi
248
+ */
249
+ getGitlabProject(requestParameters: ResourceTypeGitLabApiGetGitlabProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitlabProjectDtoResponse, any>>;
250
+ }
@@ -39,7 +39,7 @@ export declare const RoleApiAxiosParamCreator: (configuration?: Configuration) =
39
39
  * @summary Retrieves all roles.
40
40
  * @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
41
41
  * @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
42
- * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by a order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
42
+ * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
43
43
  * @param {*} [options] Override http request option.
44
44
  * @throws {RequiredError}
45
45
  */
@@ -70,7 +70,7 @@ export declare const RoleApiFp: (configuration?: Configuration) => {
70
70
  * @summary Retrieves all roles.
71
71
  * @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
72
72
  * @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
73
- * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by a order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
73
+ * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
74
74
  * @param {*} [options] Override http request option.
75
75
  * @throws {RequiredError}
76
76
  */
@@ -137,7 +137,7 @@ export interface RoleApiGetRolesRequest {
137
137
  */
138
138
  readonly pageSize?: number;
139
139
  /**
140
- * Gets or sets the field name used for ordering the results. The order is constructed by a order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
140
+ * Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
141
141
  * @type {string}
142
142
  * @memberof RoleApiGetRoles
143
143
  */
@@ -35,7 +35,7 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
35
35
  * @param {SearchCategoryType} [category] Set the category filter
36
36
  * @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
37
37
  * @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
38
- * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by a order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
38
+ * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
39
39
  * @param {*} [options] Override http request option.
40
40
  * @throws {RequiredError}
41
41
  */
@@ -62,7 +62,7 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
62
62
  * @param {SearchCategoryType} [category] Set the category filter
63
63
  * @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
64
64
  * @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
65
- * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by a order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
65
+ * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
66
66
  * @param {*} [options] Override http request option.
67
67
  * @throws {RequiredError}
68
68
  */
@@ -132,7 +132,7 @@ export interface SearchApiGetSearchResultsRequest {
132
132
  */
133
133
  readonly pageSize?: number;
134
134
  /**
135
- * Gets or sets the field name used for ordering the results. The order is constructed by a order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
135
+ * Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
136
136
  * @type {string}
137
137
  * @memberof SearchApiGetSearchResults
138
138
  */
@@ -40,7 +40,7 @@ export declare const SelfApiTokenApiAxiosParamCreator: (configuration?: Configur
40
40
  * @summary Retrieves all API tokens for the current authenticated user.
41
41
  * @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
42
42
  * @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
43
- * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by a order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
43
+ * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
44
44
  * @param {*} [options] Override http request option.
45
45
  * @throws {RequiredError}
46
46
  */
@@ -87,7 +87,7 @@ export declare const SelfApiTokenApiFp: (configuration?: Configuration) => {
87
87
  * @summary Retrieves all API tokens for the current authenticated user.
88
88
  * @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
89
89
  * @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
90
- * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by a order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
90
+ * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
91
91
  * @param {*} [options] Override http request option.
92
92
  * @throws {RequiredError}
93
93
  */
@@ -186,7 +186,7 @@ export interface SelfApiTokenApiGetAllApiTokensRequest {
186
186
  */
187
187
  readonly pageSize?: number;
188
188
  /**
189
- * Gets or sets the field name used for ordering the results. The order is constructed by a order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
189
+ * Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
190
190
  * @type {string}
191
191
  * @memberof SelfApiTokenApiGetAllApiTokens
192
192
  */
@@ -37,7 +37,7 @@ export declare const SystemStatusApiAxiosParamCreator: (configuration?: Configur
37
37
  * @param {string} [searchTerm] Filter messages by text contained in the messages or title.
38
38
  * @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
39
39
  * @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
40
- * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by a order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
40
+ * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
41
41
  * @param {*} [options] Override http request option.
42
42
  * @throws {RequiredError}
43
43
  */
@@ -53,7 +53,7 @@ export declare const SystemStatusApiAxiosParamCreator: (configuration?: Configur
53
53
  * @param {string} [searchTerm] Filter messages by text contained in the messages or title.
54
54
  * @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
55
55
  * @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
56
- * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by a order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
56
+ * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
57
57
  * @param {*} [options] Override http request option.
58
58
  * @throws {RequiredError}
59
59
  */
@@ -82,7 +82,7 @@ export declare const SystemStatusApiFp: (configuration?: Configuration) => {
82
82
  * @param {string} [searchTerm] Filter messages by text contained in the messages or title.
83
83
  * @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
84
84
  * @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
85
- * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by a order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
85
+ * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
86
86
  * @param {*} [options] Override http request option.
87
87
  * @throws {RequiredError}
88
88
  */
@@ -98,7 +98,7 @@ export declare const SystemStatusApiFp: (configuration?: Configuration) => {
98
98
  * @param {string} [searchTerm] Filter messages by text contained in the messages or title.
99
99
  * @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
100
100
  * @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
101
- * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by a order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
101
+ * @param {string} [orderBy] Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
102
102
  * @param {*} [options] Override http request option.
103
103
  * @throws {RequiredError}
104
104
  */
@@ -188,7 +188,7 @@ export interface SystemStatusApiGetInternalMessagesRequest {
188
188
  */
189
189
  readonly pageSize?: number;
190
190
  /**
191
- * Gets or sets the field name used for ordering the results. The order is constructed by a order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
191
+ * Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
192
192
  * @type {string}
193
193
  * @memberof SystemStatusApiGetInternalMessages
194
194
  */
@@ -249,7 +249,7 @@ export interface SystemStatusApiGetNocMessagesRequest {
249
249
  */
250
250
  readonly pageSize?: number;
251
251
  /**
252
- * Gets or sets the field name used for ordering the results. The order is constructed by a order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
252
+ * Gets or sets the field name used for ordering the results. The order is constructed by an order string. Use the property followed by \&quot;asc\&quot; or \&quot;desc\&quot; and separate properties by commas. Default is asc.
253
253
  * @type {string}
254
254
  * @memberof SystemStatusApiGetNocMessages
255
255
  */