@coscine/api-client 3.6.0 → 3.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1281 -993
- package/dist/types/Coscine.Api/@coscine/api/admin-api.d.ts +63 -0
- package/dist/types/Coscine.Api/@coscine/api/application-profile-api.d.ts +16 -16
- package/dist/types/Coscine.Api/@coscine/api/blob-api.d.ts +16 -16
- package/dist/types/Coscine.Api/@coscine/api/discipline-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/handle-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/language-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/license-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/maintenance-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/organization-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/pid-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/project-api.d.ts +30 -22
- package/dist/types/Coscine.Api/@coscine/api/project-invitation-api.d.ts +16 -16
- package/dist/types/Coscine.Api/@coscine/api/project-member-api.d.ts +20 -20
- package/dist/types/Coscine.Api/@coscine/api/project-publication-request-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/project-quota-api.d.ts +12 -12
- package/dist/types/Coscine.Api/@coscine/api/project-resource-api.d.ts +20 -20
- package/dist/types/Coscine.Api/@coscine/api/project-resource-quota-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/project-resource-type-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/provenance-api.d.ts +228 -0
- package/dist/types/Coscine.Api/@coscine/api/resource-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/resource-type-api.d.ts +20 -20
- package/dist/types/Coscine.Api/@coscine/api/role-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/search-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/self-api-token-api.d.ts +16 -16
- package/dist/types/Coscine.Api/@coscine/api/self-api.d.ts +24 -24
- package/dist/types/Coscine.Api/@coscine/api/title-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/tos-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/tree-api.d.ts +228 -23
- package/dist/types/Coscine.Api/@coscine/api/user-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/visibility-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/vocabulary-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/model/deployed-graph-dto-paged-response.d.ts +50 -0
- package/dist/types/Coscine.Api/@coscine/model/deployed-graph-dto.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/extracted-metadata-tree-for-creation-dto.d.ts +44 -0
- package/dist/types/Coscine.Api/@coscine/model/extracted-metadata-tree-for-update-dto.d.ts +50 -0
- package/dist/types/Coscine.Api/@coscine/model/hash-parameters-dto.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/index.d.ts +11 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-dto.d.ts +13 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-for-deletion-dto.d.ts +36 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-dto-response.d.ts +43 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-dto.d.ts +62 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-for-update-dto.d.ts +62 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-parameters-dto.d.ts +56 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-format.d.ts +1 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-admin-dto.d.ts +13 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-dto.d.ts +13 -0
- package/dist/types/Coscine.Api/@coscine/model/variant-dto.d.ts +30 -0
- package/dist/types/Coscine.Api/api.d.ts +1 -0
- package/dist/types/apis.d.ts +8 -0
- package/dist/types/index.d.ts +16 -0
- package/package.json +1 -1
|
@@ -12,10 +12,13 @@
|
|
|
12
12
|
import type { Configuration } from '../../configuration';
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../../base';
|
|
15
|
+
import { ExtractedMetadataTreeForCreationDto } from '../../@coscine/model';
|
|
16
|
+
import { ExtractedMetadataTreeForUpdateDto } from '../../@coscine/model';
|
|
15
17
|
import { FileTreeDtoPagedResponse } from '../../@coscine/model';
|
|
16
18
|
import { MetadataTreeDtoPagedResponse } from '../../@coscine/model';
|
|
17
19
|
import { MetadataTreeDtoResponse } from '../../@coscine/model';
|
|
18
20
|
import { MetadataTreeForCreationDto } from '../../@coscine/model';
|
|
21
|
+
import { MetadataTreeForDeletionDto } from '../../@coscine/model';
|
|
19
22
|
import { MetadataTreeForUpdateDto } from '../../@coscine/model';
|
|
20
23
|
import { RdfFormat } from '../../@coscine/model';
|
|
21
24
|
/**
|
|
@@ -33,7 +36,17 @@ export declare const TreeApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
33
36
|
*/
|
|
34
37
|
apiV2ProjectsProjectIdResourcesResourceIdTreesOptions: (projectId: string, resourceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
35
38
|
/**
|
|
36
|
-
* <p><strong>Required JWT roles for access:</strong> <code
|
|
39
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
40
|
+
* @summary Creates a new extracted metadata tree for a resource.
|
|
41
|
+
* @param {string} projectId The unique identifier or slug of the project.
|
|
42
|
+
* @param {string} resourceId The unique identifier of the resource.
|
|
43
|
+
* @param {ExtractedMetadataTreeForCreationDto} [extractedMetadataTreeForCreationDto] The metadata tree data for creation.
|
|
44
|
+
* @param {*} [options] Override http request option.
|
|
45
|
+
* @throws {RequiredError}
|
|
46
|
+
*/
|
|
47
|
+
createExtractedMetadataTree: (projectId: string, resourceId: string, extractedMetadataTreeForCreationDto?: ExtractedMetadataTreeForCreationDto, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
37
50
|
* @summary Creates a new metadata tree for a resource.
|
|
38
51
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
39
52
|
* @param {string} resourceId The unique identifier of the resource.
|
|
@@ -42,6 +55,16 @@ export declare const TreeApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
42
55
|
* @throws {RequiredError}
|
|
43
56
|
*/
|
|
44
57
|
createMetadataTree: (projectId: string, resourceId: string, metadataTreeForCreationDto?: MetadataTreeForCreationDto, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
58
|
+
/**
|
|
59
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
60
|
+
* @summary Deletes (invalidates) a metadata tree associated with a resource.
|
|
61
|
+
* @param {string} projectId The unique identifier or slug of the project.
|
|
62
|
+
* @param {string} resourceId The unique identifier of the resource.
|
|
63
|
+
* @param {MetadataTreeForDeletionDto} [metadataTreeForDeletionDto] The dto for the deletion.
|
|
64
|
+
* @param {*} [options] Override http request option.
|
|
65
|
+
* @throws {RequiredError}
|
|
66
|
+
*/
|
|
67
|
+
deleteMetadataTree: (projectId: string, resourceId: string, metadataTreeForDeletionDto?: MetadataTreeForDeletionDto, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
45
68
|
/**
|
|
46
69
|
* The `OrderBy` query is currently not supported.
|
|
47
70
|
* @summary Retrieves the file tree associated with a resource.
|
|
@@ -56,35 +79,47 @@ export declare const TreeApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
56
79
|
*/
|
|
57
80
|
getFileTree: (projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
58
81
|
/**
|
|
59
|
-
*
|
|
82
|
+
*
|
|
60
83
|
* @summary Retrieves the metadata tree associated with a resource.
|
|
61
84
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
62
85
|
* @param {string} resourceId The unique identifier of the resource.
|
|
63
86
|
* @param {string} [path] Gets or sets the path of the metadata tree.
|
|
64
87
|
* @param {RdfFormat} [format] Gets or sets the format of the RDF data.
|
|
65
88
|
* @param {boolean} [includeExtractedMetadata] Gets or sets if extracted metadata should be included.
|
|
89
|
+
* @param {boolean} [includeProvenance] Gets or sets if provenance metadata should be included.
|
|
66
90
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
67
91
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
68
92
|
* @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 \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
69
93
|
* @param {*} [options] Override http request option.
|
|
70
94
|
* @throws {RequiredError}
|
|
71
95
|
*/
|
|
72
|
-
getMetadataTree: (projectId: string, resourceId: string, path?: string, format?: RdfFormat, includeExtractedMetadata?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
96
|
+
getMetadataTree: (projectId: string, resourceId: string, path?: string, format?: RdfFormat, includeExtractedMetadata?: boolean, includeProvenance?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
73
97
|
/**
|
|
74
|
-
*
|
|
98
|
+
*
|
|
75
99
|
* @summary Retrieves the specific metadata tree associated with a resource.
|
|
76
100
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
77
101
|
* @param {string} resourceId The unique identifier of the resource.
|
|
78
|
-
* @param {string}
|
|
102
|
+
* @param {string} path Gets or sets the path of the metadata tree.
|
|
79
103
|
* @param {RdfFormat} [format] Gets or sets the format of the RDF data.
|
|
80
104
|
* @param {boolean} [includeExtractedMetadata] Gets or sets if extracted metadata should be included.
|
|
105
|
+
* @param {boolean} [includeProvenance] Gets or sets if provenance should be included.
|
|
81
106
|
* @param {number} [version] Gets or sets the desired version. If the version is null, the newest will be returned.
|
|
82
107
|
* @param {*} [options] Override http request option.
|
|
83
108
|
* @throws {RequiredError}
|
|
84
109
|
*/
|
|
85
|
-
getSpecificMetadataTree: (projectId: string, resourceId: string, path
|
|
110
|
+
getSpecificMetadataTree: (projectId: string, resourceId: string, path: string, format?: RdfFormat, includeExtractedMetadata?: boolean, includeProvenance?: boolean, version?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
111
|
+
/**
|
|
112
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
113
|
+
* @summary Updates an existing metadata tree of a resource.
|
|
114
|
+
* @param {string} projectId The unique identifier or slug of the project.
|
|
115
|
+
* @param {string} resourceId The unique identifier of the resource.
|
|
116
|
+
* @param {ExtractedMetadataTreeForUpdateDto} [extractedMetadataTreeForUpdateDto] The updated metadata tree data.
|
|
117
|
+
* @param {*} [options] Override http request option.
|
|
118
|
+
* @throws {RequiredError}
|
|
119
|
+
*/
|
|
120
|
+
updateExtractedMetadataTree: (projectId: string, resourceId: string, extractedMetadataTreeForUpdateDto?: ExtractedMetadataTreeForUpdateDto, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
86
121
|
/**
|
|
87
|
-
*
|
|
122
|
+
*
|
|
88
123
|
* @summary Updates an existing metadata tree of a resource.
|
|
89
124
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
90
125
|
* @param {string} resourceId The unique identifier of the resource.
|
|
@@ -109,7 +144,17 @@ export declare const TreeApiFp: (configuration?: Configuration) => {
|
|
|
109
144
|
*/
|
|
110
145
|
apiV2ProjectsProjectIdResourcesResourceIdTreesOptions(projectId: string, resourceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
111
146
|
/**
|
|
112
|
-
* <p><strong>Required JWT roles for access:</strong> <code
|
|
147
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
148
|
+
* @summary Creates a new extracted metadata tree for a resource.
|
|
149
|
+
* @param {string} projectId The unique identifier or slug of the project.
|
|
150
|
+
* @param {string} resourceId The unique identifier of the resource.
|
|
151
|
+
* @param {ExtractedMetadataTreeForCreationDto} [extractedMetadataTreeForCreationDto] The metadata tree data for creation.
|
|
152
|
+
* @param {*} [options] Override http request option.
|
|
153
|
+
* @throws {RequiredError}
|
|
154
|
+
*/
|
|
155
|
+
createExtractedMetadataTree(projectId: string, resourceId: string, extractedMetadataTreeForCreationDto?: ExtractedMetadataTreeForCreationDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MetadataTreeDtoResponse>>;
|
|
156
|
+
/**
|
|
157
|
+
*
|
|
113
158
|
* @summary Creates a new metadata tree for a resource.
|
|
114
159
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
115
160
|
* @param {string} resourceId The unique identifier of the resource.
|
|
@@ -118,6 +163,16 @@ export declare const TreeApiFp: (configuration?: Configuration) => {
|
|
|
118
163
|
* @throws {RequiredError}
|
|
119
164
|
*/
|
|
120
165
|
createMetadataTree(projectId: string, resourceId: string, metadataTreeForCreationDto?: MetadataTreeForCreationDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MetadataTreeDtoResponse>>;
|
|
166
|
+
/**
|
|
167
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
168
|
+
* @summary Deletes (invalidates) a metadata tree associated with a resource.
|
|
169
|
+
* @param {string} projectId The unique identifier or slug of the project.
|
|
170
|
+
* @param {string} resourceId The unique identifier of the resource.
|
|
171
|
+
* @param {MetadataTreeForDeletionDto} [metadataTreeForDeletionDto] The dto for the deletion.
|
|
172
|
+
* @param {*} [options] Override http request option.
|
|
173
|
+
* @throws {RequiredError}
|
|
174
|
+
*/
|
|
175
|
+
deleteMetadataTree(projectId: string, resourceId: string, metadataTreeForDeletionDto?: MetadataTreeForDeletionDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
121
176
|
/**
|
|
122
177
|
* The `OrderBy` query is currently not supported.
|
|
123
178
|
* @summary Retrieves the file tree associated with a resource.
|
|
@@ -132,35 +187,47 @@ export declare const TreeApiFp: (configuration?: Configuration) => {
|
|
|
132
187
|
*/
|
|
133
188
|
getFileTree(projectId: string, resourceId: string, path?: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileTreeDtoPagedResponse>>;
|
|
134
189
|
/**
|
|
135
|
-
*
|
|
190
|
+
*
|
|
136
191
|
* @summary Retrieves the metadata tree associated with a resource.
|
|
137
192
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
138
193
|
* @param {string} resourceId The unique identifier of the resource.
|
|
139
194
|
* @param {string} [path] Gets or sets the path of the metadata tree.
|
|
140
195
|
* @param {RdfFormat} [format] Gets or sets the format of the RDF data.
|
|
141
196
|
* @param {boolean} [includeExtractedMetadata] Gets or sets if extracted metadata should be included.
|
|
197
|
+
* @param {boolean} [includeProvenance] Gets or sets if provenance metadata should be included.
|
|
142
198
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
143
199
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
144
200
|
* @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 \"asc\" or \"desc\" and separate properties by commas. Default is asc.
|
|
145
201
|
* @param {*} [options] Override http request option.
|
|
146
202
|
* @throws {RequiredError}
|
|
147
203
|
*/
|
|
148
|
-
getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, includeExtractedMetadata?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MetadataTreeDtoPagedResponse>>;
|
|
204
|
+
getMetadataTree(projectId: string, resourceId: string, path?: string, format?: RdfFormat, includeExtractedMetadata?: boolean, includeProvenance?: boolean, pageNumber?: number, pageSize?: number, orderBy?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MetadataTreeDtoPagedResponse>>;
|
|
149
205
|
/**
|
|
150
|
-
*
|
|
206
|
+
*
|
|
151
207
|
* @summary Retrieves the specific metadata tree associated with a resource.
|
|
152
208
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
153
209
|
* @param {string} resourceId The unique identifier of the resource.
|
|
154
|
-
* @param {string}
|
|
210
|
+
* @param {string} path Gets or sets the path of the metadata tree.
|
|
155
211
|
* @param {RdfFormat} [format] Gets or sets the format of the RDF data.
|
|
156
212
|
* @param {boolean} [includeExtractedMetadata] Gets or sets if extracted metadata should be included.
|
|
213
|
+
* @param {boolean} [includeProvenance] Gets or sets if provenance should be included.
|
|
157
214
|
* @param {number} [version] Gets or sets the desired version. If the version is null, the newest will be returned.
|
|
158
215
|
* @param {*} [options] Override http request option.
|
|
159
216
|
* @throws {RequiredError}
|
|
160
217
|
*/
|
|
161
|
-
getSpecificMetadataTree(projectId: string, resourceId: string, path
|
|
218
|
+
getSpecificMetadataTree(projectId: string, resourceId: string, path: string, format?: RdfFormat, includeExtractedMetadata?: boolean, includeProvenance?: boolean, version?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MetadataTreeDtoResponse>>;
|
|
219
|
+
/**
|
|
220
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
221
|
+
* @summary Updates an existing metadata tree of a resource.
|
|
222
|
+
* @param {string} projectId The unique identifier or slug of the project.
|
|
223
|
+
* @param {string} resourceId The unique identifier of the resource.
|
|
224
|
+
* @param {ExtractedMetadataTreeForUpdateDto} [extractedMetadataTreeForUpdateDto] The updated metadata tree data.
|
|
225
|
+
* @param {*} [options] Override http request option.
|
|
226
|
+
* @throws {RequiredError}
|
|
227
|
+
*/
|
|
228
|
+
updateExtractedMetadataTree(projectId: string, resourceId: string, extractedMetadataTreeForUpdateDto?: ExtractedMetadataTreeForUpdateDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
162
229
|
/**
|
|
163
|
-
*
|
|
230
|
+
*
|
|
164
231
|
* @summary Updates an existing metadata tree of a resource.
|
|
165
232
|
* @param {string} projectId The unique identifier or slug of the project.
|
|
166
233
|
* @param {string} resourceId The unique identifier of the resource.
|
|
@@ -184,13 +251,29 @@ export declare const TreeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
184
251
|
*/
|
|
185
252
|
apiV2ProjectsProjectIdResourcesResourceIdTreesOptions(requestParameters: TreeApiApiV2ProjectsProjectIdResourcesResourceIdTreesOptionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
186
253
|
/**
|
|
187
|
-
* <p><strong>Required JWT roles for access:</strong> <code
|
|
254
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
255
|
+
* @summary Creates a new extracted metadata tree for a resource.
|
|
256
|
+
* @param {TreeApiCreateExtractedMetadataTreeRequest} requestParameters Request parameters.
|
|
257
|
+
* @param {*} [options] Override http request option.
|
|
258
|
+
* @throws {RequiredError}
|
|
259
|
+
*/
|
|
260
|
+
createExtractedMetadataTree(requestParameters: TreeApiCreateExtractedMetadataTreeRequest, options?: AxiosRequestConfig): AxiosPromise<MetadataTreeDtoResponse>;
|
|
261
|
+
/**
|
|
262
|
+
*
|
|
188
263
|
* @summary Creates a new metadata tree for a resource.
|
|
189
264
|
* @param {TreeApiCreateMetadataTreeRequest} requestParameters Request parameters.
|
|
190
265
|
* @param {*} [options] Override http request option.
|
|
191
266
|
* @throws {RequiredError}
|
|
192
267
|
*/
|
|
193
268
|
createMetadataTree(requestParameters: TreeApiCreateMetadataTreeRequest, options?: AxiosRequestConfig): AxiosPromise<MetadataTreeDtoResponse>;
|
|
269
|
+
/**
|
|
270
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
271
|
+
* @summary Deletes (invalidates) a metadata tree associated with a resource.
|
|
272
|
+
* @param {TreeApiDeleteMetadataTreeRequest} requestParameters Request parameters.
|
|
273
|
+
* @param {*} [options] Override http request option.
|
|
274
|
+
* @throws {RequiredError}
|
|
275
|
+
*/
|
|
276
|
+
deleteMetadataTree(requestParameters: TreeApiDeleteMetadataTreeRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
194
277
|
/**
|
|
195
278
|
* The `OrderBy` query is currently not supported.
|
|
196
279
|
* @summary Retrieves the file tree associated with a resource.
|
|
@@ -200,7 +283,7 @@ export declare const TreeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
200
283
|
*/
|
|
201
284
|
getFileTree(requestParameters: TreeApiGetFileTreeRequest, options?: AxiosRequestConfig): AxiosPromise<FileTreeDtoPagedResponse>;
|
|
202
285
|
/**
|
|
203
|
-
*
|
|
286
|
+
*
|
|
204
287
|
* @summary Retrieves the metadata tree associated with a resource.
|
|
205
288
|
* @param {TreeApiGetMetadataTreeRequest} requestParameters Request parameters.
|
|
206
289
|
* @param {*} [options] Override http request option.
|
|
@@ -208,7 +291,7 @@ export declare const TreeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
208
291
|
*/
|
|
209
292
|
getMetadataTree(requestParameters: TreeApiGetMetadataTreeRequest, options?: AxiosRequestConfig): AxiosPromise<MetadataTreeDtoPagedResponse>;
|
|
210
293
|
/**
|
|
211
|
-
*
|
|
294
|
+
*
|
|
212
295
|
* @summary Retrieves the specific metadata tree associated with a resource.
|
|
213
296
|
* @param {TreeApiGetSpecificMetadataTreeRequest} requestParameters Request parameters.
|
|
214
297
|
* @param {*} [options] Override http request option.
|
|
@@ -216,7 +299,15 @@ export declare const TreeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
216
299
|
*/
|
|
217
300
|
getSpecificMetadataTree(requestParameters: TreeApiGetSpecificMetadataTreeRequest, options?: AxiosRequestConfig): AxiosPromise<MetadataTreeDtoResponse>;
|
|
218
301
|
/**
|
|
219
|
-
* <p><strong>Required JWT roles for access:</strong> <code
|
|
302
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
303
|
+
* @summary Updates an existing metadata tree of a resource.
|
|
304
|
+
* @param {TreeApiUpdateExtractedMetadataTreeRequest} requestParameters Request parameters.
|
|
305
|
+
* @param {*} [options] Override http request option.
|
|
306
|
+
* @throws {RequiredError}
|
|
307
|
+
*/
|
|
308
|
+
updateExtractedMetadataTree(requestParameters: TreeApiUpdateExtractedMetadataTreeRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
309
|
+
/**
|
|
310
|
+
*
|
|
220
311
|
* @summary Updates an existing metadata tree of a resource.
|
|
221
312
|
* @param {TreeApiUpdateMetadataTreeRequest} requestParameters Request parameters.
|
|
222
313
|
* @param {*} [options] Override http request option.
|
|
@@ -243,6 +334,31 @@ export interface TreeApiApiV2ProjectsProjectIdResourcesResourceIdTreesOptionsReq
|
|
|
243
334
|
*/
|
|
244
335
|
readonly resourceId: string;
|
|
245
336
|
}
|
|
337
|
+
/**
|
|
338
|
+
* Request parameters for createExtractedMetadataTree operation in TreeApi.
|
|
339
|
+
* @export
|
|
340
|
+
* @interface TreeApiCreateExtractedMetadataTreeRequest
|
|
341
|
+
*/
|
|
342
|
+
export interface TreeApiCreateExtractedMetadataTreeRequest {
|
|
343
|
+
/**
|
|
344
|
+
* The unique identifier or slug of the project.
|
|
345
|
+
* @type {string}
|
|
346
|
+
* @memberof TreeApiCreateExtractedMetadataTree
|
|
347
|
+
*/
|
|
348
|
+
readonly projectId: string;
|
|
349
|
+
/**
|
|
350
|
+
* The unique identifier of the resource.
|
|
351
|
+
* @type {string}
|
|
352
|
+
* @memberof TreeApiCreateExtractedMetadataTree
|
|
353
|
+
*/
|
|
354
|
+
readonly resourceId: string;
|
|
355
|
+
/**
|
|
356
|
+
* The metadata tree data for creation.
|
|
357
|
+
* @type {ExtractedMetadataTreeForCreationDto}
|
|
358
|
+
* @memberof TreeApiCreateExtractedMetadataTree
|
|
359
|
+
*/
|
|
360
|
+
readonly extractedMetadataTreeForCreationDto?: ExtractedMetadataTreeForCreationDto;
|
|
361
|
+
}
|
|
246
362
|
/**
|
|
247
363
|
* Request parameters for createMetadataTree operation in TreeApi.
|
|
248
364
|
* @export
|
|
@@ -268,6 +384,31 @@ export interface TreeApiCreateMetadataTreeRequest {
|
|
|
268
384
|
*/
|
|
269
385
|
readonly metadataTreeForCreationDto?: MetadataTreeForCreationDto;
|
|
270
386
|
}
|
|
387
|
+
/**
|
|
388
|
+
* Request parameters for deleteMetadataTree operation in TreeApi.
|
|
389
|
+
* @export
|
|
390
|
+
* @interface TreeApiDeleteMetadataTreeRequest
|
|
391
|
+
*/
|
|
392
|
+
export interface TreeApiDeleteMetadataTreeRequest {
|
|
393
|
+
/**
|
|
394
|
+
* The unique identifier or slug of the project.
|
|
395
|
+
* @type {string}
|
|
396
|
+
* @memberof TreeApiDeleteMetadataTree
|
|
397
|
+
*/
|
|
398
|
+
readonly projectId: string;
|
|
399
|
+
/**
|
|
400
|
+
* The unique identifier of the resource.
|
|
401
|
+
* @type {string}
|
|
402
|
+
* @memberof TreeApiDeleteMetadataTree
|
|
403
|
+
*/
|
|
404
|
+
readonly resourceId: string;
|
|
405
|
+
/**
|
|
406
|
+
* The dto for the deletion.
|
|
407
|
+
* @type {MetadataTreeForDeletionDto}
|
|
408
|
+
* @memberof TreeApiDeleteMetadataTree
|
|
409
|
+
*/
|
|
410
|
+
readonly metadataTreeForDeletionDto?: MetadataTreeForDeletionDto;
|
|
411
|
+
}
|
|
271
412
|
/**
|
|
272
413
|
* Request parameters for getFileTree operation in TreeApi.
|
|
273
414
|
* @export
|
|
@@ -347,6 +488,12 @@ export interface TreeApiGetMetadataTreeRequest {
|
|
|
347
488
|
* @memberof TreeApiGetMetadataTree
|
|
348
489
|
*/
|
|
349
490
|
readonly includeExtractedMetadata?: boolean;
|
|
491
|
+
/**
|
|
492
|
+
* Gets or sets if provenance metadata should be included.
|
|
493
|
+
* @type {boolean}
|
|
494
|
+
* @memberof TreeApiGetMetadataTree
|
|
495
|
+
*/
|
|
496
|
+
readonly includeProvenance?: boolean;
|
|
350
497
|
/**
|
|
351
498
|
* The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
352
499
|
* @type {number}
|
|
@@ -389,7 +536,7 @@ export interface TreeApiGetSpecificMetadataTreeRequest {
|
|
|
389
536
|
* @type {string}
|
|
390
537
|
* @memberof TreeApiGetSpecificMetadataTree
|
|
391
538
|
*/
|
|
392
|
-
readonly path
|
|
539
|
+
readonly path: string;
|
|
393
540
|
/**
|
|
394
541
|
* Gets or sets the format of the RDF data.
|
|
395
542
|
* @type {RdfFormat}
|
|
@@ -402,6 +549,12 @@ export interface TreeApiGetSpecificMetadataTreeRequest {
|
|
|
402
549
|
* @memberof TreeApiGetSpecificMetadataTree
|
|
403
550
|
*/
|
|
404
551
|
readonly includeExtractedMetadata?: boolean;
|
|
552
|
+
/**
|
|
553
|
+
* Gets or sets if provenance should be included.
|
|
554
|
+
* @type {boolean}
|
|
555
|
+
* @memberof TreeApiGetSpecificMetadataTree
|
|
556
|
+
*/
|
|
557
|
+
readonly includeProvenance?: boolean;
|
|
405
558
|
/**
|
|
406
559
|
* Gets or sets the desired version. If the version is null, the newest will be returned.
|
|
407
560
|
* @type {number}
|
|
@@ -409,6 +562,31 @@ export interface TreeApiGetSpecificMetadataTreeRequest {
|
|
|
409
562
|
*/
|
|
410
563
|
readonly version?: number;
|
|
411
564
|
}
|
|
565
|
+
/**
|
|
566
|
+
* Request parameters for updateExtractedMetadataTree operation in TreeApi.
|
|
567
|
+
* @export
|
|
568
|
+
* @interface TreeApiUpdateExtractedMetadataTreeRequest
|
|
569
|
+
*/
|
|
570
|
+
export interface TreeApiUpdateExtractedMetadataTreeRequest {
|
|
571
|
+
/**
|
|
572
|
+
* The unique identifier or slug of the project.
|
|
573
|
+
* @type {string}
|
|
574
|
+
* @memberof TreeApiUpdateExtractedMetadataTree
|
|
575
|
+
*/
|
|
576
|
+
readonly projectId: string;
|
|
577
|
+
/**
|
|
578
|
+
* The unique identifier of the resource.
|
|
579
|
+
* @type {string}
|
|
580
|
+
* @memberof TreeApiUpdateExtractedMetadataTree
|
|
581
|
+
*/
|
|
582
|
+
readonly resourceId: string;
|
|
583
|
+
/**
|
|
584
|
+
* The updated metadata tree data.
|
|
585
|
+
* @type {ExtractedMetadataTreeForUpdateDto}
|
|
586
|
+
* @memberof TreeApiUpdateExtractedMetadataTree
|
|
587
|
+
*/
|
|
588
|
+
readonly extractedMetadataTreeForUpdateDto?: ExtractedMetadataTreeForUpdateDto;
|
|
589
|
+
}
|
|
412
590
|
/**
|
|
413
591
|
* Request parameters for updateMetadataTree operation in TreeApi.
|
|
414
592
|
* @export
|
|
@@ -451,7 +629,16 @@ export declare class TreeApi extends BaseAPI {
|
|
|
451
629
|
*/
|
|
452
630
|
apiV2ProjectsProjectIdResourcesResourceIdTreesOptions(requestParameters: TreeApiApiV2ProjectsProjectIdResourcesResourceIdTreesOptionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
453
631
|
/**
|
|
454
|
-
* <p><strong>Required JWT roles for access:</strong> <code
|
|
632
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
633
|
+
* @summary Creates a new extracted metadata tree for a resource.
|
|
634
|
+
* @param {TreeApiCreateExtractedMetadataTreeRequest} requestParameters Request parameters.
|
|
635
|
+
* @param {*} [options] Override http request option.
|
|
636
|
+
* @throws {RequiredError}
|
|
637
|
+
* @memberof TreeApi
|
|
638
|
+
*/
|
|
639
|
+
createExtractedMetadataTree(requestParameters: TreeApiCreateExtractedMetadataTreeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MetadataTreeDtoResponse, any>>;
|
|
640
|
+
/**
|
|
641
|
+
*
|
|
455
642
|
* @summary Creates a new metadata tree for a resource.
|
|
456
643
|
* @param {TreeApiCreateMetadataTreeRequest} requestParameters Request parameters.
|
|
457
644
|
* @param {*} [options] Override http request option.
|
|
@@ -459,6 +646,15 @@ export declare class TreeApi extends BaseAPI {
|
|
|
459
646
|
* @memberof TreeApi
|
|
460
647
|
*/
|
|
461
648
|
createMetadataTree(requestParameters: TreeApiCreateMetadataTreeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MetadataTreeDtoResponse, any>>;
|
|
649
|
+
/**
|
|
650
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
651
|
+
* @summary Deletes (invalidates) a metadata tree associated with a resource.
|
|
652
|
+
* @param {TreeApiDeleteMetadataTreeRequest} requestParameters Request parameters.
|
|
653
|
+
* @param {*} [options] Override http request option.
|
|
654
|
+
* @throws {RequiredError}
|
|
655
|
+
* @memberof TreeApi
|
|
656
|
+
*/
|
|
657
|
+
deleteMetadataTree(requestParameters: TreeApiDeleteMetadataTreeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
462
658
|
/**
|
|
463
659
|
* The `OrderBy` query is currently not supported.
|
|
464
660
|
* @summary Retrieves the file tree associated with a resource.
|
|
@@ -469,7 +665,7 @@ export declare class TreeApi extends BaseAPI {
|
|
|
469
665
|
*/
|
|
470
666
|
getFileTree(requestParameters: TreeApiGetFileTreeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileTreeDtoPagedResponse, any>>;
|
|
471
667
|
/**
|
|
472
|
-
*
|
|
668
|
+
*
|
|
473
669
|
* @summary Retrieves the metadata tree associated with a resource.
|
|
474
670
|
* @param {TreeApiGetMetadataTreeRequest} requestParameters Request parameters.
|
|
475
671
|
* @param {*} [options] Override http request option.
|
|
@@ -478,7 +674,7 @@ export declare class TreeApi extends BaseAPI {
|
|
|
478
674
|
*/
|
|
479
675
|
getMetadataTree(requestParameters: TreeApiGetMetadataTreeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MetadataTreeDtoPagedResponse, any>>;
|
|
480
676
|
/**
|
|
481
|
-
*
|
|
677
|
+
*
|
|
482
678
|
* @summary Retrieves the specific metadata tree associated with a resource.
|
|
483
679
|
* @param {TreeApiGetSpecificMetadataTreeRequest} requestParameters Request parameters.
|
|
484
680
|
* @param {*} [options] Override http request option.
|
|
@@ -487,7 +683,16 @@ export declare class TreeApi extends BaseAPI {
|
|
|
487
683
|
*/
|
|
488
684
|
getSpecificMetadataTree(requestParameters: TreeApiGetSpecificMetadataTreeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MetadataTreeDtoResponse, any>>;
|
|
489
685
|
/**
|
|
490
|
-
* <p><strong>Required JWT roles for access:</strong> <code
|
|
686
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
687
|
+
* @summary Updates an existing metadata tree of a resource.
|
|
688
|
+
* @param {TreeApiUpdateExtractedMetadataTreeRequest} requestParameters Request parameters.
|
|
689
|
+
* @param {*} [options] Override http request option.
|
|
690
|
+
* @throws {RequiredError}
|
|
691
|
+
* @memberof TreeApi
|
|
692
|
+
*/
|
|
693
|
+
updateExtractedMetadataTree(requestParameters: TreeApiUpdateExtractedMetadataTreeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
694
|
+
/**
|
|
695
|
+
*
|
|
491
696
|
* @summary Updates an existing metadata tree of a resource.
|
|
492
697
|
* @param {TreeApiUpdateMetadataTreeRequest} requestParameters Request parameters.
|
|
493
698
|
* @param {*} [options] Override http request option.
|
|
@@ -26,7 +26,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
26
26
|
*/
|
|
27
27
|
apiV2UsersOptions: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
*
|
|
30
30
|
* @summary Retrieves all users.
|
|
31
31
|
* @param {string} searchTerm Gets or sets the search term.
|
|
32
32
|
* @param {string} [orderBy] Gets or sets the field by which the search results are ordered. Defaults to \"firstName\".
|
|
@@ -48,7 +48,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
48
48
|
*/
|
|
49
49
|
apiV2UsersOptions(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
50
50
|
/**
|
|
51
|
-
*
|
|
51
|
+
*
|
|
52
52
|
* @summary Retrieves all users.
|
|
53
53
|
* @param {string} searchTerm Gets or sets the search term.
|
|
54
54
|
* @param {string} [orderBy] Gets or sets the field by which the search results are ordered. Defaults to \"firstName\".
|
|
@@ -70,7 +70,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
70
70
|
*/
|
|
71
71
|
apiV2UsersOptions(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
72
72
|
/**
|
|
73
|
-
*
|
|
73
|
+
*
|
|
74
74
|
* @summary Retrieves all users.
|
|
75
75
|
* @param {UserApiGetUsersRequest} requestParameters Request parameters.
|
|
76
76
|
* @param {*} [options] Override http request option.
|
|
@@ -113,7 +113,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
113
113
|
*/
|
|
114
114
|
apiV2UsersOptions(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
115
115
|
/**
|
|
116
|
-
*
|
|
116
|
+
*
|
|
117
117
|
* @summary Retrieves all users.
|
|
118
118
|
* @param {UserApiGetUsersRequest} requestParameters Request parameters.
|
|
119
119
|
* @param {*} [options] Override http request option.
|
|
@@ -27,7 +27,7 @@ export declare const VisibilityApiAxiosParamCreator: (configuration?: Configurat
|
|
|
27
27
|
*/
|
|
28
28
|
apiV2VisibilitiesOptions: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
*
|
|
31
31
|
* @summary Retrieves all visibilities.
|
|
32
32
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
33
33
|
* @param {number} [pageSize] The desired page size. Should be between 1 and the maximum allowed page size (50). Default is 10.
|
|
@@ -37,7 +37,7 @@ export declare const VisibilityApiAxiosParamCreator: (configuration?: Configurat
|
|
|
37
37
|
*/
|
|
38
38
|
getVisibilities: (pageNumber?: number, pageSize?: number, orderBy?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
40
|
+
*
|
|
41
41
|
* @summary Retrieves a visibility by ID.
|
|
42
42
|
* @param {string} visibilityId The ID of the visibility.
|
|
43
43
|
* @param {*} [options] Override http request option.
|
|
@@ -58,7 +58,7 @@ export declare const VisibilityApiFp: (configuration?: Configuration) => {
|
|
|
58
58
|
*/
|
|
59
59
|
apiV2VisibilitiesOptions(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
60
60
|
/**
|
|
61
|
-
*
|
|
61
|
+
*
|
|
62
62
|
* @summary Retrieves all visibilities.
|
|
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.
|
|
@@ -68,7 +68,7 @@ export declare const VisibilityApiFp: (configuration?: Configuration) => {
|
|
|
68
68
|
*/
|
|
69
69
|
getVisibilities(pageNumber?: number, pageSize?: number, orderBy?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VisibilityDtoPagedResponse>>;
|
|
70
70
|
/**
|
|
71
|
-
*
|
|
71
|
+
*
|
|
72
72
|
* @summary Retrieves a visibility by ID.
|
|
73
73
|
* @param {string} visibilityId The ID of the visibility.
|
|
74
74
|
* @param {*} [options] Override http request option.
|
|
@@ -89,7 +89,7 @@ export declare const VisibilityApiFactory: (configuration?: Configuration, baseP
|
|
|
89
89
|
*/
|
|
90
90
|
apiV2VisibilitiesOptions(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
*
|
|
93
93
|
* @summary Retrieves all visibilities.
|
|
94
94
|
* @param {VisibilityApiGetVisibilitiesRequest} requestParameters Request parameters.
|
|
95
95
|
* @param {*} [options] Override http request option.
|
|
@@ -97,7 +97,7 @@ export declare const VisibilityApiFactory: (configuration?: Configuration, baseP
|
|
|
97
97
|
*/
|
|
98
98
|
getVisibilities(requestParameters?: VisibilityApiGetVisibilitiesRequest, options?: AxiosRequestConfig): AxiosPromise<VisibilityDtoPagedResponse>;
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
100
|
+
*
|
|
101
101
|
* @summary Retrieves a visibility by ID.
|
|
102
102
|
* @param {VisibilityApiGetVisibilityRequest} requestParameters Request parameters.
|
|
103
103
|
* @param {*} [options] Override http request option.
|
|
@@ -159,7 +159,7 @@ export declare class VisibilityApi extends BaseAPI {
|
|
|
159
159
|
*/
|
|
160
160
|
apiV2VisibilitiesOptions(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
161
161
|
/**
|
|
162
|
-
*
|
|
162
|
+
*
|
|
163
163
|
* @summary Retrieves all visibilities.
|
|
164
164
|
* @param {VisibilityApiGetVisibilitiesRequest} requestParameters Request parameters.
|
|
165
165
|
* @param {*} [options] Override http request option.
|
|
@@ -168,7 +168,7 @@ export declare class VisibilityApi extends BaseAPI {
|
|
|
168
168
|
*/
|
|
169
169
|
getVisibilities(requestParameters?: VisibilityApiGetVisibilitiesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<VisibilityDtoPagedResponse, any>>;
|
|
170
170
|
/**
|
|
171
|
-
*
|
|
171
|
+
*
|
|
172
172
|
* @summary Retrieves a visibility by ID.
|
|
173
173
|
* @param {VisibilityApiGetVisibilityRequest} requestParameters Request parameters.
|
|
174
174
|
* @param {*} [options] Override http request option.
|
|
@@ -29,7 +29,7 @@ export declare const VocabularyApiAxiosParamCreator: (configuration?: Configurat
|
|
|
29
29
|
*/
|
|
30
30
|
apiV2VocabulariesOptions: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
*
|
|
33
33
|
* @summary Retrieves top-level instances from vocabularies.
|
|
34
34
|
* @param {string} [searchTerm] Gets or sets the search term used to filter vocabularies.
|
|
35
35
|
* @param {AcceptedLanguage} [language] Gets or sets the language for which the vocabularies are requested.
|
|
@@ -50,7 +50,7 @@ export declare const VocabularyApiAxiosParamCreator: (configuration?: Configurat
|
|
|
50
50
|
*/
|
|
51
51
|
getVocabularyInstance: (instance: string, acceptLanguage?: AcceptedLanguage, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
*
|
|
54
54
|
* @summary Retrieves vocabulary instances.
|
|
55
55
|
* @param {string} _class Gets or sets the URI class, which is a required field.
|
|
56
56
|
* @param {string} [searchTerm] Gets or sets the search term used to filter vocabulary instances.
|
|
@@ -76,7 +76,7 @@ export declare const VocabularyApiFp: (configuration?: Configuration) => {
|
|
|
76
76
|
*/
|
|
77
77
|
apiV2VocabulariesOptions(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
78
78
|
/**
|
|
79
|
-
*
|
|
79
|
+
*
|
|
80
80
|
* @summary Retrieves top-level instances from vocabularies.
|
|
81
81
|
* @param {string} [searchTerm] Gets or sets the search term used to filter vocabularies.
|
|
82
82
|
* @param {AcceptedLanguage} [language] Gets or sets the language for which the vocabularies are requested.
|
|
@@ -97,7 +97,7 @@ export declare const VocabularyApiFp: (configuration?: Configuration) => {
|
|
|
97
97
|
*/
|
|
98
98
|
getVocabularyInstance(instance: string, acceptLanguage?: AcceptedLanguage, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VocabularyInstanceDtoResponse>>;
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
100
|
+
*
|
|
101
101
|
* @summary Retrieves vocabulary instances.
|
|
102
102
|
* @param {string} _class Gets or sets the URI class, which is a required field.
|
|
103
103
|
* @param {string} [searchTerm] Gets or sets the search term used to filter vocabulary instances.
|
|
@@ -123,7 +123,7 @@ export declare const VocabularyApiFactory: (configuration?: Configuration, baseP
|
|
|
123
123
|
*/
|
|
124
124
|
apiV2VocabulariesOptions(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
125
125
|
/**
|
|
126
|
-
*
|
|
126
|
+
*
|
|
127
127
|
* @summary Retrieves top-level instances from vocabularies.
|
|
128
128
|
* @param {VocabularyApiGetVocabulariesRequest} requestParameters Request parameters.
|
|
129
129
|
* @param {*} [options] Override http request option.
|
|
@@ -139,7 +139,7 @@ export declare const VocabularyApiFactory: (configuration?: Configuration, baseP
|
|
|
139
139
|
*/
|
|
140
140
|
getVocabularyInstance(requestParameters: VocabularyApiGetVocabularyInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<VocabularyInstanceDtoResponse>;
|
|
141
141
|
/**
|
|
142
|
-
*
|
|
142
|
+
*
|
|
143
143
|
* @summary Retrieves vocabulary instances.
|
|
144
144
|
* @param {VocabularyApiGetVocabularyInstancesRequest} requestParameters Request parameters.
|
|
145
145
|
* @param {*} [options] Override http request option.
|
|
@@ -262,7 +262,7 @@ export declare class VocabularyApi extends BaseAPI {
|
|
|
262
262
|
*/
|
|
263
263
|
apiV2VocabulariesOptions(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
264
264
|
/**
|
|
265
|
-
*
|
|
265
|
+
*
|
|
266
266
|
* @summary Retrieves top-level instances from vocabularies.
|
|
267
267
|
* @param {VocabularyApiGetVocabulariesRequest} requestParameters Request parameters.
|
|
268
268
|
* @param {*} [options] Override http request option.
|
|
@@ -280,7 +280,7 @@ export declare class VocabularyApi extends BaseAPI {
|
|
|
280
280
|
*/
|
|
281
281
|
getVocabularyInstance(requestParameters: VocabularyApiGetVocabularyInstanceRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<VocabularyInstanceDtoResponse, any>>;
|
|
282
282
|
/**
|
|
283
|
-
*
|
|
283
|
+
*
|
|
284
284
|
* @summary Retrieves vocabulary instances.
|
|
285
285
|
* @param {VocabularyApiGetVocabularyInstancesRequest} requestParameters Request parameters.
|
|
286
286
|
* @param {*} [options] Override http request option.
|