ch-admin-api-client-typescript 4.3.5 → 4.3.7
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 +989 -25
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +769 -29
- package/package.json +1 -1
- package/src/api.ts +1380 -83
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
|
|
@@ -13259,50 +13833,123 @@ export interface UpdateHospitalSpecialtyCommand {
|
|
|
13259
13833
|
* @type {string}
|
|
13260
13834
|
* @memberof UpdateHospitalSpecialtyCommand
|
|
13261
13835
|
*/
|
|
13262
|
-
'backgroundThumbnail'?: string | null;
|
|
13836
|
+
'backgroundThumbnail'?: string | null;
|
|
13837
|
+
/**
|
|
13838
|
+
*
|
|
13839
|
+
* @type {boolean}
|
|
13840
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
13841
|
+
*/
|
|
13842
|
+
'confirmed'?: boolean;
|
|
13843
|
+
/**
|
|
13844
|
+
*
|
|
13845
|
+
* @type {Array<MediaModel>}
|
|
13846
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
13847
|
+
*/
|
|
13848
|
+
'medias'?: Array<MediaModel> | null;
|
|
13849
|
+
}
|
|
13850
|
+
/**
|
|
13851
|
+
*
|
|
13852
|
+
* @export
|
|
13853
|
+
* @interface UpdateHospitalWorkingDayCommand
|
|
13854
|
+
*/
|
|
13855
|
+
export interface UpdateHospitalWorkingDayCommand {
|
|
13856
|
+
/**
|
|
13857
|
+
*
|
|
13858
|
+
* @type {string}
|
|
13859
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
13860
|
+
*/
|
|
13861
|
+
'dayOfWeek'?: string | null;
|
|
13862
|
+
/**
|
|
13863
|
+
*
|
|
13864
|
+
* @type {Date}
|
|
13865
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
13866
|
+
*/
|
|
13867
|
+
'timeFrom'?: Date;
|
|
13868
|
+
/**
|
|
13869
|
+
*
|
|
13870
|
+
* @type {Date}
|
|
13871
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
13872
|
+
*/
|
|
13873
|
+
'timeTo'?: Date;
|
|
13874
|
+
/**
|
|
13875
|
+
*
|
|
13876
|
+
* @type {boolean}
|
|
13877
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
13878
|
+
*/
|
|
13879
|
+
'checkHoliday'?: boolean;
|
|
13880
|
+
}
|
|
13881
|
+
/**
|
|
13882
|
+
*
|
|
13883
|
+
* @export
|
|
13884
|
+
* @interface UpdateLandingCommand
|
|
13885
|
+
*/
|
|
13886
|
+
export interface UpdateLandingCommand {
|
|
13887
|
+
/**
|
|
13888
|
+
*
|
|
13889
|
+
* @type {string}
|
|
13890
|
+
* @memberof UpdateLandingCommand
|
|
13891
|
+
*/
|
|
13892
|
+
'languageCode'?: string | null;
|
|
13893
|
+
/**
|
|
13894
|
+
*
|
|
13895
|
+
* @type {string}
|
|
13896
|
+
* @memberof UpdateLandingCommand
|
|
13897
|
+
*/
|
|
13898
|
+
'name'?: string | null;
|
|
13899
|
+
/**
|
|
13900
|
+
*
|
|
13901
|
+
* @type {string}
|
|
13902
|
+
* @memberof UpdateLandingCommand
|
|
13903
|
+
*/
|
|
13904
|
+
'slug'?: string | null;
|
|
13905
|
+
/**
|
|
13906
|
+
*
|
|
13907
|
+
* @type {string}
|
|
13908
|
+
* @memberof UpdateLandingCommand
|
|
13909
|
+
*/
|
|
13910
|
+
'description'?: string | null;
|
|
13911
|
+
/**
|
|
13912
|
+
*
|
|
13913
|
+
* @type {string}
|
|
13914
|
+
* @memberof UpdateLandingCommand
|
|
13915
|
+
*/
|
|
13916
|
+
'content'?: string | null;
|
|
13263
13917
|
/**
|
|
13264
13918
|
*
|
|
13265
|
-
* @type {
|
|
13266
|
-
* @memberof
|
|
13919
|
+
* @type {string}
|
|
13920
|
+
* @memberof UpdateLandingCommand
|
|
13267
13921
|
*/
|
|
13268
|
-
'
|
|
13922
|
+
'customStyle'?: string | null;
|
|
13269
13923
|
/**
|
|
13270
13924
|
*
|
|
13271
|
-
* @type {
|
|
13272
|
-
* @memberof
|
|
13925
|
+
* @type {number}
|
|
13926
|
+
* @memberof UpdateLandingCommand
|
|
13273
13927
|
*/
|
|
13274
|
-
'
|
|
13275
|
-
}
|
|
13276
|
-
/**
|
|
13277
|
-
*
|
|
13278
|
-
* @export
|
|
13279
|
-
* @interface UpdateHospitalWorkingDayCommand
|
|
13280
|
-
*/
|
|
13281
|
-
export interface UpdateHospitalWorkingDayCommand {
|
|
13928
|
+
'order'?: number;
|
|
13282
13929
|
/**
|
|
13283
13930
|
*
|
|
13284
13931
|
* @type {string}
|
|
13285
|
-
* @memberof
|
|
13932
|
+
* @memberof UpdateLandingCommand
|
|
13286
13933
|
*/
|
|
13287
|
-
'
|
|
13934
|
+
'photo'?: string | null;
|
|
13288
13935
|
/**
|
|
13289
13936
|
*
|
|
13290
|
-
* @type {
|
|
13291
|
-
* @memberof
|
|
13937
|
+
* @type {string}
|
|
13938
|
+
* @memberof UpdateLandingCommand
|
|
13292
13939
|
*/
|
|
13293
|
-
'
|
|
13940
|
+
'photoThumbnail'?: string | null;
|
|
13294
13941
|
/**
|
|
13295
13942
|
*
|
|
13296
|
-
* @type {
|
|
13297
|
-
* @memberof
|
|
13943
|
+
* @type {boolean}
|
|
13944
|
+
* @memberof UpdateLandingCommand
|
|
13298
13945
|
*/
|
|
13299
|
-
'
|
|
13946
|
+
'confirmed'?: boolean;
|
|
13300
13947
|
/**
|
|
13301
13948
|
*
|
|
13302
|
-
* @type {
|
|
13303
|
-
* @memberof
|
|
13949
|
+
* @type {Array<MediaModel>}
|
|
13950
|
+
* @memberof UpdateLandingCommand
|
|
13304
13951
|
*/
|
|
13305
|
-
'
|
|
13952
|
+
'medias'?: Array<MediaModel> | null;
|
|
13306
13953
|
}
|
|
13307
13954
|
/**
|
|
13308
13955
|
*
|
|
@@ -22740,6 +23387,69 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
22740
23387
|
*/
|
|
22741
23388
|
apiV1FaqsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
|
|
22742
23389
|
}
|
|
23390
|
+
/**
|
|
23391
|
+
* GroupChannelsApi - axios parameter creator
|
|
23392
|
+
* @export
|
|
23393
|
+
*/
|
|
23394
|
+
export declare const GroupChannelsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
23395
|
+
/**
|
|
23396
|
+
*
|
|
23397
|
+
* @summary invite user to group channel
|
|
23398
|
+
* @param {string} channelUrl
|
|
23399
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
23400
|
+
* @param {*} [options] Override http request option.
|
|
23401
|
+
* @throws {RequiredError}
|
|
23402
|
+
*/
|
|
23403
|
+
apiV1GroupchannelsChannelUrlInvitePost: (channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23404
|
+
};
|
|
23405
|
+
/**
|
|
23406
|
+
* GroupChannelsApi - functional programming interface
|
|
23407
|
+
* @export
|
|
23408
|
+
*/
|
|
23409
|
+
export declare const GroupChannelsApiFp: (configuration?: Configuration | undefined) => {
|
|
23410
|
+
/**
|
|
23411
|
+
*
|
|
23412
|
+
* @summary invite user to group channel
|
|
23413
|
+
* @param {string} channelUrl
|
|
23414
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
23415
|
+
* @param {*} [options] Override http request option.
|
|
23416
|
+
* @throws {RequiredError}
|
|
23417
|
+
*/
|
|
23418
|
+
apiV1GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
|
|
23419
|
+
};
|
|
23420
|
+
/**
|
|
23421
|
+
* GroupChannelsApi - factory interface
|
|
23422
|
+
* @export
|
|
23423
|
+
*/
|
|
23424
|
+
export declare const GroupChannelsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
23425
|
+
/**
|
|
23426
|
+
*
|
|
23427
|
+
* @summary invite user to group channel
|
|
23428
|
+
* @param {string} channelUrl
|
|
23429
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
23430
|
+
* @param {*} [options] Override http request option.
|
|
23431
|
+
* @throws {RequiredError}
|
|
23432
|
+
*/
|
|
23433
|
+
apiV1GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand | undefined, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
|
|
23434
|
+
};
|
|
23435
|
+
/**
|
|
23436
|
+
* GroupChannelsApi - object-oriented interface
|
|
23437
|
+
* @export
|
|
23438
|
+
* @class GroupChannelsApi
|
|
23439
|
+
* @extends {BaseAPI}
|
|
23440
|
+
*/
|
|
23441
|
+
export declare class GroupChannelsApi extends BaseAPI {
|
|
23442
|
+
/**
|
|
23443
|
+
*
|
|
23444
|
+
* @summary invite user to group channel
|
|
23445
|
+
* @param {string} channelUrl
|
|
23446
|
+
* @param {InviteSendBirdGroupChannelCommand} [inviteSendBirdGroupChannelCommand]
|
|
23447
|
+
* @param {*} [options] Override http request option.
|
|
23448
|
+
* @throws {RequiredError}
|
|
23449
|
+
* @memberof GroupChannelsApi
|
|
23450
|
+
*/
|
|
23451
|
+
apiV1GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel>>;
|
|
23452
|
+
}
|
|
22743
23453
|
/**
|
|
22744
23454
|
* HospitalsApi - axios parameter creator
|
|
22745
23455
|
* @export
|
|
@@ -23037,6 +23747,68 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
23037
23747
|
* @throws {RequiredError}
|
|
23038
23748
|
*/
|
|
23039
23749
|
apiV1HospitalsHospitalIdHandlesPost: (hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23750
|
+
/**
|
|
23751
|
+
*
|
|
23752
|
+
* @summary Get all GetAllLandings.
|
|
23753
|
+
* @param {string} hospitalId
|
|
23754
|
+
* @param {string} [name]
|
|
23755
|
+
* @param {string} [slug]
|
|
23756
|
+
* @param {string} [languageCode]
|
|
23757
|
+
* @param {boolean} [showHidden]
|
|
23758
|
+
* @param {number} [page]
|
|
23759
|
+
* @param {number} [limit]
|
|
23760
|
+
* @param {Date} [lastRetrieved]
|
|
23761
|
+
* @param {*} [options] Override http request option.
|
|
23762
|
+
* @throws {RequiredError}
|
|
23763
|
+
*/
|
|
23764
|
+
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>;
|
|
23765
|
+
/**
|
|
23766
|
+
*
|
|
23767
|
+
* @summary Delete Landing.
|
|
23768
|
+
* @param {string} hospitalId
|
|
23769
|
+
* @param {string} landingId
|
|
23770
|
+
* @param {*} [options] Override http request option.
|
|
23771
|
+
* @throws {RequiredError}
|
|
23772
|
+
*/
|
|
23773
|
+
apiV1HospitalsHospitalIdLandingsLandingIdDelete: (hospitalId: string, landingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23774
|
+
/**
|
|
23775
|
+
*
|
|
23776
|
+
* @summary Get Landing
|
|
23777
|
+
* @param {string} hospitalId
|
|
23778
|
+
* @param {string} landingId
|
|
23779
|
+
* @param {string} [languageCode]
|
|
23780
|
+
* @param {*} [options] Override http request option.
|
|
23781
|
+
* @throws {RequiredError}
|
|
23782
|
+
*/
|
|
23783
|
+
apiV1HospitalsHospitalIdLandingsLandingIdGet: (hospitalId: string, landingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23784
|
+
/**
|
|
23785
|
+
*
|
|
23786
|
+
* @summary Update Landing
|
|
23787
|
+
* @param {string} hospitalId
|
|
23788
|
+
* @param {string} landingId
|
|
23789
|
+
* @param {UpdateLandingCommand} [updateLandingCommand]
|
|
23790
|
+
* @param {*} [options] Override http request option.
|
|
23791
|
+
* @throws {RequiredError}
|
|
23792
|
+
*/
|
|
23793
|
+
apiV1HospitalsHospitalIdLandingsLandingIdPut: (hospitalId: string, landingId: string, updateLandingCommand?: UpdateLandingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23794
|
+
/**
|
|
23795
|
+
*
|
|
23796
|
+
* @summary Reactivate Landing
|
|
23797
|
+
* @param {string} hospitalId
|
|
23798
|
+
* @param {string} landingId
|
|
23799
|
+
* @param {*} [options] Override http request option.
|
|
23800
|
+
* @throws {RequiredError}
|
|
23801
|
+
*/
|
|
23802
|
+
apiV1HospitalsHospitalIdLandingsLandingIdReactivePut: (hospitalId: string, landingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23803
|
+
/**
|
|
23804
|
+
*
|
|
23805
|
+
* @summary Create HospitalLandings.
|
|
23806
|
+
* @param {string} hospitalId
|
|
23807
|
+
* @param {CreateLandingCommand} [createLandingCommand]
|
|
23808
|
+
* @param {*} [options] Override http request option.
|
|
23809
|
+
* @throws {RequiredError}
|
|
23810
|
+
*/
|
|
23811
|
+
apiV1HospitalsHospitalIdLandingsPost: (hospitalId: string, createLandingCommand?: CreateLandingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23040
23812
|
/**
|
|
23041
23813
|
*
|
|
23042
23814
|
* @summary Get all GetAllLanguages.
|
|
@@ -23811,6 +24583,68 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
23811
24583
|
* @throws {RequiredError}
|
|
23812
24584
|
*/
|
|
23813
24585
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
24586
|
+
/**
|
|
24587
|
+
*
|
|
24588
|
+
* @summary Get all GetAllLandings.
|
|
24589
|
+
* @param {string} hospitalId
|
|
24590
|
+
* @param {string} [name]
|
|
24591
|
+
* @param {string} [slug]
|
|
24592
|
+
* @param {string} [languageCode]
|
|
24593
|
+
* @param {boolean} [showHidden]
|
|
24594
|
+
* @param {number} [page]
|
|
24595
|
+
* @param {number} [limit]
|
|
24596
|
+
* @param {Date} [lastRetrieved]
|
|
24597
|
+
* @param {*} [options] Override http request option.
|
|
24598
|
+
* @throws {RequiredError}
|
|
24599
|
+
*/
|
|
24600
|
+
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>>;
|
|
24601
|
+
/**
|
|
24602
|
+
*
|
|
24603
|
+
* @summary Delete Landing.
|
|
24604
|
+
* @param {string} hospitalId
|
|
24605
|
+
* @param {string} landingId
|
|
24606
|
+
* @param {*} [options] Override http request option.
|
|
24607
|
+
* @throws {RequiredError}
|
|
24608
|
+
*/
|
|
24609
|
+
apiV1HospitalsHospitalIdLandingsLandingIdDelete(hospitalId: string, landingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
24610
|
+
/**
|
|
24611
|
+
*
|
|
24612
|
+
* @summary Get Landing
|
|
24613
|
+
* @param {string} hospitalId
|
|
24614
|
+
* @param {string} landingId
|
|
24615
|
+
* @param {string} [languageCode]
|
|
24616
|
+
* @param {*} [options] Override http request option.
|
|
24617
|
+
* @throws {RequiredError}
|
|
24618
|
+
*/
|
|
24619
|
+
apiV1HospitalsHospitalIdLandingsLandingIdGet(hospitalId: string, landingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LandingModel>>;
|
|
24620
|
+
/**
|
|
24621
|
+
*
|
|
24622
|
+
* @summary Update Landing
|
|
24623
|
+
* @param {string} hospitalId
|
|
24624
|
+
* @param {string} landingId
|
|
24625
|
+
* @param {UpdateLandingCommand} [updateLandingCommand]
|
|
24626
|
+
* @param {*} [options] Override http request option.
|
|
24627
|
+
* @throws {RequiredError}
|
|
24628
|
+
*/
|
|
24629
|
+
apiV1HospitalsHospitalIdLandingsLandingIdPut(hospitalId: string, landingId: string, updateLandingCommand?: UpdateLandingCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LandingModel>>;
|
|
24630
|
+
/**
|
|
24631
|
+
*
|
|
24632
|
+
* @summary Reactivate Landing
|
|
24633
|
+
* @param {string} hospitalId
|
|
24634
|
+
* @param {string} landingId
|
|
24635
|
+
* @param {*} [options] Override http request option.
|
|
24636
|
+
* @throws {RequiredError}
|
|
24637
|
+
*/
|
|
24638
|
+
apiV1HospitalsHospitalIdLandingsLandingIdReactivePut(hospitalId: string, landingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
24639
|
+
/**
|
|
24640
|
+
*
|
|
24641
|
+
* @summary Create HospitalLandings.
|
|
24642
|
+
* @param {string} hospitalId
|
|
24643
|
+
* @param {CreateLandingCommand} [createLandingCommand]
|
|
24644
|
+
* @param {*} [options] Override http request option.
|
|
24645
|
+
* @throws {RequiredError}
|
|
24646
|
+
*/
|
|
24647
|
+
apiV1HospitalsHospitalIdLandingsPost(hospitalId: string, createLandingCommand?: CreateLandingCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LandingModel>>;
|
|
23814
24648
|
/**
|
|
23815
24649
|
*
|
|
23816
24650
|
* @summary Get all GetAllLanguages.
|
|
@@ -24585,6 +25419,68 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
24585
25419
|
* @throws {RequiredError}
|
|
24586
25420
|
*/
|
|
24587
25421
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
25422
|
+
/**
|
|
25423
|
+
*
|
|
25424
|
+
* @summary Get all GetAllLandings.
|
|
25425
|
+
* @param {string} hospitalId
|
|
25426
|
+
* @param {string} [name]
|
|
25427
|
+
* @param {string} [slug]
|
|
25428
|
+
* @param {string} [languageCode]
|
|
25429
|
+
* @param {boolean} [showHidden]
|
|
25430
|
+
* @param {number} [page]
|
|
25431
|
+
* @param {number} [limit]
|
|
25432
|
+
* @param {Date} [lastRetrieved]
|
|
25433
|
+
* @param {*} [options] Override http request option.
|
|
25434
|
+
* @throws {RequiredError}
|
|
25435
|
+
*/
|
|
25436
|
+
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>;
|
|
25437
|
+
/**
|
|
25438
|
+
*
|
|
25439
|
+
* @summary Delete Landing.
|
|
25440
|
+
* @param {string} hospitalId
|
|
25441
|
+
* @param {string} landingId
|
|
25442
|
+
* @param {*} [options] Override http request option.
|
|
25443
|
+
* @throws {RequiredError}
|
|
25444
|
+
*/
|
|
25445
|
+
apiV1HospitalsHospitalIdLandingsLandingIdDelete(hospitalId: string, landingId: string, options?: any): AxiosPromise<boolean>;
|
|
25446
|
+
/**
|
|
25447
|
+
*
|
|
25448
|
+
* @summary Get Landing
|
|
25449
|
+
* @param {string} hospitalId
|
|
25450
|
+
* @param {string} landingId
|
|
25451
|
+
* @param {string} [languageCode]
|
|
25452
|
+
* @param {*} [options] Override http request option.
|
|
25453
|
+
* @throws {RequiredError}
|
|
25454
|
+
*/
|
|
25455
|
+
apiV1HospitalsHospitalIdLandingsLandingIdGet(hospitalId: string, landingId: string, languageCode?: string | undefined, options?: any): AxiosPromise<LandingModel>;
|
|
25456
|
+
/**
|
|
25457
|
+
*
|
|
25458
|
+
* @summary Update Landing
|
|
25459
|
+
* @param {string} hospitalId
|
|
25460
|
+
* @param {string} landingId
|
|
25461
|
+
* @param {UpdateLandingCommand} [updateLandingCommand]
|
|
25462
|
+
* @param {*} [options] Override http request option.
|
|
25463
|
+
* @throws {RequiredError}
|
|
25464
|
+
*/
|
|
25465
|
+
apiV1HospitalsHospitalIdLandingsLandingIdPut(hospitalId: string, landingId: string, updateLandingCommand?: UpdateLandingCommand | undefined, options?: any): AxiosPromise<LandingModel>;
|
|
25466
|
+
/**
|
|
25467
|
+
*
|
|
25468
|
+
* @summary Reactivate Landing
|
|
25469
|
+
* @param {string} hospitalId
|
|
25470
|
+
* @param {string} landingId
|
|
25471
|
+
* @param {*} [options] Override http request option.
|
|
25472
|
+
* @throws {RequiredError}
|
|
25473
|
+
*/
|
|
25474
|
+
apiV1HospitalsHospitalIdLandingsLandingIdReactivePut(hospitalId: string, landingId: string, options?: any): AxiosPromise<boolean>;
|
|
25475
|
+
/**
|
|
25476
|
+
*
|
|
25477
|
+
* @summary Create HospitalLandings.
|
|
25478
|
+
* @param {string} hospitalId
|
|
25479
|
+
* @param {CreateLandingCommand} [createLandingCommand]
|
|
25480
|
+
* @param {*} [options] Override http request option.
|
|
25481
|
+
* @throws {RequiredError}
|
|
25482
|
+
*/
|
|
25483
|
+
apiV1HospitalsHospitalIdLandingsPost(hospitalId: string, createLandingCommand?: CreateLandingCommand | undefined, options?: any): AxiosPromise<LandingModel>;
|
|
24588
25484
|
/**
|
|
24589
25485
|
*
|
|
24590
25486
|
* @summary Get all GetAllLanguages.
|
|
@@ -25388,6 +26284,74 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
25388
26284
|
* @memberof HospitalsApi
|
|
25389
26285
|
*/
|
|
25390
26286
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
26287
|
+
/**
|
|
26288
|
+
*
|
|
26289
|
+
* @summary Get all GetAllLandings.
|
|
26290
|
+
* @param {string} hospitalId
|
|
26291
|
+
* @param {string} [name]
|
|
26292
|
+
* @param {string} [slug]
|
|
26293
|
+
* @param {string} [languageCode]
|
|
26294
|
+
* @param {boolean} [showHidden]
|
|
26295
|
+
* @param {number} [page]
|
|
26296
|
+
* @param {number} [limit]
|
|
26297
|
+
* @param {Date} [lastRetrieved]
|
|
26298
|
+
* @param {*} [options] Override http request option.
|
|
26299
|
+
* @throws {RequiredError}
|
|
26300
|
+
* @memberof HospitalsApi
|
|
26301
|
+
*/
|
|
26302
|
+
apiV1HospitalsHospitalIdLandingsGet(hospitalId: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingsModel>>;
|
|
26303
|
+
/**
|
|
26304
|
+
*
|
|
26305
|
+
* @summary Delete Landing.
|
|
26306
|
+
* @param {string} hospitalId
|
|
26307
|
+
* @param {string} landingId
|
|
26308
|
+
* @param {*} [options] Override http request option.
|
|
26309
|
+
* @throws {RequiredError}
|
|
26310
|
+
* @memberof HospitalsApi
|
|
26311
|
+
*/
|
|
26312
|
+
apiV1HospitalsHospitalIdLandingsLandingIdDelete(hospitalId: string, landingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
26313
|
+
/**
|
|
26314
|
+
*
|
|
26315
|
+
* @summary Get Landing
|
|
26316
|
+
* @param {string} hospitalId
|
|
26317
|
+
* @param {string} landingId
|
|
26318
|
+
* @param {string} [languageCode]
|
|
26319
|
+
* @param {*} [options] Override http request option.
|
|
26320
|
+
* @throws {RequiredError}
|
|
26321
|
+
* @memberof HospitalsApi
|
|
26322
|
+
*/
|
|
26323
|
+
apiV1HospitalsHospitalIdLandingsLandingIdGet(hospitalId: string, landingId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingModel>>;
|
|
26324
|
+
/**
|
|
26325
|
+
*
|
|
26326
|
+
* @summary Update Landing
|
|
26327
|
+
* @param {string} hospitalId
|
|
26328
|
+
* @param {string} landingId
|
|
26329
|
+
* @param {UpdateLandingCommand} [updateLandingCommand]
|
|
26330
|
+
* @param {*} [options] Override http request option.
|
|
26331
|
+
* @throws {RequiredError}
|
|
26332
|
+
* @memberof HospitalsApi
|
|
26333
|
+
*/
|
|
26334
|
+
apiV1HospitalsHospitalIdLandingsLandingIdPut(hospitalId: string, landingId: string, updateLandingCommand?: UpdateLandingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingModel>>;
|
|
26335
|
+
/**
|
|
26336
|
+
*
|
|
26337
|
+
* @summary Reactivate Landing
|
|
26338
|
+
* @param {string} hospitalId
|
|
26339
|
+
* @param {string} landingId
|
|
26340
|
+
* @param {*} [options] Override http request option.
|
|
26341
|
+
* @throws {RequiredError}
|
|
26342
|
+
* @memberof HospitalsApi
|
|
26343
|
+
*/
|
|
26344
|
+
apiV1HospitalsHospitalIdLandingsLandingIdReactivePut(hospitalId: string, landingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
26345
|
+
/**
|
|
26346
|
+
*
|
|
26347
|
+
* @summary Create HospitalLandings.
|
|
26348
|
+
* @param {string} hospitalId
|
|
26349
|
+
* @param {CreateLandingCommand} [createLandingCommand]
|
|
26350
|
+
* @param {*} [options] Override http request option.
|
|
26351
|
+
* @throws {RequiredError}
|
|
26352
|
+
* @memberof HospitalsApi
|
|
26353
|
+
*/
|
|
26354
|
+
apiV1HospitalsHospitalIdLandingsPost(hospitalId: string, createLandingCommand?: CreateLandingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingModel>>;
|
|
25391
26355
|
/**
|
|
25392
26356
|
*
|
|
25393
26357
|
* @summary Get all GetAllLanguages.
|