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.
Files changed (63) hide show
  1. package/lib/api/curations-api.d.ts +148 -110
  2. package/lib/api/curations-api.d.ts.map +1 -1
  3. package/lib/api/curations-api.js +181 -104
  4. package/lib/api.d.ts +0 -1
  5. package/lib/api.d.ts.map +1 -1
  6. package/lib/api.js +0 -1
  7. package/lib/models/{curation-specialty-types-model.d.ts → curation-categories-model.d.ts} +8 -8
  8. package/lib/models/curation-categories-model.d.ts.map +1 -0
  9. package/lib/models/{search-curation-primary-item-model.d.ts → curation-category-model.d.ts} +13 -7
  10. package/lib/models/curation-category-model.d.ts.map +1 -0
  11. package/lib/models/curation-model.d.ts +8 -27
  12. package/lib/models/curation-model.d.ts.map +1 -1
  13. package/lib/models/curations-by-category-item-model.d.ts +49 -0
  14. package/lib/models/curations-by-category-item-model.d.ts.map +1 -0
  15. package/lib/models/curations-by-category-model.d.ts +44 -0
  16. package/lib/models/curations-by-category-model.d.ts.map +1 -0
  17. package/lib/models/doctor-item-model.d.ts +3 -10
  18. package/lib/models/doctor-item-model.d.ts.map +1 -1
  19. package/lib/models/doctor-model.d.ts +3 -10
  20. package/lib/models/doctor-model.d.ts.map +1 -1
  21. package/lib/models/index.d.ts +4 -6
  22. package/lib/models/index.d.ts.map +1 -1
  23. package/lib/models/index.js +4 -6
  24. package/lib/models/patient-model.d.ts +3 -10
  25. package/lib/models/patient-model.d.ts.map +1 -1
  26. package/lib/models/user-model.d.ts +3 -10
  27. package/lib/models/user-model.d.ts.map +1 -1
  28. package/package.json +1 -1
  29. package/src/.openapi-generator/FILES +4 -7
  30. package/src/api/curations-api.ts +235 -155
  31. package/src/api.ts +0 -1
  32. package/src/models/{curation-specialty-types-model.ts → curation-categories-model.ts} +7 -7
  33. package/src/models/{search-curation-primary-item-model.ts → curation-category-model.ts} +12 -6
  34. package/src/models/curation-model.ts +8 -29
  35. package/src/models/{curation-item-model.ts → curations-by-category-item-model.ts} +10 -34
  36. package/src/models/{curation-specialty-type-item-model.ts → curations-by-category-model.ts} +12 -18
  37. package/src/models/doctor-item-model.ts +3 -12
  38. package/src/models/doctor-model.ts +3 -12
  39. package/src/models/index.ts +4 -6
  40. package/src/models/patient-model.ts +3 -12
  41. package/src/models/user-model.ts +3 -12
  42. package/lib/api/search-curations-api.d.ts +0 -198
  43. package/lib/api/search-curations-api.d.ts.map +0 -1
  44. package/lib/api/search-curations-api.js +0 -369
  45. package/lib/models/curation-item-model.d.ts +0 -73
  46. package/lib/models/curation-item-model.d.ts.map +0 -1
  47. package/lib/models/curation-specialty-type-item-model.d.ts +0 -50
  48. package/lib/models/curation-specialty-type-item-model.d.ts.map +0 -1
  49. package/lib/models/curation-specialty-types-model.d.ts.map +0 -1
  50. package/lib/models/search-curation-item-model.d.ts +0 -104
  51. package/lib/models/search-curation-item-model.d.ts.map +0 -1
  52. package/lib/models/search-curation-primary-item-model.d.ts.map +0 -1
  53. package/lib/models/search-curation-primary-item-model.js +0 -15
  54. package/lib/models/user-type.d.ts +0 -28
  55. package/lib/models/user-type.d.ts.map +0 -1
  56. package/lib/models/user-type.js +0 -31
  57. package/src/api/search-curations-api.ts +0 -332
  58. package/src/models/search-curation-item-model.ts +0 -111
  59. package/src/models/user-type.ts +0 -37
  60. /package/lib/models/{curation-item-model.js → curation-categories-model.js} +0 -0
  61. /package/lib/models/{curation-specialty-type-item-model.js → curation-category-model.js} +0 -0
  62. /package/lib/models/{curation-specialty-types-model.js → curations-by-category-item-model.js} +0 -0
  63. /package/lib/models/{search-curation-item-model.js → curations-by-category-model.js} +0 -0
