ch-api-client-typescript2 5.43.20 → 5.45.4
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/lib/api/curations-api.d.ts +148 -110
- package/lib/api/curations-api.d.ts.map +1 -1
- package/lib/api/curations-api.js +181 -104
- package/lib/api.d.ts +0 -1
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +0 -1
- package/lib/models/{curation-specialty-types-model.d.ts → curation-categories-model.d.ts} +8 -8
- package/lib/models/curation-categories-model.d.ts.map +1 -0
- package/lib/models/{search-curation-primary-item-model.d.ts → curation-category-model.d.ts} +13 -7
- package/lib/models/curation-category-model.d.ts.map +1 -0
- package/lib/models/curation-model.d.ts +8 -27
- package/lib/models/curation-model.d.ts.map +1 -1
- package/lib/models/curations-by-category-item-model.d.ts +49 -0
- package/lib/models/curations-by-category-item-model.d.ts.map +1 -0
- package/lib/models/curations-by-category-model.d.ts +44 -0
- package/lib/models/curations-by-category-model.d.ts.map +1 -0
- package/lib/models/doctor-item-model.d.ts +3 -10
- package/lib/models/doctor-item-model.d.ts.map +1 -1
- package/lib/models/doctor-model.d.ts +3 -10
- package/lib/models/doctor-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +4 -6
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +4 -6
- package/lib/models/patient-model.d.ts +3 -10
- package/lib/models/patient-model.d.ts.map +1 -1
- package/lib/models/user-model.d.ts +3 -10
- package/lib/models/user-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +4 -7
- package/src/api/curations-api.ts +235 -155
- package/src/api.ts +0 -1
- package/src/models/{curation-specialty-types-model.ts → curation-categories-model.ts} +7 -7
- package/src/models/{search-curation-primary-item-model.ts → curation-category-model.ts} +12 -6
- package/src/models/curation-model.ts +8 -29
- package/src/models/{curation-item-model.ts → curations-by-category-item-model.ts} +10 -34
- package/src/models/{curation-specialty-type-item-model.ts → curations-by-category-model.ts} +12 -18
- package/src/models/doctor-item-model.ts +3 -12
- package/src/models/doctor-model.ts +3 -12
- package/src/models/index.ts +4 -6
- package/src/models/patient-model.ts +3 -12
- package/src/models/user-model.ts +3 -12
- package/lib/api/search-curations-api.d.ts +0 -198
- package/lib/api/search-curations-api.d.ts.map +0 -1
- package/lib/api/search-curations-api.js +0 -369
- package/lib/models/curation-item-model.d.ts +0 -73
- package/lib/models/curation-item-model.d.ts.map +0 -1
- package/lib/models/curation-specialty-type-item-model.d.ts +0 -50
- package/lib/models/curation-specialty-type-item-model.d.ts.map +0 -1
- package/lib/models/curation-specialty-types-model.d.ts.map +0 -1
- package/lib/models/search-curation-item-model.d.ts +0 -104
- package/lib/models/search-curation-item-model.d.ts.map +0 -1
- package/lib/models/search-curation-primary-item-model.d.ts.map +0 -1
- package/lib/models/search-curation-primary-item-model.js +0 -15
- package/lib/models/user-type.d.ts +0 -28
- package/lib/models/user-type.d.ts.map +0 -1
- package/lib/models/user-type.js +0 -31
- package/src/api/search-curations-api.ts +0 -332
- package/src/models/search-curation-item-model.ts +0 -111
- package/src/models/user-type.ts +0 -37
- /package/lib/models/{curation-item-model.js → curation-categories-model.js} +0 -0
- /package/lib/models/{curation-specialty-type-item-model.js → curation-category-model.js} +0 -0
- /package/lib/models/{curation-specialty-types-model.js → curations-by-category-item-model.js} +0 -0
- /package/lib/models/{search-curation-item-model.js → curations-by-category-model.js} +0 -0
|
@@ -12,8 +12,9 @@
|
|
|
12
12
|
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
13
|
import { Configuration } from '../configuration';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { CurationCategoriesModel } from '../models';
|
|
15
16
|
import { CurationModel } from '../models';
|
|
16
|
-
import {
|
|
17
|
+
import { CurationsByCategoryModel } from '../models';
|
|
17
18
|
/**
|
|
18
19
|
* CurationsApi - axios parameter creator
|
|
19
20
|
* @export
|
|
@@ -21,37 +22,44 @@ import { CurationSpecialtyTypesModel } from '../models';
|
|
|
21
22
|
export declare const CurationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
23
|
/**
|
|
23
24
|
*
|
|
24
|
-
* @summary
|
|
25
|
-
* @param {string}
|
|
26
|
-
* @param {string} [
|
|
25
|
+
* @summary Get CurationCategories
|
|
26
|
+
* @param {string} languageCode
|
|
27
|
+
* @param {string} [curationCategoryId]
|
|
28
|
+
* @param {number} [page]
|
|
29
|
+
* @param {number} [limit]
|
|
30
|
+
* @param {Date} [lastRetrieved]
|
|
27
31
|
* @param {*} [options] Override http request option.
|
|
28
32
|
* @throws {RequiredError}
|
|
29
33
|
*/
|
|
30
|
-
|
|
34
|
+
apiV2CurationsCategoriesGet: (languageCode: string, curationCategoryId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31
35
|
/**
|
|
32
36
|
*
|
|
33
|
-
* @summary Get
|
|
34
|
-
* @param {string}
|
|
35
|
-
* @param {string}
|
|
36
|
-
* @param {
|
|
37
|
-
* @
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
37
|
+
* @summary Get Curations by single Category
|
|
38
|
+
* @param {string} curationCategoryId
|
|
39
|
+
* @param {string} languageCode
|
|
40
|
+
* @param {*} [options] Override http request option.
|
|
41
|
+
* @throws {RequiredError}
|
|
42
|
+
*/
|
|
43
|
+
apiV2CurationsCategoryCurationCategoryIdGet: (curationCategoryId: string, languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @summary Get Curations by mutiple Categories with limit
|
|
47
|
+
* @param {Array<string>} curationCategoryIds
|
|
48
|
+
* @param {string} languageCode
|
|
49
|
+
* @param {number} [curationLimit]
|
|
41
50
|
* @param {*} [options] Override http request option.
|
|
42
51
|
* @throws {RequiredError}
|
|
43
52
|
*/
|
|
44
|
-
|
|
53
|
+
apiV2CurationsCategoryGet: (curationCategoryIds: Array<string>, languageCode: string, curationLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
45
54
|
/**
|
|
46
55
|
*
|
|
47
|
-
* @summary Get Curation by
|
|
48
|
-
* @param {string}
|
|
49
|
-
* @param {string}
|
|
50
|
-
* @param {string} [previewSecret]
|
|
56
|
+
* @summary Get Curation by Id
|
|
57
|
+
* @param {string} curationId
|
|
58
|
+
* @param {string} languageCode
|
|
51
59
|
* @param {*} [options] Override http request option.
|
|
52
60
|
* @throws {RequiredError}
|
|
53
61
|
*/
|
|
54
|
-
|
|
62
|
+
apiV2CurationsCurationIdGet: (curationId: string, languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
55
63
|
};
|
|
56
64
|
/**
|
|
57
65
|
* CurationsApi - functional programming interface
|
|
@@ -60,37 +68,44 @@ export declare const CurationsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
60
68
|
export declare const CurationsApiFp: (configuration?: Configuration) => {
|
|
61
69
|
/**
|
|
62
70
|
*
|
|
63
|
-
* @summary
|
|
64
|
-
* @param {string}
|
|
65
|
-
* @param {string} [
|
|
71
|
+
* @summary Get CurationCategories
|
|
72
|
+
* @param {string} languageCode
|
|
73
|
+
* @param {string} [curationCategoryId]
|
|
74
|
+
* @param {number} [page]
|
|
75
|
+
* @param {number} [limit]
|
|
76
|
+
* @param {Date} [lastRetrieved]
|
|
66
77
|
* @param {*} [options] Override http request option.
|
|
67
78
|
* @throws {RequiredError}
|
|
68
79
|
*/
|
|
69
|
-
|
|
80
|
+
apiV2CurationsCategoriesGet(languageCode: string, curationCategoryId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CurationCategoriesModel>>;
|
|
70
81
|
/**
|
|
71
82
|
*
|
|
72
|
-
* @summary Get
|
|
73
|
-
* @param {string}
|
|
74
|
-
* @param {string}
|
|
75
|
-
* @param {
|
|
76
|
-
* @
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
83
|
+
* @summary Get Curations by single Category
|
|
84
|
+
* @param {string} curationCategoryId
|
|
85
|
+
* @param {string} languageCode
|
|
86
|
+
* @param {*} [options] Override http request option.
|
|
87
|
+
* @throws {RequiredError}
|
|
88
|
+
*/
|
|
89
|
+
apiV2CurationsCategoryCurationCategoryIdGet(curationCategoryId: string, languageCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CurationsByCategoryModel>>>;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @summary Get Curations by mutiple Categories with limit
|
|
93
|
+
* @param {Array<string>} curationCategoryIds
|
|
94
|
+
* @param {string} languageCode
|
|
95
|
+
* @param {number} [curationLimit]
|
|
80
96
|
* @param {*} [options] Override http request option.
|
|
81
97
|
* @throws {RequiredError}
|
|
82
98
|
*/
|
|
83
|
-
|
|
99
|
+
apiV2CurationsCategoryGet(curationCategoryIds: Array<string>, languageCode: string, curationLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CurationsByCategoryModel>>>;
|
|
84
100
|
/**
|
|
85
101
|
*
|
|
86
|
-
* @summary Get Curation by
|
|
87
|
-
* @param {string}
|
|
88
|
-
* @param {string}
|
|
89
|
-
* @param {string} [previewSecret]
|
|
102
|
+
* @summary Get Curation by Id
|
|
103
|
+
* @param {string} curationId
|
|
104
|
+
* @param {string} languageCode
|
|
90
105
|
* @param {*} [options] Override http request option.
|
|
91
106
|
* @throws {RequiredError}
|
|
92
107
|
*/
|
|
93
|
-
|
|
108
|
+
apiV2CurationsCurationIdGet(curationId: string, languageCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CurationModel>>;
|
|
94
109
|
};
|
|
95
110
|
/**
|
|
96
111
|
* CurationsApi - factory interface
|
|
@@ -99,130 +114,144 @@ export declare const CurationsApiFp: (configuration?: Configuration) => {
|
|
|
99
114
|
export declare const CurationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
100
115
|
/**
|
|
101
116
|
*
|
|
102
|
-
* @summary
|
|
103
|
-
* @param {string}
|
|
104
|
-
* @param {string} [
|
|
117
|
+
* @summary Get CurationCategories
|
|
118
|
+
* @param {string} languageCode
|
|
119
|
+
* @param {string} [curationCategoryId]
|
|
120
|
+
* @param {number} [page]
|
|
121
|
+
* @param {number} [limit]
|
|
122
|
+
* @param {Date} [lastRetrieved]
|
|
105
123
|
* @param {*} [options] Override http request option.
|
|
106
124
|
* @throws {RequiredError}
|
|
107
125
|
*/
|
|
108
|
-
|
|
126
|
+
apiV2CurationsCategoriesGet(languageCode: string, curationCategoryId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<CurationCategoriesModel>;
|
|
109
127
|
/**
|
|
110
128
|
*
|
|
111
|
-
* @summary Get
|
|
112
|
-
* @param {string}
|
|
113
|
-
* @param {string}
|
|
114
|
-
* @param {
|
|
115
|
-
* @
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
129
|
+
* @summary Get Curations by single Category
|
|
130
|
+
* @param {string} curationCategoryId
|
|
131
|
+
* @param {string} languageCode
|
|
132
|
+
* @param {*} [options] Override http request option.
|
|
133
|
+
* @throws {RequiredError}
|
|
134
|
+
*/
|
|
135
|
+
apiV2CurationsCategoryCurationCategoryIdGet(curationCategoryId: string, languageCode: string, options?: any): AxiosPromise<Array<CurationsByCategoryModel>>;
|
|
136
|
+
/**
|
|
137
|
+
*
|
|
138
|
+
* @summary Get Curations by mutiple Categories with limit
|
|
139
|
+
* @param {Array<string>} curationCategoryIds
|
|
140
|
+
* @param {string} languageCode
|
|
141
|
+
* @param {number} [curationLimit]
|
|
119
142
|
* @param {*} [options] Override http request option.
|
|
120
143
|
* @throws {RequiredError}
|
|
121
144
|
*/
|
|
122
|
-
|
|
145
|
+
apiV2CurationsCategoryGet(curationCategoryIds: Array<string>, languageCode: string, curationLimit?: number, options?: any): AxiosPromise<Array<CurationsByCategoryModel>>;
|
|
123
146
|
/**
|
|
124
147
|
*
|
|
125
|
-
* @summary Get Curation by
|
|
126
|
-
* @param {string}
|
|
127
|
-
* @param {string}
|
|
128
|
-
* @param {string} [previewSecret]
|
|
148
|
+
* @summary Get Curation by Id
|
|
149
|
+
* @param {string} curationId
|
|
150
|
+
* @param {string} languageCode
|
|
129
151
|
* @param {*} [options] Override http request option.
|
|
130
152
|
* @throws {RequiredError}
|
|
131
153
|
*/
|
|
132
|
-
|
|
154
|
+
apiV2CurationsCurationIdGet(curationId: string, languageCode: string, options?: any): AxiosPromise<CurationModel>;
|
|
133
155
|
};
|
|
134
156
|
/**
|
|
135
|
-
* Request parameters for
|
|
157
|
+
* Request parameters for apiV2CurationsCategoriesGet operation in CurationsApi.
|
|
136
158
|
* @export
|
|
137
|
-
* @interface
|
|
159
|
+
* @interface CurationsApiApiV2CurationsCategoriesGetRequest
|
|
138
160
|
*/
|
|
139
|
-
export interface
|
|
161
|
+
export interface CurationsApiApiV2CurationsCategoriesGetRequest {
|
|
140
162
|
/**
|
|
141
163
|
*
|
|
142
164
|
* @type {string}
|
|
143
|
-
* @memberof
|
|
165
|
+
* @memberof CurationsApiApiV2CurationsCategoriesGet
|
|
144
166
|
*/
|
|
145
|
-
readonly
|
|
167
|
+
readonly languageCode: string;
|
|
146
168
|
/**
|
|
147
169
|
*
|
|
148
170
|
* @type {string}
|
|
149
|
-
* @memberof
|
|
171
|
+
* @memberof CurationsApiApiV2CurationsCategoriesGet
|
|
150
172
|
*/
|
|
151
|
-
readonly
|
|
152
|
-
}
|
|
153
|
-
/**
|
|
154
|
-
* Request parameters for apiV2CurationsGet operation in CurationsApi.
|
|
155
|
-
* @export
|
|
156
|
-
* @interface CurationsApiApiV2CurationsGetRequest
|
|
157
|
-
*/
|
|
158
|
-
export interface CurationsApiApiV2CurationsGetRequest {
|
|
173
|
+
readonly curationCategoryId?: string;
|
|
159
174
|
/**
|
|
160
175
|
*
|
|
161
|
-
* @type {
|
|
162
|
-
* @memberof
|
|
176
|
+
* @type {number}
|
|
177
|
+
* @memberof CurationsApiApiV2CurationsCategoriesGet
|
|
163
178
|
*/
|
|
164
|
-
readonly
|
|
179
|
+
readonly page?: number;
|
|
165
180
|
/**
|
|
166
181
|
*
|
|
167
|
-
* @type {
|
|
168
|
-
* @memberof
|
|
182
|
+
* @type {number}
|
|
183
|
+
* @memberof CurationsApiApiV2CurationsCategoriesGet
|
|
169
184
|
*/
|
|
170
|
-
readonly
|
|
185
|
+
readonly limit?: number;
|
|
186
|
+
/**
|
|
187
|
+
*
|
|
188
|
+
* @type {Date}
|
|
189
|
+
* @memberof CurationsApiApiV2CurationsCategoriesGet
|
|
190
|
+
*/
|
|
191
|
+
readonly lastRetrieved?: Date;
|
|
192
|
+
}
|
|
193
|
+
/**
|
|
194
|
+
* Request parameters for apiV2CurationsCategoryCurationCategoryIdGet operation in CurationsApi.
|
|
195
|
+
* @export
|
|
196
|
+
* @interface CurationsApiApiV2CurationsCategoryCurationCategoryIdGetRequest
|
|
197
|
+
*/
|
|
198
|
+
export interface CurationsApiApiV2CurationsCategoryCurationCategoryIdGetRequest {
|
|
171
199
|
/**
|
|
172
200
|
*
|
|
173
201
|
* @type {string}
|
|
174
|
-
* @memberof
|
|
202
|
+
* @memberof CurationsApiApiV2CurationsCategoryCurationCategoryIdGet
|
|
175
203
|
*/
|
|
176
|
-
readonly
|
|
204
|
+
readonly curationCategoryId: string;
|
|
177
205
|
/**
|
|
178
206
|
*
|
|
179
207
|
* @type {string}
|
|
180
|
-
* @memberof
|
|
208
|
+
* @memberof CurationsApiApiV2CurationsCategoryCurationCategoryIdGet
|
|
181
209
|
*/
|
|
182
|
-
readonly languageCode
|
|
210
|
+
readonly languageCode: string;
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* Request parameters for apiV2CurationsCategoryGet operation in CurationsApi.
|
|
214
|
+
* @export
|
|
215
|
+
* @interface CurationsApiApiV2CurationsCategoryGetRequest
|
|
216
|
+
*/
|
|
217
|
+
export interface CurationsApiApiV2CurationsCategoryGetRequest {
|
|
183
218
|
/**
|
|
184
219
|
*
|
|
185
|
-
* @type {
|
|
186
|
-
* @memberof
|
|
220
|
+
* @type {Array<string>}
|
|
221
|
+
* @memberof CurationsApiApiV2CurationsCategoryGet
|
|
187
222
|
*/
|
|
188
|
-
readonly
|
|
223
|
+
readonly curationCategoryIds: Array<string>;
|
|
189
224
|
/**
|
|
190
225
|
*
|
|
191
|
-
* @type {
|
|
192
|
-
* @memberof
|
|
226
|
+
* @type {string}
|
|
227
|
+
* @memberof CurationsApiApiV2CurationsCategoryGet
|
|
193
228
|
*/
|
|
194
|
-
readonly
|
|
229
|
+
readonly languageCode: string;
|
|
195
230
|
/**
|
|
196
231
|
*
|
|
197
|
-
* @type {
|
|
198
|
-
* @memberof
|
|
232
|
+
* @type {number}
|
|
233
|
+
* @memberof CurationsApiApiV2CurationsCategoryGet
|
|
199
234
|
*/
|
|
200
|
-
readonly
|
|
235
|
+
readonly curationLimit?: number;
|
|
201
236
|
}
|
|
202
237
|
/**
|
|
203
|
-
* Request parameters for
|
|
238
|
+
* Request parameters for apiV2CurationsCurationIdGet operation in CurationsApi.
|
|
204
239
|
* @export
|
|
205
|
-
* @interface
|
|
240
|
+
* @interface CurationsApiApiV2CurationsCurationIdGetRequest
|
|
206
241
|
*/
|
|
207
|
-
export interface
|
|
208
|
-
/**
|
|
209
|
-
*
|
|
210
|
-
* @type {string}
|
|
211
|
-
* @memberof CurationsApiApiV2CurationsSlugGet
|
|
212
|
-
*/
|
|
213
|
-
readonly slug: string;
|
|
242
|
+
export interface CurationsApiApiV2CurationsCurationIdGetRequest {
|
|
214
243
|
/**
|
|
215
244
|
*
|
|
216
245
|
* @type {string}
|
|
217
|
-
* @memberof
|
|
246
|
+
* @memberof CurationsApiApiV2CurationsCurationIdGet
|
|
218
247
|
*/
|
|
219
|
-
readonly
|
|
248
|
+
readonly curationId: string;
|
|
220
249
|
/**
|
|
221
250
|
*
|
|
222
251
|
* @type {string}
|
|
223
|
-
* @memberof
|
|
252
|
+
* @memberof CurationsApiApiV2CurationsCurationIdGet
|
|
224
253
|
*/
|
|
225
|
-
readonly
|
|
254
|
+
readonly languageCode: string;
|
|
226
255
|
}
|
|
227
256
|
/**
|
|
228
257
|
* CurationsApi - object-oriented interface
|
|
@@ -233,30 +262,39 @@ export interface CurationsApiApiV2CurationsSlugGetRequest {
|
|
|
233
262
|
export declare class CurationsApi extends BaseAPI {
|
|
234
263
|
/**
|
|
235
264
|
*
|
|
236
|
-
* @summary
|
|
237
|
-
* @param {
|
|
265
|
+
* @summary Get CurationCategories
|
|
266
|
+
* @param {CurationsApiApiV2CurationsCategoriesGetRequest} requestParameters Request parameters.
|
|
238
267
|
* @param {*} [options] Override http request option.
|
|
239
268
|
* @throws {RequiredError}
|
|
240
269
|
* @memberof CurationsApi
|
|
241
270
|
*/
|
|
242
|
-
|
|
271
|
+
apiV2CurationsCategoriesGet(requestParameters: CurationsApiApiV2CurationsCategoriesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CurationCategoriesModel, any>>;
|
|
272
|
+
/**
|
|
273
|
+
*
|
|
274
|
+
* @summary Get Curations by single Category
|
|
275
|
+
* @param {CurationsApiApiV2CurationsCategoryCurationCategoryIdGetRequest} requestParameters Request parameters.
|
|
276
|
+
* @param {*} [options] Override http request option.
|
|
277
|
+
* @throws {RequiredError}
|
|
278
|
+
* @memberof CurationsApi
|
|
279
|
+
*/
|
|
280
|
+
apiV2CurationsCategoryCurationCategoryIdGet(requestParameters: CurationsApiApiV2CurationsCategoryCurationCategoryIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CurationsByCategoryModel[], any>>;
|
|
243
281
|
/**
|
|
244
282
|
*
|
|
245
|
-
* @summary Get
|
|
246
|
-
* @param {
|
|
283
|
+
* @summary Get Curations by mutiple Categories with limit
|
|
284
|
+
* @param {CurationsApiApiV2CurationsCategoryGetRequest} requestParameters Request parameters.
|
|
247
285
|
* @param {*} [options] Override http request option.
|
|
248
286
|
* @throws {RequiredError}
|
|
249
287
|
* @memberof CurationsApi
|
|
250
288
|
*/
|
|
251
|
-
|
|
289
|
+
apiV2CurationsCategoryGet(requestParameters: CurationsApiApiV2CurationsCategoryGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CurationsByCategoryModel[], any>>;
|
|
252
290
|
/**
|
|
253
291
|
*
|
|
254
|
-
* @summary Get Curation by
|
|
255
|
-
* @param {
|
|
292
|
+
* @summary Get Curation by Id
|
|
293
|
+
* @param {CurationsApiApiV2CurationsCurationIdGetRequest} requestParameters Request parameters.
|
|
256
294
|
* @param {*} [options] Override http request option.
|
|
257
295
|
* @throws {RequiredError}
|
|
258
296
|
* @memberof CurationsApi
|
|
259
297
|
*/
|
|
260
|
-
|
|
298
|
+
apiV2CurationsCurationIdGet(requestParameters: CurationsApiApiV2CurationsCurationIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CurationModel, any>>;
|
|
261
299
|
}
|
|
262
300
|
//# sourceMappingURL=curations-api.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"curations-api.d.ts","sourceRoot":"","sources":["../../src/api/curations-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKjD,OAAO,EAAiC,WAAW,EAAE,OAAO,EAAiB,MAAM,SAAS,CAAC;AAE7F,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAE1C,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"curations-api.d.ts","sourceRoot":"","sources":["../../src/api/curations-api.ts"],"names":[],"mappings":"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"}
|