ch-api-client-typescript2 5.82.1 → 5.82.9

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 (57) hide show
  1. package/lib/api/deals-api.d.ts.map +1 -1
  2. package/lib/api/deals-api.js +78 -58
  3. package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
  4. package/lib/api/doctor-affiliations-api.js +69 -49
  5. package/lib/api/hospitals-api.d.ts.map +1 -1
  6. package/lib/api/hospitals-api.js +84 -64
  7. package/lib/api/user-favorites-api.d.ts +569 -0
  8. package/lib/api/user-favorites-api.d.ts.map +1 -0
  9. package/lib/api/user-favorites-api.js +1086 -0
  10. package/lib/api.d.ts +1 -0
  11. package/lib/api.d.ts.map +1 -1
  12. package/lib/api.js +1 -0
  13. package/lib/models/deal-item-model.d.ts +33 -33
  14. package/lib/models/deal-item-model.d.ts.map +1 -1
  15. package/lib/models/deal-model.d.ts +39 -33
  16. package/lib/models/deal-model.d.ts.map +1 -1
  17. package/lib/models/doctor-affiliation-item-model.d.ts +53 -59
  18. package/lib/models/doctor-affiliation-item-model.d.ts.map +1 -1
  19. package/lib/models/doctor-affiliation-model.d.ts +59 -59
  20. package/lib/models/doctor-affiliation-model.d.ts.map +1 -1
  21. package/lib/models/header-navigation-dynamic-sub-item-detail-type.d.ts +23 -0
  22. package/lib/models/header-navigation-dynamic-sub-item-detail-type.d.ts.map +1 -0
  23. package/lib/models/header-navigation-dynamic-sub-item-detail-type.js +26 -0
  24. package/lib/models/header-navigation-dynamic-sub-item-type.d.ts +23 -0
  25. package/lib/models/header-navigation-dynamic-sub-item-type.d.ts.map +1 -0
  26. package/lib/models/header-navigation-dynamic-sub-item-type.js +26 -0
  27. package/lib/models/header-navigation-item-model.d.ts +14 -0
  28. package/lib/models/header-navigation-item-model.d.ts.map +1 -1
  29. package/lib/models/hospital-model.d.ts +6 -0
  30. package/lib/models/hospital-model.d.ts.map +1 -1
  31. package/lib/models/hospital-simple-item-model.d.ts +47 -0
  32. package/lib/models/hospital-simple-item-model.d.ts.map +1 -1
  33. package/lib/models/index.d.ts +9 -0
  34. package/lib/models/index.d.ts.map +1 -1
  35. package/lib/models/index.js +9 -0
  36. package/lib/models/user-favorite-deal-item-model.d.ts +159 -0
  37. package/lib/models/user-favorite-deal-item-model.d.ts.map +1 -0
  38. package/lib/models/user-favorite-deal-item-model.js +15 -0
  39. package/lib/models/user-favorite-deals-model.d.ts +33 -0
  40. package/lib/models/user-favorite-deals-model.d.ts.map +1 -0
  41. package/lib/models/user-favorite-deals-model.js +15 -0
  42. package/lib/models/user-favorite-doctor-affiliation-item-model.d.ts +124 -0
  43. package/lib/models/user-favorite-doctor-affiliation-item-model.d.ts.map +1 -0
  44. package/lib/models/user-favorite-doctor-affiliation-item-model.js +15 -0
  45. package/lib/models/user-favorite-doctor-affiliations-model.d.ts +33 -0
  46. package/lib/models/user-favorite-doctor-affiliations-model.d.ts.map +1 -0
  47. package/lib/models/user-favorite-doctor-affiliations-model.js +15 -0
  48. package/lib/models/user-favorite-hospital-item-model.d.ts +114 -0
  49. package/lib/models/user-favorite-hospital-item-model.d.ts.map +1 -0
  50. package/lib/models/user-favorite-hospital-item-model.js +15 -0
  51. package/lib/models/user-favorite-hospitals-model.d.ts +33 -0
  52. package/lib/models/user-favorite-hospitals-model.d.ts.map +1 -0
  53. package/lib/models/user-favorite-hospitals-model.js +15 -0
  54. package/lib/models/user-favorite-model.d.ts +43 -0
  55. package/lib/models/user-favorite-model.d.ts.map +1 -0
  56. package/lib/models/user-favorite-model.js +15 -0
  57. package/package.json +1 -1