@@ -17,20 +17,26 @@
17
17
  /**
18
18
  *
19
19
  * @export
20
- * @interface SearchCurationPrimaryItemModel
20
+ * @interface CurationCategoryModel
21
21
  */
22
- export interface SearchCurationPrimaryItemModel {
22
+ export interface CurationCategoryModel {
23
23
  /**
24
24
  *
25
25
  * @type {string}
26
- * @memberof SearchCurationPrimaryItemModel
26
+ * @memberof CurationCategoryModel
27
27
  */
28
- 'id'?: string | null;
28
+ 'curationCategoryId'?: string;
29
29
  /**
30
30
  *
31
31
  * @type {string}
32
- * @memberof SearchCurationPrimaryItemModel
32
+ * @memberof CurationCategoryModel
33
33
  */
34
- 'name'?: string | null;
34
+ 'languageCode'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof CurationCategoryModel
39
+ */
40
+ 'title'?: string | null;
35
41
  }
36
42
 
@@ -13,9 +13,6 @@
13
13
  */
14
14
 
15
15
 
16
- // May contain unused imports in some cases
17
- // @ts-ignore
18
- import { AuditableEntityModel } from './auditable-entity-model';
19
16
 
20
17
  /**
21
18
  *
@@ -28,60 +25,42 @@ export interface CurationModel {
28
25
  * @type {string}
29
26
  * @memberof CurationModel
30
27
  */
31
- 'id'?: string;
28
+ 'curationId'?: string;
32
29
  /**
33
30
  *
34
- * @type {string}
31
+ * @type {number}
35
32
  * @memberof CurationModel
36
33
  */
37
- 'languageCode'?: string | null;
34
+ 'order'?: number;
38
35
  /**
39
36
  *
40
37
  * @type {string}
41
38
  * @memberof CurationModel
42
39
  */
43
- 'title'?: string | null;
40
+ 'photo'?: string | null;
44
41
  /**
45
42
  *
46
43
  * @type {string}
47
44
  * @memberof CurationModel
48
45
  */
49
- 'searchTerm'?: string | null;
46
+ 'photoThumbnail'?: string | null;
50
47
  /**
51
48
  *
52
49
  * @type {string}
53
50
  * @memberof CurationModel
54
51
  */
55
- 'slug'?: string | null;
56
- /**
57
- *
58
- * @type {string}
59
- * @memberof CurationModel
60
- */
61
- 'url'?: string | null;
62
- /**
63
- *
64
- * @type {string}
65
- * @memberof CurationModel
66
- */
67
- 'description'?: string | null;
52
+ 'languageCode'?: string | null;
68
53
  /**
69
54
  *
70
55
  * @type {string}
71
56
  * @memberof CurationModel
72
57
  */
73
- 'overview'?: string | null;
58
+ 'title'?: string | null;
74
59
  /**
75
60
  *
76
61
  * @type {string}
77
62
  * @memberof CurationModel
78
63
  */
79
- 'content'?: string | null;
80
- /**
81
- *
82
- * @type {AuditableEntityModel}
83
- * @memberof CurationModel
84
- */
85
- 'auditableEntity'?: AuditableEntityModel;
64
+ 'url'?: string | null;
86
65
  }
87
66
 
@@ -17,62 +17,38 @@
17
17
  /**
18
18
  *
19
19
  * @export
20
- * @interface CurationItemModel
20
+ * @interface CurationsByCategoryItemModel
21
21
  */
