ch-admin-api-client-typescript 2.1.5 → 2.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +1512 -688
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +2658 -885
- package/package.json +1 -1
- package/src/api.ts +2663 -1046
package/lib/api.d.ts
CHANGED
|
@@ -198,12 +198,6 @@ export interface ApproveConsultationCommand {
|
|
|
198
198
|
* @memberof ApproveConsultationCommand
|
|
199
199
|
*/
|
|
200
200
|
'confirmedDateEnd'?: Date | null;
|
|
201
|
-
/**
|
|
202
|
-
*
|
|
203
|
-
* @type {string}
|
|
204
|
-
* @memberof ApproveConsultationCommand
|
|
205
|
-
*/
|
|
206
|
-
'callerId'?: string | null;
|
|
207
201
|
}
|
|
208
202
|
/**
|
|
209
203
|
*
|
|
@@ -1686,6 +1680,86 @@ export declare enum ChargeStatus {
|
|
|
1686
1680
|
Succeeded = "Succeeded",
|
|
1687
1681
|
Failed = "Failed"
|
|
1688
1682
|
}
|
|
1683
|
+
/**
|
|
1684
|
+
*
|
|
1685
|
+
* @export
|
|
1686
|
+
* @interface ChatUserModel
|
|
1687
|
+
*/
|
|
1688
|
+
export interface ChatUserModel {
|
|
1689
|
+
/**
|
|
1690
|
+
*
|
|
1691
|
+
* @type {string}
|
|
1692
|
+
* @memberof ChatUserModel
|
|
1693
|
+
*/
|
|
1694
|
+
'id'?: string | null;
|
|
1695
|
+
/**
|
|
1696
|
+
*
|
|
1697
|
+
* @type {string}
|
|
1698
|
+
* @memberof ChatUserModel
|
|
1699
|
+
*/
|
|
1700
|
+
'nickname'?: string | null;
|
|
1701
|
+
/**
|
|
1702
|
+
*
|
|
1703
|
+
* @type {string}
|
|
1704
|
+
* @memberof ChatUserModel
|
|
1705
|
+
*/
|
|
1706
|
+
'profileUrl'?: string | null;
|
|
1707
|
+
/**
|
|
1708
|
+
*
|
|
1709
|
+
* @type {string}
|
|
1710
|
+
* @memberof ChatUserModel
|
|
1711
|
+
*/
|
|
1712
|
+
'accessToken'?: string | null;
|
|
1713
|
+
/**
|
|
1714
|
+
*
|
|
1715
|
+
* @type {number}
|
|
1716
|
+
* @memberof ChatUserModel
|
|
1717
|
+
*/
|
|
1718
|
+
'isActive'?: number;
|
|
1719
|
+
/**
|
|
1720
|
+
*
|
|
1721
|
+
* @type {number}
|
|
1722
|
+
* @memberof ChatUserModel
|
|
1723
|
+
*/
|
|
1724
|
+
'isOnline'?: number;
|
|
1725
|
+
/**
|
|
1726
|
+
*
|
|
1727
|
+
* @type {Array<string>}
|
|
1728
|
+
* @memberof ChatUserModel
|
|
1729
|
+
*/
|
|
1730
|
+
'discoveryKeys'?: Array<string> | null;
|
|
1731
|
+
/**
|
|
1732
|
+
*
|
|
1733
|
+
* @type {Date}
|
|
1734
|
+
* @memberof ChatUserModel
|
|
1735
|
+
*/
|
|
1736
|
+
'createdAt'?: Date | null;
|
|
1737
|
+
/**
|
|
1738
|
+
*
|
|
1739
|
+
* @type {Date}
|
|
1740
|
+
* @memberof ChatUserModel
|
|
1741
|
+
*/
|
|
1742
|
+
'lastSeenAt'?: Date | null;
|
|
1743
|
+
}
|
|
1744
|
+
/**
|
|
1745
|
+
*
|
|
1746
|
+
* @export
|
|
1747
|
+
* @interface ChatUsersModel
|
|
1748
|
+
*/
|
|
1749
|
+
export interface ChatUsersModel {
|
|
1750
|
+
/**
|
|
1751
|
+
*
|
|
1752
|
+
* @type {Array<ChatUserModel>}
|
|
1753
|
+
* @memberof ChatUsersModel
|
|
1754
|
+
*/
|
|
1755
|
+
'users'?: Array<ChatUserModel> | null;
|
|
1756
|
+
/**
|
|
1757
|
+
*
|
|
1758
|
+
* @type {string}
|
|
1759
|
+
* @memberof ChatUsersModel
|
|
1760
|
+
*/
|
|
1761
|
+
'next'?: string | null;
|
|
1762
|
+
}
|
|
1689
1763
|
/**
|
|
1690
1764
|
*
|
|
1691
1765
|
* @export
|
|
@@ -1705,6 +1779,37 @@ export interface CheckNotificationsCommand {
|
|
|
1705
1779
|
*/
|
|
1706
1780
|
'isDelete'?: boolean;
|
|
1707
1781
|
}
|
|
1782
|
+
/**
|
|
1783
|
+
*
|
|
1784
|
+
* @export
|
|
1785
|
+
* @interface CommunicationUserTokenModel
|
|
1786
|
+
*/
|
|
1787
|
+
export interface CommunicationUserTokenModel {
|
|
1788
|
+
/**
|
|
1789
|
+
*
|
|
1790
|
+
* @type {string}
|
|
1791
|
+
* @memberof CommunicationUserTokenModel
|
|
1792
|
+
*/
|
|
1793
|
+
'token'?: string | null;
|
|
1794
|
+
/**
|
|
1795
|
+
*
|
|
1796
|
+
* @type {Date}
|
|
1797
|
+
* @memberof CommunicationUserTokenModel
|
|
1798
|
+
*/
|
|
1799
|
+
'expiresOn'?: Date;
|
|
1800
|
+
/**
|
|
1801
|
+
*
|
|
1802
|
+
* @type {string}
|
|
1803
|
+
* @memberof CommunicationUserTokenModel
|
|
1804
|
+
*/
|
|
1805
|
+
'communicationUserId'?: string | null;
|
|
1806
|
+
/**
|
|
1807
|
+
*
|
|
1808
|
+
* @type {string}
|
|
1809
|
+
* @memberof CommunicationUserTokenModel
|
|
1810
|
+
*/
|
|
1811
|
+
'gateway'?: string | null;
|
|
1812
|
+
}
|
|
1708
1813
|
/**
|
|
1709
1814
|
*
|
|
1710
1815
|
* @export
|
|
@@ -3196,6 +3301,43 @@ export interface CreateArticleSourceCommand {
|
|
|
3196
3301
|
*/
|
|
3197
3302
|
'order'?: number;
|
|
3198
3303
|
}
|
|
3304
|
+
/**
|
|
3305
|
+
*
|
|
3306
|
+
* @export
|
|
3307
|
+
* @interface CreateChatUserCommand
|
|
3308
|
+
*/
|
|
3309
|
+
export interface CreateChatUserCommand {
|
|
3310
|
+
/**
|
|
3311
|
+
*
|
|
3312
|
+
* @type {string}
|
|
3313
|
+
* @memberof CreateChatUserCommand
|
|
3314
|
+
*/
|
|
3315
|
+
'userId'?: string;
|
|
3316
|
+
/**
|
|
3317
|
+
*
|
|
3318
|
+
* @type {string}
|
|
3319
|
+
* @memberof CreateChatUserCommand
|
|
3320
|
+
*/
|
|
3321
|
+
'nickname'?: string | null;
|
|
3322
|
+
/**
|
|
3323
|
+
*
|
|
3324
|
+
* @type {string}
|
|
3325
|
+
* @memberof CreateChatUserCommand
|
|
3326
|
+
*/
|
|
3327
|
+
'profileUrl'?: string | null;
|
|
3328
|
+
/**
|
|
3329
|
+
*
|
|
3330
|
+
* @type {boolean}
|
|
3331
|
+
* @memberof CreateChatUserCommand
|
|
3332
|
+
*/
|
|
3333
|
+
'issueAccessToken'?: boolean;
|
|
3334
|
+
/**
|
|
3335
|
+
*
|
|
3336
|
+
* @type {Array<string>}
|
|
3337
|
+
* @memberof CreateChatUserCommand
|
|
3338
|
+
*/
|
|
3339
|
+
'discoveryKeys'?: Array<string> | null;
|
|
3340
|
+
}
|
|
3199
3341
|
/**
|
|
3200
3342
|
*
|
|
3201
3343
|
* @export
|
|
@@ -3639,6 +3781,25 @@ export interface CreateDoctorPortfolioCommand {
|
|
|
3639
3781
|
*/
|
|
3640
3782
|
'photoAfterThumbnail'?: string | null;
|
|
3641
3783
|
}
|
|
3784
|
+
/**
|
|
3785
|
+
*
|
|
3786
|
+
* @export
|
|
3787
|
+
* @interface CreateDoctorSpecialtyCommand
|
|
3788
|
+
*/
|
|
3789
|
+
export interface CreateDoctorSpecialtyCommand {
|
|
3790
|
+
/**
|
|
3791
|
+
*
|
|
3792
|
+
* @type {string}
|
|
3793
|
+
* @memberof CreateDoctorSpecialtyCommand
|
|
3794
|
+
*/
|
|
3795
|
+
'specialtyId'?: string;
|
|
3796
|
+
/**
|
|
3797
|
+
*
|
|
3798
|
+
* @type {number}
|
|
3799
|
+
* @memberof CreateDoctorSpecialtyCommand
|
|
3800
|
+
*/
|
|
3801
|
+
'order'?: number;
|
|
3802
|
+
}
|
|
3642
3803
|
/**
|
|
3643
3804
|
*
|
|
3644
3805
|
* @export
|
|
@@ -7740,6 +7901,18 @@ export interface HospitalServiceItemModel {
|
|
|
7740
7901
|
* @memberof HospitalServiceItemModel
|
|
7741
7902
|
*/
|
|
7742
7903
|
'specialtyName'?: string | null;
|
|
7904
|
+
/**
|
|
7905
|
+
*
|
|
7906
|
+
* @type {string}
|
|
7907
|
+
* @memberof HospitalServiceItemModel
|
|
7908
|
+
*/
|
|
7909
|
+
'serviceCategoryId'?: string;
|
|
7910
|
+
/**
|
|
7911
|
+
*
|
|
7912
|
+
* @type {string}
|
|
7913
|
+
* @memberof HospitalServiceItemModel
|
|
7914
|
+
*/
|
|
7915
|
+
'serviceCategoryName'?: string | null;
|
|
7743
7916
|
/**
|
|
7744
7917
|
*
|
|
7745
7918
|
* @type {MarketingType}
|
|
@@ -7861,6 +8034,18 @@ export interface HospitalServiceModel {
|
|
|
7861
8034
|
* @memberof HospitalServiceModel
|
|
7862
8035
|
*/
|
|
7863
8036
|
'specialtyName'?: string | null;
|
|
8037
|
+
/**
|
|
8038
|
+
*
|
|
8039
|
+
* @type {string}
|
|
8040
|
+
* @memberof HospitalServiceModel
|
|
8041
|
+
*/
|
|
8042
|
+
'serviceCategoryId'?: string;
|
|
8043
|
+
/**
|
|
8044
|
+
*
|
|
8045
|
+
* @type {string}
|
|
8046
|
+
* @memberof HospitalServiceModel
|
|
8047
|
+
*/
|
|
8048
|
+
'serviceCategoryName'?: string | null;
|
|
7864
8049
|
/**
|
|
7865
8050
|
*
|
|
7866
8051
|
* @type {MarketingType}
|
|
@@ -8039,6 +8224,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8039
8224
|
* @memberof HospitalSpecialtyItemModel
|
|
8040
8225
|
*/
|
|
8041
8226
|
'specialtyTypeName'?: string | null;
|
|
8227
|
+
/**
|
|
8228
|
+
*
|
|
8229
|
+
* @type {MarketingType}
|
|
8230
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8231
|
+
*/
|
|
8232
|
+
'marketingType'?: MarketingType;
|
|
8042
8233
|
/**
|
|
8043
8234
|
*
|
|
8044
8235
|
* @type {number}
|
|
@@ -8094,6 +8285,12 @@ export interface HospitalSpecialtyModel {
|
|
|
8094
8285
|
* @memberof HospitalSpecialtyModel
|
|
8095
8286
|
*/
|
|
8096
8287
|
'specialtyTypeName'?: string | null;
|
|
8288
|
+
/**
|
|
8289
|
+
*
|
|
8290
|
+
* @type {MarketingType}
|
|
8291
|
+
* @memberof HospitalSpecialtyModel
|
|
8292
|
+
*/
|
|
8293
|
+
'marketingType'?: MarketingType;
|
|
8097
8294
|
/**
|
|
8098
8295
|
*
|
|
8099
8296
|
* @type {number}
|
|
@@ -9766,6 +9963,12 @@ export interface Service {
|
|
|
9766
9963
|
* @memberof Service
|
|
9767
9964
|
*/
|
|
9768
9965
|
'serviceCategoryId'?: string | null;
|
|
9966
|
+
/**
|
|
9967
|
+
*
|
|
9968
|
+
* @type {ServiceCategory}
|
|
9969
|
+
* @memberof Service
|
|
9970
|
+
*/
|
|
9971
|
+
'serviceCategory'?: ServiceCategory;
|
|
9769
9972
|
/**
|
|
9770
9973
|
*
|
|
9771
9974
|
* @type {number}
|
|
@@ -9822,6 +10025,55 @@ export interface ServiceCategoriesModel {
|
|
|
9822
10025
|
*/
|
|
9823
10026
|
'metaData'?: PagedListMetaData;
|
|
9824
10027
|
}
|
|
10028
|
+
/**
|
|
10029
|
+
*
|
|
10030
|
+
* @export
|
|
10031
|
+
* @interface ServiceCategory
|
|
10032
|
+
*/
|
|
10033
|
+
export interface ServiceCategory {
|
|
10034
|
+
/**
|
|
10035
|
+
*
|
|
10036
|
+
* @type {string}
|
|
10037
|
+
* @memberof ServiceCategory
|
|
10038
|
+
*/
|
|
10039
|
+
'id'?: string;
|
|
10040
|
+
/**
|
|
10041
|
+
*
|
|
10042
|
+
* @type {string}
|
|
10043
|
+
* @memberof ServiceCategory
|
|
10044
|
+
*/
|
|
10045
|
+
'name'?: string | null;
|
|
10046
|
+
/**
|
|
10047
|
+
*
|
|
10048
|
+
* @type {string}
|
|
10049
|
+
* @memberof ServiceCategory
|
|
10050
|
+
*/
|
|
10051
|
+
'normalizedName'?: string | null;
|
|
10052
|
+
/**
|
|
10053
|
+
*
|
|
10054
|
+
* @type {string}
|
|
10055
|
+
* @memberof ServiceCategory
|
|
10056
|
+
*/
|
|
10057
|
+
'description'?: string | null;
|
|
10058
|
+
/**
|
|
10059
|
+
*
|
|
10060
|
+
* @type {string}
|
|
10061
|
+
* @memberof ServiceCategory
|
|
10062
|
+
*/
|
|
10063
|
+
'normalizedDescription'?: string | null;
|
|
10064
|
+
/**
|
|
10065
|
+
*
|
|
10066
|
+
* @type {number}
|
|
10067
|
+
* @memberof ServiceCategory
|
|
10068
|
+
*/
|
|
10069
|
+
'order'?: number;
|
|
10070
|
+
/**
|
|
10071
|
+
*
|
|
10072
|
+
* @type {Array<Service>}
|
|
10073
|
+
* @memberof ServiceCategory
|
|
10074
|
+
*/
|
|
10075
|
+
'services'?: Array<Service> | null;
|
|
10076
|
+
}
|
|
9825
10077
|
/**
|
|
9826
10078
|
*
|
|
9827
10079
|
* @export
|
|
@@ -9866,10 +10118,10 @@ export interface ServiceCategoryItemModel {
|
|
|
9866
10118
|
'serviceCount'?: number;
|
|
9867
10119
|
/**
|
|
9868
10120
|
*
|
|
9869
|
-
* @type {Array<
|
|
10121
|
+
* @type {Array<HospitalServiceItemModel>}
|
|
9870
10122
|
* @memberof ServiceCategoryItemModel
|
|
9871
10123
|
*/
|
|
9872
|
-
'services'?: Array<
|
|
10124
|
+
'services'?: Array<HospitalServiceItemModel> | null;
|
|
9873
10125
|
}
|
|
9874
10126
|
/**
|
|
9875
10127
|
*
|
|
@@ -9915,354 +10167,93 @@ export interface ServiceCategoryModel {
|
|
|
9915
10167
|
'serviceCount'?: number;
|
|
9916
10168
|
/**
|
|
9917
10169
|
*
|
|
9918
|
-
* @type {Array<
|
|
10170
|
+
* @type {Array<HospitalServiceItemModel>}
|
|
9919
10171
|
* @memberof ServiceCategoryModel
|
|
9920
10172
|
*/
|
|
9921
|
-
'services'?: Array<
|
|
10173
|
+
'services'?: Array<HospitalServiceItemModel> | null;
|
|
9922
10174
|
}
|
|
9923
10175
|
/**
|
|
9924
10176
|
*
|
|
9925
10177
|
* @export
|
|
9926
|
-
* @interface
|
|
10178
|
+
* @interface SnsHandle
|
|
9927
10179
|
*/
|
|
9928
|
-
export interface
|
|
10180
|
+
export interface SnsHandle {
|
|
9929
10181
|
/**
|
|
9930
10182
|
*
|
|
9931
10183
|
* @type {string}
|
|
9932
|
-
* @memberof
|
|
10184
|
+
* @memberof SnsHandle
|
|
9933
10185
|
*/
|
|
9934
10186
|
'id'?: string;
|
|
9935
10187
|
/**
|
|
9936
10188
|
*
|
|
9937
|
-
* @type {
|
|
9938
|
-
* @memberof
|
|
10189
|
+
* @type {SnsType}
|
|
10190
|
+
* @memberof SnsHandle
|
|
9939
10191
|
*/
|
|
9940
|
-
'
|
|
10192
|
+
'snsType'?: SnsType;
|
|
9941
10193
|
/**
|
|
9942
10194
|
*
|
|
9943
10195
|
* @type {string}
|
|
9944
|
-
* @memberof
|
|
10196
|
+
* @memberof SnsHandle
|
|
9945
10197
|
*/
|
|
9946
|
-
'
|
|
10198
|
+
'handle'?: string | null;
|
|
10199
|
+
}
|
|
10200
|
+
/**
|
|
10201
|
+
*
|
|
10202
|
+
* @export
|
|
10203
|
+
* @interface SnsHandleModel
|
|
10204
|
+
*/
|
|
10205
|
+
export interface SnsHandleModel {
|
|
9947
10206
|
/**
|
|
9948
10207
|
*
|
|
9949
10208
|
* @type {string}
|
|
9950
|
-
* @memberof
|
|
10209
|
+
* @memberof SnsHandleModel
|
|
9951
10210
|
*/
|
|
9952
|
-
'
|
|
10211
|
+
'id'?: string;
|
|
9953
10212
|
/**
|
|
9954
10213
|
*
|
|
9955
|
-
* @type {
|
|
9956
|
-
* @memberof
|
|
10214
|
+
* @type {SnsType}
|
|
10215
|
+
* @memberof SnsHandleModel
|
|
9957
10216
|
*/
|
|
9958
|
-
'
|
|
10217
|
+
'snsType'?: SnsType;
|
|
9959
10218
|
/**
|
|
9960
10219
|
*
|
|
9961
10220
|
* @type {string}
|
|
9962
|
-
* @memberof
|
|
10221
|
+
* @memberof SnsHandleModel
|
|
9963
10222
|
*/
|
|
9964
|
-
'
|
|
10223
|
+
'handle'?: string | null;
|
|
10224
|
+
}
|
|
10225
|
+
/**
|
|
10226
|
+
*
|
|
10227
|
+
* @export
|
|
10228
|
+
* @enum {string}
|
|
10229
|
+
*/
|
|
10230
|
+
export declare enum SnsType {
|
|
10231
|
+
Twitter = "Twitter",
|
|
10232
|
+
Facebook = "Facebook",
|
|
10233
|
+
Instagram = "Instagram"
|
|
10234
|
+
}
|
|
10235
|
+
/**
|
|
10236
|
+
*
|
|
10237
|
+
* @export
|
|
10238
|
+
* @interface Source
|
|
10239
|
+
*/
|
|
10240
|
+
export interface Source {
|
|
9965
10241
|
/**
|
|
9966
10242
|
*
|
|
9967
10243
|
* @type {string}
|
|
9968
|
-
* @memberof
|
|
10244
|
+
* @memberof Source
|
|
9969
10245
|
*/
|
|
9970
|
-
'
|
|
10246
|
+
'id'?: string;
|
|
9971
10247
|
/**
|
|
9972
10248
|
*
|
|
9973
10249
|
* @type {string}
|
|
9974
|
-
* @memberof
|
|
10250
|
+
* @memberof Source
|
|
9975
10251
|
*/
|
|
9976
|
-
'
|
|
10252
|
+
'name'?: string | null;
|
|
9977
10253
|
/**
|
|
9978
10254
|
*
|
|
9979
10255
|
* @type {string}
|
|
9980
|
-
* @memberof
|
|
9981
|
-
*/
|
|
9982
|
-
'specialtyTypeName'?: string | null;
|
|
9983
|
-
/**
|
|
9984
|
-
*
|
|
9985
|
-
* @type {string}
|
|
9986
|
-
* @memberof ServiceItemModel
|
|
9987
|
-
*/
|
|
9988
|
-
'specialtyId'?: string;
|
|
9989
|
-
/**
|
|
9990
|
-
*
|
|
9991
|
-
* @type {string}
|
|
9992
|
-
* @memberof ServiceItemModel
|
|
9993
|
-
*/
|
|
9994
|
-
'specialtyName'?: string | null;
|
|
9995
|
-
/**
|
|
9996
|
-
*
|
|
9997
|
-
* @type {MarketingType}
|
|
9998
|
-
* @memberof ServiceItemModel
|
|
9999
|
-
*/
|
|
10000
|
-
'marketingType'?: MarketingType;
|
|
10001
|
-
/**
|
|
10002
|
-
*
|
|
10003
|
-
* @type {Procedure}
|
|
10004
|
-
* @memberof ServiceItemModel
|
|
10005
|
-
*/
|
|
10006
|
-
'procedure'?: Procedure;
|
|
10007
|
-
/**
|
|
10008
|
-
*
|
|
10009
|
-
* @type {number}
|
|
10010
|
-
* @memberof ServiceItemModel
|
|
10011
|
-
*/
|
|
10012
|
-
'minPrice'?: number | null;
|
|
10013
|
-
/**
|
|
10014
|
-
*
|
|
10015
|
-
* @type {number}
|
|
10016
|
-
* @memberof ServiceItemModel
|
|
10017
|
-
*/
|
|
10018
|
-
'maxPrice'?: number | null;
|
|
10019
|
-
/**
|
|
10020
|
-
*
|
|
10021
|
-
* @type {boolean}
|
|
10022
|
-
* @memberof ServiceItemModel
|
|
10023
|
-
*/
|
|
10024
|
-
'priceReuqest'?: boolean;
|
|
10025
|
-
/**
|
|
10026
|
-
*
|
|
10027
|
-
* @type {number}
|
|
10028
|
-
* @memberof ServiceItemModel
|
|
10029
|
-
*/
|
|
10030
|
-
'order'?: number;
|
|
10031
|
-
/**
|
|
10032
|
-
*
|
|
10033
|
-
* @type {AuditableEntity}
|
|
10034
|
-
* @memberof ServiceItemModel
|
|
10035
|
-
*/
|
|
10036
|
-
'auditableEntity'?: AuditableEntity;
|
|
10037
|
-
/**
|
|
10038
|
-
*
|
|
10039
|
-
* @type {boolean}
|
|
10040
|
-
* @memberof ServiceItemModel
|
|
10041
|
-
*/
|
|
10042
|
-
'confirmed'?: boolean;
|
|
10043
|
-
}
|
|
10044
|
-
/**
|
|
10045
|
-
*
|
|
10046
|
-
* @export
|
|
10047
|
-
* @interface ServiceModel
|
|
10048
|
-
*/
|
|
10049
|
-
export interface ServiceModel {
|
|
10050
|
-
/**
|
|
10051
|
-
*
|
|
10052
|
-
* @type {string}
|
|
10053
|
-
* @memberof ServiceModel
|
|
10054
|
-
*/
|
|
10055
|
-
'id'?: string;
|
|
10056
|
-
/**
|
|
10057
|
-
*
|
|
10058
|
-
* @type {string}
|
|
10059
|
-
* @memberof ServiceModel
|
|
10060
|
-
*/
|
|
10061
|
-
'name'?: string | null;
|
|
10062
|
-
/**
|
|
10063
|
-
*
|
|
10064
|
-
* @type {string}
|
|
10065
|
-
* @memberof ServiceModel
|
|
10066
|
-
*/
|
|
10067
|
-
'slug'?: string | null;
|
|
10068
|
-
/**
|
|
10069
|
-
*
|
|
10070
|
-
* @type {string}
|
|
10071
|
-
* @memberof ServiceModel
|
|
10072
|
-
*/
|
|
10073
|
-
'description'?: string | null;
|
|
10074
|
-
/**
|
|
10075
|
-
*
|
|
10076
|
-
* @type {string}
|
|
10077
|
-
* @memberof ServiceModel
|
|
10078
|
-
*/
|
|
10079
|
-
'content'?: string | null;
|
|
10080
|
-
/**
|
|
10081
|
-
*
|
|
10082
|
-
* @type {string}
|
|
10083
|
-
* @memberof ServiceModel
|
|
10084
|
-
*/
|
|
10085
|
-
'hospitalId'?: string;
|
|
10086
|
-
/**
|
|
10087
|
-
*
|
|
10088
|
-
* @type {string}
|
|
10089
|
-
* @memberof ServiceModel
|
|
10090
|
-
*/
|
|
10091
|
-
'hospitalName'?: string | null;
|
|
10092
|
-
/**
|
|
10093
|
-
*
|
|
10094
|
-
* @type {string}
|
|
10095
|
-
* @memberof ServiceModel
|
|
10096
|
-
*/
|
|
10097
|
-
'specialtyTypeId'?: string | null;
|
|
10098
|
-
/**
|
|
10099
|
-
*
|
|
10100
|
-
* @type {string}
|
|
10101
|
-
* @memberof ServiceModel
|
|
10102
|
-
*/
|
|
10103
|
-
'specialtyTypeName'?: string | null;
|
|
10104
|
-
/**
|
|
10105
|
-
*
|
|
10106
|
-
* @type {string}
|
|
10107
|
-
* @memberof ServiceModel
|
|
10108
|
-
*/
|
|
10109
|
-
'specialtyId'?: string;
|
|
10110
|
-
/**
|
|
10111
|
-
*
|
|
10112
|
-
* @type {string}
|
|
10113
|
-
* @memberof ServiceModel
|
|
10114
|
-
*/
|
|
10115
|
-
'specialtyName'?: string | null;
|
|
10116
|
-
/**
|
|
10117
|
-
*
|
|
10118
|
-
* @type {MarketingType}
|
|
10119
|
-
* @memberof ServiceModel
|
|
10120
|
-
*/
|
|
10121
|
-
'marketingType'?: MarketingType;
|
|
10122
|
-
/**
|
|
10123
|
-
*
|
|
10124
|
-
* @type {Procedure}
|
|
10125
|
-
* @memberof ServiceModel
|
|
10126
|
-
*/
|
|
10127
|
-
'procedure'?: Procedure;
|
|
10128
|
-
/**
|
|
10129
|
-
*
|
|
10130
|
-
* @type {number}
|
|
10131
|
-
* @memberof ServiceModel
|
|
10132
|
-
*/
|
|
10133
|
-
'minPrice'?: number | null;
|
|
10134
|
-
/**
|
|
10135
|
-
*
|
|
10136
|
-
* @type {number}
|
|
10137
|
-
* @memberof ServiceModel
|
|
10138
|
-
*/
|
|
10139
|
-
'maxPrice'?: number | null;
|
|
10140
|
-
/**
|
|
10141
|
-
*
|
|
10142
|
-
* @type {boolean}
|
|
10143
|
-
* @memberof ServiceModel
|
|
10144
|
-
*/
|
|
10145
|
-
'priceReuqest'?: boolean;
|
|
10146
|
-
/**
|
|
10147
|
-
*
|
|
10148
|
-
* @type {number}
|
|
10149
|
-
* @memberof ServiceModel
|
|
10150
|
-
*/
|
|
10151
|
-
'order'?: number;
|
|
10152
|
-
/**
|
|
10153
|
-
*
|
|
10154
|
-
* @type {AuditableEntity}
|
|
10155
|
-
* @memberof ServiceModel
|
|
10156
|
-
*/
|
|
10157
|
-
'auditableEntity'?: AuditableEntity;
|
|
10158
|
-
/**
|
|
10159
|
-
*
|
|
10160
|
-
* @type {boolean}
|
|
10161
|
-
* @memberof ServiceModel
|
|
10162
|
-
*/
|
|
10163
|
-
'confirmed'?: boolean;
|
|
10164
|
-
}
|
|
10165
|
-
/**
|
|
10166
|
-
*
|
|
10167
|
-
* @export
|
|
10168
|
-
* @interface ServicesModel
|
|
10169
|
-
*/
|
|
10170
|
-
export interface ServicesModel {
|
|
10171
|
-
/**
|
|
10172
|
-
*
|
|
10173
|
-
* @type {Array<ServiceItemModel>}
|
|
10174
|
-
* @memberof ServicesModel
|
|
10175
|
-
*/
|
|
10176
|
-
'items'?: Array<ServiceItemModel> | null;
|
|
10177
|
-
/**
|
|
10178
|
-
*
|
|
10179
|
-
* @type {PagedListMetaData}
|
|
10180
|
-
* @memberof ServicesModel
|
|
10181
|
-
*/
|
|
10182
|
-
'metaData'?: PagedListMetaData;
|
|
10183
|
-
}
|
|
10184
|
-
/**
|
|
10185
|
-
*
|
|
10186
|
-
* @export
|
|
10187
|
-
* @interface SnsHandle
|
|
10188
|
-
*/
|
|
10189
|
-
export interface SnsHandle {
|
|
10190
|
-
/**
|
|
10191
|
-
*
|
|
10192
|
-
* @type {string}
|
|
10193
|
-
* @memberof SnsHandle
|
|
10194
|
-
*/
|
|
10195
|
-
'id'?: string;
|
|
10196
|
-
/**
|
|
10197
|
-
*
|
|
10198
|
-
* @type {SnsType}
|
|
10199
|
-
* @memberof SnsHandle
|
|
10200
|
-
*/
|
|
10201
|
-
'snsType'?: SnsType;
|
|
10202
|
-
/**
|
|
10203
|
-
*
|
|
10204
|
-
* @type {string}
|
|
10205
|
-
* @memberof SnsHandle
|
|
10206
|
-
*/
|
|
10207
|
-
'handle'?: string | null;
|
|
10208
|
-
}
|
|
10209
|
-
/**
|
|
10210
|
-
*
|
|
10211
|
-
* @export
|
|
10212
|
-
* @interface SnsHandleModel
|
|
10213
|
-
*/
|
|
10214
|
-
export interface SnsHandleModel {
|
|
10215
|
-
/**
|
|
10216
|
-
*
|
|
10217
|
-
* @type {string}
|
|
10218
|
-
* @memberof SnsHandleModel
|
|
10219
|
-
*/
|
|
10220
|
-
'id'?: string;
|
|
10221
|
-
/**
|
|
10222
|
-
*
|
|
10223
|
-
* @type {SnsType}
|
|
10224
|
-
* @memberof SnsHandleModel
|
|
10225
|
-
*/
|
|
10226
|
-
'snsType'?: SnsType;
|
|
10227
|
-
/**
|
|
10228
|
-
*
|
|
10229
|
-
* @type {string}
|
|
10230
|
-
* @memberof SnsHandleModel
|
|
10231
|
-
*/
|
|
10232
|
-
'handle'?: string | null;
|
|
10233
|
-
}
|
|
10234
|
-
/**
|
|
10235
|
-
*
|
|
10236
|
-
* @export
|
|
10237
|
-
* @enum {string}
|
|
10238
|
-
*/
|
|
10239
|
-
export declare enum SnsType {
|
|
10240
|
-
Twitter = "Twitter",
|
|
10241
|
-
Facebook = "Facebook",
|
|
10242
|
-
Instagram = "Instagram"
|
|
10243
|
-
}
|
|
10244
|
-
/**
|
|
10245
|
-
*
|
|
10246
|
-
* @export
|
|
10247
|
-
* @interface Source
|
|
10248
|
-
*/
|
|
10249
|
-
export interface Source {
|
|
10250
|
-
/**
|
|
10251
|
-
*
|
|
10252
|
-
* @type {string}
|
|
10253
|
-
* @memberof Source
|
|
10254
|
-
*/
|
|
10255
|
-
'id'?: string;
|
|
10256
|
-
/**
|
|
10257
|
-
*
|
|
10258
|
-
* @type {string}
|
|
10259
|
-
* @memberof Source
|
|
10260
|
-
*/
|
|
10261
|
-
'name'?: string | null;
|
|
10262
|
-
/**
|
|
10263
|
-
*
|
|
10264
|
-
* @type {string}
|
|
10265
|
-
* @memberof Source
|
|
10256
|
+
* @memberof Source
|
|
10266
10257
|
*/
|
|
10267
10258
|
'referenceUrl'?: string | null;
|
|
10268
10259
|
/**
|
|
@@ -11085,25 +11076,56 @@ export interface UpdateArticleSourceCommand {
|
|
|
11085
11076
|
/**
|
|
11086
11077
|
*
|
|
11087
11078
|
* @export
|
|
11088
|
-
* @interface
|
|
11079
|
+
* @interface UpdateChatUserCommand
|
|
11089
11080
|
*/
|
|
11090
|
-
export interface
|
|
11081
|
+
export interface UpdateChatUserCommand {
|
|
11091
11082
|
/**
|
|
11092
11083
|
*
|
|
11093
11084
|
* @type {string}
|
|
11094
|
-
* @memberof
|
|
11085
|
+
* @memberof UpdateChatUserCommand
|
|
11095
11086
|
*/
|
|
11096
|
-
'
|
|
11087
|
+
'nickname'?: string | null;
|
|
11097
11088
|
/**
|
|
11098
11089
|
*
|
|
11099
11090
|
* @type {string}
|
|
11100
|
-
* @memberof
|
|
11091
|
+
* @memberof UpdateChatUserCommand
|
|
11101
11092
|
*/
|
|
11102
|
-
'
|
|
11093
|
+
'profileUrl'?: string | null;
|
|
11103
11094
|
/**
|
|
11104
11095
|
*
|
|
11105
|
-
* @type {
|
|
11106
|
-
* @memberof
|
|
11096
|
+
* @type {boolean}
|
|
11097
|
+
* @memberof UpdateChatUserCommand
|
|
11098
|
+
*/
|
|
11099
|
+
'issueAccessToken'?: boolean;
|
|
11100
|
+
/**
|
|
11101
|
+
*
|
|
11102
|
+
* @type {Array<string>}
|
|
11103
|
+
* @memberof UpdateChatUserCommand
|
|
11104
|
+
*/
|
|
11105
|
+
'discoveryKeys'?: Array<string> | null;
|
|
11106
|
+
}
|
|
11107
|
+
/**
|
|
11108
|
+
*
|
|
11109
|
+
* @export
|
|
11110
|
+
* @interface UpdateContributorCommand
|
|
11111
|
+
*/
|
|
11112
|
+
export interface UpdateContributorCommand {
|
|
11113
|
+
/**
|
|
11114
|
+
*
|
|
11115
|
+
* @type {string}
|
|
11116
|
+
* @memberof UpdateContributorCommand
|
|
11117
|
+
*/
|
|
11118
|
+
'name'?: string | null;
|
|
11119
|
+
/**
|
|
11120
|
+
*
|
|
11121
|
+
* @type {string}
|
|
11122
|
+
* @memberof UpdateContributorCommand
|
|
11123
|
+
*/
|
|
11124
|
+
'slug'?: string | null;
|
|
11125
|
+
/**
|
|
11126
|
+
*
|
|
11127
|
+
* @type {string}
|
|
11128
|
+
* @memberof UpdateContributorCommand
|
|
11107
11129
|
*/
|
|
11108
11130
|
'email'?: string | null;
|
|
11109
11131
|
/**
|
|
@@ -11137,6 +11159,25 @@ export interface UpdateContributorCommand {
|
|
|
11137
11159
|
*/
|
|
11138
11160
|
'hospitalId'?: string;
|
|
11139
11161
|
}
|
|
11162
|
+
/**
|
|
11163
|
+
*
|
|
11164
|
+
* @export
|
|
11165
|
+
* @interface UpdateContributorSnsHandleCommand
|
|
11166
|
+
*/
|
|
11167
|
+
export interface UpdateContributorSnsHandleCommand {
|
|
11168
|
+
/**
|
|
11169
|
+
*
|
|
11170
|
+
* @type {SnsType}
|
|
11171
|
+
* @memberof UpdateContributorSnsHandleCommand
|
|
11172
|
+
*/
|
|
11173
|
+
'snsType'?: SnsType;
|
|
11174
|
+
/**
|
|
11175
|
+
*
|
|
11176
|
+
* @type {string}
|
|
11177
|
+
* @memberof UpdateContributorSnsHandleCommand
|
|
11178
|
+
*/
|
|
11179
|
+
'handle'?: string | null;
|
|
11180
|
+
}
|
|
11140
11181
|
/**
|
|
11141
11182
|
*
|
|
11142
11183
|
* @export
|
|
@@ -11475,6 +11516,19 @@ export interface UpdateDoctorPortfolioCommand {
|
|
|
11475
11516
|
*/
|
|
11476
11517
|
'photoAfterThumbnail'?: string | null;
|
|
11477
11518
|
}
|
|
11519
|
+
/**
|
|
11520
|
+
*
|
|
11521
|
+
* @export
|
|
11522
|
+
* @interface UpdateDoctorSpecialtyCommand
|
|
11523
|
+
*/
|
|
11524
|
+
export interface UpdateDoctorSpecialtyCommand {
|
|
11525
|
+
/**
|
|
11526
|
+
*
|
|
11527
|
+
* @type {number}
|
|
11528
|
+
* @memberof UpdateDoctorSpecialtyCommand
|
|
11529
|
+
*/
|
|
11530
|
+
'order'?: number;
|
|
11531
|
+
}
|
|
11478
11532
|
/**
|
|
11479
11533
|
*
|
|
11480
11534
|
* @export
|
|
@@ -11784,6 +11838,19 @@ export interface UpdateHospitalServiceCommand {
|
|
|
11784
11838
|
*/
|
|
11785
11839
|
'order'?: number;
|
|
11786
11840
|
}
|
|
11841
|
+
/**
|
|
11842
|
+
*
|
|
11843
|
+
* @export
|
|
11844
|
+
* @interface UpdateHospitalSpecialtyCommand
|
|
11845
|
+
*/
|
|
11846
|
+
export interface UpdateHospitalSpecialtyCommand {
|
|
11847
|
+
/**
|
|
11848
|
+
*
|
|
11849
|
+
* @type {number}
|
|
11850
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11851
|
+
*/
|
|
11852
|
+
'order'?: number;
|
|
11853
|
+
}
|
|
11787
11854
|
/**
|
|
11788
11855
|
*
|
|
11789
11856
|
* @export
|
|
@@ -11865,10 +11932,10 @@ export interface UpdateServiceCategoryCommand {
|
|
|
11865
11932
|
'serviceCount'?: number;
|
|
11866
11933
|
/**
|
|
11867
11934
|
*
|
|
11868
|
-
* @type {Array<
|
|
11935
|
+
* @type {Array<HospitalServiceItemModel>}
|
|
11869
11936
|
* @memberof UpdateServiceCategoryCommand
|
|
11870
11937
|
*/
|
|
11871
|
-
'services'?: Array<
|
|
11938
|
+
'services'?: Array<HospitalServiceItemModel> | null;
|
|
11872
11939
|
/**
|
|
11873
11940
|
*
|
|
11874
11941
|
* @type {Array<string>}
|
|
@@ -14033,339 +14100,673 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
14033
14100
|
apiV1BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel>>;
|
|
14034
14101
|
}
|
|
14035
14102
|
/**
|
|
14036
|
-
*
|
|
14103
|
+
* ChatUsersApi - axios parameter creator
|
|
14037
14104
|
* @export
|
|
14038
14105
|
*/
|
|
14039
|
-
export declare const
|
|
14040
|
-
/**
|
|
14041
|
-
*
|
|
14042
|
-
* @summary Approve consultation.
|
|
14043
|
-
* @param {string} consultationId
|
|
14044
|
-
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
14045
|
-
* @param {*} [options] Override http request option.
|
|
14046
|
-
* @throws {RequiredError}
|
|
14047
|
-
*/
|
|
14048
|
-
apiV1ConsultationsConsultationIdApprovePut: (consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14106
|
+
export declare const ChatUsersApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
14049
14107
|
/**
|
|
14050
14108
|
*
|
|
14051
|
-
* @summary
|
|
14052
|
-
* @param {
|
|
14109
|
+
* @summary Get all chatUsers.
|
|
14110
|
+
* @param {number} [limit]
|
|
14111
|
+
* @param {string} [token]
|
|
14112
|
+
* @param {string} [userIds]
|
|
14113
|
+
* @param {string} [nickname]
|
|
14114
|
+
* @param {string} [nicknameStartswith]
|
|
14053
14115
|
* @param {*} [options] Override http request option.
|
|
14054
14116
|
* @throws {RequiredError}
|
|
14055
14117
|
*/
|
|
14056
|
-
|
|
14118
|
+
apiV1ChatusersGet: (limit?: number | undefined, token?: string | undefined, userIds?: string | undefined, nickname?: string | undefined, nicknameStartswith?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14057
14119
|
/**
|
|
14058
14120
|
*
|
|
14059
|
-
* @summary
|
|
14060
|
-
* @param {
|
|
14121
|
+
* @summary Create a chatUser.
|
|
14122
|
+
* @param {CreateChatUserCommand} [createChatUserCommand]
|
|
14061
14123
|
* @param {*} [options] Override http request option.
|
|
14062
14124
|
* @throws {RequiredError}
|
|
14063
14125
|
*/
|
|
14064
|
-
|
|
14126
|
+
apiV1ChatusersPost: (createChatUserCommand?: CreateChatUserCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14065
14127
|
/**
|
|
14066
14128
|
*
|
|
14067
|
-
* @summary
|
|
14068
|
-
* @param {string}
|
|
14129
|
+
* @summary Delete chatUser.
|
|
14130
|
+
* @param {string} userId
|
|
14069
14131
|
* @param {*} [options] Override http request option.
|
|
14070
14132
|
* @throws {RequiredError}
|
|
14071
14133
|
*/
|
|
14072
|
-
|
|
14134
|
+
apiV1ChatusersUserIdDelete: (userId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14073
14135
|
/**
|
|
14074
14136
|
*
|
|
14075
|
-
* @summary
|
|
14076
|
-
* @param {string}
|
|
14077
|
-
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
14137
|
+
* @summary Get chatUser.
|
|
14138
|
+
* @param {string} userId
|
|
14078
14139
|
* @param {*} [options] Override http request option.
|
|
14079
14140
|
* @throws {RequiredError}
|
|
14080
14141
|
*/
|
|
14081
|
-
|
|
14142
|
+
apiV1ChatusersUserIdGet: (userId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14082
14143
|
/**
|
|
14083
14144
|
*
|
|
14084
|
-
* @summary
|
|
14085
|
-
* @param {string}
|
|
14086
|
-
* @param {
|
|
14087
|
-
* @param {boolean} [isCompleted]
|
|
14088
|
-
* @param {ConsultationStatus} [status]
|
|
14089
|
-
* @param {number} [page]
|
|
14090
|
-
* @param {number} [limit]
|
|
14091
|
-
* @param {Date} [lastRetrieved]
|
|
14145
|
+
* @summary Update chatUser.
|
|
14146
|
+
* @param {string} userId
|
|
14147
|
+
* @param {UpdateChatUserCommand} [updateChatUserCommand]
|
|
14092
14148
|
* @param {*} [options] Override http request option.
|
|
14093
14149
|
* @throws {RequiredError}
|
|
14094
14150
|
*/
|
|
14095
|
-
|
|
14151
|
+
apiV1ChatusersUserIdPut: (userId: string, updateChatUserCommand?: UpdateChatUserCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14096
14152
|
};
|
|
14097
14153
|
/**
|
|
14098
|
-
*
|
|
14154
|
+
* ChatUsersApi - functional programming interface
|
|
14099
14155
|
* @export
|
|
14100
14156
|
*/
|
|
14101
|
-
export declare const
|
|
14102
|
-
/**
|
|
14103
|
-
*
|
|
14104
|
-
* @summary Approve consultation.
|
|
14105
|
-
* @param {string} consultationId
|
|
14106
|
-
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
14107
|
-
* @param {*} [options] Override http request option.
|
|
14108
|
-
* @throws {RequiredError}
|
|
14109
|
-
*/
|
|
14110
|
-
apiV1ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14157
|
+
export declare const ChatUsersApiFp: (configuration?: Configuration | undefined) => {
|
|
14111
14158
|
/**
|
|
14112
14159
|
*
|
|
14113
|
-
* @summary
|
|
14114
|
-
* @param {
|
|
14160
|
+
* @summary Get all chatUsers.
|
|
14161
|
+
* @param {number} [limit]
|
|
14162
|
+
* @param {string} [token]
|
|
14163
|
+
* @param {string} [userIds]
|
|
14164
|
+
* @param {string} [nickname]
|
|
14165
|
+
* @param {string} [nicknameStartswith]
|
|
14115
14166
|
* @param {*} [options] Override http request option.
|
|
14116
14167
|
* @throws {RequiredError}
|
|
14117
14168
|
*/
|
|
14118
|
-
|
|
14169
|
+
apiV1ChatusersGet(limit?: number | undefined, token?: string | undefined, userIds?: string | undefined, nickname?: string | undefined, nicknameStartswith?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUsersModel>>;
|
|
14119
14170
|
/**
|
|
14120
14171
|
*
|
|
14121
|
-
* @summary
|
|
14122
|
-
* @param {
|
|
14172
|
+
* @summary Create a chatUser.
|
|
14173
|
+
* @param {CreateChatUserCommand} [createChatUserCommand]
|
|
14123
14174
|
* @param {*} [options] Override http request option.
|
|
14124
14175
|
* @throws {RequiredError}
|
|
14125
14176
|
*/
|
|
14126
|
-
|
|
14177
|
+
apiV1ChatusersPost(createChatUserCommand?: CreateChatUserCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
14127
14178
|
/**
|
|
14128
14179
|
*
|
|
14129
|
-
* @summary
|
|
14130
|
-
* @param {string}
|
|
14180
|
+
* @summary Delete chatUser.
|
|
14181
|
+
* @param {string} userId
|
|
14131
14182
|
* @param {*} [options] Override http request option.
|
|
14132
14183
|
* @throws {RequiredError}
|
|
14133
14184
|
*/
|
|
14134
|
-
|
|
14185
|
+
apiV1ChatusersUserIdDelete(userId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14135
14186
|
/**
|
|
14136
14187
|
*
|
|
14137
|
-
* @summary
|
|
14138
|
-
* @param {string}
|
|
14139
|
-
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
14188
|
+
* @summary Get chatUser.
|
|
14189
|
+
* @param {string} userId
|
|
14140
14190
|
* @param {*} [options] Override http request option.
|
|
14141
14191
|
* @throws {RequiredError}
|
|
14142
14192
|
*/
|
|
14143
|
-
|
|
14193
|
+
apiV1ChatusersUserIdGet(userId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
14144
14194
|
/**
|
|
14145
14195
|
*
|
|
14146
|
-
* @summary
|
|
14147
|
-
* @param {string}
|
|
14148
|
-
* @param {
|
|
14149
|
-
* @param {boolean} [isCompleted]
|
|
14150
|
-
* @param {ConsultationStatus} [status]
|
|
14151
|
-
* @param {number} [page]
|
|
14152
|
-
* @param {number} [limit]
|
|
14153
|
-
* @param {Date} [lastRetrieved]
|
|
14196
|
+
* @summary Update chatUser.
|
|
14197
|
+
* @param {string} userId
|
|
14198
|
+
* @param {UpdateChatUserCommand} [updateChatUserCommand]
|
|
14154
14199
|
* @param {*} [options] Override http request option.
|
|
14155
14200
|
* @throws {RequiredError}
|
|
14156
14201
|
*/
|
|
14157
|
-
|
|
14202
|
+
apiV1ChatusersUserIdPut(userId: string, updateChatUserCommand?: UpdateChatUserCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
14158
14203
|
};
|
|
14159
14204
|
/**
|
|
14160
|
-
*
|
|
14205
|
+
* ChatUsersApi - factory interface
|
|
14161
14206
|
* @export
|
|
14162
14207
|
*/
|
|
14163
|
-
export declare const
|
|
14164
|
-
/**
|
|
14165
|
-
*
|
|
14166
|
-
* @summary Approve consultation.
|
|
14167
|
-
* @param {string} consultationId
|
|
14168
|
-
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
14169
|
-
* @param {*} [options] Override http request option.
|
|
14170
|
-
* @throws {RequiredError}
|
|
14171
|
-
*/
|
|
14172
|
-
apiV1ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
14208
|
+
export declare const ChatUsersApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
14173
14209
|
/**
|
|
14174
14210
|
*
|
|
14175
|
-
* @summary
|
|
14176
|
-
* @param {
|
|
14211
|
+
* @summary Get all chatUsers.
|
|
14212
|
+
* @param {number} [limit]
|
|
14213
|
+
* @param {string} [token]
|
|
14214
|
+
* @param {string} [userIds]
|
|
14215
|
+
* @param {string} [nickname]
|
|
14216
|
+
* @param {string} [nicknameStartswith]
|
|
14177
14217
|
* @param {*} [options] Override http request option.
|
|
14178
14218
|
* @throws {RequiredError}
|
|
14179
14219
|
*/
|
|
14180
|
-
|
|
14220
|
+
apiV1ChatusersGet(limit?: number | undefined, token?: string | undefined, userIds?: string | undefined, nickname?: string | undefined, nicknameStartswith?: string | undefined, options?: any): AxiosPromise<ChatUsersModel>;
|
|
14181
14221
|
/**
|
|
14182
14222
|
*
|
|
14183
|
-
* @summary
|
|
14184
|
-
* @param {
|
|
14223
|
+
* @summary Create a chatUser.
|
|
14224
|
+
* @param {CreateChatUserCommand} [createChatUserCommand]
|
|
14185
14225
|
* @param {*} [options] Override http request option.
|
|
14186
14226
|
* @throws {RequiredError}
|
|
14187
14227
|
*/
|
|
14188
|
-
|
|
14228
|
+
apiV1ChatusersPost(createChatUserCommand?: CreateChatUserCommand | undefined, options?: any): AxiosPromise<ChatUserModel>;
|
|
14189
14229
|
/**
|
|
14190
14230
|
*
|
|
14191
|
-
* @summary
|
|
14192
|
-
* @param {string}
|
|
14231
|
+
* @summary Delete chatUser.
|
|
14232
|
+
* @param {string} userId
|
|
14193
14233
|
* @param {*} [options] Override http request option.
|
|
14194
14234
|
* @throws {RequiredError}
|
|
14195
14235
|
*/
|
|
14196
|
-
|
|
14236
|
+
apiV1ChatusersUserIdDelete(userId: string, options?: any): AxiosPromise<boolean>;
|
|
14197
14237
|
/**
|
|
14198
14238
|
*
|
|
14199
|
-
* @summary
|
|
14200
|
-
* @param {string}
|
|
14201
|
-
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
14239
|
+
* @summary Get chatUser.
|
|
14240
|
+
* @param {string} userId
|
|
14202
14241
|
* @param {*} [options] Override http request option.
|
|
14203
14242
|
* @throws {RequiredError}
|
|
14204
14243
|
*/
|
|
14205
|
-
|
|
14244
|
+
apiV1ChatusersUserIdGet(userId: string, options?: any): AxiosPromise<ChatUserModel>;
|
|
14206
14245
|
/**
|
|
14207
14246
|
*
|
|
14208
|
-
* @summary
|
|
14209
|
-
* @param {string}
|
|
14210
|
-
* @param {
|
|
14211
|
-
* @param {boolean} [isCompleted]
|
|
14212
|
-
* @param {ConsultationStatus} [status]
|
|
14213
|
-
* @param {number} [page]
|
|
14214
|
-
* @param {number} [limit]
|
|
14215
|
-
* @param {Date} [lastRetrieved]
|
|
14247
|
+
* @summary Update chatUser.
|
|
14248
|
+
* @param {string} userId
|
|
14249
|
+
* @param {UpdateChatUserCommand} [updateChatUserCommand]
|
|
14216
14250
|
* @param {*} [options] Override http request option.
|
|
14217
14251
|
* @throws {RequiredError}
|
|
14218
14252
|
*/
|
|
14219
|
-
|
|
14253
|
+
apiV1ChatusersUserIdPut(userId: string, updateChatUserCommand?: UpdateChatUserCommand | undefined, options?: any): AxiosPromise<ChatUserModel>;
|
|
14220
14254
|
};
|
|
14221
14255
|
/**
|
|
14222
|
-
*
|
|
14256
|
+
* ChatUsersApi - object-oriented interface
|
|
14223
14257
|
* @export
|
|
14224
|
-
* @class
|
|
14258
|
+
* @class ChatUsersApi
|
|
14225
14259
|
* @extends {BaseAPI}
|
|
14226
14260
|
*/
|
|
14227
|
-
export declare class
|
|
14261
|
+
export declare class ChatUsersApi extends BaseAPI {
|
|
14228
14262
|
/**
|
|
14229
14263
|
*
|
|
14230
|
-
* @summary
|
|
14231
|
-
* @param {
|
|
14232
|
-
* @param {
|
|
14264
|
+
* @summary Get all chatUsers.
|
|
14265
|
+
* @param {number} [limit]
|
|
14266
|
+
* @param {string} [token]
|
|
14267
|
+
* @param {string} [userIds]
|
|
14268
|
+
* @param {string} [nickname]
|
|
14269
|
+
* @param {string} [nicknameStartswith]
|
|
14233
14270
|
* @param {*} [options] Override http request option.
|
|
14234
14271
|
* @throws {RequiredError}
|
|
14235
|
-
* @memberof
|
|
14272
|
+
* @memberof ChatUsersApi
|
|
14236
14273
|
*/
|
|
14237
|
-
|
|
14274
|
+
apiV1ChatusersGet(limit?: number, token?: string, userIds?: string, nickname?: string, nicknameStartswith?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUsersModel>>;
|
|
14238
14275
|
/**
|
|
14239
14276
|
*
|
|
14240
|
-
* @summary
|
|
14241
|
-
* @param {
|
|
14277
|
+
* @summary Create a chatUser.
|
|
14278
|
+
* @param {CreateChatUserCommand} [createChatUserCommand]
|
|
14242
14279
|
* @param {*} [options] Override http request option.
|
|
14243
14280
|
* @throws {RequiredError}
|
|
14244
|
-
* @memberof
|
|
14281
|
+
* @memberof ChatUsersApi
|
|
14245
14282
|
*/
|
|
14246
|
-
|
|
14283
|
+
apiV1ChatusersPost(createChatUserCommand?: CreateChatUserCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel>>;
|
|
14247
14284
|
/**
|
|
14248
14285
|
*
|
|
14249
|
-
* @summary Delete
|
|
14250
|
-
* @param {string}
|
|
14286
|
+
* @summary Delete chatUser.
|
|
14287
|
+
* @param {string} userId
|
|
14251
14288
|
* @param {*} [options] Override http request option.
|
|
14252
14289
|
* @throws {RequiredError}
|
|
14253
|
-
* @memberof
|
|
14290
|
+
* @memberof ChatUsersApi
|
|
14254
14291
|
*/
|
|
14255
|
-
|
|
14292
|
+
apiV1ChatusersUserIdDelete(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14256
14293
|
/**
|
|
14257
14294
|
*
|
|
14258
|
-
* @summary Get
|
|
14259
|
-
* @param {string}
|
|
14295
|
+
* @summary Get chatUser.
|
|
14296
|
+
* @param {string} userId
|
|
14260
14297
|
* @param {*} [options] Override http request option.
|
|
14261
14298
|
* @throws {RequiredError}
|
|
14262
|
-
* @memberof
|
|
14299
|
+
* @memberof ChatUsersApi
|
|
14263
14300
|
*/
|
|
14264
|
-
|
|
14301
|
+
apiV1ChatusersUserIdGet(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel>>;
|
|
14265
14302
|
/**
|
|
14266
14303
|
*
|
|
14267
|
-
* @summary
|
|
14268
|
-
* @param {string}
|
|
14269
|
-
* @param {
|
|
14304
|
+
* @summary Update chatUser.
|
|
14305
|
+
* @param {string} userId
|
|
14306
|
+
* @param {UpdateChatUserCommand} [updateChatUserCommand]
|
|
14270
14307
|
* @param {*} [options] Override http request option.
|
|
14271
14308
|
* @throws {RequiredError}
|
|
14272
|
-
* @memberof
|
|
14309
|
+
* @memberof ChatUsersApi
|
|
14273
14310
|
*/
|
|
14274
|
-
|
|
14311
|
+
apiV1ChatusersUserIdPut(userId: string, updateChatUserCommand?: UpdateChatUserCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel>>;
|
|
14312
|
+
}
|
|
14313
|
+
/**
|
|
14314
|
+
* CommunicationsApi - axios parameter creator
|
|
14315
|
+
* @export
|
|
14316
|
+
*/
|
|
14317
|
+
export declare const CommunicationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
14275
14318
|
/**
|
|
14276
14319
|
*
|
|
14277
|
-
* @summary
|
|
14278
|
-
* @param {string} [searchString]
|
|
14279
|
-
* @param {boolean} [isOpen]
|
|
14280
|
-
* @param {boolean} [isCompleted]
|
|
14281
|
-
* @param {ConsultationStatus} [status]
|
|
14282
|
-
* @param {number} [page]
|
|
14283
|
-
* @param {number} [limit]
|
|
14284
|
-
* @param {Date} [lastRetrieved]
|
|
14320
|
+
* @summary Delete CommunicationUser.
|
|
14285
14321
|
* @param {*} [options] Override http request option.
|
|
14286
14322
|
* @throws {RequiredError}
|
|
14287
|
-
* @memberof ConsultationsApi
|
|
14288
14323
|
*/
|
|
14289
|
-
|
|
14290
|
-
}
|
|
14291
|
-
/**
|
|
14292
|
-
* ContributorsApi - axios parameter creator
|
|
14293
|
-
* @export
|
|
14294
|
-
*/
|
|
14295
|
-
export declare const ContributorsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
14324
|
+
apiV1CommunicationsDelete: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14296
14325
|
/**
|
|
14297
14326
|
*
|
|
14298
|
-
* @summary
|
|
14299
|
-
* @param {string} contributorId
|
|
14327
|
+
* @summary Get CommunicationUser.
|
|
14300
14328
|
* @param {*} [options] Override http request option.
|
|
14301
14329
|
* @throws {RequiredError}
|
|
14302
14330
|
*/
|
|
14303
|
-
|
|
14331
|
+
apiV1CommunicationsGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14304
14332
|
/**
|
|
14305
14333
|
*
|
|
14306
|
-
* @summary
|
|
14307
|
-
* @param {string} contributorId
|
|
14308
|
-
* @param {string} [languageCode]
|
|
14334
|
+
* @summary Revoke CommunicationUser.
|
|
14309
14335
|
* @param {*} [options] Override http request option.
|
|
14310
14336
|
* @throws {RequiredError}
|
|
14311
14337
|
*/
|
|
14312
|
-
|
|
14338
|
+
apiV1CommunicationsPut: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14339
|
+
};
|
|
14340
|
+
/**
|
|
14341
|
+
* CommunicationsApi - functional programming interface
|
|
14342
|
+
* @export
|
|
14343
|
+
*/
|
|
14344
|
+
export declare const CommunicationsApiFp: (configuration?: Configuration | undefined) => {
|
|
14313
14345
|
/**
|
|
14314
14346
|
*
|
|
14315
|
-
* @summary
|
|
14316
|
-
* @param {string} contributorId
|
|
14317
|
-
* @param {string} [contributorId2]
|
|
14318
|
-
* @param {string} [id]
|
|
14319
|
-
* @param {SnsType} [snsType]
|
|
14320
|
-
* @param {string} [handle]
|
|
14321
|
-
* @param {number} [page]
|
|
14322
|
-
* @param {number} [limit]
|
|
14323
|
-
* @param {Date} [lastRetrieved]
|
|
14347
|
+
* @summary Delete CommunicationUser.
|
|
14324
14348
|
* @param {*} [options] Override http request option.
|
|
14325
14349
|
* @throws {RequiredError}
|
|
14326
14350
|
*/
|
|
14327
|
-
|
|
14351
|
+
apiV1CommunicationsDelete(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<number>>;
|
|
14328
14352
|
/**
|
|
14329
14353
|
*
|
|
14330
|
-
* @summary
|
|
14331
|
-
* @param {string} contributorId
|
|
14332
|
-
* @param {string} handleId
|
|
14354
|
+
* @summary Get CommunicationUser.
|
|
14333
14355
|
* @param {*} [options] Override http request option.
|
|
14334
14356
|
* @throws {RequiredError}
|
|
14335
14357
|
*/
|
|
14336
|
-
|
|
14358
|
+
apiV1CommunicationsGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CommunicationUserTokenModel>>;
|
|
14337
14359
|
/**
|
|
14338
14360
|
*
|
|
14339
|
-
* @summary
|
|
14340
|
-
* @param {string} contributorId
|
|
14341
|
-
* @param {string} handleId
|
|
14361
|
+
* @summary Revoke CommunicationUser.
|
|
14342
14362
|
* @param {*} [options] Override http request option.
|
|
14343
14363
|
* @throws {RequiredError}
|
|
14344
14364
|
*/
|
|
14345
|
-
|
|
14365
|
+
apiV1CommunicationsPut(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CommunicationUserTokenModel>>;
|
|
14366
|
+
};
|
|
14367
|
+
/**
|
|
14368
|
+
* CommunicationsApi - factory interface
|
|
14369
|
+
* @export
|
|
14370
|
+
*/
|
|
14371
|
+
export declare const CommunicationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
14346
14372
|
/**
|
|
14347
14373
|
*
|
|
14348
|
-
* @summary
|
|
14349
|
-
* @param {string} contributorId
|
|
14350
|
-
* @param {CreateContributorSnsHandleCommand} [createContributorSnsHandleCommand]
|
|
14374
|
+
* @summary Delete CommunicationUser.
|
|
14351
14375
|
* @param {*} [options] Override http request option.
|
|
14352
14376
|
* @throws {RequiredError}
|
|
14353
14377
|
*/
|
|
14354
|
-
|
|
14378
|
+
apiV1CommunicationsDelete(options?: any): AxiosPromise<number>;
|
|
14355
14379
|
/**
|
|
14356
14380
|
*
|
|
14357
|
-
* @summary
|
|
14358
|
-
* @param {string} contributorId
|
|
14359
|
-
* @param {UpdateContributorCommand} [updateContributorCommand]
|
|
14381
|
+
* @summary Get CommunicationUser.
|
|
14360
14382
|
* @param {*} [options] Override http request option.
|
|
14361
14383
|
* @throws {RequiredError}
|
|
14362
14384
|
*/
|
|
14363
|
-
|
|
14385
|
+
apiV1CommunicationsGet(options?: any): AxiosPromise<CommunicationUserTokenModel>;
|
|
14364
14386
|
/**
|
|
14365
14387
|
*
|
|
14366
|
-
* @summary
|
|
14367
|
-
* @param {
|
|
14368
|
-
* @
|
|
14388
|
+
* @summary Revoke CommunicationUser.
|
|
14389
|
+
* @param {*} [options] Override http request option.
|
|
14390
|
+
* @throws {RequiredError}
|
|
14391
|
+
*/
|
|
14392
|
+
apiV1CommunicationsPut(options?: any): AxiosPromise<CommunicationUserTokenModel>;
|
|
14393
|
+
};
|
|
14394
|
+
/**
|
|
14395
|
+
* CommunicationsApi - object-oriented interface
|
|
14396
|
+
* @export
|
|
14397
|
+
* @class CommunicationsApi
|
|
14398
|
+
* @extends {BaseAPI}
|
|
14399
|
+
*/
|
|
14400
|
+
export declare class CommunicationsApi extends BaseAPI {
|
|
14401
|
+
/**
|
|
14402
|
+
*
|
|
14403
|
+
* @summary Delete CommunicationUser.
|
|
14404
|
+
* @param {*} [options] Override http request option.
|
|
14405
|
+
* @throws {RequiredError}
|
|
14406
|
+
* @memberof CommunicationsApi
|
|
14407
|
+
*/
|
|
14408
|
+
apiV1CommunicationsDelete(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<number>>;
|
|
14409
|
+
/**
|
|
14410
|
+
*
|
|
14411
|
+
* @summary Get CommunicationUser.
|
|
14412
|
+
* @param {*} [options] Override http request option.
|
|
14413
|
+
* @throws {RequiredError}
|
|
14414
|
+
* @memberof CommunicationsApi
|
|
14415
|
+
*/
|
|
14416
|
+
apiV1CommunicationsGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CommunicationUserTokenModel>>;
|
|
14417
|
+
/**
|
|
14418
|
+
*
|
|
14419
|
+
* @summary Revoke CommunicationUser.
|
|
14420
|
+
* @param {*} [options] Override http request option.
|
|
14421
|
+
* @throws {RequiredError}
|
|
14422
|
+
* @memberof CommunicationsApi
|
|
14423
|
+
*/
|
|
14424
|
+
apiV1CommunicationsPut(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CommunicationUserTokenModel>>;
|
|
14425
|
+
}
|
|
14426
|
+
/**
|
|
14427
|
+
* ConsultationsApi - axios parameter creator
|
|
14428
|
+
* @export
|
|
14429
|
+
*/
|
|
14430
|
+
export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
14431
|
+
/**
|
|
14432
|
+
*
|
|
14433
|
+
* @summary Approve consultation.
|
|
14434
|
+
* @param {string} consultationId
|
|
14435
|
+
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
14436
|
+
* @param {*} [options] Override http request option.
|
|
14437
|
+
* @throws {RequiredError}
|
|
14438
|
+
*/
|
|
14439
|
+
apiV1ConsultationsConsultationIdApprovePut: (consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14440
|
+
/**
|
|
14441
|
+
*
|
|
14442
|
+
* @summary Cancel consultation.
|
|
14443
|
+
* @param {string} consultationId
|
|
14444
|
+
* @param {*} [options] Override http request option.
|
|
14445
|
+
* @throws {RequiredError}
|
|
14446
|
+
*/
|
|
14447
|
+
apiV1ConsultationsConsultationIdCancelPut: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14448
|
+
/**
|
|
14449
|
+
*
|
|
14450
|
+
* @summary Delete consultation.
|
|
14451
|
+
* @param {string} consultationId
|
|
14452
|
+
* @param {*} [options] Override http request option.
|
|
14453
|
+
* @throws {RequiredError}
|
|
14454
|
+
*/
|
|
14455
|
+
apiV1ConsultationsConsultationIdDelete: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14456
|
+
/**
|
|
14457
|
+
*
|
|
14458
|
+
* @summary Get consultation.
|
|
14459
|
+
* @param {string} consultationId
|
|
14460
|
+
* @param {*} [options] Override http request option.
|
|
14461
|
+
* @throws {RequiredError}
|
|
14462
|
+
*/
|
|
14463
|
+
apiV1ConsultationsConsultationIdGet: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14464
|
+
/**
|
|
14465
|
+
*
|
|
14466
|
+
* @summary Reject consultation.
|
|
14467
|
+
* @param {string} consultationId
|
|
14468
|
+
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
14469
|
+
* @param {*} [options] Override http request option.
|
|
14470
|
+
* @throws {RequiredError}
|
|
14471
|
+
*/
|
|
14472
|
+
apiV1ConsultationsConsultationIdRejectPut: (consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14473
|
+
/**
|
|
14474
|
+
*
|
|
14475
|
+
* @summary Get all consultations.
|
|
14476
|
+
* @param {string} [searchString]
|
|
14477
|
+
* @param {boolean} [isOpen]
|
|
14478
|
+
* @param {boolean} [isCompleted]
|
|
14479
|
+
* @param {ConsultationStatus} [status]
|
|
14480
|
+
* @param {number} [page]
|
|
14481
|
+
* @param {number} [limit]
|
|
14482
|
+
* @param {Date} [lastRetrieved]
|
|
14483
|
+
* @param {*} [options] Override http request option.
|
|
14484
|
+
* @throws {RequiredError}
|
|
14485
|
+
*/
|
|
14486
|
+
apiV1ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14487
|
+
};
|
|
14488
|
+
/**
|
|
14489
|
+
* ConsultationsApi - functional programming interface
|
|
14490
|
+
* @export
|
|
14491
|
+
*/
|
|
14492
|
+
export declare const ConsultationsApiFp: (configuration?: Configuration | undefined) => {
|
|
14493
|
+
/**
|
|
14494
|
+
*
|
|
14495
|
+
* @summary Approve consultation.
|
|
14496
|
+
* @param {string} consultationId
|
|
14497
|
+
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
14498
|
+
* @param {*} [options] Override http request option.
|
|
14499
|
+
* @throws {RequiredError}
|
|
14500
|
+
*/
|
|
14501
|
+
apiV1ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14502
|
+
/**
|
|
14503
|
+
*
|
|
14504
|
+
* @summary Cancel consultation.
|
|
14505
|
+
* @param {string} consultationId
|
|
14506
|
+
* @param {*} [options] Override http request option.
|
|
14507
|
+
* @throws {RequiredError}
|
|
14508
|
+
*/
|
|
14509
|
+
apiV1ConsultationsConsultationIdCancelPut(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14510
|
+
/**
|
|
14511
|
+
*
|
|
14512
|
+
* @summary Delete consultation.
|
|
14513
|
+
* @param {string} consultationId
|
|
14514
|
+
* @param {*} [options] Override http request option.
|
|
14515
|
+
* @throws {RequiredError}
|
|
14516
|
+
*/
|
|
14517
|
+
apiV1ConsultationsConsultationIdDelete(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14518
|
+
/**
|
|
14519
|
+
*
|
|
14520
|
+
* @summary Get consultation.
|
|
14521
|
+
* @param {string} consultationId
|
|
14522
|
+
* @param {*} [options] Override http request option.
|
|
14523
|
+
* @throws {RequiredError}
|
|
14524
|
+
*/
|
|
14525
|
+
apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
14526
|
+
/**
|
|
14527
|
+
*
|
|
14528
|
+
* @summary Reject consultation.
|
|
14529
|
+
* @param {string} consultationId
|
|
14530
|
+
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
14531
|
+
* @param {*} [options] Override http request option.
|
|
14532
|
+
* @throws {RequiredError}
|
|
14533
|
+
*/
|
|
14534
|
+
apiV1ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14535
|
+
/**
|
|
14536
|
+
*
|
|
14537
|
+
* @summary Get all consultations.
|
|
14538
|
+
* @param {string} [searchString]
|
|
14539
|
+
* @param {boolean} [isOpen]
|
|
14540
|
+
* @param {boolean} [isCompleted]
|
|
14541
|
+
* @param {ConsultationStatus} [status]
|
|
14542
|
+
* @param {number} [page]
|
|
14543
|
+
* @param {number} [limit]
|
|
14544
|
+
* @param {Date} [lastRetrieved]
|
|
14545
|
+
* @param {*} [options] Override http request option.
|
|
14546
|
+
* @throws {RequiredError}
|
|
14547
|
+
*/
|
|
14548
|
+
apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
|
|
14549
|
+
};
|
|
14550
|
+
/**
|
|
14551
|
+
* ConsultationsApi - factory interface
|
|
14552
|
+
* @export
|
|
14553
|
+
*/
|
|
14554
|
+
export declare const ConsultationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
14555
|
+
/**
|
|
14556
|
+
*
|
|
14557
|
+
* @summary Approve consultation.
|
|
14558
|
+
* @param {string} consultationId
|
|
14559
|
+
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
14560
|
+
* @param {*} [options] Override http request option.
|
|
14561
|
+
* @throws {RequiredError}
|
|
14562
|
+
*/
|
|
14563
|
+
apiV1ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
14564
|
+
/**
|
|
14565
|
+
*
|
|
14566
|
+
* @summary Cancel consultation.
|
|
14567
|
+
* @param {string} consultationId
|
|
14568
|
+
* @param {*} [options] Override http request option.
|
|
14569
|
+
* @throws {RequiredError}
|
|
14570
|
+
*/
|
|
14571
|
+
apiV1ConsultationsConsultationIdCancelPut(consultationId: string, options?: any): AxiosPromise<boolean>;
|
|
14572
|
+
/**
|
|
14573
|
+
*
|
|
14574
|
+
* @summary Delete consultation.
|
|
14575
|
+
* @param {string} consultationId
|
|
14576
|
+
* @param {*} [options] Override http request option.
|
|
14577
|
+
* @throws {RequiredError}
|
|
14578
|
+
*/
|
|
14579
|
+
apiV1ConsultationsConsultationIdDelete(consultationId: string, options?: any): AxiosPromise<boolean>;
|
|
14580
|
+
/**
|
|
14581
|
+
*
|
|
14582
|
+
* @summary Get consultation.
|
|
14583
|
+
* @param {string} consultationId
|
|
14584
|
+
* @param {*} [options] Override http request option.
|
|
14585
|
+
* @throws {RequiredError}
|
|
14586
|
+
*/
|
|
14587
|
+
apiV1ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel>;
|
|
14588
|
+
/**
|
|
14589
|
+
*
|
|
14590
|
+
* @summary Reject consultation.
|
|
14591
|
+
* @param {string} consultationId
|
|
14592
|
+
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
14593
|
+
* @param {*} [options] Override http request option.
|
|
14594
|
+
* @throws {RequiredError}
|
|
14595
|
+
*/
|
|
14596
|
+
apiV1ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
14597
|
+
/**
|
|
14598
|
+
*
|
|
14599
|
+
* @summary Get all consultations.
|
|
14600
|
+
* @param {string} [searchString]
|
|
14601
|
+
* @param {boolean} [isOpen]
|
|
14602
|
+
* @param {boolean} [isCompleted]
|
|
14603
|
+
* @param {ConsultationStatus} [status]
|
|
14604
|
+
* @param {number} [page]
|
|
14605
|
+
* @param {number} [limit]
|
|
14606
|
+
* @param {Date} [lastRetrieved]
|
|
14607
|
+
* @param {*} [options] Override http request option.
|
|
14608
|
+
* @throws {RequiredError}
|
|
14609
|
+
*/
|
|
14610
|
+
apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
|
|
14611
|
+
};
|
|
14612
|
+
/**
|
|
14613
|
+
* ConsultationsApi - object-oriented interface
|
|
14614
|
+
* @export
|
|
14615
|
+
* @class ConsultationsApi
|
|
14616
|
+
* @extends {BaseAPI}
|
|
14617
|
+
*/
|
|
14618
|
+
export declare class ConsultationsApi extends BaseAPI {
|
|
14619
|
+
/**
|
|
14620
|
+
*
|
|
14621
|
+
* @summary Approve consultation.
|
|
14622
|
+
* @param {string} consultationId
|
|
14623
|
+
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
14624
|
+
* @param {*} [options] Override http request option.
|
|
14625
|
+
* @throws {RequiredError}
|
|
14626
|
+
* @memberof ConsultationsApi
|
|
14627
|
+
*/
|
|
14628
|
+
apiV1ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14629
|
+
/**
|
|
14630
|
+
*
|
|
14631
|
+
* @summary Cancel consultation.
|
|
14632
|
+
* @param {string} consultationId
|
|
14633
|
+
* @param {*} [options] Override http request option.
|
|
14634
|
+
* @throws {RequiredError}
|
|
14635
|
+
* @memberof ConsultationsApi
|
|
14636
|
+
*/
|
|
14637
|
+
apiV1ConsultationsConsultationIdCancelPut(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14638
|
+
/**
|
|
14639
|
+
*
|
|
14640
|
+
* @summary Delete consultation.
|
|
14641
|
+
* @param {string} consultationId
|
|
14642
|
+
* @param {*} [options] Override http request option.
|
|
14643
|
+
* @throws {RequiredError}
|
|
14644
|
+
* @memberof ConsultationsApi
|
|
14645
|
+
*/
|
|
14646
|
+
apiV1ConsultationsConsultationIdDelete(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14647
|
+
/**
|
|
14648
|
+
*
|
|
14649
|
+
* @summary Get consultation.
|
|
14650
|
+
* @param {string} consultationId
|
|
14651
|
+
* @param {*} [options] Override http request option.
|
|
14652
|
+
* @throws {RequiredError}
|
|
14653
|
+
* @memberof ConsultationsApi
|
|
14654
|
+
*/
|
|
14655
|
+
apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
|
|
14656
|
+
/**
|
|
14657
|
+
*
|
|
14658
|
+
* @summary Reject consultation.
|
|
14659
|
+
* @param {string} consultationId
|
|
14660
|
+
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
14661
|
+
* @param {*} [options] Override http request option.
|
|
14662
|
+
* @throws {RequiredError}
|
|
14663
|
+
* @memberof ConsultationsApi
|
|
14664
|
+
*/
|
|
14665
|
+
apiV1ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14666
|
+
/**
|
|
14667
|
+
*
|
|
14668
|
+
* @summary Get all consultations.
|
|
14669
|
+
* @param {string} [searchString]
|
|
14670
|
+
* @param {boolean} [isOpen]
|
|
14671
|
+
* @param {boolean} [isCompleted]
|
|
14672
|
+
* @param {ConsultationStatus} [status]
|
|
14673
|
+
* @param {number} [page]
|
|
14674
|
+
* @param {number} [limit]
|
|
14675
|
+
* @param {Date} [lastRetrieved]
|
|
14676
|
+
* @param {*} [options] Override http request option.
|
|
14677
|
+
* @throws {RequiredError}
|
|
14678
|
+
* @memberof ConsultationsApi
|
|
14679
|
+
*/
|
|
14680
|
+
apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
|
|
14681
|
+
}
|
|
14682
|
+
/**
|
|
14683
|
+
* ContributorsApi - axios parameter creator
|
|
14684
|
+
* @export
|
|
14685
|
+
*/
|
|
14686
|
+
export declare const ContributorsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
14687
|
+
/**
|
|
14688
|
+
*
|
|
14689
|
+
* @summary Delete Contributor.
|
|
14690
|
+
* @param {string} contributorId
|
|
14691
|
+
* @param {*} [options] Override http request option.
|
|
14692
|
+
* @throws {RequiredError}
|
|
14693
|
+
*/
|
|
14694
|
+
apiV1ContributorsContributorIdDelete: (contributorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14695
|
+
/**
|
|
14696
|
+
*
|
|
14697
|
+
* @summary Get Contributor.
|
|
14698
|
+
* @param {string} contributorId
|
|
14699
|
+
* @param {string} [languageCode]
|
|
14700
|
+
* @param {*} [options] Override http request option.
|
|
14701
|
+
* @throws {RequiredError}
|
|
14702
|
+
*/
|
|
14703
|
+
apiV1ContributorsContributorIdGet: (contributorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14704
|
+
/**
|
|
14705
|
+
*
|
|
14706
|
+
* @summary Get all ContributorHandles.
|
|
14707
|
+
* @param {string} contributorId
|
|
14708
|
+
* @param {string} [contributorId2]
|
|
14709
|
+
* @param {string} [id]
|
|
14710
|
+
* @param {SnsType} [snsType]
|
|
14711
|
+
* @param {string} [handle]
|
|
14712
|
+
* @param {number} [page]
|
|
14713
|
+
* @param {number} [limit]
|
|
14714
|
+
* @param {Date} [lastRetrieved]
|
|
14715
|
+
* @param {*} [options] Override http request option.
|
|
14716
|
+
* @throws {RequiredError}
|
|
14717
|
+
*/
|
|
14718
|
+
apiV1ContributorsContributorIdHandlesGet: (contributorId: string, contributorId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14719
|
+
/**
|
|
14720
|
+
*
|
|
14721
|
+
* @summary Delete ContributorHandle.
|
|
14722
|
+
* @param {string} contributorId
|
|
14723
|
+
* @param {string} handleId
|
|
14724
|
+
* @param {*} [options] Override http request option.
|
|
14725
|
+
* @throws {RequiredError}
|
|
14726
|
+
*/
|
|
14727
|
+
apiV1ContributorsContributorIdHandlesHandleIdDelete: (contributorId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14728
|
+
/**
|
|
14729
|
+
*
|
|
14730
|
+
* @summary Get ContributorHandle.
|
|
14731
|
+
* @param {string} contributorId
|
|
14732
|
+
* @param {string} handleId
|
|
14733
|
+
* @param {*} [options] Override http request option.
|
|
14734
|
+
* @throws {RequiredError}
|
|
14735
|
+
*/
|
|
14736
|
+
apiV1ContributorsContributorIdHandlesHandleIdGet: (contributorId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14737
|
+
/**
|
|
14738
|
+
*
|
|
14739
|
+
* @summary Update ContributorHandle.
|
|
14740
|
+
* @param {string} contributorId
|
|
14741
|
+
* @param {string} handleId
|
|
14742
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
14743
|
+
* @param {*} [options] Override http request option.
|
|
14744
|
+
* @throws {RequiredError}
|
|
14745
|
+
*/
|
|
14746
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut: (contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14747
|
+
/**
|
|
14748
|
+
*
|
|
14749
|
+
* @summary Get ContributorHandle.
|
|
14750
|
+
* @param {string} contributorId
|
|
14751
|
+
* @param {CreateContributorSnsHandleCommand} [createContributorSnsHandleCommand]
|
|
14752
|
+
* @param {*} [options] Override http request option.
|
|
14753
|
+
* @throws {RequiredError}
|
|
14754
|
+
*/
|
|
14755
|
+
apiV1ContributorsContributorIdHandlesPost: (contributorId: string, createContributorSnsHandleCommand?: CreateContributorSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14756
|
+
/**
|
|
14757
|
+
*
|
|
14758
|
+
* @summary Update Contributor.
|
|
14759
|
+
* @param {string} contributorId
|
|
14760
|
+
* @param {UpdateContributorCommand} [updateContributorCommand]
|
|
14761
|
+
* @param {*} [options] Override http request option.
|
|
14762
|
+
* @throws {RequiredError}
|
|
14763
|
+
*/
|
|
14764
|
+
apiV1ContributorsContributorIdPut: (contributorId: string, updateContributorCommand?: UpdateContributorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14765
|
+
/**
|
|
14766
|
+
*
|
|
14767
|
+
* @summary Get all Contributors.
|
|
14768
|
+
* @param {string} [id]
|
|
14769
|
+
* @param {string} [name]
|
|
14369
14770
|
* @param {string} [email]
|
|
14370
14771
|
* @param {string} [description]
|
|
14371
14772
|
* @param {string} [website]
|
|
@@ -14453,6 +14854,16 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
14453
14854
|
* @throws {RequiredError}
|
|
14454
14855
|
*/
|
|
14455
14856
|
apiV1ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
14857
|
+
/**
|
|
14858
|
+
*
|
|
14859
|
+
* @summary Update ContributorHandle.
|
|
14860
|
+
* @param {string} contributorId
|
|
14861
|
+
* @param {string} handleId
|
|
14862
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
14863
|
+
* @param {*} [options] Override http request option.
|
|
14864
|
+
* @throws {RequiredError}
|
|
14865
|
+
*/
|
|
14866
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut(contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
14456
14867
|
/**
|
|
14457
14868
|
*
|
|
14458
14869
|
* @summary Get ContributorHandle.
|
|
@@ -14563,6 +14974,16 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
|
|
|
14563
14974
|
* @throws {RequiredError}
|
|
14564
14975
|
*/
|
|
14565
14976
|
apiV1ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
|
|
14977
|
+
/**
|
|
14978
|
+
*
|
|
14979
|
+
* @summary Update ContributorHandle.
|
|
14980
|
+
* @param {string} contributorId
|
|
14981
|
+
* @param {string} handleId
|
|
14982
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
14983
|
+
* @param {*} [options] Override http request option.
|
|
14984
|
+
* @throws {RequiredError}
|
|
14985
|
+
*/
|
|
14986
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut(contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
14566
14987
|
/**
|
|
14567
14988
|
*
|
|
14568
14989
|
* @summary Get ContributorHandle.
|
|
@@ -14680,6 +15101,17 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
14680
15101
|
* @memberof ContributorsApi
|
|
14681
15102
|
*/
|
|
14682
15103
|
apiV1ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
15104
|
+
/**
|
|
15105
|
+
*
|
|
15106
|
+
* @summary Update ContributorHandle.
|
|
15107
|
+
* @param {string} contributorId
|
|
15108
|
+
* @param {string} handleId
|
|
15109
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
15110
|
+
* @param {*} [options] Override http request option.
|
|
15111
|
+
* @throws {RequiredError}
|
|
15112
|
+
* @memberof ContributorsApi
|
|
15113
|
+
*/
|
|
15114
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut(contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
14683
15115
|
/**
|
|
14684
15116
|
*
|
|
14685
15117
|
* @summary Get ContributorHandle.
|
|
@@ -16169,7 +16601,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16169
16601
|
*
|
|
16170
16602
|
* @summary Get All DoctorSpecialties.
|
|
16171
16603
|
* @param {string} doctorId
|
|
16172
|
-
* @param {string} [doctorId2]
|
|
16173
16604
|
* @param {string} [doctorName]
|
|
16174
16605
|
* @param {string} [specialtyId]
|
|
16175
16606
|
* @param {string} [specialtyName]
|
|
@@ -16179,7 +16610,16 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16179
16610
|
* @param {*} [options] Override http request option.
|
|
16180
16611
|
* @throws {RequiredError}
|
|
16181
16612
|
*/
|
|
16182
|
-
apiV1DoctorsDoctorIdSpecialtiesGet: (doctorId: string,
|
|
16613
|
+
apiV1DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16614
|
+
/**
|
|
16615
|
+
*
|
|
16616
|
+
* @summary Link a doctor to a specialty.
|
|
16617
|
+
* @param {string} doctorId
|
|
16618
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
16619
|
+
* @param {*} [options] Override http request option.
|
|
16620
|
+
* @throws {RequiredError}
|
|
16621
|
+
*/
|
|
16622
|
+
apiV1DoctorsDoctorIdSpecialtiesPost: (doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16183
16623
|
/**
|
|
16184
16624
|
*
|
|
16185
16625
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -16200,13 +16640,14 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16200
16640
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16201
16641
|
/**
|
|
16202
16642
|
*
|
|
16203
|
-
* @summary
|
|
16643
|
+
* @summary Update DoctorSpecialty.
|
|
16204
16644
|
* @param {string} doctorId
|
|
16205
16645
|
* @param {string} specialtyId
|
|
16646
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
16206
16647
|
* @param {*} [options] Override http request option.
|
|
16207
16648
|
* @throws {RequiredError}
|
|
16208
16649
|
*/
|
|
16209
|
-
|
|
16650
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut: (doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16210
16651
|
/**
|
|
16211
16652
|
*
|
|
16212
16653
|
* @summary Get all Doctors.
|
|
@@ -16508,12 +16949,11 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16508
16949
|
* @param {*} [options] Override http request option.
|
|
16509
16950
|
* @throws {RequiredError}
|
|
16510
16951
|
*/
|
|
16511
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
16952
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
16512
16953
|
/**
|
|
16513
16954
|
*
|
|
16514
16955
|
* @summary Get All DoctorSpecialties.
|
|
16515
16956
|
* @param {string} doctorId
|
|
16516
|
-
* @param {string} [doctorId2]
|
|
16517
16957
|
* @param {string} [doctorName]
|
|
16518
16958
|
* @param {string} [specialtyId]
|
|
16519
16959
|
* @param {string} [specialtyName]
|
|
@@ -16523,7 +16963,16 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16523
16963
|
* @param {*} [options] Override http request option.
|
|
16524
16964
|
* @throws {RequiredError}
|
|
16525
16965
|
*/
|
|
16526
|
-
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string,
|
|
16966
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
|
|
16967
|
+
/**
|
|
16968
|
+
*
|
|
16969
|
+
* @summary Link a doctor to a specialty.
|
|
16970
|
+
* @param {string} doctorId
|
|
16971
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
16972
|
+
* @param {*} [options] Override http request option.
|
|
16973
|
+
* @throws {RequiredError}
|
|
16974
|
+
*/
|
|
16975
|
+
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16527
16976
|
/**
|
|
16528
16977
|
*
|
|
16529
16978
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -16544,13 +16993,14 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16544
16993
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16545
16994
|
/**
|
|
16546
16995
|
*
|
|
16547
|
-
* @summary
|
|
16996
|
+
* @summary Update DoctorSpecialty.
|
|
16548
16997
|
* @param {string} doctorId
|
|
16549
16998
|
* @param {string} specialtyId
|
|
16999
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
16550
17000
|
* @param {*} [options] Override http request option.
|
|
16551
17001
|
* @throws {RequiredError}
|
|
16552
17002
|
*/
|
|
16553
|
-
|
|
17003
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16554
17004
|
/**
|
|
16555
17005
|
*
|
|
16556
17006
|
* @summary Get all Doctors.
|
|
@@ -16852,12 +17302,11 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16852
17302
|
* @param {*} [options] Override http request option.
|
|
16853
17303
|
* @throws {RequiredError}
|
|
16854
17304
|
*/
|
|
16855
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<
|
|
17305
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
16856
17306
|
/**
|
|
16857
17307
|
*
|
|
16858
17308
|
* @summary Get All DoctorSpecialties.
|
|
16859
17309
|
* @param {string} doctorId
|
|
16860
|
-
* @param {string} [doctorId2]
|
|
16861
17310
|
* @param {string} [doctorName]
|
|
16862
17311
|
* @param {string} [specialtyId]
|
|
16863
17312
|
* @param {string} [specialtyName]
|
|
@@ -16867,7 +17316,16 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16867
17316
|
* @param {*} [options] Override http request option.
|
|
16868
17317
|
* @throws {RequiredError}
|
|
16869
17318
|
*/
|
|
16870
|
-
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string,
|
|
17319
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
|
|
17320
|
+
/**
|
|
17321
|
+
*
|
|
17322
|
+
* @summary Link a doctor to a specialty.
|
|
17323
|
+
* @param {string} doctorId
|
|
17324
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
17325
|
+
* @param {*} [options] Override http request option.
|
|
17326
|
+
* @throws {RequiredError}
|
|
17327
|
+
*/
|
|
17328
|
+
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
16871
17329
|
/**
|
|
16872
17330
|
*
|
|
16873
17331
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -16888,13 +17346,14 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16888
17346
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
16889
17347
|
/**
|
|
16890
17348
|
*
|
|
16891
|
-
* @summary
|
|
17349
|
+
* @summary Update DoctorSpecialty.
|
|
16892
17350
|
* @param {string} doctorId
|
|
16893
17351
|
* @param {string} specialtyId
|
|
17352
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
16894
17353
|
* @param {*} [options] Override http request option.
|
|
16895
17354
|
* @throws {RequiredError}
|
|
16896
17355
|
*/
|
|
16897
|
-
|
|
17356
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
16898
17357
|
/**
|
|
16899
17358
|
*
|
|
16900
17359
|
* @summary Get all Doctors.
|
|
@@ -17223,12 +17682,11 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17223
17682
|
* @throws {RequiredError}
|
|
17224
17683
|
* @memberof DoctorsApi
|
|
17225
17684
|
*/
|
|
17226
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17685
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
17227
17686
|
/**
|
|
17228
17687
|
*
|
|
17229
17688
|
* @summary Get All DoctorSpecialties.
|
|
17230
17689
|
* @param {string} doctorId
|
|
17231
|
-
* @param {string} [doctorId2]
|
|
17232
17690
|
* @param {string} [doctorName]
|
|
17233
17691
|
* @param {string} [specialtyId]
|
|
17234
17692
|
* @param {string} [specialtyName]
|
|
@@ -17239,7 +17697,17 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17239
17697
|
* @throws {RequiredError}
|
|
17240
17698
|
* @memberof DoctorsApi
|
|
17241
17699
|
*/
|
|
17242
|
-
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string,
|
|
17700
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel>>;
|
|
17701
|
+
/**
|
|
17702
|
+
*
|
|
17703
|
+
* @summary Link a doctor to a specialty.
|
|
17704
|
+
* @param {string} doctorId
|
|
17705
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
17706
|
+
* @param {*} [options] Override http request option.
|
|
17707
|
+
* @throws {RequiredError}
|
|
17708
|
+
* @memberof DoctorsApi
|
|
17709
|
+
*/
|
|
17710
|
+
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
17243
17711
|
/**
|
|
17244
17712
|
*
|
|
17245
17713
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -17262,14 +17730,15 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17262
17730
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
17263
17731
|
/**
|
|
17264
17732
|
*
|
|
17265
|
-
* @summary
|
|
17733
|
+
* @summary Update DoctorSpecialty.
|
|
17266
17734
|
* @param {string} doctorId
|
|
17267
17735
|
* @param {string} specialtyId
|
|
17736
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
17268
17737
|
* @param {*} [options] Override http request option.
|
|
17269
17738
|
* @throws {RequiredError}
|
|
17270
17739
|
* @memberof DoctorsApi
|
|
17271
17740
|
*/
|
|
17272
|
-
|
|
17741
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
17273
17742
|
/**
|
|
17274
17743
|
*
|
|
17275
17744
|
* @summary Get all Doctors.
|
|
@@ -17565,65 +18034,122 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17565
18034
|
* @param {*} [options] Override http request option.
|
|
17566
18035
|
* @throws {RequiredError}
|
|
17567
18036
|
*/
|
|
17568
|
-
apiV1HospitalsHospitalIdMediasGet: (hospitalId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18037
|
+
apiV1HospitalsHospitalIdMediasGet: (hospitalId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18038
|
+
/**
|
|
18039
|
+
*
|
|
18040
|
+
* @summary Delete HospitalMedia
|
|
18041
|
+
* @param {string} hospitalId
|
|
18042
|
+
* @param {string} mediaId
|
|
18043
|
+
* @param {*} [options] Override http request option.
|
|
18044
|
+
* @throws {RequiredError}
|
|
18045
|
+
*/
|
|
18046
|
+
apiV1HospitalsHospitalIdMediasMediaIdDelete: (hospitalId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18047
|
+
/**
|
|
18048
|
+
*
|
|
18049
|
+
* @summary Get HospitalMedia.
|
|
18050
|
+
* @param {string} hospitalId
|
|
18051
|
+
* @param {string} mediaId
|
|
18052
|
+
* @param {*} [options] Override http request option.
|
|
18053
|
+
* @throws {RequiredError}
|
|
18054
|
+
*/
|
|
18055
|
+
apiV1HospitalsHospitalIdMediasMediaIdGet: (hospitalId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18056
|
+
/**
|
|
18057
|
+
*
|
|
18058
|
+
* @summary Update HospitalMedia.
|
|
18059
|
+
* @param {string} hospitalId
|
|
18060
|
+
* @param {string} mediaId
|
|
18061
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
18062
|
+
* @param {*} [options] Override http request option.
|
|
18063
|
+
* @throws {RequiredError}
|
|
18064
|
+
*/
|
|
18065
|
+
apiV1HospitalsHospitalIdMediasMediaIdPut: (hospitalId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18066
|
+
/**
|
|
18067
|
+
*
|
|
18068
|
+
* @summary Create HospitalMedia.
|
|
18069
|
+
* @param {string} hospitalId
|
|
18070
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
18071
|
+
* @param {*} [options] Override http request option.
|
|
18072
|
+
* @throws {RequiredError}
|
|
18073
|
+
*/
|
|
18074
|
+
apiV1HospitalsHospitalIdMediasPost: (hospitalId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18075
|
+
/**
|
|
18076
|
+
*
|
|
18077
|
+
* @summary Update Hospital.
|
|
18078
|
+
* @param {string} hospitalId
|
|
18079
|
+
* @param {UpdateHospitalCommand} [updateHospitalCommand]
|
|
18080
|
+
* @param {*} [options] Override http request option.
|
|
18081
|
+
* @throws {RequiredError}
|
|
18082
|
+
*/
|
|
18083
|
+
apiV1HospitalsHospitalIdPut: (hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17569
18084
|
/**
|
|
17570
18085
|
*
|
|
17571
|
-
* @summary
|
|
18086
|
+
* @summary Get all HospitalSpecialties.
|
|
17572
18087
|
* @param {string} hospitalId
|
|
17573
|
-
* @param {string}
|
|
18088
|
+
* @param {string} [hospitalName]
|
|
18089
|
+
* @param {string} [hospitalSlug]
|
|
18090
|
+
* @param {string} [specialtyId]
|
|
18091
|
+
* @param {string} [specialtyName]
|
|
18092
|
+
* @param {string} [specialtyTypeId]
|
|
18093
|
+
* @param {MarketingType} [marketingType]
|
|
18094
|
+
* @param {Date} [created]
|
|
18095
|
+
* @param {number} [page]
|
|
18096
|
+
* @param {number} [limit]
|
|
18097
|
+
* @param {Date} [lastRetrieved]
|
|
17574
18098
|
* @param {*} [options] Override http request option.
|
|
17575
18099
|
* @throws {RequiredError}
|
|
17576
18100
|
*/
|
|
17577
|
-
|
|
18101
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17578
18102
|
/**
|
|
17579
18103
|
*
|
|
17580
|
-
* @summary
|
|
18104
|
+
* @summary Create HospitalSpecialty.
|
|
17581
18105
|
* @param {string} hospitalId
|
|
17582
|
-
* @param {
|
|
18106
|
+
* @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
|
|
17583
18107
|
* @param {*} [options] Override http request option.
|
|
17584
18108
|
* @throws {RequiredError}
|
|
17585
18109
|
*/
|
|
17586
|
-
|
|
18110
|
+
apiV1HospitalsHospitalIdSpecialtiesPost: (hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17587
18111
|
/**
|
|
17588
18112
|
*
|
|
17589
|
-
* @summary
|
|
18113
|
+
* @summary Delete HospitalSpecialty.
|
|
17590
18114
|
* @param {string} hospitalId
|
|
17591
|
-
* @param {string}
|
|
17592
|
-
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
18115
|
+
* @param {string} specialtyId
|
|
17593
18116
|
* @param {*} [options] Override http request option.
|
|
17594
18117
|
* @throws {RequiredError}
|
|
17595
18118
|
*/
|
|
17596
|
-
|
|
18119
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17597
18120
|
/**
|
|
17598
18121
|
*
|
|
17599
|
-
* @summary
|
|
18122
|
+
* @summary Get HospitalSpecialty.
|
|
17600
18123
|
* @param {string} hospitalId
|
|
17601
|
-
* @param {
|
|
18124
|
+
* @param {string} specialtyId
|
|
17602
18125
|
* @param {*} [options] Override http request option.
|
|
17603
18126
|
* @throws {RequiredError}
|
|
17604
18127
|
*/
|
|
17605
|
-
|
|
18128
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17606
18129
|
/**
|
|
17607
18130
|
*
|
|
17608
|
-
* @summary Update
|
|
18131
|
+
* @summary Update HospitalSpecialty.
|
|
17609
18132
|
* @param {string} hospitalId
|
|
17610
|
-
* @param {
|
|
18133
|
+
* @param {string} specialtyId
|
|
18134
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
17611
18135
|
* @param {*} [options] Override http request option.
|
|
17612
18136
|
* @throws {RequiredError}
|
|
17613
18137
|
*/
|
|
17614
|
-
|
|
18138
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut: (hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17615
18139
|
/**
|
|
17616
18140
|
*
|
|
17617
18141
|
* @summary Get all HospitalServices.
|
|
17618
18142
|
* @param {string} hospitalId
|
|
18143
|
+
* @param {string} specialtyId
|
|
17619
18144
|
* @param {string} [hospitalName]
|
|
17620
18145
|
* @param {string} [hospitalSlug]
|
|
17621
18146
|
* @param {string} [id]
|
|
17622
18147
|
* @param {string} [name]
|
|
17623
18148
|
* @param {string} [description]
|
|
17624
|
-
* @param {string} [
|
|
18149
|
+
* @param {string} [specialtyName]
|
|
17625
18150
|
* @param {string} [specialtyTypeId]
|
|
17626
18151
|
* @param {string} [specialtyTypeName]
|
|
18152
|
+
* @param {string} [serviceCategoryId]
|
|
17627
18153
|
* @param {MarketingType} [marketingType]
|
|
17628
18154
|
* @param {Procedure} [procedure]
|
|
17629
18155
|
* @param {Date} [created]
|
|
@@ -17634,90 +18160,109 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17634
18160
|
* @param {*} [options] Override http request option.
|
|
17635
18161
|
* @throws {RequiredError}
|
|
17636
18162
|
*/
|
|
17637
|
-
|
|
18163
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: (hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17638
18164
|
/**
|
|
17639
18165
|
*
|
|
17640
18166
|
* @summary Create HospitalService.
|
|
17641
18167
|
* @param {string} hospitalId
|
|
18168
|
+
* @param {string} specialtyId
|
|
17642
18169
|
* @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
|
|
17643
18170
|
* @param {*} [options] Override http request option.
|
|
17644
18171
|
* @throws {RequiredError}
|
|
17645
18172
|
*/
|
|
17646
|
-
|
|
18173
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost: (hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17647
18174
|
/**
|
|
17648
18175
|
*
|
|
17649
18176
|
* @summary Delete HospitalService
|
|
17650
18177
|
* @param {string} hospitalId
|
|
18178
|
+
* @param {string} specialtyId
|
|
17651
18179
|
* @param {string} serviceId
|
|
17652
18180
|
* @param {*} [options] Override http request option.
|
|
17653
18181
|
* @throws {RequiredError}
|
|
17654
18182
|
*/
|
|
17655
|
-
|
|
18183
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17656
18184
|
/**
|
|
17657
18185
|
*
|
|
17658
18186
|
* @summary Get HospitalService.
|
|
17659
18187
|
* @param {string} hospitalId
|
|
18188
|
+
* @param {string} specialtyId
|
|
17660
18189
|
* @param {string} serviceId
|
|
17661
18190
|
* @param {string} [languageCode]
|
|
17662
18191
|
* @param {*} [options] Override http request option.
|
|
17663
18192
|
* @throws {RequiredError}
|
|
17664
18193
|
*/
|
|
17665
|
-
|
|
18194
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: (hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17666
18195
|
/**
|
|
17667
18196
|
*
|
|
17668
|
-
* @summary
|
|
18197
|
+
* @summary Get all HospitalServiceMedias.
|
|
17669
18198
|
* @param {string} hospitalId
|
|
18199
|
+
* @param {string} specialtyId
|
|
17670
18200
|
* @param {string} serviceId
|
|
17671
|
-
* @param {
|
|
18201
|
+
* @param {string} [id]
|
|
18202
|
+
* @param {MediaType} [mediaType]
|
|
18203
|
+
* @param {number} [page]
|
|
18204
|
+
* @param {number} [limit]
|
|
18205
|
+
* @param {Date} [lastRetrieved]
|
|
17672
18206
|
* @param {*} [options] Override http request option.
|
|
17673
18207
|
* @throws {RequiredError}
|
|
17674
18208
|
*/
|
|
17675
|
-
|
|
18209
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet: (hospitalId: string, specialtyId: string, serviceId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17676
18210
|
/**
|
|
17677
18211
|
*
|
|
17678
|
-
* @summary
|
|
18212
|
+
* @summary Delete HospitalServiceMedia
|
|
17679
18213
|
* @param {string} hospitalId
|
|
17680
|
-
* @param {string}
|
|
17681
|
-
* @param {string}
|
|
17682
|
-
* @param {string}
|
|
17683
|
-
* @param {string} [specialtyName]
|
|
17684
|
-
* @param {string} [specialtyTypeId]
|
|
17685
|
-
* @param {MarketingType} [marketingType]
|
|
17686
|
-
* @param {Date} [created]
|
|
17687
|
-
* @param {number} [page]
|
|
17688
|
-
* @param {number} [limit]
|
|
17689
|
-
* @param {Date} [lastRetrieved]
|
|
18214
|
+
* @param {string} specialtyId
|
|
18215
|
+
* @param {string} serviceId
|
|
18216
|
+
* @param {string} mediaId
|
|
17690
18217
|
* @param {*} [options] Override http request option.
|
|
17691
18218
|
* @throws {RequiredError}
|
|
17692
18219
|
*/
|
|
17693
|
-
|
|
18220
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17694
18221
|
/**
|
|
17695
18222
|
*
|
|
17696
|
-
* @summary
|
|
18223
|
+
* @summary Get HospitalServiceMedia.
|
|
17697
18224
|
* @param {string} hospitalId
|
|
17698
|
-
* @param {
|
|
18225
|
+
* @param {string} specialtyId
|
|
18226
|
+
* @param {string} serviceId
|
|
18227
|
+
* @param {string} mediaId
|
|
17699
18228
|
* @param {*} [options] Override http request option.
|
|
17700
18229
|
* @throws {RequiredError}
|
|
17701
18230
|
*/
|
|
17702
|
-
|
|
18231
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17703
18232
|
/**
|
|
17704
18233
|
*
|
|
17705
|
-
* @summary
|
|
18234
|
+
* @summary Update HospitalServiceMedia.
|
|
18235
|
+
* @param {string} hospitalId
|
|
18236
|
+
* @param {string} specialtyId
|
|
18237
|
+
* @param {string} serviceId
|
|
18238
|
+
* @param {string} mediaId
|
|
18239
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
18240
|
+
* @param {*} [options] Override http request option.
|
|
18241
|
+
* @throws {RequiredError}
|
|
18242
|
+
*/
|
|
18243
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18244
|
+
/**
|
|
18245
|
+
*
|
|
18246
|
+
* @summary Create HospitalServiceMedia.
|
|
17706
18247
|
* @param {string} hospitalId
|
|
17707
18248
|
* @param {string} specialtyId
|
|
18249
|
+
* @param {string} serviceId
|
|
18250
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
17708
18251
|
* @param {*} [options] Override http request option.
|
|
17709
18252
|
* @throws {RequiredError}
|
|
17710
18253
|
*/
|
|
17711
|
-
|
|
18254
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost: (hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17712
18255
|
/**
|
|
17713
18256
|
*
|
|
17714
|
-
* @summary
|
|
18257
|
+
* @summary Update HospitalService.
|
|
17715
18258
|
* @param {string} hospitalId
|
|
17716
18259
|
* @param {string} specialtyId
|
|
18260
|
+
* @param {string} serviceId
|
|
18261
|
+
* @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
|
|
17717
18262
|
* @param {*} [options] Override http request option.
|
|
17718
18263
|
* @throws {RequiredError}
|
|
17719
18264
|
*/
|
|
17720
|
-
|
|
18265
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut: (hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17721
18266
|
/**
|
|
17722
18267
|
*
|
|
17723
18268
|
* @summary Create Hospital.
|
|
@@ -18031,18 +18576,75 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
18031
18576
|
* @throws {RequiredError}
|
|
18032
18577
|
*/
|
|
18033
18578
|
apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18579
|
+
/**
|
|
18580
|
+
*
|
|
18581
|
+
* @summary Get all HospitalSpecialties.
|
|
18582
|
+
* @param {string} hospitalId
|
|
18583
|
+
* @param {string} [hospitalName]
|
|
18584
|
+
* @param {string} [hospitalSlug]
|
|
18585
|
+
* @param {string} [specialtyId]
|
|
18586
|
+
* @param {string} [specialtyName]
|
|
18587
|
+
* @param {string} [specialtyTypeId]
|
|
18588
|
+
* @param {MarketingType} [marketingType]
|
|
18589
|
+
* @param {Date} [created]
|
|
18590
|
+
* @param {number} [page]
|
|
18591
|
+
* @param {number} [limit]
|
|
18592
|
+
* @param {Date} [lastRetrieved]
|
|
18593
|
+
* @param {*} [options] Override http request option.
|
|
18594
|
+
* @throws {RequiredError}
|
|
18595
|
+
*/
|
|
18596
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
18597
|
+
/**
|
|
18598
|
+
*
|
|
18599
|
+
* @summary Create HospitalSpecialty.
|
|
18600
|
+
* @param {string} hospitalId
|
|
18601
|
+
* @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
|
|
18602
|
+
* @param {*} [options] Override http request option.
|
|
18603
|
+
* @throws {RequiredError}
|
|
18604
|
+
*/
|
|
18605
|
+
apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
18606
|
+
/**
|
|
18607
|
+
*
|
|
18608
|
+
* @summary Delete HospitalSpecialty.
|
|
18609
|
+
* @param {string} hospitalId
|
|
18610
|
+
* @param {string} specialtyId
|
|
18611
|
+
* @param {*} [options] Override http request option.
|
|
18612
|
+
* @throws {RequiredError}
|
|
18613
|
+
*/
|
|
18614
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18615
|
+
/**
|
|
18616
|
+
*
|
|
18617
|
+
* @summary Get HospitalSpecialty.
|
|
18618
|
+
* @param {string} hospitalId
|
|
18619
|
+
* @param {string} specialtyId
|
|
18620
|
+
* @param {*} [options] Override http request option.
|
|
18621
|
+
* @throws {RequiredError}
|
|
18622
|
+
*/
|
|
18623
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
18624
|
+
/**
|
|
18625
|
+
*
|
|
18626
|
+
* @summary Update HospitalSpecialty.
|
|
18627
|
+
* @param {string} hospitalId
|
|
18628
|
+
* @param {string} specialtyId
|
|
18629
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
18630
|
+
* @param {*} [options] Override http request option.
|
|
18631
|
+
* @throws {RequiredError}
|
|
18632
|
+
*/
|
|
18633
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
18034
18634
|
/**
|
|
18035
18635
|
*
|
|
18036
18636
|
* @summary Get all HospitalServices.
|
|
18037
18637
|
* @param {string} hospitalId
|
|
18638
|
+
* @param {string} specialtyId
|
|
18038
18639
|
* @param {string} [hospitalName]
|
|
18039
18640
|
* @param {string} [hospitalSlug]
|
|
18040
18641
|
* @param {string} [id]
|
|
18041
18642
|
* @param {string} [name]
|
|
18042
18643
|
* @param {string} [description]
|
|
18043
|
-
* @param {string} [
|
|
18644
|
+
* @param {string} [specialtyName]
|
|
18044
18645
|
* @param {string} [specialtyTypeId]
|
|
18045
18646
|
* @param {string} [specialtyTypeName]
|
|
18647
|
+
* @param {string} [serviceCategoryId]
|
|
18046
18648
|
* @param {MarketingType} [marketingType]
|
|
18047
18649
|
* @param {Procedure} [procedure]
|
|
18048
18650
|
* @param {Date} [created]
|
|
@@ -18053,90 +18655,109 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
18053
18655
|
* @param {*} [options] Override http request option.
|
|
18054
18656
|
* @throws {RequiredError}
|
|
18055
18657
|
*/
|
|
18056
|
-
|
|
18658
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
|
|
18057
18659
|
/**
|
|
18058
18660
|
*
|
|
18059
18661
|
* @summary Create HospitalService.
|
|
18060
18662
|
* @param {string} hospitalId
|
|
18663
|
+
* @param {string} specialtyId
|
|
18061
18664
|
* @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
|
|
18062
18665
|
* @param {*} [options] Override http request option.
|
|
18063
18666
|
* @throws {RequiredError}
|
|
18064
18667
|
*/
|
|
18065
|
-
|
|
18668
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
18066
18669
|
/**
|
|
18067
18670
|
*
|
|
18068
18671
|
* @summary Delete HospitalService
|
|
18069
18672
|
* @param {string} hospitalId
|
|
18673
|
+
* @param {string} specialtyId
|
|
18070
18674
|
* @param {string} serviceId
|
|
18071
18675
|
* @param {*} [options] Override http request option.
|
|
18072
18676
|
* @throws {RequiredError}
|
|
18073
18677
|
*/
|
|
18074
|
-
|
|
18678
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18075
18679
|
/**
|
|
18076
18680
|
*
|
|
18077
18681
|
* @summary Get HospitalService.
|
|
18078
18682
|
* @param {string} hospitalId
|
|
18683
|
+
* @param {string} specialtyId
|
|
18079
18684
|
* @param {string} serviceId
|
|
18080
18685
|
* @param {string} [languageCode]
|
|
18081
18686
|
* @param {*} [options] Override http request option.
|
|
18082
18687
|
* @throws {RequiredError}
|
|
18083
18688
|
*/
|
|
18084
|
-
|
|
18689
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
18085
18690
|
/**
|
|
18086
18691
|
*
|
|
18087
|
-
* @summary
|
|
18692
|
+
* @summary Get all HospitalServiceMedias.
|
|
18088
18693
|
* @param {string} hospitalId
|
|
18694
|
+
* @param {string} specialtyId
|
|
18089
18695
|
* @param {string} serviceId
|
|
18090
|
-
* @param {
|
|
18696
|
+
* @param {string} [id]
|
|
18697
|
+
* @param {MediaType} [mediaType]
|
|
18698
|
+
* @param {number} [page]
|
|
18699
|
+
* @param {number} [limit]
|
|
18700
|
+
* @param {Date} [lastRetrieved]
|
|
18091
18701
|
* @param {*} [options] Override http request option.
|
|
18092
18702
|
* @throws {RequiredError}
|
|
18093
18703
|
*/
|
|
18094
|
-
|
|
18704
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
18095
18705
|
/**
|
|
18096
18706
|
*
|
|
18097
|
-
* @summary
|
|
18707
|
+
* @summary Delete HospitalServiceMedia
|
|
18098
18708
|
* @param {string} hospitalId
|
|
18099
|
-
* @param {string}
|
|
18100
|
-
* @param {string}
|
|
18101
|
-
* @param {string}
|
|
18102
|
-
* @param {string} [specialtyName]
|
|
18103
|
-
* @param {string} [specialtyTypeId]
|
|
18104
|
-
* @param {MarketingType} [marketingType]
|
|
18105
|
-
* @param {Date} [created]
|
|
18106
|
-
* @param {number} [page]
|
|
18107
|
-
* @param {number} [limit]
|
|
18108
|
-
* @param {Date} [lastRetrieved]
|
|
18709
|
+
* @param {string} specialtyId
|
|
18710
|
+
* @param {string} serviceId
|
|
18711
|
+
* @param {string} mediaId
|
|
18109
18712
|
* @param {*} [options] Override http request option.
|
|
18110
18713
|
* @throws {RequiredError}
|
|
18111
18714
|
*/
|
|
18112
|
-
|
|
18715
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18113
18716
|
/**
|
|
18114
18717
|
*
|
|
18115
|
-
* @summary
|
|
18718
|
+
* @summary Get HospitalServiceMedia.
|
|
18116
18719
|
* @param {string} hospitalId
|
|
18117
|
-
* @param {
|
|
18720
|
+
* @param {string} specialtyId
|
|
18721
|
+
* @param {string} serviceId
|
|
18722
|
+
* @param {string} mediaId
|
|
18118
18723
|
* @param {*} [options] Override http request option.
|
|
18119
18724
|
* @throws {RequiredError}
|
|
18120
18725
|
*/
|
|
18121
|
-
|
|
18726
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
18122
18727
|
/**
|
|
18123
18728
|
*
|
|
18124
|
-
* @summary
|
|
18729
|
+
* @summary Update HospitalServiceMedia.
|
|
18125
18730
|
* @param {string} hospitalId
|
|
18126
18731
|
* @param {string} specialtyId
|
|
18732
|
+
* @param {string} serviceId
|
|
18733
|
+
* @param {string} mediaId
|
|
18734
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
18127
18735
|
* @param {*} [options] Override http request option.
|
|
18128
18736
|
* @throws {RequiredError}
|
|
18129
18737
|
*/
|
|
18130
|
-
|
|
18738
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
18131
18739
|
/**
|
|
18132
18740
|
*
|
|
18133
|
-
* @summary
|
|
18741
|
+
* @summary Create HospitalServiceMedia.
|
|
18134
18742
|
* @param {string} hospitalId
|
|
18135
18743
|
* @param {string} specialtyId
|
|
18744
|
+
* @param {string} serviceId
|
|
18745
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
18136
18746
|
* @param {*} [options] Override http request option.
|
|
18137
18747
|
* @throws {RequiredError}
|
|
18138
18748
|
*/
|
|
18139
|
-
|
|
18749
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
18750
|
+
/**
|
|
18751
|
+
*
|
|
18752
|
+
* @summary Update HospitalService.
|
|
18753
|
+
* @param {string} hospitalId
|
|
18754
|
+
* @param {string} specialtyId
|
|
18755
|
+
* @param {string} serviceId
|
|
18756
|
+
* @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
|
|
18757
|
+
* @param {*} [options] Override http request option.
|
|
18758
|
+
* @throws {RequiredError}
|
|
18759
|
+
*/
|
|
18760
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18140
18761
|
/**
|
|
18141
18762
|
*
|
|
18142
18763
|
* @summary Create Hospital.
|
|
@@ -18417,51 +19038,108 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
18417
19038
|
*
|
|
18418
19039
|
* @summary Get HospitalMedia.
|
|
18419
19040
|
* @param {string} hospitalId
|
|
18420
|
-
* @param {string} mediaId
|
|
19041
|
+
* @param {string} mediaId
|
|
19042
|
+
* @param {*} [options] Override http request option.
|
|
19043
|
+
* @throws {RequiredError}
|
|
19044
|
+
*/
|
|
19045
|
+
apiV1HospitalsHospitalIdMediasMediaIdGet(hospitalId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
19046
|
+
/**
|
|
19047
|
+
*
|
|
19048
|
+
* @summary Update HospitalMedia.
|
|
19049
|
+
* @param {string} hospitalId
|
|
19050
|
+
* @param {string} mediaId
|
|
19051
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
19052
|
+
* @param {*} [options] Override http request option.
|
|
19053
|
+
* @throws {RequiredError}
|
|
19054
|
+
*/
|
|
19055
|
+
apiV1HospitalsHospitalIdMediasMediaIdPut(hospitalId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
19056
|
+
/**
|
|
19057
|
+
*
|
|
19058
|
+
* @summary Create HospitalMedia.
|
|
19059
|
+
* @param {string} hospitalId
|
|
19060
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
19061
|
+
* @param {*} [options] Override http request option.
|
|
19062
|
+
* @throws {RequiredError}
|
|
19063
|
+
*/
|
|
19064
|
+
apiV1HospitalsHospitalIdMediasPost(hospitalId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
19065
|
+
/**
|
|
19066
|
+
*
|
|
19067
|
+
* @summary Update Hospital.
|
|
19068
|
+
* @param {string} hospitalId
|
|
19069
|
+
* @param {UpdateHospitalCommand} [updateHospitalCommand]
|
|
19070
|
+
* @param {*} [options] Override http request option.
|
|
19071
|
+
* @throws {RequiredError}
|
|
19072
|
+
*/
|
|
19073
|
+
apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
19074
|
+
/**
|
|
19075
|
+
*
|
|
19076
|
+
* @summary Get all HospitalSpecialties.
|
|
19077
|
+
* @param {string} hospitalId
|
|
19078
|
+
* @param {string} [hospitalName]
|
|
19079
|
+
* @param {string} [hospitalSlug]
|
|
19080
|
+
* @param {string} [specialtyId]
|
|
19081
|
+
* @param {string} [specialtyName]
|
|
19082
|
+
* @param {string} [specialtyTypeId]
|
|
19083
|
+
* @param {MarketingType} [marketingType]
|
|
19084
|
+
* @param {Date} [created]
|
|
19085
|
+
* @param {number} [page]
|
|
19086
|
+
* @param {number} [limit]
|
|
19087
|
+
* @param {Date} [lastRetrieved]
|
|
19088
|
+
* @param {*} [options] Override http request option.
|
|
19089
|
+
* @throws {RequiredError}
|
|
19090
|
+
*/
|
|
19091
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
19092
|
+
/**
|
|
19093
|
+
*
|
|
19094
|
+
* @summary Create HospitalSpecialty.
|
|
19095
|
+
* @param {string} hospitalId
|
|
19096
|
+
* @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
|
|
18421
19097
|
* @param {*} [options] Override http request option.
|
|
18422
19098
|
* @throws {RequiredError}
|
|
18423
19099
|
*/
|
|
18424
|
-
|
|
19100
|
+
apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
18425
19101
|
/**
|
|
18426
19102
|
*
|
|
18427
|
-
* @summary
|
|
19103
|
+
* @summary Delete HospitalSpecialty.
|
|
18428
19104
|
* @param {string} hospitalId
|
|
18429
|
-
* @param {string}
|
|
18430
|
-
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
19105
|
+
* @param {string} specialtyId
|
|
18431
19106
|
* @param {*} [options] Override http request option.
|
|
18432
19107
|
* @throws {RequiredError}
|
|
18433
19108
|
*/
|
|
18434
|
-
|
|
19109
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<boolean>;
|
|
18435
19110
|
/**
|
|
18436
19111
|
*
|
|
18437
|
-
* @summary
|
|
19112
|
+
* @summary Get HospitalSpecialty.
|
|
18438
19113
|
* @param {string} hospitalId
|
|
18439
|
-
* @param {
|
|
19114
|
+
* @param {string} specialtyId
|
|
18440
19115
|
* @param {*} [options] Override http request option.
|
|
18441
19116
|
* @throws {RequiredError}
|
|
18442
19117
|
*/
|
|
18443
|
-
|
|
19118
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
18444
19119
|
/**
|
|
18445
19120
|
*
|
|
18446
|
-
* @summary Update
|
|
19121
|
+
* @summary Update HospitalSpecialty.
|
|
18447
19122
|
* @param {string} hospitalId
|
|
18448
|
-
* @param {
|
|
19123
|
+
* @param {string} specialtyId
|
|
19124
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
18449
19125
|
* @param {*} [options] Override http request option.
|
|
18450
19126
|
* @throws {RequiredError}
|
|
18451
19127
|
*/
|
|
18452
|
-
|
|
19128
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
18453
19129
|
/**
|
|
18454
19130
|
*
|
|
18455
19131
|
* @summary Get all HospitalServices.
|
|
18456
19132
|
* @param {string} hospitalId
|
|
19133
|
+
* @param {string} specialtyId
|
|
18457
19134
|
* @param {string} [hospitalName]
|
|
18458
19135
|
* @param {string} [hospitalSlug]
|
|
18459
19136
|
* @param {string} [id]
|
|
18460
19137
|
* @param {string} [name]
|
|
18461
19138
|
* @param {string} [description]
|
|
18462
|
-
* @param {string} [
|
|
19139
|
+
* @param {string} [specialtyName]
|
|
18463
19140
|
* @param {string} [specialtyTypeId]
|
|
18464
19141
|
* @param {string} [specialtyTypeName]
|
|
19142
|
+
* @param {string} [serviceCategoryId]
|
|
18465
19143
|
* @param {MarketingType} [marketingType]
|
|
18466
19144
|
* @param {Procedure} [procedure]
|
|
18467
19145
|
* @param {Date} [created]
|
|
@@ -18472,90 +19150,109 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
18472
19150
|
* @param {*} [options] Override http request option.
|
|
18473
19151
|
* @throws {RequiredError}
|
|
18474
19152
|
*/
|
|
18475
|
-
|
|
19153
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
|
|
18476
19154
|
/**
|
|
18477
19155
|
*
|
|
18478
19156
|
* @summary Create HospitalService.
|
|
18479
19157
|
* @param {string} hospitalId
|
|
19158
|
+
* @param {string} specialtyId
|
|
18480
19159
|
* @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
|
|
18481
19160
|
* @param {*} [options] Override http request option.
|
|
18482
19161
|
* @throws {RequiredError}
|
|
18483
19162
|
*/
|
|
18484
|
-
|
|
19163
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
18485
19164
|
/**
|
|
18486
19165
|
*
|
|
18487
19166
|
* @summary Delete HospitalService
|
|
18488
19167
|
* @param {string} hospitalId
|
|
19168
|
+
* @param {string} specialtyId
|
|
18489
19169
|
* @param {string} serviceId
|
|
18490
19170
|
* @param {*} [options] Override http request option.
|
|
18491
19171
|
* @throws {RequiredError}
|
|
18492
19172
|
*/
|
|
18493
|
-
|
|
19173
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: any): AxiosPromise<boolean>;
|
|
18494
19174
|
/**
|
|
18495
19175
|
*
|
|
18496
19176
|
* @summary Get HospitalService.
|
|
18497
19177
|
* @param {string} hospitalId
|
|
19178
|
+
* @param {string} specialtyId
|
|
18498
19179
|
* @param {string} serviceId
|
|
18499
19180
|
* @param {string} [languageCode]
|
|
18500
19181
|
* @param {*} [options] Override http request option.
|
|
18501
19182
|
* @throws {RequiredError}
|
|
18502
19183
|
*/
|
|
18503
|
-
|
|
19184
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
18504
19185
|
/**
|
|
18505
19186
|
*
|
|
18506
|
-
* @summary
|
|
19187
|
+
* @summary Get all HospitalServiceMedias.
|
|
18507
19188
|
* @param {string} hospitalId
|
|
19189
|
+
* @param {string} specialtyId
|
|
18508
19190
|
* @param {string} serviceId
|
|
18509
|
-
* @param {
|
|
19191
|
+
* @param {string} [id]
|
|
19192
|
+
* @param {MediaType} [mediaType]
|
|
19193
|
+
* @param {number} [page]
|
|
19194
|
+
* @param {number} [limit]
|
|
19195
|
+
* @param {Date} [lastRetrieved]
|
|
18510
19196
|
* @param {*} [options] Override http request option.
|
|
18511
19197
|
* @throws {RequiredError}
|
|
18512
19198
|
*/
|
|
18513
|
-
|
|
19199
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
18514
19200
|
/**
|
|
18515
19201
|
*
|
|
18516
|
-
* @summary
|
|
19202
|
+
* @summary Delete HospitalServiceMedia
|
|
18517
19203
|
* @param {string} hospitalId
|
|
18518
|
-
* @param {string}
|
|
18519
|
-
* @param {string}
|
|
18520
|
-
* @param {string}
|
|
18521
|
-
* @param {string} [specialtyName]
|
|
18522
|
-
* @param {string} [specialtyTypeId]
|
|
18523
|
-
* @param {MarketingType} [marketingType]
|
|
18524
|
-
* @param {Date} [created]
|
|
18525
|
-
* @param {number} [page]
|
|
18526
|
-
* @param {number} [limit]
|
|
18527
|
-
* @param {Date} [lastRetrieved]
|
|
19204
|
+
* @param {string} specialtyId
|
|
19205
|
+
* @param {string} serviceId
|
|
19206
|
+
* @param {string} mediaId
|
|
18528
19207
|
* @param {*} [options] Override http request option.
|
|
18529
19208
|
* @throws {RequiredError}
|
|
18530
19209
|
*/
|
|
18531
|
-
|
|
19210
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
18532
19211
|
/**
|
|
18533
19212
|
*
|
|
18534
|
-
* @summary
|
|
19213
|
+
* @summary Get HospitalServiceMedia.
|
|
18535
19214
|
* @param {string} hospitalId
|
|
18536
|
-
* @param {
|
|
19215
|
+
* @param {string} specialtyId
|
|
19216
|
+
* @param {string} serviceId
|
|
19217
|
+
* @param {string} mediaId
|
|
18537
19218
|
* @param {*} [options] Override http request option.
|
|
18538
19219
|
* @throws {RequiredError}
|
|
18539
19220
|
*/
|
|
18540
|
-
|
|
19221
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
18541
19222
|
/**
|
|
18542
19223
|
*
|
|
18543
|
-
* @summary
|
|
19224
|
+
* @summary Update HospitalServiceMedia.
|
|
18544
19225
|
* @param {string} hospitalId
|
|
18545
19226
|
* @param {string} specialtyId
|
|
19227
|
+
* @param {string} serviceId
|
|
19228
|
+
* @param {string} mediaId
|
|
19229
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
18546
19230
|
* @param {*} [options] Override http request option.
|
|
18547
19231
|
* @throws {RequiredError}
|
|
18548
19232
|
*/
|
|
18549
|
-
|
|
19233
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
18550
19234
|
/**
|
|
18551
19235
|
*
|
|
18552
|
-
* @summary
|
|
19236
|
+
* @summary Create HospitalServiceMedia.
|
|
19237
|
+
* @param {string} hospitalId
|
|
19238
|
+
* @param {string} specialtyId
|
|
19239
|
+
* @param {string} serviceId
|
|
19240
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
19241
|
+
* @param {*} [options] Override http request option.
|
|
19242
|
+
* @throws {RequiredError}
|
|
19243
|
+
*/
|
|
19244
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
19245
|
+
/**
|
|
19246
|
+
*
|
|
19247
|
+
* @summary Update HospitalService.
|
|
18553
19248
|
* @param {string} hospitalId
|
|
18554
19249
|
* @param {string} specialtyId
|
|
19250
|
+
* @param {string} serviceId
|
|
19251
|
+
* @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
|
|
18555
19252
|
* @param {*} [options] Override http request option.
|
|
18556
19253
|
* @throws {RequiredError}
|
|
18557
19254
|
*/
|
|
18558
|
-
|
|
19255
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
18559
19256
|
/**
|
|
18560
19257
|
*
|
|
18561
19258
|
* @summary Create Hospital.
|
|
@@ -18898,18 +19595,80 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18898
19595
|
* @memberof HospitalsApi
|
|
18899
19596
|
*/
|
|
18900
19597
|
apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19598
|
+
/**
|
|
19599
|
+
*
|
|
19600
|
+
* @summary Get all HospitalSpecialties.
|
|
19601
|
+
* @param {string} hospitalId
|
|
19602
|
+
* @param {string} [hospitalName]
|
|
19603
|
+
* @param {string} [hospitalSlug]
|
|
19604
|
+
* @param {string} [specialtyId]
|
|
19605
|
+
* @param {string} [specialtyName]
|
|
19606
|
+
* @param {string} [specialtyTypeId]
|
|
19607
|
+
* @param {MarketingType} [marketingType]
|
|
19608
|
+
* @param {Date} [created]
|
|
19609
|
+
* @param {number} [page]
|
|
19610
|
+
* @param {number} [limit]
|
|
19611
|
+
* @param {Date} [lastRetrieved]
|
|
19612
|
+
* @param {*} [options] Override http request option.
|
|
19613
|
+
* @throws {RequiredError}
|
|
19614
|
+
* @memberof HospitalsApi
|
|
19615
|
+
*/
|
|
19616
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, marketingType?: MarketingType, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
|
|
19617
|
+
/**
|
|
19618
|
+
*
|
|
19619
|
+
* @summary Create HospitalSpecialty.
|
|
19620
|
+
* @param {string} hospitalId
|
|
19621
|
+
* @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
|
|
19622
|
+
* @param {*} [options] Override http request option.
|
|
19623
|
+
* @throws {RequiredError}
|
|
19624
|
+
* @memberof HospitalsApi
|
|
19625
|
+
*/
|
|
19626
|
+
apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
19627
|
+
/**
|
|
19628
|
+
*
|
|
19629
|
+
* @summary Delete HospitalSpecialty.
|
|
19630
|
+
* @param {string} hospitalId
|
|
19631
|
+
* @param {string} specialtyId
|
|
19632
|
+
* @param {*} [options] Override http request option.
|
|
19633
|
+
* @throws {RequiredError}
|
|
19634
|
+
* @memberof HospitalsApi
|
|
19635
|
+
*/
|
|
19636
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19637
|
+
/**
|
|
19638
|
+
*
|
|
19639
|
+
* @summary Get HospitalSpecialty.
|
|
19640
|
+
* @param {string} hospitalId
|
|
19641
|
+
* @param {string} specialtyId
|
|
19642
|
+
* @param {*} [options] Override http request option.
|
|
19643
|
+
* @throws {RequiredError}
|
|
19644
|
+
* @memberof HospitalsApi
|
|
19645
|
+
*/
|
|
19646
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
19647
|
+
/**
|
|
19648
|
+
*
|
|
19649
|
+
* @summary Update HospitalSpecialty.
|
|
19650
|
+
* @param {string} hospitalId
|
|
19651
|
+
* @param {string} specialtyId
|
|
19652
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
19653
|
+
* @param {*} [options] Override http request option.
|
|
19654
|
+
* @throws {RequiredError}
|
|
19655
|
+
* @memberof HospitalsApi
|
|
19656
|
+
*/
|
|
19657
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
18901
19658
|
/**
|
|
18902
19659
|
*
|
|
18903
19660
|
* @summary Get all HospitalServices.
|
|
18904
19661
|
* @param {string} hospitalId
|
|
19662
|
+
* @param {string} specialtyId
|
|
18905
19663
|
* @param {string} [hospitalName]
|
|
18906
19664
|
* @param {string} [hospitalSlug]
|
|
18907
19665
|
* @param {string} [id]
|
|
18908
19666
|
* @param {string} [name]
|
|
18909
19667
|
* @param {string} [description]
|
|
18910
|
-
* @param {string} [
|
|
19668
|
+
* @param {string} [specialtyName]
|
|
18911
19669
|
* @param {string} [specialtyTypeId]
|
|
18912
19670
|
* @param {string} [specialtyTypeName]
|
|
19671
|
+
* @param {string} [serviceCategoryId]
|
|
18913
19672
|
* @param {MarketingType} [marketingType]
|
|
18914
19673
|
* @param {Procedure} [procedure]
|
|
18915
19674
|
* @param {Date} [created]
|
|
@@ -18921,98 +19680,118 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18921
19680
|
* @throws {RequiredError}
|
|
18922
19681
|
* @memberof HospitalsApi
|
|
18923
19682
|
*/
|
|
18924
|
-
|
|
19683
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
|
|
18925
19684
|
/**
|
|
18926
19685
|
*
|
|
18927
19686
|
* @summary Create HospitalService.
|
|
18928
19687
|
* @param {string} hospitalId
|
|
19688
|
+
* @param {string} specialtyId
|
|
18929
19689
|
* @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
|
|
18930
19690
|
* @param {*} [options] Override http request option.
|
|
18931
19691
|
* @throws {RequiredError}
|
|
18932
19692
|
* @memberof HospitalsApi
|
|
18933
19693
|
*/
|
|
18934
|
-
|
|
19694
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
18935
19695
|
/**
|
|
18936
19696
|
*
|
|
18937
19697
|
* @summary Delete HospitalService
|
|
18938
19698
|
* @param {string} hospitalId
|
|
19699
|
+
* @param {string} specialtyId
|
|
18939
19700
|
* @param {string} serviceId
|
|
18940
19701
|
* @param {*} [options] Override http request option.
|
|
18941
19702
|
* @throws {RequiredError}
|
|
18942
19703
|
* @memberof HospitalsApi
|
|
18943
19704
|
*/
|
|
18944
|
-
|
|
19705
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
18945
19706
|
/**
|
|
18946
19707
|
*
|
|
18947
19708
|
* @summary Get HospitalService.
|
|
18948
19709
|
* @param {string} hospitalId
|
|
19710
|
+
* @param {string} specialtyId
|
|
18949
19711
|
* @param {string} serviceId
|
|
18950
19712
|
* @param {string} [languageCode]
|
|
18951
19713
|
* @param {*} [options] Override http request option.
|
|
18952
19714
|
* @throws {RequiredError}
|
|
18953
19715
|
* @memberof HospitalsApi
|
|
18954
19716
|
*/
|
|
18955
|
-
|
|
19717
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
18956
19718
|
/**
|
|
18957
19719
|
*
|
|
18958
|
-
* @summary
|
|
19720
|
+
* @summary Get all HospitalServiceMedias.
|
|
18959
19721
|
* @param {string} hospitalId
|
|
19722
|
+
* @param {string} specialtyId
|
|
18960
19723
|
* @param {string} serviceId
|
|
18961
|
-
* @param {
|
|
19724
|
+
* @param {string} [id]
|
|
19725
|
+
* @param {MediaType} [mediaType]
|
|
19726
|
+
* @param {number} [page]
|
|
19727
|
+
* @param {number} [limit]
|
|
19728
|
+
* @param {Date} [lastRetrieved]
|
|
18962
19729
|
* @param {*} [options] Override http request option.
|
|
18963
19730
|
* @throws {RequiredError}
|
|
18964
19731
|
* @memberof HospitalsApi
|
|
18965
19732
|
*/
|
|
18966
|
-
|
|
19733
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
18967
19734
|
/**
|
|
18968
19735
|
*
|
|
18969
|
-
* @summary
|
|
19736
|
+
* @summary Delete HospitalServiceMedia
|
|
18970
19737
|
* @param {string} hospitalId
|
|
18971
|
-
* @param {string}
|
|
18972
|
-
* @param {string}
|
|
18973
|
-
* @param {string}
|
|
18974
|
-
* @param {string} [specialtyName]
|
|
18975
|
-
* @param {string} [specialtyTypeId]
|
|
18976
|
-
* @param {MarketingType} [marketingType]
|
|
18977
|
-
* @param {Date} [created]
|
|
18978
|
-
* @param {number} [page]
|
|
18979
|
-
* @param {number} [limit]
|
|
18980
|
-
* @param {Date} [lastRetrieved]
|
|
19738
|
+
* @param {string} specialtyId
|
|
19739
|
+
* @param {string} serviceId
|
|
19740
|
+
* @param {string} mediaId
|
|
18981
19741
|
* @param {*} [options] Override http request option.
|
|
18982
19742
|
* @throws {RequiredError}
|
|
18983
19743
|
* @memberof HospitalsApi
|
|
18984
19744
|
*/
|
|
18985
|
-
|
|
19745
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
18986
19746
|
/**
|
|
18987
19747
|
*
|
|
18988
|
-
* @summary
|
|
19748
|
+
* @summary Get HospitalServiceMedia.
|
|
18989
19749
|
* @param {string} hospitalId
|
|
18990
|
-
* @param {
|
|
19750
|
+
* @param {string} specialtyId
|
|
19751
|
+
* @param {string} serviceId
|
|
19752
|
+
* @param {string} mediaId
|
|
18991
19753
|
* @param {*} [options] Override http request option.
|
|
18992
19754
|
* @throws {RequiredError}
|
|
18993
19755
|
* @memberof HospitalsApi
|
|
18994
19756
|
*/
|
|
18995
|
-
|
|
19757
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
18996
19758
|
/**
|
|
18997
19759
|
*
|
|
18998
|
-
* @summary
|
|
19760
|
+
* @summary Update HospitalServiceMedia.
|
|
18999
19761
|
* @param {string} hospitalId
|
|
19000
19762
|
* @param {string} specialtyId
|
|
19763
|
+
* @param {string} serviceId
|
|
19764
|
+
* @param {string} mediaId
|
|
19765
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
19001
19766
|
* @param {*} [options] Override http request option.
|
|
19002
19767
|
* @throws {RequiredError}
|
|
19003
19768
|
* @memberof HospitalsApi
|
|
19004
19769
|
*/
|
|
19005
|
-
|
|
19770
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
19006
19771
|
/**
|
|
19007
19772
|
*
|
|
19008
|
-
* @summary
|
|
19773
|
+
* @summary Create HospitalServiceMedia.
|
|
19009
19774
|
* @param {string} hospitalId
|
|
19010
19775
|
* @param {string} specialtyId
|
|
19776
|
+
* @param {string} serviceId
|
|
19777
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
19011
19778
|
* @param {*} [options] Override http request option.
|
|
19012
19779
|
* @throws {RequiredError}
|
|
19013
19780
|
* @memberof HospitalsApi
|
|
19014
19781
|
*/
|
|
19015
|
-
|
|
19782
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
19783
|
+
/**
|
|
19784
|
+
*
|
|
19785
|
+
* @summary Update HospitalService.
|
|
19786
|
+
* @param {string} hospitalId
|
|
19787
|
+
* @param {string} specialtyId
|
|
19788
|
+
* @param {string} serviceId
|
|
19789
|
+
* @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
|
|
19790
|
+
* @param {*} [options] Override http request option.
|
|
19791
|
+
* @throws {RequiredError}
|
|
19792
|
+
* @memberof HospitalsApi
|
|
19793
|
+
*/
|
|
19794
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19016
19795
|
/**
|
|
19017
19796
|
*
|
|
19018
19797
|
* @summary Create Hospital.
|
|
@@ -19347,17 +20126,19 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
19347
20126
|
*/
|
|
19348
20127
|
export declare const ServicesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
19349
20128
|
/**
|
|
19350
|
-
*
|
|
19351
|
-
* @summary Get all
|
|
19352
|
-
* @param {string} [id]
|
|
19353
|
-
* @param {string} [name]
|
|
19354
|
-
* @param {string} [description]
|
|
20129
|
+
*
|
|
20130
|
+
* @summary Get all HospitalServices.
|
|
19355
20131
|
* @param {string} [hospitalId]
|
|
19356
20132
|
* @param {string} [hospitalName]
|
|
19357
20133
|
* @param {string} [hospitalSlug]
|
|
20134
|
+
* @param {string} [id]
|
|
20135
|
+
* @param {string} [name]
|
|
20136
|
+
* @param {string} [description]
|
|
19358
20137
|
* @param {string} [specialtyId]
|
|
20138
|
+
* @param {string} [specialtyName]
|
|
19359
20139
|
* @param {string} [specialtyTypeId]
|
|
19360
20140
|
* @param {string} [specialtyTypeName]
|
|
20141
|
+
* @param {string} [serviceCategoryId]
|
|
19361
20142
|
* @param {MarketingType} [marketingType]
|
|
19362
20143
|
* @param {Procedure} [procedure]
|
|
19363
20144
|
* @param {Date} [created]
|
|
@@ -19368,10 +20149,19 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
19368
20149
|
* @param {*} [options] Override http request option.
|
|
19369
20150
|
* @throws {RequiredError}
|
|
19370
20151
|
*/
|
|
19371
|
-
apiV1ServicesGet: (
|
|
20152
|
+
apiV1ServicesGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20153
|
+
/**
|
|
20154
|
+
*
|
|
20155
|
+
* @summary Get HospitalService.
|
|
20156
|
+
* @param {string} serviceId
|
|
20157
|
+
* @param {string} [languageCode]
|
|
20158
|
+
* @param {*} [options] Override http request option.
|
|
20159
|
+
* @throws {RequiredError}
|
|
20160
|
+
*/
|
|
20161
|
+
apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19372
20162
|
/**
|
|
19373
20163
|
*
|
|
19374
|
-
* @summary Get
|
|
20164
|
+
* @summary Get HospitalService by slug.
|
|
19375
20165
|
* @param {string} slug
|
|
19376
20166
|
* @param {string} [languageCode]
|
|
19377
20167
|
* @param {*} [options] Override http request option.
|
|
@@ -19385,17 +20175,19 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
19385
20175
|
*/
|
|
19386
20176
|
export declare const ServicesApiFp: (configuration?: Configuration | undefined) => {
|
|
19387
20177
|
/**
|
|
19388
|
-
*
|
|
19389
|
-
* @summary Get all
|
|
19390
|
-
* @param {string} [id]
|
|
19391
|
-
* @param {string} [name]
|
|
19392
|
-
* @param {string} [description]
|
|
20178
|
+
*
|
|
20179
|
+
* @summary Get all HospitalServices.
|
|
19393
20180
|
* @param {string} [hospitalId]
|
|
19394
20181
|
* @param {string} [hospitalName]
|
|
19395
20182
|
* @param {string} [hospitalSlug]
|
|
20183
|
+
* @param {string} [id]
|
|
20184
|
+
* @param {string} [name]
|
|
20185
|
+
* @param {string} [description]
|
|
19396
20186
|
* @param {string} [specialtyId]
|
|
20187
|
+
* @param {string} [specialtyName]
|
|
19397
20188
|
* @param {string} [specialtyTypeId]
|
|
19398
20189
|
* @param {string} [specialtyTypeName]
|
|
20190
|
+
* @param {string} [serviceCategoryId]
|
|
19399
20191
|
* @param {MarketingType} [marketingType]
|
|
19400
20192
|
* @param {Procedure} [procedure]
|
|
19401
20193
|
* @param {Date} [created]
|
|
@@ -19406,16 +20198,25 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
19406
20198
|
* @param {*} [options] Override http request option.
|
|
19407
20199
|
* @throws {RequiredError}
|
|
19408
20200
|
*/
|
|
19409
|
-
apiV1ServicesGet(
|
|
20201
|
+
apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
|
|
20202
|
+
/**
|
|
20203
|
+
*
|
|
20204
|
+
* @summary Get HospitalService.
|
|
20205
|
+
* @param {string} serviceId
|
|
20206
|
+
* @param {string} [languageCode]
|
|
20207
|
+
* @param {*} [options] Override http request option.
|
|
20208
|
+
* @throws {RequiredError}
|
|
20209
|
+
*/
|
|
20210
|
+
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
19410
20211
|
/**
|
|
19411
20212
|
*
|
|
19412
|
-
* @summary Get
|
|
20213
|
+
* @summary Get HospitalService by slug.
|
|
19413
20214
|
* @param {string} slug
|
|
19414
20215
|
* @param {string} [languageCode]
|
|
19415
20216
|
* @param {*} [options] Override http request option.
|
|
19416
20217
|
* @throws {RequiredError}
|
|
19417
20218
|
*/
|
|
19418
|
-
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
20219
|
+
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
19419
20220
|
};
|
|
19420
20221
|
/**
|
|
19421
20222
|
* ServicesApi - factory interface
|
|
@@ -19423,17 +20224,19 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
19423
20224
|
*/
|
|
19424
20225
|
export declare const ServicesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
19425
20226
|
/**
|
|
19426
|
-
*
|
|
19427
|
-
* @summary Get all
|
|
19428
|
-
* @param {string} [id]
|
|
19429
|
-
* @param {string} [name]
|
|
19430
|
-
* @param {string} [description]
|
|
20227
|
+
*
|
|
20228
|
+
* @summary Get all HospitalServices.
|
|
19431
20229
|
* @param {string} [hospitalId]
|
|
19432
20230
|
* @param {string} [hospitalName]
|
|
19433
20231
|
* @param {string} [hospitalSlug]
|
|
20232
|
+
* @param {string} [id]
|
|
20233
|
+
* @param {string} [name]
|
|
20234
|
+
* @param {string} [description]
|
|
19434
20235
|
* @param {string} [specialtyId]
|
|
20236
|
+
* @param {string} [specialtyName]
|
|
19435
20237
|
* @param {string} [specialtyTypeId]
|
|
19436
20238
|
* @param {string} [specialtyTypeName]
|
|
20239
|
+
* @param {string} [serviceCategoryId]
|
|
19437
20240
|
* @param {MarketingType} [marketingType]
|
|
19438
20241
|
* @param {Procedure} [procedure]
|
|
19439
20242
|
* @param {Date} [created]
|
|
@@ -19444,16 +20247,25 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
19444
20247
|
* @param {*} [options] Override http request option.
|
|
19445
20248
|
* @throws {RequiredError}
|
|
19446
20249
|
*/
|
|
19447
|
-
apiV1ServicesGet(
|
|
20250
|
+
apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
|
|
20251
|
+
/**
|
|
20252
|
+
*
|
|
20253
|
+
* @summary Get HospitalService.
|
|
20254
|
+
* @param {string} serviceId
|
|
20255
|
+
* @param {string} [languageCode]
|
|
20256
|
+
* @param {*} [options] Override http request option.
|
|
20257
|
+
* @throws {RequiredError}
|
|
20258
|
+
*/
|
|
20259
|
+
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
19448
20260
|
/**
|
|
19449
20261
|
*
|
|
19450
|
-
* @summary Get
|
|
20262
|
+
* @summary Get HospitalService by slug.
|
|
19451
20263
|
* @param {string} slug
|
|
19452
20264
|
* @param {string} [languageCode]
|
|
19453
20265
|
* @param {*} [options] Override http request option.
|
|
19454
20266
|
* @throws {RequiredError}
|
|
19455
20267
|
*/
|
|
19456
|
-
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<
|
|
20268
|
+
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
19457
20269
|
};
|
|
19458
20270
|
/**
|
|
19459
20271
|
* ServicesApi - object-oriented interface
|
|
@@ -19463,17 +20275,19 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
19463
20275
|
*/
|
|
19464
20276
|
export declare class ServicesApi extends BaseAPI {
|
|
19465
20277
|
/**
|
|
19466
|
-
*
|
|
19467
|
-
* @summary Get all
|
|
19468
|
-
* @param {string} [id]
|
|
19469
|
-
* @param {string} [name]
|
|
19470
|
-
* @param {string} [description]
|
|
20278
|
+
*
|
|
20279
|
+
* @summary Get all HospitalServices.
|
|
19471
20280
|
* @param {string} [hospitalId]
|
|
19472
20281
|
* @param {string} [hospitalName]
|
|
19473
20282
|
* @param {string} [hospitalSlug]
|
|
20283
|
+
* @param {string} [id]
|
|
20284
|
+
* @param {string} [name]
|
|
20285
|
+
* @param {string} [description]
|
|
19474
20286
|
* @param {string} [specialtyId]
|
|
20287
|
+
* @param {string} [specialtyName]
|
|
19475
20288
|
* @param {string} [specialtyTypeId]
|
|
19476
20289
|
* @param {string} [specialtyTypeName]
|
|
20290
|
+
* @param {string} [serviceCategoryId]
|
|
19477
20291
|
* @param {MarketingType} [marketingType]
|
|
19478
20292
|
* @param {Procedure} [procedure]
|
|
19479
20293
|
* @param {Date} [created]
|
|
@@ -19485,17 +20299,27 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
19485
20299
|
* @throws {RequiredError}
|
|
19486
20300
|
* @memberof ServicesApi
|
|
19487
20301
|
*/
|
|
19488
|
-
apiV1ServicesGet(
|
|
20302
|
+
apiV1ServicesGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
|
|
20303
|
+
/**
|
|
20304
|
+
*
|
|
20305
|
+
* @summary Get HospitalService.
|
|
20306
|
+
* @param {string} serviceId
|
|
20307
|
+
* @param {string} [languageCode]
|
|
20308
|
+
* @param {*} [options] Override http request option.
|
|
20309
|
+
* @throws {RequiredError}
|
|
20310
|
+
* @memberof ServicesApi
|
|
20311
|
+
*/
|
|
20312
|
+
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
19489
20313
|
/**
|
|
19490
20314
|
*
|
|
19491
|
-
* @summary Get
|
|
20315
|
+
* @summary Get HospitalService by slug.
|
|
19492
20316
|
* @param {string} slug
|
|
19493
20317
|
* @param {string} [languageCode]
|
|
19494
20318
|
* @param {*} [options] Override http request option.
|
|
19495
20319
|
* @throws {RequiredError}
|
|
19496
20320
|
* @memberof ServicesApi
|
|
19497
20321
|
*/
|
|
19498
|
-
apiV1ServicesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
20322
|
+
apiV1ServicesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
19499
20323
|
}
|
|
19500
20324
|
/**
|
|
19501
20325
|
* ServicesCategoriesApi - axios parameter creator
|