ch-api-client-typescript2 2.8.20 → 2.9.3
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.d.ts +542 -8
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +418 -16
- package/package.json +1 -1
- package/src/api.ts +836 -119
package/lib/api.d.ts
CHANGED
|
@@ -93,6 +93,73 @@ export interface AccreditationsModel {
|
|
|
93
93
|
*/
|
|
94
94
|
'metaData'?: PagedListMetaData;
|
|
95
95
|
}
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
* @export
|
|
99
|
+
* @interface AdminMessageModel
|
|
100
|
+
*/
|
|
101
|
+
export interface AdminMessageModel {
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @type {number}
|
|
105
|
+
* @memberof AdminMessageModel
|
|
106
|
+
*/
|
|
107
|
+
'message_id'?: number;
|
|
108
|
+
/**
|
|
109
|
+
*
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof AdminMessageModel
|
|
112
|
+
*/
|
|
113
|
+
'type'?: string | null;
|
|
114
|
+
/**
|
|
115
|
+
*
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof AdminMessageModel
|
|
118
|
+
*/
|
|
119
|
+
'custom_type'?: string | null;
|
|
120
|
+
/**
|
|
121
|
+
*
|
|
122
|
+
* @type {string}
|
|
123
|
+
* @memberof AdminMessageModel
|
|
124
|
+
*/
|
|
125
|
+
'channel_url'?: string | null;
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
* @type {string}
|
|
129
|
+
* @memberof AdminMessageModel
|
|
130
|
+
*/
|
|
131
|
+
'mention_type'?: string | null;
|
|
132
|
+
/**
|
|
133
|
+
*
|
|
134
|
+
* @type {boolean}
|
|
135
|
+
* @memberof AdminMessageModel
|
|
136
|
+
*/
|
|
137
|
+
'is_removed'?: boolean;
|
|
138
|
+
/**
|
|
139
|
+
*
|
|
140
|
+
* @type {string}
|
|
141
|
+
* @memberof AdminMessageModel
|
|
142
|
+
*/
|
|
143
|
+
'message'?: string | null;
|
|
144
|
+
/**
|
|
145
|
+
*
|
|
146
|
+
* @type {string}
|
|
147
|
+
* @memberof AdminMessageModel
|
|
148
|
+
*/
|
|
149
|
+
'data'?: string | null;
|
|
150
|
+
/**
|
|
151
|
+
*
|
|
152
|
+
* @type {number}
|
|
153
|
+
* @memberof AdminMessageModel
|
|
154
|
+
*/
|
|
155
|
+
'created_at'?: number;
|
|
156
|
+
/**
|
|
157
|
+
*
|
|
158
|
+
* @type {number}
|
|
159
|
+
* @memberof AdminMessageModel
|
|
160
|
+
*/
|
|
161
|
+
'updated_at'?: number;
|
|
162
|
+
}
|
|
96
163
|
/**
|
|
97
164
|
*
|
|
98
165
|
* @export
|
|
@@ -1049,6 +1116,18 @@ export interface BookingItemModel {
|
|
|
1049
1116
|
* @memberof BookingItemModel
|
|
1050
1117
|
*/
|
|
1051
1118
|
'timeZone'?: string | null;
|
|
1119
|
+
/**
|
|
1120
|
+
*
|
|
1121
|
+
* @type {Date}
|
|
1122
|
+
* @memberof BookingItemModel
|
|
1123
|
+
*/
|
|
1124
|
+
'requestDate'?: Date;
|
|
1125
|
+
/**
|
|
1126
|
+
*
|
|
1127
|
+
* @type {string}
|
|
1128
|
+
* @memberof BookingItemModel
|
|
1129
|
+
*/
|
|
1130
|
+
'incomeDomain'?: string | null;
|
|
1052
1131
|
/**
|
|
1053
1132
|
*
|
|
1054
1133
|
* @type {BookingStatus}
|
|
@@ -1254,6 +1333,18 @@ export interface BookingModel {
|
|
|
1254
1333
|
* @memberof BookingModel
|
|
1255
1334
|
*/
|
|
1256
1335
|
'timeZone'?: string | null;
|
|
1336
|
+
/**
|
|
1337
|
+
*
|
|
1338
|
+
* @type {Date}
|
|
1339
|
+
* @memberof BookingModel
|
|
1340
|
+
*/
|
|
1341
|
+
'requestDate'?: Date;
|
|
1342
|
+
/**
|
|
1343
|
+
*
|
|
1344
|
+
* @type {string}
|
|
1345
|
+
* @memberof BookingModel
|
|
1346
|
+
*/
|
|
1347
|
+
'incomeDomain'?: string | null;
|
|
1257
1348
|
/**
|
|
1258
1349
|
*
|
|
1259
1350
|
* @type {BookingStatus}
|
|
@@ -1745,6 +1836,18 @@ export interface ConsultationItemModel {
|
|
|
1745
1836
|
* @memberof ConsultationItemModel
|
|
1746
1837
|
*/
|
|
1747
1838
|
'timeZone'?: string | null;
|
|
1839
|
+
/**
|
|
1840
|
+
*
|
|
1841
|
+
* @type {Date}
|
|
1842
|
+
* @memberof ConsultationItemModel
|
|
1843
|
+
*/
|
|
1844
|
+
'requestDate'?: Date;
|
|
1845
|
+
/**
|
|
1846
|
+
*
|
|
1847
|
+
* @type {string}
|
|
1848
|
+
* @memberof ConsultationItemModel
|
|
1849
|
+
*/
|
|
1850
|
+
'incomeDomain'?: string | null;
|
|
1748
1851
|
/**
|
|
1749
1852
|
*
|
|
1750
1853
|
* @type {ConsultationStatus}
|
|
@@ -2010,6 +2113,18 @@ export interface ConsultationModel {
|
|
|
2010
2113
|
* @memberof ConsultationModel
|
|
2011
2114
|
*/
|
|
2012
2115
|
'timeZone'?: string | null;
|
|
2116
|
+
/**
|
|
2117
|
+
*
|
|
2118
|
+
* @type {Date}
|
|
2119
|
+
* @memberof ConsultationModel
|
|
2120
|
+
*/
|
|
2121
|
+
'requestDate'?: Date;
|
|
2122
|
+
/**
|
|
2123
|
+
*
|
|
2124
|
+
* @type {string}
|
|
2125
|
+
* @memberof ConsultationModel
|
|
2126
|
+
*/
|
|
2127
|
+
'incomeDomain'?: string | null;
|
|
2013
2128
|
/**
|
|
2014
2129
|
*
|
|
2015
2130
|
* @type {ConsultationStatus}
|
|
@@ -6729,6 +6844,19 @@ export interface HospitalsSimpleModel {
|
|
|
6729
6844
|
*/
|
|
6730
6845
|
'metaData'?: PagedListMetaData;
|
|
6731
6846
|
}
|
|
6847
|
+
/**
|
|
6848
|
+
*
|
|
6849
|
+
* @export
|
|
6850
|
+
* @interface InviteSendBirdGroupChannelCommand
|
|
6851
|
+
*/
|
|
6852
|
+
export interface InviteSendBirdGroupChannelCommand {
|
|
6853
|
+
/**
|
|
6854
|
+
*
|
|
6855
|
+
* @type {Array<string>}
|
|
6856
|
+
* @memberof InviteSendBirdGroupChannelCommand
|
|
6857
|
+
*/
|
|
6858
|
+
'user_ids'?: Array<string> | null;
|
|
6859
|
+
}
|
|
6732
6860
|
/**
|
|
6733
6861
|
*
|
|
6734
6862
|
* @export
|
|
@@ -7191,6 +7319,31 @@ export interface MembershipsModel {
|
|
|
7191
7319
|
*/
|
|
7192
7320
|
'metaData'?: PagedListMetaData;
|
|
7193
7321
|
}
|
|
7322
|
+
/**
|
|
7323
|
+
*
|
|
7324
|
+
* @export
|
|
7325
|
+
* @interface Metadata
|
|
7326
|
+
*/
|
|
7327
|
+
export interface Metadata {
|
|
7328
|
+
/**
|
|
7329
|
+
*
|
|
7330
|
+
* @type {string}
|
|
7331
|
+
* @memberof Metadata
|
|
7332
|
+
*/
|
|
7333
|
+
'location'?: string | null;
|
|
7334
|
+
/**
|
|
7335
|
+
*
|
|
7336
|
+
* @type {string}
|
|
7337
|
+
* @memberof Metadata
|
|
7338
|
+
*/
|
|
7339
|
+
'marriage'?: string | null;
|
|
7340
|
+
/**
|
|
7341
|
+
*
|
|
7342
|
+
* @type {string}
|
|
7343
|
+
* @memberof Metadata
|
|
7344
|
+
*/
|
|
7345
|
+
'hasSomeone'?: string | null;
|
|
7346
|
+
}
|
|
7194
7347
|
/**
|
|
7195
7348
|
*
|
|
7196
7349
|
* @export
|
|
@@ -7857,6 +8010,225 @@ export declare enum ReviewType {
|
|
|
7857
8010
|
SurgeryReview = "SurgeryReview",
|
|
7858
8011
|
RealStory = "RealStory"
|
|
7859
8012
|
}
|
|
8013
|
+
/**
|
|
8014
|
+
*
|
|
8015
|
+
* @export
|
|
8016
|
+
* @interface SendBirdGroupChannelMember
|
|
8017
|
+
*/
|
|
8018
|
+
export interface SendBirdGroupChannelMember {
|
|
8019
|
+
/**
|
|
8020
|
+
*
|
|
8021
|
+
* @type {string}
|
|
8022
|
+
* @memberof SendBirdGroupChannelMember
|
|
8023
|
+
*/
|
|
8024
|
+
'user_id'?: string | null;
|
|
8025
|
+
/**
|
|
8026
|
+
*
|
|
8027
|
+
* @type {string}
|
|
8028
|
+
* @memberof SendBirdGroupChannelMember
|
|
8029
|
+
*/
|
|
8030
|
+
'nickname'?: string | null;
|
|
8031
|
+
/**
|
|
8032
|
+
*
|
|
8033
|
+
* @type {string}
|
|
8034
|
+
* @memberof SendBirdGroupChannelMember
|
|
8035
|
+
*/
|
|
8036
|
+
'profile_url'?: string | null;
|
|
8037
|
+
/**
|
|
8038
|
+
*
|
|
8039
|
+
* @type {boolean}
|
|
8040
|
+
* @memberof SendBirdGroupChannelMember
|
|
8041
|
+
*/
|
|
8042
|
+
'is_active'?: boolean;
|
|
8043
|
+
/**
|
|
8044
|
+
*
|
|
8045
|
+
* @type {boolean}
|
|
8046
|
+
* @memberof SendBirdGroupChannelMember
|
|
8047
|
+
*/
|
|
8048
|
+
'is_online'?: boolean;
|
|
8049
|
+
/**
|
|
8050
|
+
*
|
|
8051
|
+
* @type {Array<string>}
|
|
8052
|
+
* @memberof SendBirdGroupChannelMember
|
|
8053
|
+
*/
|
|
8054
|
+
'friend_discovery_key'?: Array<string> | null;
|
|
8055
|
+
/**
|
|
8056
|
+
*
|
|
8057
|
+
* @type {number}
|
|
8058
|
+
* @memberof SendBirdGroupChannelMember
|
|
8059
|
+
*/
|
|
8060
|
+
'last_seen_at'?: number;
|
|
8061
|
+
/**
|
|
8062
|
+
*
|
|
8063
|
+
* @type {string}
|
|
8064
|
+
* @memberof SendBirdGroupChannelMember
|
|
8065
|
+
*/
|
|
8066
|
+
'state'?: string | null;
|
|
8067
|
+
/**
|
|
8068
|
+
*
|
|
8069
|
+
* @type {string}
|
|
8070
|
+
* @memberof SendBirdGroupChannelMember
|
|
8071
|
+
*/
|
|
8072
|
+
'role'?: string | null;
|
|
8073
|
+
/**
|
|
8074
|
+
*
|
|
8075
|
+
* @type {Metadata}
|
|
8076
|
+
* @memberof SendBirdGroupChannelMember
|
|
8077
|
+
*/
|
|
8078
|
+
'metadata'?: Metadata;
|
|
8079
|
+
}
|
|
8080
|
+
/**
|
|
8081
|
+
*
|
|
8082
|
+
* @export
|
|
8083
|
+
* @interface SendBirdGroupChannelModel
|
|
8084
|
+
*/
|
|
8085
|
+
export interface SendBirdGroupChannelModel {
|
|
8086
|
+
/**
|
|
8087
|
+
*
|
|
8088
|
+
* @type {string}
|
|
8089
|
+
* @memberof SendBirdGroupChannelModel
|
|
8090
|
+
*/
|
|
8091
|
+
'name'?: string | null;
|
|
8092
|
+
/**
|
|
8093
|
+
*
|
|
8094
|
+
* @type {string}
|
|
8095
|
+
* @memberof SendBirdGroupChannelModel
|
|
8096
|
+
*/
|
|
8097
|
+
'channel_url'?: string | null;
|
|
8098
|
+
/**
|
|
8099
|
+
*
|
|
8100
|
+
* @type {string}
|
|
8101
|
+
* @memberof SendBirdGroupChannelModel
|
|
8102
|
+
*/
|
|
8103
|
+
'cover_url'?: string | null;
|
|
8104
|
+
/**
|
|
8105
|
+
*
|
|
8106
|
+
* @type {string}
|
|
8107
|
+
* @memberof SendBirdGroupChannelModel
|
|
8108
|
+
*/
|
|
8109
|
+
'custom_type'?: string | null;
|
|
8110
|
+
/**
|
|
8111
|
+
*
|
|
8112
|
+
* @type {number}
|
|
8113
|
+
* @memberof SendBirdGroupChannelModel
|
|
8114
|
+
*/
|
|
8115
|
+
'unread_message_count'?: number;
|
|
8116
|
+
/**
|
|
8117
|
+
*
|
|
8118
|
+
* @type {string}
|
|
8119
|
+
* @memberof SendBirdGroupChannelModel
|
|
8120
|
+
*/
|
|
8121
|
+
'data'?: string | null;
|
|
8122
|
+
/**
|
|
8123
|
+
*
|
|
8124
|
+
* @type {boolean}
|
|
8125
|
+
* @memberof SendBirdGroupChannelModel
|
|
8126
|
+
*/
|
|
8127
|
+
'is_distinct'?: boolean;
|
|
8128
|
+
/**
|
|
8129
|
+
*
|
|
8130
|
+
* @type {boolean}
|
|
8131
|
+
* @memberof SendBirdGroupChannelModel
|
|
8132
|
+
*/
|
|
8133
|
+
'is_public'?: boolean;
|
|
8134
|
+
/**
|
|
8135
|
+
*
|
|
8136
|
+
* @type {boolean}
|
|
8137
|
+
* @memberof SendBirdGroupChannelModel
|
|
8138
|
+
*/
|
|
8139
|
+
'is_super'?: boolean;
|
|
8140
|
+
/**
|
|
8141
|
+
*
|
|
8142
|
+
* @type {boolean}
|
|
8143
|
+
* @memberof SendBirdGroupChannelModel
|
|
8144
|
+
*/
|
|
8145
|
+
'is_ephemeral'?: boolean;
|
|
8146
|
+
/**
|
|
8147
|
+
*
|
|
8148
|
+
* @type {boolean}
|
|
8149
|
+
* @memberof SendBirdGroupChannelModel
|
|
8150
|
+
*/
|
|
8151
|
+
'is_access_code_required'?: boolean;
|
|
8152
|
+
/**
|
|
8153
|
+
*
|
|
8154
|
+
* @type {string}
|
|
8155
|
+
* @memberof SendBirdGroupChannelModel
|
|
8156
|
+
*/
|
|
8157
|
+
'hidden_state'?: string | null;
|
|
8158
|
+
/**
|
|
8159
|
+
*
|
|
8160
|
+
* @type {number}
|
|
8161
|
+
* @memberof SendBirdGroupChannelModel
|
|
8162
|
+
*/
|
|
8163
|
+
'member_count'?: number;
|
|
8164
|
+
/**
|
|
8165
|
+
*
|
|
8166
|
+
* @type {number}
|
|
8167
|
+
* @memberof SendBirdGroupChannelModel
|
|
8168
|
+
*/
|
|
8169
|
+
'joined_member_count'?: number;
|
|
8170
|
+
/**
|
|
8171
|
+
*
|
|
8172
|
+
* @type {Array<SendBirdGroupChannelMember>}
|
|
8173
|
+
* @memberof SendBirdGroupChannelModel
|
|
8174
|
+
*/
|
|
8175
|
+
'members'?: Array<SendBirdGroupChannelMember> | null;
|
|
8176
|
+
/**
|
|
8177
|
+
*
|
|
8178
|
+
* @type {Array<SendBirdGroupChannelrOperator>}
|
|
8179
|
+
* @memberof SendBirdGroupChannelModel
|
|
8180
|
+
*/
|
|
8181
|
+
'operators'?: Array<SendBirdGroupChannelrOperator> | null;
|
|
8182
|
+
/**
|
|
8183
|
+
*
|
|
8184
|
+
* @type {number}
|
|
8185
|
+
* @memberof SendBirdGroupChannelModel
|
|
8186
|
+
*/
|
|
8187
|
+
'max_length_message'?: number;
|
|
8188
|
+
/**
|
|
8189
|
+
*
|
|
8190
|
+
* @type {AdminMessageModel}
|
|
8191
|
+
* @memberof SendBirdGroupChannelModel
|
|
8192
|
+
*/
|
|
8193
|
+
'last_message'?: AdminMessageModel;
|
|
8194
|
+
/**
|
|
8195
|
+
*
|
|
8196
|
+
* @type {number}
|
|
8197
|
+
* @memberof SendBirdGroupChannelModel
|
|
8198
|
+
*/
|
|
8199
|
+
'created_at'?: number;
|
|
8200
|
+
/**
|
|
8201
|
+
*
|
|
8202
|
+
* @type {boolean}
|
|
8203
|
+
* @memberof SendBirdGroupChannelModel
|
|
8204
|
+
*/
|
|
8205
|
+
'freeze'?: boolean;
|
|
8206
|
+
}
|
|
8207
|
+
/**
|
|
8208
|
+
*
|
|
8209
|
+
* @export
|
|
8210
|
+
* @interface SendBirdGroupChannelrOperator
|
|
8211
|
+
*/
|
|
8212
|
+
export interface SendBirdGroupChannelrOperator {
|
|
8213
|
+
/**
|
|
8214
|
+
*
|
|
8215
|
+
* @type {string}
|
|
8216
|
+
* @memberof SendBirdGroupChannelrOperator
|
|
8217
|
+
*/
|
|
8218
|
+
'user_id'?: string | null;
|
|
8219
|
+
/**
|
|
8220
|
+
*
|
|
8221
|
+
* @type {string}
|
|
8222
|
+
* @memberof SendBirdGroupChannelrOperator
|
|
8223
|
+
*/
|
|
8224
|
+
'nickname'?: string | null;
|
|
8225
|
+
/**
|
|
8226
|
+
*
|
|
8227
|
+
* @type {string}
|
|
8228
|
+
* @memberof SendBirdGroupChannelrOperator
|
|
8229
|
+
*/
|
|
8230
|
+
'profile_url'?: string | null;
|
|
8231
|
+
}
|
|
7860
8232
|
/**
|
|
7861
8233
|
*
|
|
7862
8234
|
* @export
|
|
@@ -10103,13 +10475,14 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10103
10475
|
* @param {boolean} [isCompleted]
|
|
10104
10476
|
* @param {BookingStatus} [status]
|
|
10105
10477
|
* @param {string} [dealPackageId]
|
|
10478
|
+
* @param {string} [hospitalId]
|
|
10106
10479
|
* @param {number} [page]
|
|
10107
10480
|
* @param {number} [limit]
|
|
10108
10481
|
* @param {Date} [lastRetrieved]
|
|
10109
10482
|
* @param {*} [options] Override http request option.
|
|
10110
10483
|
* @throws {RequiredError}
|
|
10111
10484
|
*/
|
|
10112
|
-
apiV2BookingsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10485
|
+
apiV2BookingsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, hospitalId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10113
10486
|
/**
|
|
10114
10487
|
*
|
|
10115
10488
|
* @summary Create booking.
|
|
@@ -10200,13 +10573,14 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
10200
10573
|
* @param {boolean} [isCompleted]
|
|
10201
10574
|
* @param {BookingStatus} [status]
|
|
10202
10575
|
* @param {string} [dealPackageId]
|
|
10576
|
+
* @param {string} [hospitalId]
|
|
10203
10577
|
* @param {number} [page]
|
|
10204
10578
|
* @param {number} [limit]
|
|
10205
10579
|
* @param {Date} [lastRetrieved]
|
|
10206
10580
|
* @param {*} [options] Override http request option.
|
|
10207
10581
|
* @throws {RequiredError}
|
|
10208
10582
|
*/
|
|
10209
|
-
apiV2BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
|
|
10583
|
+
apiV2BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, hospitalId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
|
|
10210
10584
|
/**
|
|
10211
10585
|
*
|
|
10212
10586
|
* @summary Create booking.
|
|
@@ -10297,13 +10671,14 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
10297
10671
|
* @param {boolean} [isCompleted]
|
|
10298
10672
|
* @param {BookingStatus} [status]
|
|
10299
10673
|
* @param {string} [dealPackageId]
|
|
10674
|
+
* @param {string} [hospitalId]
|
|
10300
10675
|
* @param {number} [page]
|
|
10301
10676
|
* @param {number} [limit]
|
|
10302
10677
|
* @param {Date} [lastRetrieved]
|
|
10303
10678
|
* @param {*} [options] Override http request option.
|
|
10304
10679
|
* @throws {RequiredError}
|
|
10305
10680
|
*/
|
|
10306
|
-
apiV2BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<BookingsModel>;
|
|
10681
|
+
apiV2BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, hospitalId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<BookingsModel>;
|
|
10307
10682
|
/**
|
|
10308
10683
|
*
|
|
10309
10684
|
* @summary Create booking.
|
|
@@ -10404,6 +10779,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
10404
10779
|
* @param {boolean} [isCompleted]
|
|
10405
10780
|
* @param {BookingStatus} [status]
|
|
10406
10781
|
* @param {string} [dealPackageId]
|
|
10782
|
+
* @param {string} [hospitalId]
|
|
10407
10783
|
* @param {number} [page]
|
|
10408
10784
|
* @param {number} [limit]
|
|
10409
10785
|
* @param {Date} [lastRetrieved]
|
|
@@ -10411,7 +10787,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
10411
10787
|
* @throws {RequiredError}
|
|
10412
10788
|
* @memberof BookingsApi
|
|
10413
10789
|
*/
|
|
10414
|
-
apiV2BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel, any>>;
|
|
10790
|
+
apiV2BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, hospitalId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel, any>>;
|
|
10415
10791
|
/**
|
|
10416
10792
|
*
|
|
10417
10793
|
* @summary Create booking.
|
|
@@ -10844,13 +11220,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
10844
11220
|
* @param {boolean} [isCompleted]
|
|
10845
11221
|
* @param {ConsultationStatus} [status]
|
|
10846
11222
|
* @param {ConsultationType} [consultationType]
|
|
11223
|
+
* @param {string} [hospitalId]
|
|
10847
11224
|
* @param {number} [page]
|
|
10848
11225
|
* @param {number} [limit]
|
|
10849
11226
|
* @param {Date} [lastRetrieved]
|
|
10850
11227
|
* @param {*} [options] Override http request option.
|
|
10851
11228
|
* @throws {RequiredError}
|
|
10852
11229
|
*/
|
|
10853
|
-
apiV2ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11230
|
+
apiV2ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, hospitalId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10854
11231
|
/**
|
|
10855
11232
|
*
|
|
10856
11233
|
* @summary Create consultation.
|
|
@@ -10933,13 +11310,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
10933
11310
|
* @param {boolean} [isCompleted]
|
|
10934
11311
|
* @param {ConsultationStatus} [status]
|
|
10935
11312
|
* @param {ConsultationType} [consultationType]
|
|
11313
|
+
* @param {string} [hospitalId]
|
|
10936
11314
|
* @param {number} [page]
|
|
10937
11315
|
* @param {number} [limit]
|
|
10938
11316
|
* @param {Date} [lastRetrieved]
|
|
10939
11317
|
* @param {*} [options] Override http request option.
|
|
10940
11318
|
* @throws {RequiredError}
|
|
10941
11319
|
*/
|
|
10942
|
-
apiV2ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
|
|
11320
|
+
apiV2ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, hospitalId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
|
|
10943
11321
|
/**
|
|
10944
11322
|
*
|
|
10945
11323
|
* @summary Create consultation.
|
|
@@ -11022,13 +11400,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
11022
11400
|
* @param {boolean} [isCompleted]
|
|
11023
11401
|
* @param {ConsultationStatus} [status]
|
|
11024
11402
|
* @param {ConsultationType} [consultationType]
|
|
11403
|
+
* @param {string} [hospitalId]
|
|
11025
11404
|
* @param {number} [page]
|
|
11026
11405
|
* @param {number} [limit]
|
|
11027
11406
|
* @param {Date} [lastRetrieved]
|
|
11028
11407
|
* @param {*} [options] Override http request option.
|
|
11029
11408
|
* @throws {RequiredError}
|
|
11030
11409
|
*/
|
|
11031
|
-
apiV2ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
|
|
11410
|
+
apiV2ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, hospitalId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
|
|
11032
11411
|
/**
|
|
11033
11412
|
*
|
|
11034
11413
|
* @summary Create consultation.
|
|
@@ -11120,6 +11499,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
11120
11499
|
* @param {boolean} [isCompleted]
|
|
11121
11500
|
* @param {ConsultationStatus} [status]
|
|
11122
11501
|
* @param {ConsultationType} [consultationType]
|
|
11502
|
+
* @param {string} [hospitalId]
|
|
11123
11503
|
* @param {number} [page]
|
|
11124
11504
|
* @param {number} [limit]
|
|
11125
11505
|
* @param {Date} [lastRetrieved]
|
|
@@ -11127,7 +11507,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
11127
11507
|
* @throws {RequiredError}
|
|
11128
11508
|
* @memberof ConsultationsApi
|
|
11129
11509
|
*/
|
|
11130
|
-
apiV2ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel, any>>;
|
|
11510
|
+
apiV2ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, hospitalId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel, any>>;
|
|
11131
11511
|
/**
|
|
11132
11512
|
*
|
|
11133
11513
|
* @summary Create consultation.
|
|
@@ -13498,6 +13878,160 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
13498
13878
|
*/
|
|
13499
13879
|
apiV2FaqsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel, any>>;
|
|
13500
13880
|
}
|
|
13881
|
+
/**
|
|
13882
|
+
* GroupChannelsApi - axios parameter creator
|
|
13883
|
+
* @export
|
|
13884
|
+
*/
|
|
13885
|
+
export declare const GroupChannelsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
13886
|
+
/**
|
|
13887
|
+
*
|
|
13888
|
+
* @param {string} channelUrl
|
|
13889
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
13890
|
+
* @param {*} [options] Override http request option.
|
|
13891
|
+
* @throws {RequiredError}
|
|
13892
|
+
*/
|
|
13893
|
+
apiV2GroupchannelsChannelUrlInvitePost: (channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13894
|
+
/**
|
|
13895
|
+
*
|
|
13896
|
+
* @param {string} dealId
|
|
13897
|
+
* @param {string} [hospitalId]
|
|
13898
|
+
* @param {*} [options] Override http request option.
|
|
13899
|
+
* @throws {RequiredError}
|
|
13900
|
+
*/
|
|
13901
|
+
apiV2GroupchannelsDealDealIdGet: (dealId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13902
|
+
/**
|
|
13903
|
+
*
|
|
13904
|
+
* @param {string} doctorId
|
|
13905
|
+
* @param {string} [hospitalId]
|
|
13906
|
+
* @param {*} [options] Override http request option.
|
|
13907
|
+
* @throws {RequiredError}
|
|
13908
|
+
*/
|
|
13909
|
+
apiV2GroupchannelsDoctorDoctorIdGet: (doctorId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13910
|
+
/**
|
|
13911
|
+
*
|
|
13912
|
+
* @param {string} hospitalId
|
|
13913
|
+
* @param {*} [options] Override http request option.
|
|
13914
|
+
* @throws {RequiredError}
|
|
13915
|
+
*/
|
|
13916
|
+
apiV2GroupchannelsHospitalHospitalIdGet: (hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13917
|
+
};
|
|
13918
|
+
/**
|
|
13919
|
+
* GroupChannelsApi - functional programming interface
|
|
13920
|
+
* @export
|
|
13921
|
+
*/
|
|
13922
|
+
export declare const GroupChannelsApiFp: (configuration?: Configuration | undefined) => {
|
|
13923
|
+
/**
|
|
13924
|
+
*
|
|
13925
|
+
* @param {string} channelUrl
|
|
13926
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
13927
|
+
* @param {*} [options] Override http request option.
|
|
13928
|
+
* @throws {RequiredError}
|
|
13929
|
+
*/
|
|
13930
|
+
apiV2GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
|
|
13931
|
+
/**
|
|
13932
|
+
*
|
|
13933
|
+
* @param {string} dealId
|
|
13934
|
+
* @param {string} [hospitalId]
|
|
13935
|
+
* @param {*} [options] Override http request option.
|
|
13936
|
+
* @throws {RequiredError}
|
|
13937
|
+
*/
|
|
13938
|
+
apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
|
|
13939
|
+
/**
|
|
13940
|
+
*
|
|
13941
|
+
* @param {string} doctorId
|
|
13942
|
+
* @param {string} [hospitalId]
|
|
13943
|
+
* @param {*} [options] Override http request option.
|
|
13944
|
+
* @throws {RequiredError}
|
|
13945
|
+
*/
|
|
13946
|
+
apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
|
|
13947
|
+
/**
|
|
13948
|
+
*
|
|
13949
|
+
* @param {string} hospitalId
|
|
13950
|
+
* @param {*} [options] Override http request option.
|
|
13951
|
+
* @throws {RequiredError}
|
|
13952
|
+
*/
|
|
13953
|
+
apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
|
|
13954
|
+
};
|
|
13955
|
+
/**
|
|
13956
|
+
* GroupChannelsApi - factory interface
|
|
13957
|
+
* @export
|
|
13958
|
+
*/
|
|
13959
|
+
export declare const GroupChannelsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
13960
|
+
/**
|
|
13961
|
+
*
|
|
13962
|
+
* @param {string} channelUrl
|
|
13963
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
13964
|
+
* @param {*} [options] Override http request option.
|
|
13965
|
+
* @throws {RequiredError}
|
|
13966
|
+
*/
|
|
13967
|
+
apiV2GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand | undefined, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
|
|
13968
|
+
/**
|
|
13969
|
+
*
|
|
13970
|
+
* @param {string} dealId
|
|
13971
|
+
* @param {string} [hospitalId]
|
|
13972
|
+
* @param {*} [options] Override http request option.
|
|
13973
|
+
* @throws {RequiredError}
|
|
13974
|
+
*/
|
|
13975
|
+
apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string | undefined, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
|
|
13976
|
+
/**
|
|
13977
|
+
*
|
|
13978
|
+
* @param {string} doctorId
|
|
13979
|
+
* @param {string} [hospitalId]
|
|
13980
|
+
* @param {*} [options] Override http request option.
|
|
13981
|
+
* @throws {RequiredError}
|
|
13982
|
+
*/
|
|
13983
|
+
apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string | undefined, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
|
|
13984
|
+
/**
|
|
13985
|
+
*
|
|
13986
|
+
* @param {string} hospitalId
|
|
13987
|
+
* @param {*} [options] Override http request option.
|
|
13988
|
+
* @throws {RequiredError}
|
|
13989
|
+
*/
|
|
13990
|
+
apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
|
|
13991
|
+
};
|
|
13992
|
+
/**
|
|
13993
|
+
* GroupChannelsApi - object-oriented interface
|
|
13994
|
+
* @export
|
|
13995
|
+
* @class GroupChannelsApi
|
|
13996
|
+
* @extends {BaseAPI}
|
|
13997
|
+
*/
|
|
13998
|
+
export declare class GroupChannelsApi extends BaseAPI {
|
|
13999
|
+
/**
|
|
14000
|
+
*
|
|
14001
|
+
* @param {string} channelUrl
|
|
14002
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
14003
|
+
* @param {*} [options] Override http request option.
|
|
14004
|
+
* @throws {RequiredError}
|
|
14005
|
+
* @memberof GroupChannelsApi
|
|
14006
|
+
*/
|
|
14007
|
+
apiV2GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
|
|
14008
|
+
/**
|
|
14009
|
+
*
|
|
14010
|
+
* @param {string} dealId
|
|
14011
|
+
* @param {string} [hospitalId]
|
|
14012
|
+
* @param {*} [options] Override http request option.
|
|
14013
|
+
* @throws {RequiredError}
|
|
14014
|
+
* @memberof GroupChannelsApi
|
|
14015
|
+
*/
|
|
14016
|
+
apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
|
|
14017
|
+
/**
|
|
14018
|
+
*
|
|
14019
|
+
* @param {string} doctorId
|
|
14020
|
+
* @param {string} [hospitalId]
|
|
14021
|
+
* @param {*} [options] Override http request option.
|
|
14022
|
+
* @throws {RequiredError}
|
|
14023
|
+
* @memberof GroupChannelsApi
|
|
14024
|
+
*/
|
|
14025
|
+
apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
|
|
14026
|
+
/**
|
|
14027
|
+
*
|
|
14028
|
+
* @param {string} hospitalId
|
|
14029
|
+
* @param {*} [options] Override http request option.
|
|
14030
|
+
* @throws {RequiredError}
|
|
14031
|
+
* @memberof GroupChannelsApi
|
|
14032
|
+
*/
|
|
14033
|
+
apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
|
|
14034
|
+
}
|
|
13501
14035
|
/**
|
|
13502
14036
|
* HospitalsApi - axios parameter creator
|
|
13503
14037
|
* @export
|