@@ -0,0 +1,159 @@
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 { DealPackageMappingModel } from './deal-package-mapping-model';
13
+ import { LocationModel } from './location-model';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface UserFavoriteDealItemModel
18
+ */
19
+ export interface UserFavoriteDealItemModel {
20
+ /**
21
+ *
22
+ * @type {string}
23
+ * @memberof UserFavoriteDealItemModel
24
+ */
25
+ 'id'?: string;
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof UserFavoriteDealItemModel
30
+ */
31
+ 'languageCode'?: string | null;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof UserFavoriteDealItemModel
36
+ */
37
+ 'photo'?: string | null;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof UserFavoriteDealItemModel
42
+ */
43
+ 'photoThumbnail'?: string | null;
44
+ /**
45
+ *
46
+ * @type {Array<DealPackageMappingModel>}
47
+ * @memberof UserFavoriteDealItemModel
48
+ */
49
+ 'dealPackages'?: Array<DealPackageMappingModel> | null;
50
+ /**
51
+ *
52
+ * @type {number}
53
+ * @memberof UserFavoriteDealItemModel
54
+ */
55
+ 'dealPackagesCount'?: number;
56
+ /**
57
+ *
58
+ * @type {number}
59
+ * @memberof UserFavoriteDealItemModel
60
+ */
61
+ 'lowestPrice'?: number;
62
+ /**
63
+ *
64
+ * @type {number}
65
+ * @memberof UserFavoriteDealItemModel
66
+ */
67
+ 'highestPrice'?: number;
68
+ /**
69
+ *
70
+ * @type {string}
71
+ * @memberof UserFavoriteDealItemModel
72
+ */
73
+ 'name'?: string | null;
74
+ /**
75
+ *
76
+ * @type {string}
77
+ * @memberof UserFavoriteDealItemModel
78
+ */
79
+ 'slug'?: string | null;
80
+ /**
81
+ *
82
+ * @type {string}
83
+ * @memberof UserFavoriteDealItemModel
84
+ */
85
+ 'description'?: string | null;
86
+ /**
87
+ *
88
+ * @type {boolean}
89
+ * @memberof UserFavoriteDealItemModel
90
+ */
91
+ 'confirmed'?: boolean;
92
+ /**
93
+ *
94
+ * @type {string}
95
+ * @memberof UserFavoriteDealItemModel
96
+ */
97
+ 'hospitalId'?: string;
98
+ /**
99
+ *
100
+ * @type {string}
101
+ * @memberof UserFavoriteDealItemModel
102
+ */
103
+ 'hospitalName'?: string | null;
104
+ /**
105
+ *
106
+ * @type {string}
107
+ * @memberof UserFavoriteDealItemModel
108
+ */
109
+ 'hospitalSlug'?: string | null;
110
+ /**
111
+ *
112
+ * @type {string}
113
+ * @memberof UserFavoriteDealItemModel
114
+ */
115
+ 'hospitalLogo'?: string | null;
116
+ /**
117
+ *
118
+ * @type {number}
119
+ * @memberof UserFavoriteDealItemModel
120
+ */
121
+ 'hospitalBedsCount'?: number | null;
122
+ /**
123
+ *
124
+ * @type {number}
125
+ * @memberof UserFavoriteDealItemModel
126
+ */
127
+ 'hospitalOperationsPerYear'?: number | null;
128
+ /**
129
+ *
130
+ * @type {number}
131
+ * @memberof UserFavoriteDealItemModel
132
+ */
133
+ 'hospitalFoundationYear'?: number | null;
134
+ /**
135
+ *
136
+ * @type {number}
137
+ * @memberof UserFavoriteDealItemModel
138
+ */
139
+ 'hospitalMedicalStaffCount'?: number | null;
140
+ /**
141
+ *
142
+ * @type {number}
143
+ * @memberof UserFavoriteDealItemModel
144
+ */
145
+ 'hospitalDoctorCount'?: number | null;
146
+ /**
147
+ *
148
+ * @type {string}
149
+ * @memberof UserFavoriteDealItemModel
150
+ */
151
+ 'hospitalWebsiteUrl'?: string | null;
152
+ /**
153
+ *
154
+ * @type {LocationModel}
155
+ * @memberof UserFavoriteDealItemModel
156
+ */
157
+ 'hospitalLocation'?: LocationModel;
158
+ }
159
+ //# sourceMappingURL=user-favorite-deal-item-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user-favorite-deal-item-model.d.ts","sourceRoot":"","sources":["../../src/models/user-favorite-deal-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AAGvE,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD;;;;GAIG;AACH,MAAM,WAAW,yBAAyB;IACtC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC;IACvD;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,2BAA2B,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5C;;;;OAIG;IACH,wBAAwB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzC;;;;OAIG;IACH,2BAA2B,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5C;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,aAAa,CAAC;CACtC"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * CloudHospital Api
6
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 2
9
+ * Contact: developer@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,33 @@
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 { PagedListMetaData } from './paged-list-meta-data';
13
+ import { UserFavoriteDealItemModel } from './user-favorite-deal-item-model';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface UserFavoriteDealsModel
18
+ */
19
+ export interface UserFavoriteDealsModel {
20
+ /**
21
+ *
22
+ * @type {Array<UserFavoriteDealItemModel>}
23
+ * @memberof UserFavoriteDealsModel
24
+ */
25
+ 'items'?: Array<UserFavoriteDealItemModel> | null;
26
+ /**
27
+ *
28
+ * @type {PagedListMetaData}
29
+ * @memberof UserFavoriteDealsModel
30
+ */
31
+ 'metaData'?: PagedListMetaData;
32
+ }
33
+ //# sourceMappingURL=user-favorite-deals-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user-favorite-deals-model.d.ts","sourceRoot":"","sources":["../../src/models/user-favorite-deals-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAG3D,OAAO,EAAE,yBAAyB,EAAE,MAAM,iCAAiC,CAAC;AAE5E;;;;GAIG;AACH,MAAM,WAAW,sBAAsB;IACnC;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC;IAClD;;;;OAIG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAC;CAClC"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * CloudHospital Api
6
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 2
9
+ * Contact: developer@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,124 @@
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 { DoctorPrefix } from './doctor-prefix';
13
+ import { DoctorSpecialtyItemModel } from './doctor-specialty-item-model';
14
+ import { FeatureModel } from './feature-model';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface UserFavoriteDoctorAffiliationItemModel
19
+ */
20
+ export interface UserFavoriteDoctorAffiliationItemModel {
21
+ /**
22
+ *
23
+ * @type {string}
24
+ * @memberof UserFavoriteDoctorAffiliationItemModel
25
+ */
26
+ 'id'?: string;
27
+ /**
28
+ *
29
+ * @type {string}
30
+ * @memberof UserFavoriteDoctorAffiliationItemModel
31
+ */
32
+ 'languageCode'?: string | null;
33
+ /**
34
+ *
35
+ * @type {DoctorPrefix}
36
+ * @memberof UserFavoriteDoctorAffiliationItemModel
37
+ */
38
+ 'prefix'?: DoctorPrefix;
39
+ /**
40
+ *
41
+ * @type {string}
42
+ * @memberof UserFavoriteDoctorAffiliationItemModel
43
+ */
44
+ 'photo'?: string | null;
45
+ /**
46
+ *
47
+ * @type {string}
48
+ * @memberof UserFavoriteDoctorAffiliationItemModel
49
+ */
50
+ 'photoThumbnail'?: string | null;
51
+ /**
52
+ *
53
+ * @type {number}
54
+ * @memberof UserFavoriteDoctorAffiliationItemModel
55
+ */
56
+ 'order'?: number;
57
+ /**
58
+ *
59
+ * @type {string}
60
+ * @memberof UserFavoriteDoctorAffiliationItemModel
61
+ */
62
+ 'name'?: string | null;
63
+ /**
64
+ *
65
+ * @type {string}
66
+ * @memberof UserFavoriteDoctorAffiliationItemModel
67
+ */
68
+ 'slug'?: string | null;
69
+ /**
70
+ *
71
+ * @type {string}
72
+ * @memberof UserFavoriteDoctorAffiliationItemModel
73
+ */
74
+ 'jobTitle'?: string | null;
75
+ /**
76
+ *
77
+ * @type {string}
78
+ * @memberof UserFavoriteDoctorAffiliationItemModel
79
+ */
80
+ 'jobPosition'?: string | null;
81
+ /**
82
+ *
83
+ * @type {boolean}
84
+ * @memberof UserFavoriteDoctorAffiliationItemModel
85
+ */
86
+ 'confirmed'?: boolean;
87
+ /**
88
+ *
89
+ * @type {string}
90
+ * @memberof UserFavoriteDoctorAffiliationItemModel
91
+ */
92
+ 'hospitalId'?: string;
93
+ /**
94
+ *
95
+ * @type {string}
96
+ * @memberof UserFavoriteDoctorAffiliationItemModel
97
+ */
98
+ 'hospitalName'?: string | null;
99
+ /**
100
+ *
101
+ * @type {string}
102
+ * @memberof UserFavoriteDoctorAffiliationItemModel
103
+ */
104
+ 'hospitalSlug'?: string | null;
105
+ /**
106
+ *
107
+ * @type {Array<DoctorSpecialtyItemModel>}
108
+ * @memberof UserFavoriteDoctorAffiliationItemModel
109
+ */
110
+ 'specialties'?: Array<DoctorSpecialtyItemModel> | null;
111
+ /**
112
+ *
113
+ * @type {string}
114
+ * @memberof UserFavoriteDoctorAffiliationItemModel
115
+ */
116
+ 'specialtiesSummarized'?: string | null;
117
+ /**
118
+ *
119
+ * @type {FeatureModel}
120
+ * @memberof UserFavoriteDoctorAffiliationItemModel
121
+ */
122
+ 'feature'?: FeatureModel;
123
+ }
124
+ //# sourceMappingURL=user-favorite-doctor-affiliation-item-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user-favorite-doctor-affiliation-item-model.d.ts","sourceRoot":"","sources":["../../src/models/user-favorite-doctor-affiliation-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAG/C,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AAGzE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAE/C;;;;GAIG;AACH,MAAM,WAAW,sCAAsC;IACnD;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,YAAY,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC;IACvD;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxC;;;;OAIG;IACH,SAAS,CAAC,EAAE,YAAY,CAAC;CAC5B"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * CloudHospital Api
6
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 2
9
+ * Contact: developer@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,33 @@
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 { PagedListMetaData } from './paged-list-meta-data';
13
+ import { UserFavoriteDoctorAffiliationItemModel } from './user-favorite-doctor-affiliation-item-model';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface UserFavoriteDoctorAffiliationsModel
18
+ */
19
+ export interface UserFavoriteDoctorAffiliationsModel {
20
+ /**
21
+ *
22
+ * @type {Array<UserFavoriteDoctorAffiliationItemModel>}
23
+ * @memberof UserFavoriteDoctorAffiliationsModel
24
+ */
25
+ 'items'?: Array<UserFavoriteDoctorAffiliationItemModel> | null;
26
+ /**
27
+ *
28
+ * @type {PagedListMetaData}
29
+ * @memberof UserFavoriteDoctorAffiliationsModel
30
+ */
31
+ 'metaData'?: PagedListMetaData;
32
+ }
33
+ //# sourceMappingURL=user-favorite-doctor-affiliations-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user-favorite-doctor-affiliations-model.d.ts","sourceRoot":"","sources":["../../src/models/user-favorite-doctor-affiliations-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAG3D,OAAO,EAAE,sCAAsC,EAAE,MAAM,+CAA+C,CAAC;AAEvG;;;;GAIG;AACH,MAAM,WAAW,mCAAmC;IAChD;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,sCAAsC,CAAC,GAAG,IAAI,CAAC;IAC/D;;;;OAIG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAC;CAClC"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * CloudHospital Api
6
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 2
9
+ * Contact: developer@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,114 @@
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 { FeatureModel } from './feature-model';
13
+ import { HospitalAccreditationItemModel } from './hospital-accreditation-item-model';
14
+ import { HospitalRatingItemModel } from './hospital-rating-item-model';
15
+ import { HospitalSpecialtySimpleItemModel } from './hospital-specialty-simple-item-model';
16
+ import { MediaModel } from './media-model';
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface UserFavoriteHospitalItemModel
21
+ */
22
+ export interface UserFavoriteHospitalItemModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof UserFavoriteHospitalItemModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof UserFavoriteHospitalItemModel
33
+ */
34
+ 'languageCode'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof UserFavoriteHospitalItemModel
39
+ */
40
+ 'name'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof UserFavoriteHospitalItemModel
45
+ */
46
+ 'slug'?: string | null;
47
+ /**
48
+ *
49
+ * @type {boolean}
50
+ * @memberof UserFavoriteHospitalItemModel
51
+ */
52
+ 'confirmed'?: boolean;
53
+ /**
54
+ *
55
+ * @type {boolean}
56
+ * @memberof UserFavoriteHospitalItemModel
57
+ */
58
+ 'isCertified'?: boolean;
59
+ /**
60
+ *
61
+ * @type {Array<HospitalAccreditationItemModel>}
62
+ * @memberof UserFavoriteHospitalItemModel
63
+ */
64
+ 'accreditations'?: Array<HospitalAccreditationItemModel> | null;
65
+ /**
66
+ *
67
+ * @type {Array<MediaModel>}
68
+ * @memberof UserFavoriteHospitalItemModel
69
+ */
70
+ 'medias'?: Array<MediaModel> | null;
71
+ /**
72
+ *
73
+ * @type {Array<HospitalRatingItemModel>}
74
+ * @memberof UserFavoriteHospitalItemModel
75
+ */
76
+ 'hospitalRatings'?: Array<HospitalRatingItemModel> | null;
77
+ /**
78
+ *
79
+ * @type {FeatureModel}
80
+ * @memberof UserFavoriteHospitalItemModel
81
+ */
82
+ 'feature'?: FeatureModel;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof UserFavoriteHospitalItemModel
87
+ */
88
+ 'specialtiesSummarized'?: string | null;
89
+ /**
90
+ *
91
+ * @type {Array<HospitalSpecialtySimpleItemModel>}
92
+ * @memberof UserFavoriteHospitalItemModel
93
+ */
94
+ 'specialties'?: Array<HospitalSpecialtySimpleItemModel> | null;
95
+ /**
96
+ *
97
+ * @type {string}
98
+ * @memberof UserFavoriteHospitalItemModel
99
+ */
100
+ 'logo'?: string | null;
101
+ /**
102
+ *
103
+ * @type {string}
104
+ * @memberof UserFavoriteHospitalItemModel
105
+ */
106
+ 'logoTransparent'?: string | null;
107
+ /**
108
+ *
109
+ * @type {string}
110
+ * @memberof UserFavoriteHospitalItemModel
111
+ */
112
+ 'logoWhite'?: string | null;
113
+ }
114
+ //# sourceMappingURL=user-favorite-hospital-item-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user-favorite-hospital-item-model.d.ts","sourceRoot":"","sources":["../../src/models/user-favorite-hospital-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAG/C,OAAO,EAAE,8BAA8B,EAAE,MAAM,qCAAqC,CAAC;AAGrF,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AAGvE,OAAO,EAAE,gCAAgC,EAAE,MAAM,wCAAwC,CAAC;AAG1F,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC1C;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,KAAK,CAAC,8BAA8B,CAAC,GAAG,IAAI,CAAC;IAChE;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,KAAK,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC;IAC1D;;;;OAIG;IACH,SAAS,CAAC,EAAE,YAAY,CAAC;IACzB;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxC;;;;OAIG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,gCAAgC,CAAC,GAAG,IAAI,CAAC;IAC/D;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC/B"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * CloudHospital Api
6
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 2
9
+ * Contact: developer@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,33 @@
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 { PagedListMetaData } from './paged-list-meta-data';
13
+ import { UserFavoriteHospitalItemModel } from './user-favorite-hospital-item-model';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface UserFavoriteHospitalsModel
18
+ */
19
+ export interface UserFavoriteHospitalsModel {
20
+ /**
21
+ *
22
+ * @type {Array<UserFavoriteHospitalItemModel>}
23
+ * @memberof UserFavoriteHospitalsModel
24
+ */
25
+ 'items'?: Array<UserFavoriteHospitalItemModel> | null;
26
+ /**
27
+ *
28
+ * @type {PagedListMetaData}
29
+ * @memberof UserFavoriteHospitalsModel
30
+ */
31
+ 'metaData'?: PagedListMetaData;
32
+ }
33
+ //# sourceMappingURL=user-favorite-hospitals-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user-favorite-hospitals-model.d.ts","sourceRoot":"","sources":["../../src/models/user-favorite-hospitals-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAG3D,OAAO,EAAE,6BAA6B,EAAE,MAAM,qCAAqC,CAAC;AAEpF;;;;GAIG;AACH,MAAM,WAAW,0BAA0B;IACvC;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,6BAA6B,CAAC,GAAG,IAAI,CAAC;IACtD;;;;OAIG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAC;CAClC"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * CloudHospital Api
6
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 2
9
+ * Contact: developer@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,43 @@
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
+ /**
13
+ *
14
+ * @export
15
+ * @interface UserFavoriteModel
16
+ */
17
+ export interface UserFavoriteModel {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UserFavoriteModel
22
+ */
23
+ 'userId'?: string;
24
+ /**
25
+ *
26
+ * @type {Array<string>}
27
+ * @memberof UserFavoriteModel
28
+ */
29
+ 'favoriteHospitals'?: Array<string> | null;
30
+ /**
31
+ *
32
+ * @type {Array<string>}
33
+ * @memberof UserFavoriteModel
34
+ */
35
+ 'favoriteDoctorAffiliations'?: Array<string> | null;
36
+ /**
37
+ *
38
+ * @type {Array<string>}
39
+ * @memberof UserFavoriteModel
40
+ */
41
+ 'favoriteDeals'?: Array<string> | null;
42
+ }
43
+ //# sourceMappingURL=user-favorite-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user-favorite-model.d.ts","sourceRoot":"","sources":["../../src/models/user-favorite-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAC3C;;;;OAIG;IACH,4BAA4B,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IACpD;;;;OAIG;IACH,eAAe,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CAC1C"}