22
- export interface CurationItemModel {
22
+ export interface CurationsByCategoryItemModel {
23
23
  /**
24
24
  *
25
25
  * @type {string}
26
- * @memberof CurationItemModel
26
+ * @memberof CurationsByCategoryItemModel
27
27
  */
28
- 'id'?: string;
28
+ 'curationId'?: string;
29
29
  /**
30
30
  *
31
31
  * @type {string}
32
- * @memberof CurationItemModel
33
- */
34
- 'languageCode'?: string | null;
35
- /**
36
- *
37
- * @type {string}
38
- * @memberof CurationItemModel
32
+ * @memberof CurationsByCategoryItemModel
39
33
  */
40
34
  'title'?: string | null;
41
35
  /**
42
36
  *
43
37
  * @type {string}
44
- * @memberof CurationItemModel
45
- */
46
- 'slug'?: string | null;
47
- /**
48
- *
49
- * @type {string}
50
- * @memberof CurationItemModel
51
- */
52
- 'url'?: string | null;
53
- /**
54
- *
55
- * @type {string}
56
- * @memberof CurationItemModel
38
+ * @memberof CurationsByCategoryItemModel
57
39
  */
58
40
  'photo'?: string | null;
59
41
  /**
60
42
  *
61
43
  * @type {string}
62
- * @memberof CurationItemModel
44
+ * @memberof CurationsByCategoryItemModel
63
45
  */
64
46
  'photoThumbnail'?: string | null;
65
47
  /**
66
48
  *
67
- * @type {number}
68
- * @memberof CurationItemModel
69
- */
70
- 'order'?: number;
71
- /**
72
- *
73
- * @type {boolean}
74
- * @memberof CurationItemModel
49
+ * @type {string}
50
+ * @memberof CurationsByCategoryItemModel
75
51
  */
76
- 'confirmed'?: boolean;
52
+ 'url'?: string | null;
77
53
  }
78
54
 
@@ -15,43 +15,37 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import { CurationItemModel } from './curation-item-model';
18
+ import { CurationsByCategoryItemModel } from './curations-by-category-item-model';
19
19
 
20
20
  /**
21
21
  *
22
22
  * @export
23
- * @interface CurationSpecialtyTypeItemModel
23
+ * @interface CurationsByCategoryModel
24
24
  */
25
- export interface CurationSpecialtyTypeItemModel {
25
+ export interface CurationsByCategoryModel {
26
26
  /**
27
27
  *
28
28
  * @type {string}
29
- * @memberof CurationSpecialtyTypeItemModel
29
+ * @memberof CurationsByCategoryModel
30
30
  */
31
- 'specialtyTypeId'?: string;
31
+ 'curationCategoryId'?: string;
32
32
  /**
33
33
  *
34
34
  * @type {string}
35
- * @memberof CurationSpecialtyTypeItemModel
35
+ * @memberof CurationsByCategoryModel
36
36
  */
37
- 'languageCode'?: string | null;
38
- /**
39
- *
40
- * @type {string}
41
- * @memberof CurationSpecialtyTypeItemModel
42
- */
43
- 'name'?: string | null;
37
+ 'curationCategoryTitle'?: string | null;
44
38
  /**
45
39
  *
46
40
  * @type {string}
47
- * @memberof CurationSpecialtyTypeItemModel
41
+ * @memberof CurationsByCategoryModel
48
42
  */
49
- 'slug'?: string | null;
43
+ 'languageCode'?: string | null;
50
44
  /**
51
45
  *
52
- * @type {Array<CurationItemModel>}
53
- * @memberof CurationSpecialtyTypeItemModel
46
+ * @type {Array<CurationsByCategoryItemModel>}
47
+ * @memberof CurationsByCategoryModel
54
48
  */
55
- 'curations'?: Array<CurationItemModel> | null;
49
+ 'curations'?: Array<CurationsByCategoryItemModel> | null;
56
50
  }
57
51
 
@@ -15,16 +15,13 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import { AuditableEntity } from './auditable-entity';
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import { Gender } from './gender';
22
22
  // May contain unused imports in some cases
23
23
  // @ts-ignore
24
24
  import { UserLanguageModel } from './user-language-model';
25
- // May contain unused imports in some cases
26
- // @ts-ignore
27
- import { UserType } from './user-type';
28
25
 
29
26
  /**
30
27
  *
@@ -62,12 +59,6 @@ export interface DoctorItemModel {
62
59
  * @memberof DoctorItemModel
63
60
  */
64
61
  'fullName'?: string | null;
65
- /**
66
- *
67
- * @type {UserType}
68
- * @memberof DoctorItemModel
69
- */
70
- 'userType'?: UserType;
71
62
  /**
72
63
  *
73
64
  * @type {string}
@@ -94,10 +85,10 @@ export interface DoctorItemModel {
94
85
  'gender'?: Gender;
95
86
  /**
96
87
  *
97
- * @type {AuditableEntity}
88
+ * @type {AuditableEntityModel}
98
89
  * @memberof DoctorItemModel
99
90
  */
100
- 'auditableEntity'?: AuditableEntity;
91
+ 'auditableEntity'?: AuditableEntityModel;
101
92
  /**
102
93
  *
103
94
  * @type {string}
@@ -15,16 +15,13 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import { AuditableEntity } from './auditable-entity';
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import { Gender } from './gender';
22
22
  // May contain unused imports in some cases
23
23
  // @ts-ignore
24
24
  import { UserLanguageModel } from './user-language-model';
25
- // May contain unused imports in some cases
26
- // @ts-ignore
27
- import { UserType } from './user-type';
28
25
 
29
26
  /**
30
27
  *
@@ -62,12 +59,6 @@ export interface DoctorModel {
62
59
  * @memberof DoctorModel
63
60
  */
64
61
  'fullName'?: string | null;
65
- /**
66
- *
67
- * @type {UserType}
68
- * @memberof DoctorModel
69
- */
70
- 'userType'?: UserType;
71
62
  /**
72
63
  *
73
64
  * @type {string}
@@ -94,10 +85,10 @@ export interface DoctorModel {
94
85
  'gender'?: Gender;
95
86
  /**
96
87
  *
97
- * @type {AuditableEntity}
88
+ * @type {AuditableEntityModel}
98
89
  * @memberof DoctorModel
99
90
  */
100
- 'auditableEntity'?: AuditableEntity;
91
+ 'auditableEntity'?: AuditableEntityModel;
101
92
  /**
102
93
  *
103
94
  * @type {string}
@@ -86,10 +86,11 @@ export * from './create-patient-command';
86
86
  export * from './create-profile-command';
87
87
  export * from './create-service-review-command';
88
88
  export * from './create-survey-result-command';
89
- export * from './curation-item-model';
89
+ export * from './curation-categories-model';
90
+ export * from './curation-category-model';
90
91
  export * from './curation-model';
91
- export * from './curation-specialty-type-item-model';
92
- export * from './curation-specialty-types-model';
92
+ export * from './curations-by-category-item-model';
93
+ export * from './curations-by-category-model';
93
94
  export * from './currencies-model';
94
95
  export * from './currency-item-model';
95
96
  export * from './day-of-week';
@@ -300,8 +301,6 @@ export * from './remove-cors-command';
300
301
  export * from './request-handoff-command';
301
302
  export * from './reschedule-appointment-command';
302
303
  export * from './review-type';
303
- export * from './search-curation-item-model';
304
- export * from './search-curation-primary-item-model';
305
304
  export * from './secure-container-item-model';
306
305
  export * from './secure-container-model';
307
306
  export * from './secure-containers-model';
@@ -366,7 +365,6 @@ export * from './user-language-document-model';
366
365
  export * from './user-language-model';
367
366
  export * from './user-model';
368
367
  export * from './user-property';
369
- export * from './user-type';
370
368
  export * from './validate-specialty-names-by-specialty-type-command';
371
369
  export * from './validate-specialty-names-result';
372
370
  export * from './vonage-user';
@@ -15,16 +15,13 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import { AuditableEntity } from './auditable-entity';
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import { Gender } from './gender';
22
22
  // May contain unused imports in some cases
23
23
  // @ts-ignore
24
24
  import { UserLanguageModel } from './user-language-model';
25
- // May contain unused imports in some cases
26
- // @ts-ignore
27
- import { UserType } from './user-type';
28
25
 
29
26
  /**
30
27
  *
@@ -62,12 +59,6 @@ export interface PatientModel {
62
59
  * @memberof PatientModel
63
60
  */
64
61
  'fullName'?: string | null;
65
- /**
66
- *
67
- * @type {UserType}
68
- * @memberof PatientModel
69
- */
70
- 'userType'?: UserType;
71
62
  /**
72
63
  *
73
64
  * @type {string}
@@ -94,10 +85,10 @@ export interface PatientModel {
94
85
  'gender'?: Gender;
95
86
  /**
96
87
  *
97
- * @type {AuditableEntity}
88
+ * @type {AuditableEntityModel}
98
89
  * @memberof PatientModel
99
90
  */
100
- 'auditableEntity'?: AuditableEntity;
91
+ 'auditableEntity'?: AuditableEntityModel;
101
92
  /**
102
93
  *
103
94
  * @type {string}
@@ -15,16 +15,13 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import { AuditableEntity } from './auditable-entity';
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import { Gender } from './gender';
22
22
  // May contain unused imports in some cases
23
23
  // @ts-ignore
24
24
  import { UserLanguageModel } from './user-language-model';
25
- // May contain unused imports in some cases
26
- // @ts-ignore
27
- import { UserType } from './user-type';
28
25
 
29
26
  /**
30
27
  *
@@ -62,12 +59,6 @@ export interface UserModel {
62
59
  * @memberof UserModel
63
60
  */
64
61
  'fullName'?: string | null;
65
- /**
66
- *
67
- * @type {UserType}
68
- * @memberof UserModel
69
- */
70
- 'userType'?: UserType;
71
62
  /**
72
63
  *
73
64
  * @type {string}
@@ -94,10 +85,10 @@ export interface UserModel {
94
85
  'gender'?: Gender;
95
86
  /**
96
87
  *
97
- * @type {AuditableEntity}
88
+ * @type {AuditableEntityModel}
98
89
  * @memberof UserModel
99
90
  */
100
- 'auditableEntity'?: AuditableEntity;
91
+ 'auditableEntity'?: AuditableEntityModel;
101
92
  /**
102
93
  *
103
94
  * @type {string}
@@ -1,198 +0,0 @@
1
- /**
2
- * CloudHospital Api
3
- * CloudHospital application with Swagger, Swashbuckle, and API versioning.
4
- *
5
- * The version of the OpenAPI document: 2
6
- * Contact: developer@icloudhospital.com
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 { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
- import { Configuration } from '../configuration';
14
- import { RequestArgs, BaseAPI } from '../base';
15
- import { SearchCurationItemModel } from '../models';
16
- /**
17
- * SearchCurationsApi - axios parameter creator
18
- * @export
19
- */
20
- export declare const SearchCurationsApiAxiosParamCreator: (configuration?: Configuration) => {
21
- /**
22
- *
23
- * @summary Get all search curations
24
- * @param {string} [languageCode]
25
- * @param {*} [options] Override http request option.
26
- * @throws {RequiredError}
27
- */
28
- apiV2SearchcurationsGet: (languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
29
- /**
30
- *
31
- * @summary Get search curation item by id
32
- * @param {string} id
33
- * @param {string} [languageCode]
34
- * @param {*} [options] Override http request option.
35
- * @throws {RequiredError}
36
- */
37
- apiV2SearchcurationsIdGet: (id: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
38
- /**
39
- *
40
- * @summary Get search curation item by slug
41
- * @param {string} slug
42
- * @param {string} [languageCode]
43
- * @param {*} [options] Override http request option.
44
- * @throws {RequiredError}
45
- */
46
- apiV2SearchcurationsSlugGet: (slug: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
47
- };
48
- /**
49
- * SearchCurationsApi - functional programming interface
50
- * @export
51
- */
52
- export declare const SearchCurationsApiFp: (configuration?: Configuration) => {
53
- /**
54
- *
55
- * @summary Get all search curations
56
- * @param {string} [languageCode]
57
- * @param {*} [options] Override http request option.
58
- * @throws {RequiredError}
59
- */
60
- apiV2SearchcurationsGet(languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchCurationItemModel>>>;
61
- /**
62
- *
63
- * @summary Get search curation item by id
64
- * @param {string} id
65
- * @param {string} [languageCode]
66
- * @param {*} [options] Override http request option.
67
- * @throws {RequiredError}
68
- */
69
- apiV2SearchcurationsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchCurationItemModel>>;
70
- /**
71
- *
72
- * @summary Get search curation item by slug
73
- * @param {string} slug
74
- * @param {string} [languageCode]
75
- * @param {*} [options] Override http request option.
76
- * @throws {RequiredError}
77
- */
78
- apiV2SearchcurationsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchCurationItemModel>>;
79
- };
80
- /**
81
- * SearchCurationsApi - factory interface
82
- * @export
83
- */
84
- export declare const SearchCurationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
85
- /**
86
- *
87
- * @summary Get all search curations
88
- * @param {string} [languageCode]
89
- * @param {*} [options] Override http request option.
90
- * @throws {RequiredError}
91
- */
92
- apiV2SearchcurationsGet(languageCode?: string, options?: any): AxiosPromise<Array<SearchCurationItemModel>>;
93
- /**
94
- *
95
- * @summary Get search curation item by id
96
- * @param {string} id
97
- * @param {string} [languageCode]
98
- * @param {*} [options] Override http request option.
99
- * @throws {RequiredError}
100
- */
101
- apiV2SearchcurationsIdGet(id: string, languageCode?: string, options?: any): AxiosPromise<SearchCurationItemModel>;
102
- /**
103
- *
104
- * @summary Get search curation item by slug
105
- * @param {string} slug
106
- * @param {string} [languageCode]
107
- * @param {*} [options] Override http request option.
108
- * @throws {RequiredError}
109
- */
110
- apiV2SearchcurationsSlugGet(slug: string, languageCode?: string, options?: any): AxiosPromise<SearchCurationItemModel>;
111
- };
112
- /**
113
- * Request parameters for apiV2SearchcurationsGet operation in SearchCurationsApi.
114
- * @export
115
- * @interface SearchCurationsApiApiV2SearchcurationsGetRequest
116
- */
117
- export interface SearchCurationsApiApiV2SearchcurationsGetRequest {
118
- /**
119
- *
120
- * @type {string}
121
- * @memberof SearchCurationsApiApiV2SearchcurationsGet
122
- */
123
- readonly languageCode?: string;
124
- }
125
- /**
126
- * Request parameters for apiV2SearchcurationsIdGet operation in SearchCurationsApi.
127
- * @export
128
- * @interface SearchCurationsApiApiV2SearchcurationsIdGetRequest
129
- */
130
- export interface SearchCurationsApiApiV2SearchcurationsIdGetRequest {
131
- /**
132
- *
133
- * @type {string}
134
- * @memberof SearchCurationsApiApiV2SearchcurationsIdGet
135
- */
136
- readonly id: string;
137
- /**
138
- *
139
- * @type {string}
140
- * @memberof SearchCurationsApiApiV2SearchcurationsIdGet
141
- */
142
- readonly languageCode?: string;
143
- }
144
- /**
145
- * Request parameters for apiV2SearchcurationsSlugGet operation in SearchCurationsApi.
146
- * @export
147
- * @interface SearchCurationsApiApiV2SearchcurationsSlugGetRequest
148
- */
149
- export interface SearchCurationsApiApiV2SearchcurationsSlugGetRequest {
150
- /**
151
- *
152
- * @type {string}
153
- * @memberof SearchCurationsApiApiV2SearchcurationsSlugGet
154
- */
155
- readonly slug: string;
156
- /**
157
- *
158
- * @type {string}
159
- * @memberof SearchCurationsApiApiV2SearchcurationsSlugGet
160
- */
161
- readonly languageCode?: string;
162
- }
163
- /**
164
- * SearchCurationsApi - object-oriented interface
165
- * @export
166
- * @class SearchCurationsApi
167
- * @extends {BaseAPI}
168
- */
169
- export declare class SearchCurationsApi extends BaseAPI {
170
- /**
171
- *
172
- * @summary Get all search curations
173
- * @param {SearchCurationsApiApiV2SearchcurationsGetRequest} requestParameters Request parameters.
174
- * @param {*} [options] Override http request option.
175
- * @throws {RequiredError}
176
- * @memberof SearchCurationsApi
177
- */
178
- apiV2SearchcurationsGet(requestParameters?: SearchCurationsApiApiV2SearchcurationsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchCurationItemModel[], any>>;
179
- /**
180
- *
181
- * @summary Get search curation item by id
182
- * @param {SearchCurationsApiApiV2SearchcurationsIdGetRequest} requestParameters Request parameters.
183
- * @param {*} [options] Override http request option.
184
- * @throws {RequiredError}
185
- * @memberof SearchCurationsApi
186
- */
187
- apiV2SearchcurationsIdGet(requestParameters: SearchCurationsApiApiV2SearchcurationsIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchCurationItemModel, any>>;
188
- /**
189
- *
190
- * @summary Get search curation item by slug
191
- * @param {SearchCurationsApiApiV2SearchcurationsSlugGetRequest} requestParameters Request parameters.
192
- * @param {*} [options] Override http request option.
193
- * @throws {RequiredError}
194
- * @memberof SearchCurationsApi
195
- */
196
- apiV2SearchcurationsSlugGet(requestParameters: SearchCurationsApiApiV2SearchcurationsSlugGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchCurationItemModel, any>>;
197
- }
198
- //# sourceMappingURL=search-curations-api.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"search-curations-api.d.ts","sourceRoot":"","sources":["../../src/api/search-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,uBAAuB,EAAE,MAAM,WAAW,CAAC;AACpD;;;GAGG;AACH,eAAO,MAAM,mCAAmC,mBAA6B,aAAa;IAElF;;;;;;OAMG;6CAC4C,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA4B9G;;;;;;;OAOG;oCACmC,MAAM,iBAAiB,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA+B5H;;;;;;;OAOG;wCACuC,MAAM,iBAAiB,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;CAgCvI,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,oBAAoB,mBAA4B,aAAa;IAGlE;;;;;;OAMG;2CAC0C,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,MAAM,uBAAuB,CAAC,CAAC;IAItL;;;;;;;OAOG;kCACiC,MAAM,iBAAiB,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,uBAAuB,CAAC;IAI7L;;;;;;;OAOG;sCACqC,MAAM,iBAAiB,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,uBAAuB,CAAC;CAKxM,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,yBAAyB,mBAA6B,aAAa,aAAa,MAAM,UAAU,aAAa;IAGlH;;;;;;OAMG;2CACoC,MAAM,YAAY,GAAG,GAAG,aAAa,MAAM,uBAAuB,CAAC,CAAC;IAG3G;;;;;;;OAOG;kCAC2B,MAAM,iBAAiB,MAAM,YAAY,GAAG,GAAG,aAAa,uBAAuB,CAAC;IAGlH;;;;;;;OAOG;sCAC+B,MAAM,iBAAiB,MAAM,YAAY,GAAG,GAAG,aAAa,uBAAuB,CAAC;CAI7H,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,gDAAgD;IAC7D;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;CACjC;AAED;;;;GAIG;AACH,MAAM,WAAW,kDAAkD;IAC/D;;;;OAIG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAA;IAEnB;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;CACjC;AAED;;;;GAIG;AACH,MAAM,WAAW,oDAAoD;IACjE;;;;OAIG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAA;IAErB;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;CACjC;AAED;;;;;GAKG;AACH,qBAAa,kBAAmB,SAAQ,OAAO;IAC3C;;;;;;;OAOG;IACI,uBAAuB,CAAC,iBAAiB,GAAE,gDAAqD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIrI;;;;;;;OAOG;IACI,yBAAyB,CAAC,iBAAiB,EAAE,kDAAkD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIpI;;;;;;;OAOG;IACI,2BAA2B,CAAC,iBAAiB,EAAE,oDAAoD,EAAE,OAAO,CAAC,EAAE,kBAAkB;CAG3I"}