ch-admin-api-client-typescript 4.3.6 → 4.3.8
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 +998 -14
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1132 -378
- package/package.json +1 -1
- package/src/api.ts +1415 -90
package/lib/api.d.ts
CHANGED
|
@@ -258,6 +258,73 @@ export interface AccreditationsModel {
|
|
|
258
258
|
*/
|
|
259
259
|
'metaData'?: PagedListMetaData;
|
|
260
260
|
}
|
|
261
|
+
/**
|
|
262
|
+
*
|
|
263
|
+
* @export
|
|
264
|
+
* @interface AdminMessageModel
|
|
265
|
+
*/
|
|
266
|
+
export interface AdminMessageModel {
|
|
267
|
+
/**
|
|
268
|
+
*
|
|
269
|
+
* @type {number}
|
|
270
|
+
* @memberof AdminMessageModel
|
|
271
|
+
*/
|
|
272
|
+
'message_id'?: number;
|
|
273
|
+
/**
|
|
274
|
+
*
|
|
275
|
+
* @type {string}
|
|
276
|
+
* @memberof AdminMessageModel
|
|
277
|
+
*/
|
|
278
|
+
'type'?: string | null;
|
|
279
|
+
/**
|
|
280
|
+
*
|
|
281
|
+
* @type {string}
|
|
282
|
+
* @memberof AdminMessageModel
|
|
283
|
+
*/
|
|
284
|
+
'custom_type'?: string | null;
|
|
285
|
+
/**
|
|
286
|
+
*
|
|
287
|
+
* @type {string}
|
|
288
|
+
* @memberof AdminMessageModel
|
|
289
|
+
*/
|
|
290
|
+
'channel_url'?: string | null;
|
|
291
|
+
/**
|
|
292
|
+
*
|
|
293
|
+
* @type {string}
|
|
294
|
+
* @memberof AdminMessageModel
|
|
295
|
+
*/
|
|
296
|
+
'mention_type'?: string | null;
|
|
297
|
+
/**
|
|
298
|
+
*
|
|
299
|
+
* @type {boolean}
|
|
300
|
+
* @memberof AdminMessageModel
|
|
301
|
+
*/
|
|
302
|
+
'is_removed'?: boolean;
|
|
303
|
+
/**
|
|
304
|
+
*
|
|
305
|
+
* @type {string}
|
|
306
|
+
* @memberof AdminMessageModel
|
|
307
|
+
*/
|
|
308
|
+
'message'?: string | null;
|
|
309
|
+
/**
|
|
310
|
+
*
|
|
311
|
+
* @type {string}
|
|
312
|
+
* @memberof AdminMessageModel
|
|
313
|
+
*/
|
|
314
|
+
'data'?: string | null;
|
|
315
|
+
/**
|
|
316
|
+
*
|
|
317
|
+
* @type {number}
|
|
318
|
+
* @memberof AdminMessageModel
|
|
319
|
+
*/
|
|
320
|
+
'created_at'?: number;
|
|
321
|
+
/**
|
|
322
|
+
*
|
|
323
|
+
* @type {number}
|
|
324
|
+
* @memberof AdminMessageModel
|
|
325
|
+
*/
|
|
326
|
+
'updated_at'?: number;
|
|
327
|
+
}
|
|
261
328
|
/**
|
|
262
329
|
*
|
|
263
330
|
* @export
|
|
@@ -4630,6 +4697,61 @@ export interface CreateHospitalWorkingDayCommand {
|
|
|
4630
4697
|
*/
|
|
4631
4698
|
'checkHoliday'?: boolean;
|
|
4632
4699
|
}
|
|
4700
|
+
/**
|
|
4701
|
+
*
|
|
4702
|
+
* @export
|
|
4703
|
+
* @interface CreateLandingCommand
|
|
4704
|
+
*/
|
|
4705
|
+
export interface CreateLandingCommand {
|
|
4706
|
+
/**
|
|
4707
|
+
*
|
|
4708
|
+
* @type {string}
|
|
4709
|
+
* @memberof CreateLandingCommand
|
|
4710
|
+
*/
|
|
4711
|
+
'name'?: string | null;
|
|
4712
|
+
/**
|
|
4713
|
+
*
|
|
4714
|
+
* @type {string}
|
|
4715
|
+
* @memberof CreateLandingCommand
|
|
4716
|
+
*/
|
|
4717
|
+
'description'?: string | null;
|
|
4718
|
+
/**
|
|
4719
|
+
*
|
|
4720
|
+
* @type {string}
|
|
4721
|
+
* @memberof CreateLandingCommand
|
|
4722
|
+
*/
|
|
4723
|
+
'content'?: string | null;
|
|
4724
|
+
/**
|
|
4725
|
+
*
|
|
4726
|
+
* @type {string}
|
|
4727
|
+
* @memberof CreateLandingCommand
|
|
4728
|
+
*/
|
|
4729
|
+
'customStyle'?: string | null;
|
|
4730
|
+
/**
|
|
4731
|
+
*
|
|
4732
|
+
* @type {number}
|
|
4733
|
+
* @memberof CreateLandingCommand
|
|
4734
|
+
*/
|
|
4735
|
+
'order'?: number;
|
|
4736
|
+
/**
|
|
4737
|
+
*
|
|
4738
|
+
* @type {string}
|
|
4739
|
+
* @memberof CreateLandingCommand
|
|
4740
|
+
*/
|
|
4741
|
+
'photo'?: string | null;
|
|
4742
|
+
/**
|
|
4743
|
+
*
|
|
4744
|
+
* @type {string}
|
|
4745
|
+
* @memberof CreateLandingCommand
|
|
4746
|
+
*/
|
|
4747
|
+
'photoThumbnail'?: string | null;
|
|
4748
|
+
/**
|
|
4749
|
+
*
|
|
4750
|
+
* @type {Array<MediaModel>}
|
|
4751
|
+
* @memberof CreateLandingCommand
|
|
4752
|
+
*/
|
|
4753
|
+
'medias'?: Array<MediaModel> | null;
|
|
4754
|
+
}
|
|
4633
4755
|
/**
|
|
4634
4756
|
*
|
|
4635
4757
|
* @export
|
|
@@ -8853,6 +8975,214 @@ export interface HospitalsSimpleModel {
|
|
|
8853
8975
|
*/
|
|
8854
8976
|
'metaData'?: PagedListMetaData;
|
|
8855
8977
|
}
|
|
8978
|
+
/**
|
|
8979
|
+
*
|
|
8980
|
+
* @export
|
|
8981
|
+
* @interface InviteSendBirdGroupChannelCommand
|
|
8982
|
+
*/
|
|
8983
|
+
export interface InviteSendBirdGroupChannelCommand {
|
|
8984
|
+
/**
|
|
8985
|
+
*
|
|
8986
|
+
* @type {Array<string>}
|
|
8987
|
+
* @memberof InviteSendBirdGroupChannelCommand
|
|
8988
|
+
*/
|
|
8989
|
+
'user_ids'?: Array<string> | null;
|
|
8990
|
+
}
|
|
8991
|
+
/**
|
|
8992
|
+
*
|
|
8993
|
+
* @export
|
|
8994
|
+
* @interface LandingItemModel
|
|
8995
|
+
*/
|
|
8996
|
+
export interface LandingItemModel {
|
|
8997
|
+
/**
|
|
8998
|
+
*
|
|
8999
|
+
* @type {string}
|
|
9000
|
+
* @memberof LandingItemModel
|
|
9001
|
+
*/
|
|
9002
|
+
'id'?: string;
|
|
9003
|
+
/**
|
|
9004
|
+
*
|
|
9005
|
+
* @type {string}
|
|
9006
|
+
* @memberof LandingItemModel
|
|
9007
|
+
*/
|
|
9008
|
+
'languageCode'?: string | null;
|
|
9009
|
+
/**
|
|
9010
|
+
*
|
|
9011
|
+
* @type {string}
|
|
9012
|
+
* @memberof LandingItemModel
|
|
9013
|
+
*/
|
|
9014
|
+
'name'?: string | null;
|
|
9015
|
+
/**
|
|
9016
|
+
*
|
|
9017
|
+
* @type {string}
|
|
9018
|
+
* @memberof LandingItemModel
|
|
9019
|
+
*/
|
|
9020
|
+
'slug'?: string | null;
|
|
9021
|
+
/**
|
|
9022
|
+
*
|
|
9023
|
+
* @type {boolean}
|
|
9024
|
+
* @memberof LandingItemModel
|
|
9025
|
+
*/
|
|
9026
|
+
'confirmed'?: boolean;
|
|
9027
|
+
/**
|
|
9028
|
+
*
|
|
9029
|
+
* @type {number}
|
|
9030
|
+
* @memberof LandingItemModel
|
|
9031
|
+
*/
|
|
9032
|
+
'order'?: number;
|
|
9033
|
+
/**
|
|
9034
|
+
*
|
|
9035
|
+
* @type {string}
|
|
9036
|
+
* @memberof LandingItemModel
|
|
9037
|
+
*/
|
|
9038
|
+
'photo'?: string | null;
|
|
9039
|
+
/**
|
|
9040
|
+
*
|
|
9041
|
+
* @type {string}
|
|
9042
|
+
* @memberof LandingItemModel
|
|
9043
|
+
*/
|
|
9044
|
+
'photoThumbnail'?: string | null;
|
|
9045
|
+
/**
|
|
9046
|
+
*
|
|
9047
|
+
* @type {AuditableEntity}
|
|
9048
|
+
* @memberof LandingItemModel
|
|
9049
|
+
*/
|
|
9050
|
+
'auditableEntity'?: AuditableEntity;
|
|
9051
|
+
}
|
|
9052
|
+
/**
|
|
9053
|
+
*
|
|
9054
|
+
* @export
|
|
9055
|
+
* @interface LandingModel
|
|
9056
|
+
*/
|
|
9057
|
+
export interface LandingModel {
|
|
9058
|
+
/**
|
|
9059
|
+
*
|
|
9060
|
+
* @type {string}
|
|
9061
|
+
* @memberof LandingModel
|
|
9062
|
+
*/
|
|
9063
|
+
'id'?: string;
|
|
9064
|
+
/**
|
|
9065
|
+
*
|
|
9066
|
+
* @type {string}
|
|
9067
|
+
* @memberof LandingModel
|
|
9068
|
+
*/
|
|
9069
|
+
'languageCode'?: string | null;
|
|
9070
|
+
/**
|
|
9071
|
+
*
|
|
9072
|
+
* @type {string}
|
|
9073
|
+
* @memberof LandingModel
|
|
9074
|
+
*/
|
|
9075
|
+
'name'?: string | null;
|
|
9076
|
+
/**
|
|
9077
|
+
*
|
|
9078
|
+
* @type {string}
|
|
9079
|
+
* @memberof LandingModel
|
|
9080
|
+
*/
|
|
9081
|
+
'slug'?: string | null;
|
|
9082
|
+
/**
|
|
9083
|
+
*
|
|
9084
|
+
* @type {boolean}
|
|
9085
|
+
* @memberof LandingModel
|
|
9086
|
+
*/
|
|
9087
|
+
'confirmed'?: boolean;
|
|
9088
|
+
/**
|
|
9089
|
+
*
|
|
9090
|
+
* @type {number}
|
|
9091
|
+
* @memberof LandingModel
|
|
9092
|
+
*/
|
|
9093
|
+
'order'?: number;
|
|
9094
|
+
/**
|
|
9095
|
+
*
|
|
9096
|
+
* @type {string}
|
|
9097
|
+
* @memberof LandingModel
|
|
9098
|
+
*/
|
|
9099
|
+
'photo'?: string | null;
|
|
9100
|
+
/**
|
|
9101
|
+
*
|
|
9102
|
+
* @type {string}
|
|
9103
|
+
* @memberof LandingModel
|
|
9104
|
+
*/
|
|
9105
|
+
'photoThumbnail'?: string | null;
|
|
9106
|
+
/**
|
|
9107
|
+
*
|
|
9108
|
+
* @type {AuditableEntity}
|
|
9109
|
+
* @memberof LandingModel
|
|
9110
|
+
*/
|
|
9111
|
+
'auditableEntity'?: AuditableEntity;
|
|
9112
|
+
/**
|
|
9113
|
+
*
|
|
9114
|
+
* @type {string}
|
|
9115
|
+
* @memberof LandingModel
|
|
9116
|
+
*/
|
|
9117
|
+
'description'?: string | null;
|
|
9118
|
+
/**
|
|
9119
|
+
*
|
|
9120
|
+
* @type {string}
|
|
9121
|
+
* @memberof LandingModel
|
|
9122
|
+
*/
|
|
9123
|
+
'overview'?: string | null;
|
|
9124
|
+
/**
|
|
9125
|
+
*
|
|
9126
|
+
* @type {string}
|
|
9127
|
+
* @memberof LandingModel
|
|
9128
|
+
*/
|
|
9129
|
+
'content'?: string | null;
|
|
9130
|
+
/**
|
|
9131
|
+
*
|
|
9132
|
+
* @type {string}
|
|
9133
|
+
* @memberof LandingModel
|
|
9134
|
+
*/
|
|
9135
|
+
'hospitalId'?: string;
|
|
9136
|
+
/**
|
|
9137
|
+
*
|
|
9138
|
+
* @type {string}
|
|
9139
|
+
* @memberof LandingModel
|
|
9140
|
+
*/
|
|
9141
|
+
'hospitalName'?: string | null;
|
|
9142
|
+
/**
|
|
9143
|
+
*
|
|
9144
|
+
* @type {string}
|
|
9145
|
+
* @memberof LandingModel
|
|
9146
|
+
*/
|
|
9147
|
+
'hospitalSlug'?: string | null;
|
|
9148
|
+
/**
|
|
9149
|
+
*
|
|
9150
|
+
* @type {string}
|
|
9151
|
+
* @memberof LandingModel
|
|
9152
|
+
*/
|
|
9153
|
+
'customStyle'?: string | null;
|
|
9154
|
+
/**
|
|
9155
|
+
*
|
|
9156
|
+
* @type {Array<LocalizedUrlModel>}
|
|
9157
|
+
* @memberof LandingModel
|
|
9158
|
+
*/
|
|
9159
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
9160
|
+
/**
|
|
9161
|
+
*
|
|
9162
|
+
* @type {Array<MediaModel>}
|
|
9163
|
+
* @memberof LandingModel
|
|
9164
|
+
*/
|
|
9165
|
+
'medias'?: Array<MediaModel> | null;
|
|
9166
|
+
}
|
|
9167
|
+
/**
|
|
9168
|
+
*
|
|
9169
|
+
* @export
|
|
9170
|
+
* @interface LandingsModel
|
|
9171
|
+
*/
|
|
9172
|
+
export interface LandingsModel {
|
|
9173
|
+
/**
|
|
9174
|
+
*
|
|
9175
|
+
* @type {Array<LandingItemModel>}
|
|
9176
|
+
* @memberof LandingsModel
|
|
9177
|
+
*/
|
|
9178
|
+
'items'?: Array<LandingItemModel> | null;
|
|
9179
|
+
/**
|
|
9180
|
+
*
|
|
9181
|
+
* @type {PagedListMetaData}
|
|
9182
|
+
* @memberof LandingsModel
|
|
9183
|
+
*/
|
|
9184
|
+
'metaData'?: PagedListMetaData;
|
|
9185
|
+
}
|
|
8856
9186
|
/**
|
|
8857
9187
|
*
|
|
8858
9188
|
* @export
|
|
@@ -9682,6 +10012,31 @@ export interface MembershipsModel {
|
|
|
9682
10012
|
*/
|
|
9683
10013
|
'metaData'?: PagedListMetaData;
|
|
9684
10014
|
}
|
|
10015
|
+
/**
|
|
10016
|
+
*
|
|
10017
|
+
* @export
|
|
10018
|
+
* @interface Metadata
|
|
10019
|
+
*/
|
|
10020
|
+
export interface Metadata {
|
|
10021
|
+
/**
|
|
10022
|
+
*
|
|
10023
|
+
* @type {string}
|
|
10024
|
+
* @memberof Metadata
|
|
10025
|
+
*/
|
|
10026
|
+
'location'?: string | null;
|
|
10027
|
+
/**
|
|
10028
|
+
*
|
|
10029
|
+
* @type {string}
|
|
10030
|
+
* @memberof Metadata
|
|
10031
|
+
*/
|
|
10032
|
+
'marriage'?: string | null;
|
|
10033
|
+
/**
|
|
10034
|
+
*
|
|
10035
|
+
* @type {string}
|
|
10036
|
+
* @memberof Metadata
|
|
10037
|
+
*/
|
|
10038
|
+
'hasSomeone'?: string | null;
|
|
10039
|
+
}
|
|
9685
10040
|
/**
|
|
9686
10041
|
*
|
|
9687
10042
|
* @export
|
|
@@ -10482,6 +10837,225 @@ export declare enum SearchIndexType {
|
|
|
10482
10837
|
Faqs = "faqs",
|
|
10483
10838
|
Services = "services"
|
|
10484
10839
|
}
|
|
10840
|
+
/**
|
|
10841
|
+
*
|
|
10842
|
+
* @export
|
|
10843
|
+
* @interface SendBirdGroupChannelMember
|
|
10844
|
+
*/
|
|
10845
|
+
export interface SendBirdGroupChannelMember {
|
|
10846
|
+
/**
|
|
10847
|
+
*
|
|
10848
|
+
* @type {string}
|
|
10849
|
+
* @memberof SendBirdGroupChannelMember
|
|
10850
|
+
*/
|
|
10851
|
+
'user_id'?: string | null;
|
|
10852
|
+
/**
|
|
10853
|
+
*
|
|
10854
|
+
* @type {string}
|
|
10855
|
+
* @memberof SendBirdGroupChannelMember
|
|
10856
|
+
*/
|
|
10857
|
+
'nickname'?: string | null;
|
|
10858
|
+
/**
|
|
10859
|
+
*
|
|
10860
|
+
* @type {string}
|
|
10861
|
+
* @memberof SendBirdGroupChannelMember
|
|
10862
|
+
*/
|
|
10863
|
+
'profile_url'?: string | null;
|
|
10864
|
+
/**
|
|
10865
|
+
*
|
|
10866
|
+
* @type {boolean}
|
|
10867
|
+
* @memberof SendBirdGroupChannelMember
|
|
10868
|
+
*/
|
|
10869
|
+
'is_active'?: boolean;
|
|
10870
|
+
/**
|
|
10871
|
+
*
|
|
10872
|
+
* @type {boolean}
|
|
10873
|
+
* @memberof SendBirdGroupChannelMember
|
|
10874
|
+
*/
|
|
10875
|
+
'is_online'?: boolean;
|
|
10876
|
+
/**
|
|
10877
|
+
*
|
|
10878
|
+
* @type {Array<string>}
|
|
10879
|
+
* @memberof SendBirdGroupChannelMember
|
|
10880
|
+
*/
|
|
10881
|
+
'friend_discovery_key'?: Array<string> | null;
|
|
10882
|
+
/**
|
|
10883
|
+
*
|
|
10884
|
+
* @type {number}
|
|
10885
|
+
* @memberof SendBirdGroupChannelMember
|
|
10886
|
+
*/
|
|
10887
|
+
'last_seen_at'?: number;
|
|
10888
|
+
/**
|
|
10889
|
+
*
|
|
10890
|
+
* @type {string}
|
|
10891
|
+
* @memberof SendBirdGroupChannelMember
|
|
10892
|
+
*/
|
|
10893
|
+
'state'?: string | null;
|
|
10894
|
+
/**
|
|
10895
|
+
*
|
|
10896
|
+
* @type {string}
|
|
10897
|
+
* @memberof SendBirdGroupChannelMember
|
|
10898
|
+
*/
|
|
10899
|
+
'role'?: string | null;
|
|
10900
|
+
/**
|
|
10901
|
+
*
|
|
10902
|
+
* @type {Metadata}
|
|
10903
|
+
* @memberof SendBirdGroupChannelMember
|
|
10904
|
+
*/
|
|
10905
|
+
'metadata'?: Metadata;
|
|
10906
|
+
}
|
|
10907
|
+
/**
|
|
10908
|
+
*
|
|
10909
|
+
* @export
|
|
10910
|
+
* @interface SendBirdGroupChannelModel
|
|
10911
|
+
*/
|
|
10912
|
+
export interface SendBirdGroupChannelModel {
|
|
10913
|
+
/**
|
|
10914
|
+
*
|
|
10915
|
+
* @type {string}
|
|
10916
|
+
* @memberof SendBirdGroupChannelModel
|
|
10917
|
+
*/
|
|
10918
|
+
'name'?: string | null;
|
|
10919
|
+
/**
|
|
10920
|
+
*
|
|
10921
|
+
* @type {string}
|
|
10922
|
+
* @memberof SendBirdGroupChannelModel
|
|
10923
|
+
*/
|
|
10924
|
+
'channel_url'?: string | null;
|
|
10925
|
+
/**
|
|
10926
|
+
*
|
|
10927
|
+
* @type {string}
|
|
10928
|
+
* @memberof SendBirdGroupChannelModel
|
|
10929
|
+
*/
|
|
10930
|
+
'cover_url'?: string | null;
|
|
10931
|
+
/**
|
|
10932
|
+
*
|
|
10933
|
+
* @type {string}
|
|
10934
|
+
* @memberof SendBirdGroupChannelModel
|
|
10935
|
+
*/
|
|
10936
|
+
'custom_type'?: string | null;
|
|
10937
|
+
/**
|
|
10938
|
+
*
|
|
10939
|
+
* @type {number}
|
|
10940
|
+
* @memberof SendBirdGroupChannelModel
|
|
10941
|
+
*/
|
|
10942
|
+
'unread_message_count'?: number;
|
|
10943
|
+
/**
|
|
10944
|
+
*
|
|
10945
|
+
* @type {string}
|
|
10946
|
+
* @memberof SendBirdGroupChannelModel
|
|
10947
|
+
*/
|
|
10948
|
+
'data'?: string | null;
|
|
10949
|
+
/**
|
|
10950
|
+
*
|
|
10951
|
+
* @type {boolean}
|
|
10952
|
+
* @memberof SendBirdGroupChannelModel
|
|
10953
|
+
*/
|
|
10954
|
+
'is_distinct'?: boolean;
|
|
10955
|
+
/**
|
|
10956
|
+
*
|
|
10957
|
+
* @type {boolean}
|
|
10958
|
+
* @memberof SendBirdGroupChannelModel
|
|
10959
|
+
*/
|
|
10960
|
+
'is_public'?: boolean;
|
|
10961
|
+
/**
|
|
10962
|
+
*
|
|
10963
|
+
* @type {boolean}
|
|
10964
|
+
* @memberof SendBirdGroupChannelModel
|
|
10965
|
+
*/
|
|
10966
|
+
'is_super'?: boolean;
|
|
10967
|
+
/**
|
|
10968
|
+
*
|
|
10969
|
+
* @type {boolean}
|
|
10970
|
+
* @memberof SendBirdGroupChannelModel
|
|
10971
|
+
*/
|
|
10972
|
+
'is_ephemeral'?: boolean;
|
|
10973
|
+
/**
|
|
10974
|
+
*
|
|
10975
|
+
* @type {boolean}
|
|
10976
|
+
* @memberof SendBirdGroupChannelModel
|
|
10977
|
+
*/
|
|
10978
|
+
'is_access_code_required'?: boolean;
|
|
10979
|
+
/**
|
|
10980
|
+
*
|
|
10981
|
+
* @type {string}
|
|
10982
|
+
* @memberof SendBirdGroupChannelModel
|
|
10983
|
+
*/
|
|
10984
|
+
'hidden_state'?: string | null;
|
|
10985
|
+
/**
|
|
10986
|
+
*
|
|
10987
|
+
* @type {number}
|
|
10988
|
+
* @memberof SendBirdGroupChannelModel
|
|
10989
|
+
*/
|
|
10990
|
+
'member_count'?: number;
|
|
10991
|
+
/**
|
|
10992
|
+
*
|
|
10993
|
+
* @type {number}
|
|
10994
|
+
* @memberof SendBirdGroupChannelModel
|
|
10995
|
+
*/
|
|
10996
|
+
'joined_member_count'?: number;
|
|
10997
|
+
/**
|
|
10998
|
+
*
|
|
10999
|
+
* @type {Array<SendBirdGroupChannelMember>}
|
|
11000
|
+
* @memberof SendBirdGroupChannelModel
|
|
11001
|
+
*/
|
|
11002
|
+
'members'?: Array<SendBirdGroupChannelMember> | null;
|
|
11003
|
+
/**
|
|
11004
|
+
*
|
|
11005
|
+
* @type {Array<SendBirdGroupChannelrOperator>}
|
|
11006
|
+
* @memberof SendBirdGroupChannelModel
|
|
11007
|
+
*/
|
|
11008
|
+
'operators'?: Array<SendBirdGroupChannelrOperator> | null;
|
|
11009
|
+
/**
|
|
11010
|
+
*
|
|
11011
|
+
* @type {number}
|
|
11012
|
+
* @memberof SendBirdGroupChannelModel
|
|
11013
|
+
*/
|
|
11014
|
+
'max_length_message'?: number;
|
|
11015
|
+
/**
|
|
11016
|
+
*
|
|
11017
|
+
* @type {AdminMessageModel}
|
|
11018
|
+
* @memberof SendBirdGroupChannelModel
|
|
11019
|
+
*/
|
|
11020
|
+
'last_message'?: AdminMessageModel;
|
|
11021
|
+
/**
|
|
11022
|
+
*
|
|
11023
|
+
* @type {number}
|
|
11024
|
+
* @memberof SendBirdGroupChannelModel
|
|
11025
|
+
*/
|
|
11026
|
+
'created_at'?: number;
|
|
11027
|
+
/**
|
|
11028
|
+
*
|
|
11029
|
+
* @type {boolean}
|
|
11030
|
+
* @memberof SendBirdGroupChannelModel
|
|
11031
|
+
*/
|
|
11032
|
+
'freeze'?: boolean;
|
|
11033
|
+
}
|
|
11034
|
+
/**
|
|
11035
|
+
*
|
|
11036
|
+
* @export
|
|
11037
|
+
* @interface SendBirdGroupChannelrOperator
|
|
11038
|
+
*/
|
|
11039
|
+
export interface SendBirdGroupChannelrOperator {
|
|
11040
|
+
/**
|
|
11041
|
+
*
|
|
11042
|
+
* @type {string}
|
|
11043
|
+
* @memberof SendBirdGroupChannelrOperator
|
|
11044
|
+
*/
|
|
11045
|
+
'user_id'?: string | null;
|
|
11046
|
+
/**
|
|
11047
|
+
*
|
|
11048
|
+
* @type {string}
|
|
11049
|
+
* @memberof SendBirdGroupChannelrOperator
|
|
11050
|
+
*/
|
|
11051
|
+
'nickname'?: string | null;
|
|
11052
|
+
/**
|
|
11053
|
+
*
|
|
11054
|
+
* @type {string}
|
|
11055
|
+
* @memberof SendBirdGroupChannelrOperator
|
|
11056
|
+
*/
|
|
11057
|
+
'profile_url'?: string | null;
|
|
11058
|
+
}
|
|
10485
11059
|
/**
|
|
10486
11060
|
*
|
|
10487
11061
|
* @export
|
|
@@ -10660,6 +11234,12 @@ export interface ServiceReviewItemModel {
|
|
|
10660
11234
|
* @memberof ServiceReviewItemModel
|
|
10661
11235
|
*/
|
|
10662
11236
|
'hospitalId'?: string;
|
|
11237
|
+
/**
|
|
11238
|
+
*
|
|
11239
|
+
* @type {string}
|
|
11240
|
+
* @memberof ServiceReviewItemModel
|
|
11241
|
+
*/
|
|
11242
|
+
'hospitalName'?: string | null;
|
|
10663
11243
|
/**
|
|
10664
11244
|
*
|
|
10665
11245
|
* @type {string}
|
|
@@ -10763,6 +11343,12 @@ export interface ServiceReviewModel {
|
|
|
10763
11343
|
* @memberof ServiceReviewModel
|
|
10764
11344
|
*/
|
|
10765
11345
|
'hospitalId'?: string;
|
|
11346
|
+
/**
|
|
11347
|
+
*
|
|
11348
|
+
* @type {string}
|
|
11349
|
+
* @memberof ServiceReviewModel
|
|
11350
|
+
*/
|
|
11351
|
+
'hospitalName'?: string | null;
|
|
10766
11352
|
/**
|
|
10767
11353
|
*
|
|
10768
11354
|
* @type {string}
|
|
@@ -13282,27 +13868,100 @@ export interface UpdateHospitalWorkingDayCommand {
|
|
|
13282
13868
|
/**
|
|
13283
13869
|
*
|
|
13284
13870
|
* @type {string}
|
|
13285
|
-
* @memberof UpdateHospitalWorkingDayCommand
|
|
13871
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
13872
|
+
*/
|
|
13873
|
+
'dayOfWeek'?: string | null;
|
|
13874
|
+
/**
|
|
13875
|
+
*
|
|
13876
|
+
* @type {Date}
|
|
13877
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
13878
|
+
*/
|
|
13879
|
+
'timeFrom'?: Date;
|
|
13880
|
+
/**
|
|
13881
|
+
*
|
|
13882
|
+
* @type {Date}
|
|
13883
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
13884
|
+
*/
|
|
13885
|
+
'timeTo'?: Date;
|
|
13886
|
+
/**
|
|
13887
|
+
*
|
|
13888
|
+
* @type {boolean}
|
|
13889
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
13890
|
+
*/
|
|
13891
|
+
'checkHoliday'?: boolean;
|
|
13892
|
+
}
|
|
13893
|
+
/**
|
|
13894
|
+
*
|
|
13895
|
+
* @export
|
|
13896
|
+
* @interface UpdateLandingCommand
|
|
13897
|
+
*/
|
|
13898
|
+
export interface UpdateLandingCommand {
|
|
13899
|
+
/**
|
|
13900
|
+
*
|
|
13901
|
+
* @type {string}
|
|
13902
|
+
* @memberof UpdateLandingCommand
|
|
13903
|
+
*/
|
|
13904
|
+
'languageCode'?: string | null;
|
|
13905
|
+
/**
|
|
13906
|
+
*
|
|
13907
|
+
* @type {string}
|
|
13908
|
+
* @memberof UpdateLandingCommand
|
|
13909
|
+
*/
|
|
13910
|
+
'name'?: string | null;
|
|
13911
|
+
/**
|
|
13912
|
+
*
|
|
13913
|
+
* @type {string}
|
|
13914
|
+
* @memberof UpdateLandingCommand
|
|
13915
|
+
*/
|
|
13916
|
+
'slug'?: string | null;
|
|
13917
|
+
/**
|
|
13918
|
+
*
|
|
13919
|
+
* @type {string}
|
|
13920
|
+
* @memberof UpdateLandingCommand
|
|
13921
|
+
*/
|
|
13922
|
+
'description'?: string | null;
|
|
13923
|
+
/**
|
|
13924
|
+
*
|
|
13925
|
+
* @type {string}
|
|
13926
|
+
* @memberof UpdateLandingCommand
|
|
13927
|
+
*/
|
|
13928
|
+
'content'?: string | null;
|
|
13929
|
+
/**
|
|
13930
|
+
*
|
|
13931
|
+
* @type {string}
|
|
13932
|
+
* @memberof UpdateLandingCommand
|
|
13286
13933
|
*/
|
|
13287
|
-
'
|
|
13934
|
+
'customStyle'?: string | null;
|
|
13288
13935
|
/**
|
|
13289
13936
|
*
|
|
13290
|
-
* @type {
|
|
13291
|
-
* @memberof
|
|
13937
|
+
* @type {number}
|
|
13938
|
+
* @memberof UpdateLandingCommand
|
|
13292
13939
|
*/
|
|
13293
|
-
'
|
|
13940
|
+
'order'?: number;
|
|
13294
13941
|
/**
|
|
13295
13942
|
*
|
|
13296
|
-
* @type {
|
|
13297
|
-
* @memberof
|
|
13943
|
+
* @type {string}
|
|
13944
|
+
* @memberof UpdateLandingCommand
|
|
13298
13945
|
*/
|
|
13299
|
-
'
|
|
13946
|
+
'photo'?: string | null;
|
|
13947
|
+
/**
|
|
13948
|
+
*
|
|
13949
|
+
* @type {string}
|
|
13950
|
+
* @memberof UpdateLandingCommand
|
|
13951
|
+
*/
|
|
13952
|
+
'photoThumbnail'?: string | null;
|
|
13300
13953
|
/**
|
|
13301
13954
|
*
|
|
13302
13955
|
* @type {boolean}
|
|
13303
|
-
* @memberof
|
|
13956
|
+
* @memberof UpdateLandingCommand
|
|
13304
13957
|
*/
|
|
13305
|
-
'
|
|
13958
|
+
'confirmed'?: boolean;
|
|
13959
|
+
/**
|
|
13960
|
+
*
|
|
13961
|
+
* @type {Array<MediaModel>}
|
|
13962
|
+
* @memberof UpdateLandingCommand
|
|
13963
|
+
*/
|
|
13964
|
+
'medias'?: Array<MediaModel> | null;
|
|
13306
13965
|
}
|
|
13307
13966
|
/**
|
|
13308
13967
|
*
|
|
@@ -22740,6 +23399,69 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
22740
23399
|
*/
|
|
22741
23400
|
apiV1FaqsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
|
|
22742
23401
|
}
|
|
23402
|
+
/**
|
|
23403
|
+
* GroupChannelsApi - axios parameter creator
|
|
23404
|
+
* @export
|
|
23405
|
+
*/
|
|
23406
|
+
export declare const GroupChannelsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
23407
|
+
/**
|
|
23408
|
+
*
|
|
23409
|
+
* @summary invite user to group channel
|
|
23410
|
+
* @param {string} channelUrl
|
|
23411
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
23412
|
+
* @param {*} [options] Override http request option.
|
|
23413
|
+
* @throws {RequiredError}
|
|
23414
|
+
*/
|
|
23415
|
+
apiV1GroupchannelsChannelUrlInvitePost: (channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23416
|
+
};
|
|
23417
|
+
/**
|
|
23418
|
+
* GroupChannelsApi - functional programming interface
|
|
23419
|
+
* @export
|
|
23420
|
+
*/
|
|
23421
|
+
export declare const GroupChannelsApiFp: (configuration?: Configuration | undefined) => {
|
|
23422
|
+
/**
|
|
23423
|
+
*
|
|
23424
|
+
* @summary invite user to group channel
|
|
23425
|
+
* @param {string} channelUrl
|
|
23426
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
23427
|
+
* @param {*} [options] Override http request option.
|
|
23428
|
+
* @throws {RequiredError}
|
|
23429
|
+
*/
|
|
23430
|
+
apiV1GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
|
|
23431
|
+
};
|
|
23432
|
+
/**
|
|
23433
|
+
* GroupChannelsApi - factory interface
|
|
23434
|
+
* @export
|
|
23435
|
+
*/
|
|
23436
|
+
export declare const GroupChannelsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
23437
|
+
/**
|
|
23438
|
+
*
|
|
23439
|
+
* @summary invite user to group channel
|
|
23440
|
+
* @param {string} channelUrl
|
|
23441
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
23442
|
+
* @param {*} [options] Override http request option.
|
|
23443
|
+
* @throws {RequiredError}
|
|
23444
|
+
*/
|
|
23445
|
+
apiV1GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand | undefined, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
|
|
23446
|
+
};
|
|
23447
|
+
/**
|
|
23448
|
+
* GroupChannelsApi - object-oriented interface
|
|
23449
|
+
* @export
|
|
23450
|
+
* @class GroupChannelsApi
|
|
23451
|
+
* @extends {BaseAPI}
|
|
23452
|
+
*/
|
|
23453
|
+
export declare class GroupChannelsApi extends BaseAPI {
|
|
23454
|
+
/**
|
|
23455
|
+
*
|
|
23456
|
+
* @summary invite user to group channel
|
|
23457
|
+
* @param {string} channelUrl
|
|
23458
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
23459
|
+
* @param {*} [options] Override http request option.
|
|
23460
|
+
* @throws {RequiredError}
|
|
23461
|
+
* @memberof GroupChannelsApi
|
|
23462
|
+
*/
|
|
23463
|
+
apiV1GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel>>;
|
|
23464
|
+
}
|
|
22743
23465
|
/**
|
|
22744
23466
|
* HospitalsApi - axios parameter creator
|
|
22745
23467
|
* @export
|
|
@@ -23037,6 +23759,68 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
23037
23759
|
* @throws {RequiredError}
|
|
23038
23760
|
*/
|
|
23039
23761
|
apiV1HospitalsHospitalIdHandlesPost: (hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23762
|
+
/**
|
|
23763
|
+
*
|
|
23764
|
+
* @summary Get all GetAllLandings.
|
|
23765
|
+
* @param {string} hospitalId
|
|
23766
|
+
* @param {string} [name]
|
|
23767
|
+
* @param {string} [slug]
|
|
23768
|
+
* @param {string} [languageCode]
|
|
23769
|
+
* @param {boolean} [showHidden]
|
|
23770
|
+
* @param {number} [page]
|
|
23771
|
+
* @param {number} [limit]
|
|
23772
|
+
* @param {Date} [lastRetrieved]
|
|
23773
|
+
* @param {*} [options] Override http request option.
|
|
23774
|
+
* @throws {RequiredError}
|
|
23775
|
+
*/
|
|
23776
|
+
apiV1HospitalsHospitalIdLandingsGet: (hospitalId: string, name?: string | undefined, slug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23777
|
+
/**
|
|
23778
|
+
*
|
|
23779
|
+
* @summary Delete Landing.
|
|
23780
|
+
* @param {string} hospitalId
|
|
23781
|
+
* @param {string} landingId
|
|
23782
|
+
* @param {*} [options] Override http request option.
|
|
23783
|
+
* @throws {RequiredError}
|
|
23784
|
+
*/
|
|
23785
|
+
apiV1HospitalsHospitalIdLandingsLandingIdDelete: (hospitalId: string, landingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23786
|
+
/**
|
|
23787
|
+
*
|
|
23788
|
+
* @summary Get Landing
|
|
23789
|
+
* @param {string} hospitalId
|
|
23790
|
+
* @param {string} landingId
|
|
23791
|
+
* @param {string} [languageCode]
|
|
23792
|
+
* @param {*} [options] Override http request option.
|
|
23793
|
+
* @throws {RequiredError}
|
|
23794
|
+
*/
|
|
23795
|
+
apiV1HospitalsHospitalIdLandingsLandingIdGet: (hospitalId: string, landingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23796
|
+
/**
|
|
23797
|
+
*
|
|
23798
|
+
* @summary Update Landing
|
|
23799
|
+
* @param {string} hospitalId
|
|
23800
|
+
* @param {string} landingId
|
|
23801
|
+
* @param {UpdateLandingCommand} [updateLandingCommand]
|
|
23802
|
+
* @param {*} [options] Override http request option.
|
|
23803
|
+
* @throws {RequiredError}
|
|
23804
|
+
*/
|
|
23805
|
+
apiV1HospitalsHospitalIdLandingsLandingIdPut: (hospitalId: string, landingId: string, updateLandingCommand?: UpdateLandingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23806
|
+
/**
|
|
23807
|
+
*
|
|
23808
|
+
* @summary Reactivate Landing
|
|
23809
|
+
* @param {string} hospitalId
|
|
23810
|
+
* @param {string} landingId
|
|
23811
|
+
* @param {*} [options] Override http request option.
|
|
23812
|
+
* @throws {RequiredError}
|
|
23813
|
+
*/
|
|
23814
|
+
apiV1HospitalsHospitalIdLandingsLandingIdReactivePut: (hospitalId: string, landingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23815
|
+
/**
|
|
23816
|
+
*
|
|
23817
|
+
* @summary Create HospitalLandings.
|
|
23818
|
+
* @param {string} hospitalId
|
|
23819
|
+
* @param {CreateLandingCommand} [createLandingCommand]
|
|
23820
|
+
* @param {*} [options] Override http request option.
|
|
23821
|
+
* @throws {RequiredError}
|
|
23822
|
+
*/
|
|
23823
|
+
apiV1HospitalsHospitalIdLandingsPost: (hospitalId: string, createLandingCommand?: CreateLandingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23040
23824
|
/**
|
|
23041
23825
|
*
|
|
23042
23826
|
* @summary Get all GetAllLanguages.
|
|
@@ -23811,6 +24595,68 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
23811
24595
|
* @throws {RequiredError}
|
|
23812
24596
|
*/
|
|
23813
24597
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
24598
|
+
/**
|
|
24599
|
+
*
|
|
24600
|
+
* @summary Get all GetAllLandings.
|
|
24601
|
+
* @param {string} hospitalId
|
|
24602
|
+
* @param {string} [name]
|
|
24603
|
+
* @param {string} [slug]
|
|
24604
|
+
* @param {string} [languageCode]
|
|
24605
|
+
* @param {boolean} [showHidden]
|
|
24606
|
+
* @param {number} [page]
|
|
24607
|
+
* @param {number} [limit]
|
|
24608
|
+
* @param {Date} [lastRetrieved]
|
|
24609
|
+
* @param {*} [options] Override http request option.
|
|
24610
|
+
* @throws {RequiredError}
|
|
24611
|
+
*/
|
|
24612
|
+
apiV1HospitalsHospitalIdLandingsGet(hospitalId: string, name?: string | undefined, slug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LandingsModel>>;
|
|
24613
|
+
/**
|
|
24614
|
+
*
|
|
24615
|
+
* @summary Delete Landing.
|
|
24616
|
+
* @param {string} hospitalId
|
|
24617
|
+
* @param {string} landingId
|
|
24618
|
+
* @param {*} [options] Override http request option.
|
|
24619
|
+
* @throws {RequiredError}
|
|
24620
|
+
*/
|
|
24621
|
+
apiV1HospitalsHospitalIdLandingsLandingIdDelete(hospitalId: string, landingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
24622
|
+
/**
|
|
24623
|
+
*
|
|
24624
|
+
* @summary Get Landing
|
|
24625
|
+
* @param {string} hospitalId
|
|
24626
|
+
* @param {string} landingId
|
|
24627
|
+
* @param {string} [languageCode]
|
|
24628
|
+
* @param {*} [options] Override http request option.
|
|
24629
|
+
* @throws {RequiredError}
|
|
24630
|
+
*/
|
|
24631
|
+
apiV1HospitalsHospitalIdLandingsLandingIdGet(hospitalId: string, landingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LandingModel>>;
|
|
24632
|
+
/**
|
|
24633
|
+
*
|
|
24634
|
+
* @summary Update Landing
|
|
24635
|
+
* @param {string} hospitalId
|
|
24636
|
+
* @param {string} landingId
|
|
24637
|
+
* @param {UpdateLandingCommand} [updateLandingCommand]
|
|
24638
|
+
* @param {*} [options] Override http request option.
|
|
24639
|
+
* @throws {RequiredError}
|
|
24640
|
+
*/
|
|
24641
|
+
apiV1HospitalsHospitalIdLandingsLandingIdPut(hospitalId: string, landingId: string, updateLandingCommand?: UpdateLandingCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LandingModel>>;
|
|
24642
|
+
/**
|
|
24643
|
+
*
|
|
24644
|
+
* @summary Reactivate Landing
|
|
24645
|
+
* @param {string} hospitalId
|
|
24646
|
+
* @param {string} landingId
|
|
24647
|
+
* @param {*} [options] Override http request option.
|
|
24648
|
+
* @throws {RequiredError}
|
|
24649
|
+
*/
|
|
24650
|
+
apiV1HospitalsHospitalIdLandingsLandingIdReactivePut(hospitalId: string, landingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
24651
|
+
/**
|
|
24652
|
+
*
|
|
24653
|
+
* @summary Create HospitalLandings.
|
|
24654
|
+
* @param {string} hospitalId
|
|
24655
|
+
* @param {CreateLandingCommand} [createLandingCommand]
|
|
24656
|
+
* @param {*} [options] Override http request option.
|
|
24657
|
+
* @throws {RequiredError}
|
|
24658
|
+
*/
|
|
24659
|
+
apiV1HospitalsHospitalIdLandingsPost(hospitalId: string, createLandingCommand?: CreateLandingCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LandingModel>>;
|
|
23814
24660
|
/**
|
|
23815
24661
|
*
|
|
23816
24662
|
* @summary Get all GetAllLanguages.
|
|
@@ -24585,6 +25431,68 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
24585
25431
|
* @throws {RequiredError}
|
|
24586
25432
|
*/
|
|
24587
25433
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
25434
|
+
/**
|
|
25435
|
+
*
|
|
25436
|
+
* @summary Get all GetAllLandings.
|
|
25437
|
+
* @param {string} hospitalId
|
|
25438
|
+
* @param {string} [name]
|
|
25439
|
+
* @param {string} [slug]
|
|
25440
|
+
* @param {string} [languageCode]
|
|
25441
|
+
* @param {boolean} [showHidden]
|
|
25442
|
+
* @param {number} [page]
|
|
25443
|
+
* @param {number} [limit]
|
|
25444
|
+
* @param {Date} [lastRetrieved]
|
|
25445
|
+
* @param {*} [options] Override http request option.
|
|
25446
|
+
* @throws {RequiredError}
|
|
25447
|
+
*/
|
|
25448
|
+
apiV1HospitalsHospitalIdLandingsGet(hospitalId: string, name?: string | undefined, slug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<LandingsModel>;
|
|
25449
|
+
/**
|
|
25450
|
+
*
|
|
25451
|
+
* @summary Delete Landing.
|
|
25452
|
+
* @param {string} hospitalId
|
|
25453
|
+
* @param {string} landingId
|
|
25454
|
+
* @param {*} [options] Override http request option.
|
|
25455
|
+
* @throws {RequiredError}
|
|
25456
|
+
*/
|
|
25457
|
+
apiV1HospitalsHospitalIdLandingsLandingIdDelete(hospitalId: string, landingId: string, options?: any): AxiosPromise<boolean>;
|
|
25458
|
+
/**
|
|
25459
|
+
*
|
|
25460
|
+
* @summary Get Landing
|
|
25461
|
+
* @param {string} hospitalId
|
|
25462
|
+
* @param {string} landingId
|
|
25463
|
+
* @param {string} [languageCode]
|
|
25464
|
+
* @param {*} [options] Override http request option.
|
|
25465
|
+
* @throws {RequiredError}
|
|
25466
|
+
*/
|
|
25467
|
+
apiV1HospitalsHospitalIdLandingsLandingIdGet(hospitalId: string, landingId: string, languageCode?: string | undefined, options?: any): AxiosPromise<LandingModel>;
|
|
25468
|
+
/**
|
|
25469
|
+
*
|
|
25470
|
+
* @summary Update Landing
|
|
25471
|
+
* @param {string} hospitalId
|
|
25472
|
+
* @param {string} landingId
|
|
25473
|
+
* @param {UpdateLandingCommand} [updateLandingCommand]
|
|
25474
|
+
* @param {*} [options] Override http request option.
|
|
25475
|
+
* @throws {RequiredError}
|
|
25476
|
+
*/
|
|
25477
|
+
apiV1HospitalsHospitalIdLandingsLandingIdPut(hospitalId: string, landingId: string, updateLandingCommand?: UpdateLandingCommand | undefined, options?: any): AxiosPromise<LandingModel>;
|
|
25478
|
+
/**
|
|
25479
|
+
*
|
|
25480
|
+
* @summary Reactivate Landing
|
|
25481
|
+
* @param {string} hospitalId
|
|
25482
|
+
* @param {string} landingId
|
|
25483
|
+
* @param {*} [options] Override http request option.
|
|
25484
|
+
* @throws {RequiredError}
|
|
25485
|
+
*/
|
|
25486
|
+
apiV1HospitalsHospitalIdLandingsLandingIdReactivePut(hospitalId: string, landingId: string, options?: any): AxiosPromise<boolean>;
|
|
25487
|
+
/**
|
|
25488
|
+
*
|
|
25489
|
+
* @summary Create HospitalLandings.
|
|
25490
|
+
* @param {string} hospitalId
|
|
25491
|
+
* @param {CreateLandingCommand} [createLandingCommand]
|
|
25492
|
+
* @param {*} [options] Override http request option.
|
|
25493
|
+
* @throws {RequiredError}
|
|
25494
|
+
*/
|
|
25495
|
+
apiV1HospitalsHospitalIdLandingsPost(hospitalId: string, createLandingCommand?: CreateLandingCommand | undefined, options?: any): AxiosPromise<LandingModel>;
|
|
24588
25496
|
/**
|
|
24589
25497
|
*
|
|
24590
25498
|
* @summary Get all GetAllLanguages.
|
|
@@ -25388,6 +26296,74 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
25388
26296
|
* @memberof HospitalsApi
|
|
25389
26297
|
*/
|
|
25390
26298
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
26299
|
+
/**
|
|
26300
|
+
*
|
|
26301
|
+
* @summary Get all GetAllLandings.
|
|
26302
|
+
* @param {string} hospitalId
|
|
26303
|
+
* @param {string} [name]
|
|
26304
|
+
* @param {string} [slug]
|
|
26305
|
+
* @param {string} [languageCode]
|
|
26306
|
+
* @param {boolean} [showHidden]
|
|
26307
|
+
* @param {number} [page]
|
|
26308
|
+
* @param {number} [limit]
|
|
26309
|
+
* @param {Date} [lastRetrieved]
|
|
26310
|
+
* @param {*} [options] Override http request option.
|
|
26311
|
+
* @throws {RequiredError}
|
|
26312
|
+
* @memberof HospitalsApi
|
|
26313
|
+
*/
|
|
26314
|
+
apiV1HospitalsHospitalIdLandingsGet(hospitalId: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingsModel>>;
|
|
26315
|
+
/**
|
|
26316
|
+
*
|
|
26317
|
+
* @summary Delete Landing.
|
|
26318
|
+
* @param {string} hospitalId
|
|
26319
|
+
* @param {string} landingId
|
|
26320
|
+
* @param {*} [options] Override http request option.
|
|
26321
|
+
* @throws {RequiredError}
|
|
26322
|
+
* @memberof HospitalsApi
|
|
26323
|
+
*/
|
|
26324
|
+
apiV1HospitalsHospitalIdLandingsLandingIdDelete(hospitalId: string, landingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
26325
|
+
/**
|
|
26326
|
+
*
|
|
26327
|
+
* @summary Get Landing
|
|
26328
|
+
* @param {string} hospitalId
|
|
26329
|
+
* @param {string} landingId
|
|
26330
|
+
* @param {string} [languageCode]
|
|
26331
|
+
* @param {*} [options] Override http request option.
|
|
26332
|
+
* @throws {RequiredError}
|
|
26333
|
+
* @memberof HospitalsApi
|
|
26334
|
+
*/
|
|
26335
|
+
apiV1HospitalsHospitalIdLandingsLandingIdGet(hospitalId: string, landingId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingModel>>;
|
|
26336
|
+
/**
|
|
26337
|
+
*
|
|
26338
|
+
* @summary Update Landing
|
|
26339
|
+
* @param {string} hospitalId
|
|
26340
|
+
* @param {string} landingId
|
|
26341
|
+
* @param {UpdateLandingCommand} [updateLandingCommand]
|
|
26342
|
+
* @param {*} [options] Override http request option.
|
|
26343
|
+
* @throws {RequiredError}
|
|
26344
|
+
* @memberof HospitalsApi
|
|
26345
|
+
*/
|
|
26346
|
+
apiV1HospitalsHospitalIdLandingsLandingIdPut(hospitalId: string, landingId: string, updateLandingCommand?: UpdateLandingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingModel>>;
|
|
26347
|
+
/**
|
|
26348
|
+
*
|
|
26349
|
+
* @summary Reactivate Landing
|
|
26350
|
+
* @param {string} hospitalId
|
|
26351
|
+
* @param {string} landingId
|
|
26352
|
+
* @param {*} [options] Override http request option.
|
|
26353
|
+
* @throws {RequiredError}
|
|
26354
|
+
* @memberof HospitalsApi
|
|
26355
|
+
*/
|
|
26356
|
+
apiV1HospitalsHospitalIdLandingsLandingIdReactivePut(hospitalId: string, landingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
26357
|
+
/**
|
|
26358
|
+
*
|
|
26359
|
+
* @summary Create HospitalLandings.
|
|
26360
|
+
* @param {string} hospitalId
|
|
26361
|
+
* @param {CreateLandingCommand} [createLandingCommand]
|
|
26362
|
+
* @param {*} [options] Override http request option.
|
|
26363
|
+
* @throws {RequiredError}
|
|
26364
|
+
* @memberof HospitalsApi
|
|
26365
|
+
*/
|
|
26366
|
+
apiV1HospitalsHospitalIdLandingsPost(hospitalId: string, createLandingCommand?: CreateLandingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingModel>>;
|
|
25391
26367
|
/**
|
|
25392
26368
|
*
|
|
25393
26369
|
* @summary Get all GetAllLanguages.
|
|
@@ -27759,6 +28735,8 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
27759
28735
|
* @param {string} [id]
|
|
27760
28736
|
* @param {string} [serviceId]
|
|
27761
28737
|
* @param {string} [serviceName]
|
|
28738
|
+
* @param {string} [hospitalId]
|
|
28739
|
+
* @param {string} [hospitalName]
|
|
27762
28740
|
* @param {string} [patientId]
|
|
27763
28741
|
* @param {string} [patientName]
|
|
27764
28742
|
* @param {Gender} [gender]
|
|
@@ -27773,7 +28751,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
27773
28751
|
* @param {*} [options] Override http request option.
|
|
27774
28752
|
* @throws {RequiredError}
|
|
27775
28753
|
*/
|
|
27776
|
-
apiV1ServicereviewsGet: (id?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28754
|
+
apiV1ServicereviewsGet: (id?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27777
28755
|
/**
|
|
27778
28756
|
*
|
|
27779
28757
|
* @summary Create a ServiceReview.
|
|
@@ -27869,6 +28847,8 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
27869
28847
|
* @param {string} [id]
|
|
27870
28848
|
* @param {string} [serviceId]
|
|
27871
28849
|
* @param {string} [serviceName]
|
|
28850
|
+
* @param {string} [hospitalId]
|
|
28851
|
+
* @param {string} [hospitalName]
|
|
27872
28852
|
* @param {string} [patientId]
|
|
27873
28853
|
* @param {string} [patientName]
|
|
27874
28854
|
* @param {Gender} [gender]
|
|
@@ -27883,7 +28863,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
27883
28863
|
* @param {*} [options] Override http request option.
|
|
27884
28864
|
* @throws {RequiredError}
|
|
27885
28865
|
*/
|
|
27886
|
-
apiV1ServicereviewsGet(id?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
28866
|
+
apiV1ServicereviewsGet(id?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
27887
28867
|
/**
|
|
27888
28868
|
*
|
|
27889
28869
|
* @summary Create a ServiceReview.
|
|
@@ -27979,6 +28959,8 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
27979
28959
|
* @param {string} [id]
|
|
27980
28960
|
* @param {string} [serviceId]
|
|
27981
28961
|
* @param {string} [serviceName]
|
|
28962
|
+
* @param {string} [hospitalId]
|
|
28963
|
+
* @param {string} [hospitalName]
|
|
27982
28964
|
* @param {string} [patientId]
|
|
27983
28965
|
* @param {string} [patientName]
|
|
27984
28966
|
* @param {Gender} [gender]
|
|
@@ -27993,7 +28975,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
27993
28975
|
* @param {*} [options] Override http request option.
|
|
27994
28976
|
* @throws {RequiredError}
|
|
27995
28977
|
*/
|
|
27996
|
-
apiV1ServicereviewsGet(id?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
28978
|
+
apiV1ServicereviewsGet(id?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
27997
28979
|
/**
|
|
27998
28980
|
*
|
|
27999
28981
|
* @summary Create a ServiceReview.
|
|
@@ -28091,6 +29073,8 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
28091
29073
|
* @param {string} [id]
|
|
28092
29074
|
* @param {string} [serviceId]
|
|
28093
29075
|
* @param {string} [serviceName]
|
|
29076
|
+
* @param {string} [hospitalId]
|
|
29077
|
+
* @param {string} [hospitalName]
|
|
28094
29078
|
* @param {string} [patientId]
|
|
28095
29079
|
* @param {string} [patientName]
|
|
28096
29080
|
* @param {Gender} [gender]
|
|
@@ -28106,7 +29090,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
28106
29090
|
* @throws {RequiredError}
|
|
28107
29091
|
* @memberof ServiceReviewsApi
|
|
28108
29092
|
*/
|
|
28109
|
-
apiV1ServicereviewsGet(id?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
|
|
29093
|
+
apiV1ServicereviewsGet(id?: string, serviceId?: string, serviceName?: string, hospitalId?: string, hospitalName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
|
|
28110
29094
|
/**
|
|
28111
29095
|
*
|
|
28112
29096
|
* @summary Create a ServiceReview.
|