ch-api-client-typescript2 2.8.19 → 2.9.2
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 +494 -8
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +418 -16
- package/package.json +1 -1
- package/src/api.ts +683 -14
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
|
|
@@ -6729,6 +6796,19 @@ export interface HospitalsSimpleModel {
|
|
|
6729
6796
|
*/
|
|
6730
6797
|
'metaData'?: PagedListMetaData;
|
|
6731
6798
|
}
|
|
6799
|
+
/**
|
|
6800
|
+
*
|
|
6801
|
+
* @export
|
|
6802
|
+
* @interface InviteSendBirdGroupChannelCommand
|
|
6803
|
+
*/
|
|
6804
|
+
export interface InviteSendBirdGroupChannelCommand {
|
|
6805
|
+
/**
|
|
6806
|
+
*
|
|
6807
|
+
* @type {Array<string>}
|
|
6808
|
+
* @memberof InviteSendBirdGroupChannelCommand
|
|
6809
|
+
*/
|
|
6810
|
+
'user_ids'?: Array<string> | null;
|
|
6811
|
+
}
|
|
6732
6812
|
/**
|
|
6733
6813
|
*
|
|
6734
6814
|
* @export
|
|
@@ -7191,6 +7271,31 @@ export interface MembershipsModel {
|
|
|
7191
7271
|
*/
|
|
7192
7272
|
'metaData'?: PagedListMetaData;
|
|
7193
7273
|
}
|
|
7274
|
+
/**
|
|
7275
|
+
*
|
|
7276
|
+
* @export
|
|
7277
|
+
* @interface Metadata
|
|
7278
|
+
*/
|
|
7279
|
+
export interface Metadata {
|
|
7280
|
+
/**
|
|
7281
|
+
*
|
|
7282
|
+
* @type {string}
|
|
7283
|
+
* @memberof Metadata
|
|
7284
|
+
*/
|
|
7285
|
+
'location'?: string | null;
|
|
7286
|
+
/**
|
|
7287
|
+
*
|
|
7288
|
+
* @type {string}
|
|
7289
|
+
* @memberof Metadata
|
|
7290
|
+
*/
|
|
7291
|
+
'marriage'?: string | null;
|
|
7292
|
+
/**
|
|
7293
|
+
*
|
|
7294
|
+
* @type {string}
|
|
7295
|
+
* @memberof Metadata
|
|
7296
|
+
*/
|
|
7297
|
+
'hasSomeone'?: string | null;
|
|
7298
|
+
}
|
|
7194
7299
|
/**
|
|
7195
7300
|
*
|
|
7196
7301
|
* @export
|
|
@@ -7857,6 +7962,225 @@ export declare enum ReviewType {
|
|
|
7857
7962
|
SurgeryReview = "SurgeryReview",
|
|
7858
7963
|
RealStory = "RealStory"
|
|
7859
7964
|
}
|
|
7965
|
+
/**
|
|
7966
|
+
*
|
|
7967
|
+
* @export
|
|
7968
|
+
* @interface SendBirdGroupChannelMember
|
|
7969
|
+
*/
|
|
7970
|
+
export interface SendBirdGroupChannelMember {
|
|
7971
|
+
/**
|
|
7972
|
+
*
|
|
7973
|
+
* @type {string}
|
|
7974
|
+
* @memberof SendBirdGroupChannelMember
|
|
7975
|
+
*/
|
|
7976
|
+
'user_id'?: string | null;
|
|
7977
|
+
/**
|
|
7978
|
+
*
|
|
7979
|
+
* @type {string}
|
|
7980
|
+
* @memberof SendBirdGroupChannelMember
|
|
7981
|
+
*/
|
|
7982
|
+
'nickname'?: string | null;
|
|
7983
|
+
/**
|
|
7984
|
+
*
|
|
7985
|
+
* @type {string}
|
|
7986
|
+
* @memberof SendBirdGroupChannelMember
|
|
7987
|
+
*/
|
|
7988
|
+
'profile_url'?: string | null;
|
|
7989
|
+
/**
|
|
7990
|
+
*
|
|
7991
|
+
* @type {boolean}
|
|
7992
|
+
* @memberof SendBirdGroupChannelMember
|
|
7993
|
+
*/
|
|
7994
|
+
'is_active'?: boolean;
|
|
7995
|
+
/**
|
|
7996
|
+
*
|
|
7997
|
+
* @type {boolean}
|
|
7998
|
+
* @memberof SendBirdGroupChannelMember
|
|
7999
|
+
*/
|
|
8000
|
+
'is_online'?: boolean;
|
|
8001
|
+
/**
|
|
8002
|
+
*
|
|
8003
|
+
* @type {Array<string>}
|
|
8004
|
+
* @memberof SendBirdGroupChannelMember
|
|
8005
|
+
*/
|
|
8006
|
+
'friend_discovery_key'?: Array<string> | null;
|
|
8007
|
+
/**
|
|
8008
|
+
*
|
|
8009
|
+
* @type {number}
|
|
8010
|
+
* @memberof SendBirdGroupChannelMember
|
|
8011
|
+
*/
|
|
8012
|
+
'last_seen_at'?: number;
|
|
8013
|
+
/**
|
|
8014
|
+
*
|
|
8015
|
+
* @type {string}
|
|
8016
|
+
* @memberof SendBirdGroupChannelMember
|
|
8017
|
+
*/
|
|
8018
|
+
'state'?: string | null;
|
|
8019
|
+
/**
|
|
8020
|
+
*
|
|
8021
|
+
* @type {string}
|
|
8022
|
+
* @memberof SendBirdGroupChannelMember
|
|
8023
|
+
*/
|
|
8024
|
+
'role'?: string | null;
|
|
8025
|
+
/**
|
|
8026
|
+
*
|
|
8027
|
+
* @type {Metadata}
|
|
8028
|
+
* @memberof SendBirdGroupChannelMember
|
|
8029
|
+
*/
|
|
8030
|
+
'metadata'?: Metadata;
|
|
8031
|
+
}
|
|
8032
|
+
/**
|
|
8033
|
+
*
|
|
8034
|
+
* @export
|
|
8035
|
+
* @interface SendBirdGroupChannelModel
|
|
8036
|
+
*/
|
|
8037
|
+
export interface SendBirdGroupChannelModel {
|
|
8038
|
+
/**
|
|
8039
|
+
*
|
|
8040
|
+
* @type {string}
|
|
8041
|
+
* @memberof SendBirdGroupChannelModel
|
|
8042
|
+
*/
|
|
8043
|
+
'name'?: string | null;
|
|
8044
|
+
/**
|
|
8045
|
+
*
|
|
8046
|
+
* @type {string}
|
|
8047
|
+
* @memberof SendBirdGroupChannelModel
|
|
8048
|
+
*/
|
|
8049
|
+
'channel_url'?: string | null;
|
|
8050
|
+
/**
|
|
8051
|
+
*
|
|
8052
|
+
* @type {string}
|
|
8053
|
+
* @memberof SendBirdGroupChannelModel
|
|
8054
|
+
*/
|
|
8055
|
+
'cover_url'?: string | null;
|
|
8056
|
+
/**
|
|
8057
|
+
*
|
|
8058
|
+
* @type {string}
|
|
8059
|
+
* @memberof SendBirdGroupChannelModel
|
|
8060
|
+
*/
|
|
8061
|
+
'custom_type'?: string | null;
|
|
8062
|
+
/**
|
|
8063
|
+
*
|
|
8064
|
+
* @type {number}
|
|
8065
|
+
* @memberof SendBirdGroupChannelModel
|
|
8066
|
+
*/
|
|
8067
|
+
'unread_message_count'?: number;
|
|
8068
|
+
/**
|
|
8069
|
+
*
|
|
8070
|
+
* @type {string}
|
|
8071
|
+
* @memberof SendBirdGroupChannelModel
|
|
8072
|
+
*/
|
|
8073
|
+
'data'?: string | null;
|
|
8074
|
+
/**
|
|
8075
|
+
*
|
|
8076
|
+
* @type {boolean}
|
|
8077
|
+
* @memberof SendBirdGroupChannelModel
|
|
8078
|
+
*/
|
|
8079
|
+
'is_distinct'?: boolean;
|
|
8080
|
+
/**
|
|
8081
|
+
*
|
|
8082
|
+
* @type {boolean}
|
|
8083
|
+
* @memberof SendBirdGroupChannelModel
|
|
8084
|
+
*/
|
|
8085
|
+
'is_public'?: boolean;
|
|
8086
|
+
/**
|
|
8087
|
+
*
|
|
8088
|
+
* @type {boolean}
|
|
8089
|
+
* @memberof SendBirdGroupChannelModel
|
|
8090
|
+
*/
|
|
8091
|
+
'is_super'?: boolean;
|
|
8092
|
+
/**
|
|
8093
|
+
*
|
|
8094
|
+
* @type {boolean}
|
|
8095
|
+
* @memberof SendBirdGroupChannelModel
|
|
8096
|
+
*/
|
|
8097
|
+
'is_ephemeral'?: boolean;
|
|
8098
|
+
/**
|
|
8099
|
+
*
|
|
8100
|
+
* @type {boolean}
|
|
8101
|
+
* @memberof SendBirdGroupChannelModel
|
|
8102
|
+
*/
|
|
8103
|
+
'is_access_code_required'?: boolean;
|
|
8104
|
+
/**
|
|
8105
|
+
*
|
|
8106
|
+
* @type {string}
|
|
8107
|
+
* @memberof SendBirdGroupChannelModel
|
|
8108
|
+
*/
|
|
8109
|
+
'hidden_state'?: string | null;
|
|
8110
|
+
/**
|
|
8111
|
+
*
|
|
8112
|
+
* @type {number}
|
|
8113
|
+
* @memberof SendBirdGroupChannelModel
|
|
8114
|
+
*/
|
|
8115
|
+
'member_count'?: number;
|
|
8116
|
+
/**
|
|
8117
|
+
*
|
|
8118
|
+
* @type {number}
|
|
8119
|
+
* @memberof SendBirdGroupChannelModel
|
|
8120
|
+
*/
|
|
8121
|
+
'joined_member_count'?: number;
|
|
8122
|
+
/**
|
|
8123
|
+
*
|
|
8124
|
+
* @type {Array<SendBirdGroupChannelMember>}
|
|
8125
|
+
* @memberof SendBirdGroupChannelModel
|
|
8126
|
+
*/
|
|
8127
|
+
'members'?: Array<SendBirdGroupChannelMember> | null;
|
|
8128
|
+
/**
|
|
8129
|
+
*
|
|
8130
|
+
* @type {Array<SendBirdGroupChannelrOperator>}
|
|
8131
|
+
* @memberof SendBirdGroupChannelModel
|
|
8132
|
+
*/
|
|
8133
|
+
'operators'?: Array<SendBirdGroupChannelrOperator> | null;
|
|
8134
|
+
/**
|
|
8135
|
+
*
|
|
8136
|
+
* @type {number}
|
|
8137
|
+
* @memberof SendBirdGroupChannelModel
|
|
8138
|
+
*/
|
|
8139
|
+
'max_length_message'?: number;
|
|
8140
|
+
/**
|
|
8141
|
+
*
|
|
8142
|
+
* @type {AdminMessageModel}
|
|
8143
|
+
* @memberof SendBirdGroupChannelModel
|
|
8144
|
+
*/
|
|
8145
|
+
'last_message'?: AdminMessageModel;
|
|
8146
|
+
/**
|
|
8147
|
+
*
|
|
8148
|
+
* @type {number}
|
|
8149
|
+
* @memberof SendBirdGroupChannelModel
|
|
8150
|
+
*/
|
|
8151
|
+
'created_at'?: number;
|
|
8152
|
+
/**
|
|
8153
|
+
*
|
|
8154
|
+
* @type {boolean}
|
|
8155
|
+
* @memberof SendBirdGroupChannelModel
|
|
8156
|
+
*/
|
|
8157
|
+
'freeze'?: boolean;
|
|
8158
|
+
}
|
|
8159
|
+
/**
|
|
8160
|
+
*
|
|
8161
|
+
* @export
|
|
8162
|
+
* @interface SendBirdGroupChannelrOperator
|
|
8163
|
+
*/
|
|
8164
|
+
export interface SendBirdGroupChannelrOperator {
|
|
8165
|
+
/**
|
|
8166
|
+
*
|
|
8167
|
+
* @type {string}
|
|
8168
|
+
* @memberof SendBirdGroupChannelrOperator
|
|
8169
|
+
*/
|
|
8170
|
+
'user_id'?: string | null;
|
|
8171
|
+
/**
|
|
8172
|
+
*
|
|
8173
|
+
* @type {string}
|
|
8174
|
+
* @memberof SendBirdGroupChannelrOperator
|
|
8175
|
+
*/
|
|
8176
|
+
'nickname'?: string | null;
|
|
8177
|
+
/**
|
|
8178
|
+
*
|
|
8179
|
+
* @type {string}
|
|
8180
|
+
* @memberof SendBirdGroupChannelrOperator
|
|
8181
|
+
*/
|
|
8182
|
+
'profile_url'?: string | null;
|
|
8183
|
+
}
|
|
7860
8184
|
/**
|
|
7861
8185
|
*
|
|
7862
8186
|
* @export
|
|
@@ -10103,13 +10427,14 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10103
10427
|
* @param {boolean} [isCompleted]
|
|
10104
10428
|
* @param {BookingStatus} [status]
|
|
10105
10429
|
* @param {string} [dealPackageId]
|
|
10430
|
+
* @param {string} [hospitalId]
|
|
10106
10431
|
* @param {number} [page]
|
|
10107
10432
|
* @param {number} [limit]
|
|
10108
10433
|
* @param {Date} [lastRetrieved]
|
|
10109
10434
|
* @param {*} [options] Override http request option.
|
|
10110
10435
|
* @throws {RequiredError}
|
|
10111
10436
|
*/
|
|
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>;
|
|
10437
|
+
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
10438
|
/**
|
|
10114
10439
|
*
|
|
10115
10440
|
* @summary Create booking.
|
|
@@ -10200,13 +10525,14 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
10200
10525
|
* @param {boolean} [isCompleted]
|
|
10201
10526
|
* @param {BookingStatus} [status]
|
|
10202
10527
|
* @param {string} [dealPackageId]
|
|
10528
|
+
* @param {string} [hospitalId]
|
|
10203
10529
|
* @param {number} [page]
|
|
10204
10530
|
* @param {number} [limit]
|
|
10205
10531
|
* @param {Date} [lastRetrieved]
|
|
10206
10532
|
* @param {*} [options] Override http request option.
|
|
10207
10533
|
* @throws {RequiredError}
|
|
10208
10534
|
*/
|
|
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>>;
|
|
10535
|
+
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
10536
|
/**
|
|
10211
10537
|
*
|
|
10212
10538
|
* @summary Create booking.
|
|
@@ -10297,13 +10623,14 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
10297
10623
|
* @param {boolean} [isCompleted]
|
|
10298
10624
|
* @param {BookingStatus} [status]
|
|
10299
10625
|
* @param {string} [dealPackageId]
|
|
10626
|
+
* @param {string} [hospitalId]
|
|
10300
10627
|
* @param {number} [page]
|
|
10301
10628
|
* @param {number} [limit]
|
|
10302
10629
|
* @param {Date} [lastRetrieved]
|
|
10303
10630
|
* @param {*} [options] Override http request option.
|
|
10304
10631
|
* @throws {RequiredError}
|
|
10305
10632
|
*/
|
|
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>;
|
|
10633
|
+
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
10634
|
/**
|
|
10308
10635
|
*
|
|
10309
10636
|
* @summary Create booking.
|
|
@@ -10404,6 +10731,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
10404
10731
|
* @param {boolean} [isCompleted]
|
|
10405
10732
|
* @param {BookingStatus} [status]
|
|
10406
10733
|
* @param {string} [dealPackageId]
|
|
10734
|
+
* @param {string} [hospitalId]
|
|
10407
10735
|
* @param {number} [page]
|
|
10408
10736
|
* @param {number} [limit]
|
|
10409
10737
|
* @param {Date} [lastRetrieved]
|
|
@@ -10411,7 +10739,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
10411
10739
|
* @throws {RequiredError}
|
|
10412
10740
|
* @memberof BookingsApi
|
|
10413
10741
|
*/
|
|
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>>;
|
|
10742
|
+
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
10743
|
/**
|
|
10416
10744
|
*
|
|
10417
10745
|
* @summary Create booking.
|
|
@@ -10844,13 +11172,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
10844
11172
|
* @param {boolean} [isCompleted]
|
|
10845
11173
|
* @param {ConsultationStatus} [status]
|
|
10846
11174
|
* @param {ConsultationType} [consultationType]
|
|
11175
|
+
* @param {string} [hospitalId]
|
|
10847
11176
|
* @param {number} [page]
|
|
10848
11177
|
* @param {number} [limit]
|
|
10849
11178
|
* @param {Date} [lastRetrieved]
|
|
10850
11179
|
* @param {*} [options] Override http request option.
|
|
10851
11180
|
* @throws {RequiredError}
|
|
10852
11181
|
*/
|
|
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>;
|
|
11182
|
+
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
11183
|
/**
|
|
10855
11184
|
*
|
|
10856
11185
|
* @summary Create consultation.
|
|
@@ -10933,13 +11262,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
10933
11262
|
* @param {boolean} [isCompleted]
|
|
10934
11263
|
* @param {ConsultationStatus} [status]
|
|
10935
11264
|
* @param {ConsultationType} [consultationType]
|
|
11265
|
+
* @param {string} [hospitalId]
|
|
10936
11266
|
* @param {number} [page]
|
|
10937
11267
|
* @param {number} [limit]
|
|
10938
11268
|
* @param {Date} [lastRetrieved]
|
|
10939
11269
|
* @param {*} [options] Override http request option.
|
|
10940
11270
|
* @throws {RequiredError}
|
|
10941
11271
|
*/
|
|
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>>;
|
|
11272
|
+
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
11273
|
/**
|
|
10944
11274
|
*
|
|
10945
11275
|
* @summary Create consultation.
|
|
@@ -11022,13 +11352,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
11022
11352
|
* @param {boolean} [isCompleted]
|
|
11023
11353
|
* @param {ConsultationStatus} [status]
|
|
11024
11354
|
* @param {ConsultationType} [consultationType]
|
|
11355
|
+
* @param {string} [hospitalId]
|
|
11025
11356
|
* @param {number} [page]
|
|
11026
11357
|
* @param {number} [limit]
|
|
11027
11358
|
* @param {Date} [lastRetrieved]
|
|
11028
11359
|
* @param {*} [options] Override http request option.
|
|
11029
11360
|
* @throws {RequiredError}
|
|
11030
11361
|
*/
|
|
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>;
|
|
11362
|
+
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
11363
|
/**
|
|
11033
11364
|
*
|
|
11034
11365
|
* @summary Create consultation.
|
|
@@ -11120,6 +11451,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
11120
11451
|
* @param {boolean} [isCompleted]
|
|
11121
11452
|
* @param {ConsultationStatus} [status]
|
|
11122
11453
|
* @param {ConsultationType} [consultationType]
|
|
11454
|
+
* @param {string} [hospitalId]
|
|
11123
11455
|
* @param {number} [page]
|
|
11124
11456
|
* @param {number} [limit]
|
|
11125
11457
|
* @param {Date} [lastRetrieved]
|
|
@@ -11127,7 +11459,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
11127
11459
|
* @throws {RequiredError}
|
|
11128
11460
|
* @memberof ConsultationsApi
|
|
11129
11461
|
*/
|
|
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>>;
|
|
11462
|
+
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
11463
|
/**
|
|
11132
11464
|
*
|
|
11133
11465
|
* @summary Create consultation.
|
|
@@ -13498,6 +13830,160 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
13498
13830
|
*/
|
|
13499
13831
|
apiV2FaqsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel, any>>;
|
|
13500
13832
|
}
|
|
13833
|
+
/**
|
|
13834
|
+
* GroupChannelsApi - axios parameter creator
|
|
13835
|
+
* @export
|
|
13836
|
+
*/
|
|
13837
|
+
export declare const GroupChannelsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
13838
|
+
/**
|
|
13839
|
+
*
|
|
13840
|
+
* @param {string} channelUrl
|
|
13841
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
13842
|
+
* @param {*} [options] Override http request option.
|
|
13843
|
+
* @throws {RequiredError}
|
|
13844
|
+
*/
|
|
13845
|
+
apiV2GroupchannelsChannelUrlInvitePost: (channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13846
|
+
/**
|
|
13847
|
+
*
|
|
13848
|
+
* @param {string} dealId
|
|
13849
|
+
* @param {string} [hospitalId]
|
|
13850
|
+
* @param {*} [options] Override http request option.
|
|
13851
|
+
* @throws {RequiredError}
|
|
13852
|
+
*/
|
|
13853
|
+
apiV2GroupchannelsDealDealIdGet: (dealId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13854
|
+
/**
|
|
13855
|
+
*
|
|
13856
|
+
* @param {string} doctorId
|
|
13857
|
+
* @param {string} [hospitalId]
|
|
13858
|
+
* @param {*} [options] Override http request option.
|
|
13859
|
+
* @throws {RequiredError}
|
|
13860
|
+
*/
|
|
13861
|
+
apiV2GroupchannelsDoctorDoctorIdGet: (doctorId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13862
|
+
/**
|
|
13863
|
+
*
|
|
13864
|
+
* @param {string} hospitalId
|
|
13865
|
+
* @param {*} [options] Override http request option.
|
|
13866
|
+
* @throws {RequiredError}
|
|
13867
|
+
*/
|
|
13868
|
+
apiV2GroupchannelsHospitalHospitalIdGet: (hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13869
|
+
};
|
|
13870
|
+
/**
|
|
13871
|
+
* GroupChannelsApi - functional programming interface
|
|
13872
|
+
* @export
|
|
13873
|
+
*/
|
|
13874
|
+
export declare const GroupChannelsApiFp: (configuration?: Configuration | undefined) => {
|
|
13875
|
+
/**
|
|
13876
|
+
*
|
|
13877
|
+
* @param {string} channelUrl
|
|
13878
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
13879
|
+
* @param {*} [options] Override http request option.
|
|
13880
|
+
* @throws {RequiredError}
|
|
13881
|
+
*/
|
|
13882
|
+
apiV2GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
|
|
13883
|
+
/**
|
|
13884
|
+
*
|
|
13885
|
+
* @param {string} dealId
|
|
13886
|
+
* @param {string} [hospitalId]
|
|
13887
|
+
* @param {*} [options] Override http request option.
|
|
13888
|
+
* @throws {RequiredError}
|
|
13889
|
+
*/
|
|
13890
|
+
apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
|
|
13891
|
+
/**
|
|
13892
|
+
*
|
|
13893
|
+
* @param {string} doctorId
|
|
13894
|
+
* @param {string} [hospitalId]
|
|
13895
|
+
* @param {*} [options] Override http request option.
|
|
13896
|
+
* @throws {RequiredError}
|
|
13897
|
+
*/
|
|
13898
|
+
apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
|
|
13899
|
+
/**
|
|
13900
|
+
*
|
|
13901
|
+
* @param {string} hospitalId
|
|
13902
|
+
* @param {*} [options] Override http request option.
|
|
13903
|
+
* @throws {RequiredError}
|
|
13904
|
+
*/
|
|
13905
|
+
apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
|
|
13906
|
+
};
|
|
13907
|
+
/**
|
|
13908
|
+
* GroupChannelsApi - factory interface
|
|
13909
|
+
* @export
|
|
13910
|
+
*/
|
|
13911
|
+
export declare const GroupChannelsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
13912
|
+
/**
|
|
13913
|
+
*
|
|
13914
|
+
* @param {string} channelUrl
|
|
13915
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
13916
|
+
* @param {*} [options] Override http request option.
|
|
13917
|
+
* @throws {RequiredError}
|
|
13918
|
+
*/
|
|
13919
|
+
apiV2GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand | undefined, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
|
|
13920
|
+
/**
|
|
13921
|
+
*
|
|
13922
|
+
* @param {string} dealId
|
|
13923
|
+
* @param {string} [hospitalId]
|
|
13924
|
+
* @param {*} [options] Override http request option.
|
|
13925
|
+
* @throws {RequiredError}
|
|
13926
|
+
*/
|
|
13927
|
+
apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string | undefined, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
|
|
13928
|
+
/**
|
|
13929
|
+
*
|
|
13930
|
+
* @param {string} doctorId
|
|
13931
|
+
* @param {string} [hospitalId]
|
|
13932
|
+
* @param {*} [options] Override http request option.
|
|
13933
|
+
* @throws {RequiredError}
|
|
13934
|
+
*/
|
|
13935
|
+
apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string | undefined, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
|
|
13936
|
+
/**
|
|
13937
|
+
*
|
|
13938
|
+
* @param {string} hospitalId
|
|
13939
|
+
* @param {*} [options] Override http request option.
|
|
13940
|
+
* @throws {RequiredError}
|
|
13941
|
+
*/
|
|
13942
|
+
apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
|
|
13943
|
+
};
|
|
13944
|
+
/**
|
|
13945
|
+
* GroupChannelsApi - object-oriented interface
|
|
13946
|
+
* @export
|
|
13947
|
+
* @class GroupChannelsApi
|
|
13948
|
+
* @extends {BaseAPI}
|
|
13949
|
+
*/
|
|
13950
|
+
export declare class GroupChannelsApi extends BaseAPI {
|
|
13951
|
+
/**
|
|
13952
|
+
*
|
|
13953
|
+
* @param {string} channelUrl
|
|
13954
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
13955
|
+
* @param {*} [options] Override http request option.
|
|
13956
|
+
* @throws {RequiredError}
|
|
13957
|
+
* @memberof GroupChannelsApi
|
|
13958
|
+
*/
|
|
13959
|
+
apiV2GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
|
|
13960
|
+
/**
|
|
13961
|
+
*
|
|
13962
|
+
* @param {string} dealId
|
|
13963
|
+
* @param {string} [hospitalId]
|
|
13964
|
+
* @param {*} [options] Override http request option.
|
|
13965
|
+
* @throws {RequiredError}
|
|
13966
|
+
* @memberof GroupChannelsApi
|
|
13967
|
+
*/
|
|
13968
|
+
apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
|
|
13969
|
+
/**
|
|
13970
|
+
*
|
|
13971
|
+
* @param {string} doctorId
|
|
13972
|
+
* @param {string} [hospitalId]
|
|
13973
|
+
* @param {*} [options] Override http request option.
|
|
13974
|
+
* @throws {RequiredError}
|
|
13975
|
+
* @memberof GroupChannelsApi
|
|
13976
|
+
*/
|
|
13977
|
+
apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
|
|
13978
|
+
/**
|
|
13979
|
+
*
|
|
13980
|
+
* @param {string} hospitalId
|
|
13981
|
+
* @param {*} [options] Override http request option.
|
|
13982
|
+
* @throws {RequiredError}
|
|
13983
|
+
* @memberof GroupChannelsApi
|
|
13984
|
+
*/
|
|
13985
|
+
apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
|
|
13986
|
+
}
|
|
13501
13987
|
/**
|
|
13502
13988
|
* HospitalsApi - axios parameter creator
|
|
13503
13989
|
* @export
|