ch-api-client-typescript2 2.9.0 → 2.9.4
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 +72 -16
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +50 -36
- package/package.json +1 -1
- package/src/api.ts +100 -36
package/lib/api.d.ts
CHANGED
|
@@ -1116,6 +1116,18 @@ export interface BookingItemModel {
|
|
|
1116
1116
|
* @memberof BookingItemModel
|
|
1117
1117
|
*/
|
|
1118
1118
|
'timeZone'?: string | null;
|
|
1119
|
+
/**
|
|
1120
|
+
*
|
|
1121
|
+
* @type {Date}
|
|
1122
|
+
* @memberof BookingItemModel
|
|
1123
|
+
*/
|
|
1124
|
+
'requestDate'?: Date;
|
|
1125
|
+
/**
|
|
1126
|
+
*
|
|
1127
|
+
* @type {string}
|
|
1128
|
+
* @memberof BookingItemModel
|
|
1129
|
+
*/
|
|
1130
|
+
'domain'?: string | null;
|
|
1119
1131
|
/**
|
|
1120
1132
|
*
|
|
1121
1133
|
* @type {BookingStatus}
|
|
@@ -1321,6 +1333,18 @@ export interface BookingModel {
|
|
|
1321
1333
|
* @memberof BookingModel
|
|
1322
1334
|
*/
|
|
1323
1335
|
'timeZone'?: string | null;
|
|
1336
|
+
/**
|
|
1337
|
+
*
|
|
1338
|
+
* @type {Date}
|
|
1339
|
+
* @memberof BookingModel
|
|
1340
|
+
*/
|
|
1341
|
+
'requestDate'?: Date;
|
|
1342
|
+
/**
|
|
1343
|
+
*
|
|
1344
|
+
* @type {string}
|
|
1345
|
+
* @memberof BookingModel
|
|
1346
|
+
*/
|
|
1347
|
+
'domain'?: string | null;
|
|
1324
1348
|
/**
|
|
1325
1349
|
*
|
|
1326
1350
|
* @type {BookingStatus}
|
|
@@ -1812,6 +1836,18 @@ export interface ConsultationItemModel {
|
|
|
1812
1836
|
* @memberof ConsultationItemModel
|
|
1813
1837
|
*/
|
|
1814
1838
|
'timeZone'?: string | null;
|
|
1839
|
+
/**
|
|
1840
|
+
*
|
|
1841
|
+
* @type {Date}
|
|
1842
|
+
* @memberof ConsultationItemModel
|
|
1843
|
+
*/
|
|
1844
|
+
'requestDate'?: Date;
|
|
1845
|
+
/**
|
|
1846
|
+
*
|
|
1847
|
+
* @type {string}
|
|
1848
|
+
* @memberof ConsultationItemModel
|
|
1849
|
+
*/
|
|
1850
|
+
'domain'?: string | null;
|
|
1815
1851
|
/**
|
|
1816
1852
|
*
|
|
1817
1853
|
* @type {ConsultationStatus}
|
|
@@ -2077,6 +2113,18 @@ export interface ConsultationModel {
|
|
|
2077
2113
|
* @memberof ConsultationModel
|
|
2078
2114
|
*/
|
|
2079
2115
|
'timeZone'?: string | null;
|
|
2116
|
+
/**
|
|
2117
|
+
*
|
|
2118
|
+
* @type {Date}
|
|
2119
|
+
* @memberof ConsultationModel
|
|
2120
|
+
*/
|
|
2121
|
+
'requestDate'?: Date;
|
|
2122
|
+
/**
|
|
2123
|
+
*
|
|
2124
|
+
* @type {string}
|
|
2125
|
+
* @memberof ConsultationModel
|
|
2126
|
+
*/
|
|
2127
|
+
'domain'?: string | null;
|
|
2080
2128
|
/**
|
|
2081
2129
|
*
|
|
2082
2130
|
* @type {ConsultationStatus}
|
|
@@ -13842,28 +13890,30 @@ export declare const GroupChannelsApiAxiosParamCreator: (configuration?: Configu
|
|
|
13842
13890
|
* @param {*} [options] Override http request option.
|
|
13843
13891
|
* @throws {RequiredError}
|
|
13844
13892
|
*/
|
|
13845
|
-
|
|
13893
|
+
apiV2GroupchannelsChannelUrlInvitePost: (channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13846
13894
|
/**
|
|
13847
13895
|
*
|
|
13848
13896
|
* @param {string} dealId
|
|
13897
|
+
* @param {string} [hospitalId]
|
|
13849
13898
|
* @param {*} [options] Override http request option.
|
|
13850
13899
|
* @throws {RequiredError}
|
|
13851
13900
|
*/
|
|
13852
|
-
|
|
13901
|
+
apiV2GroupchannelsDealDealIdGet: (dealId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13853
13902
|
/**
|
|
13854
13903
|
*
|
|
13855
13904
|
* @param {string} doctorId
|
|
13905
|
+
* @param {string} [hospitalId]
|
|
13856
13906
|
* @param {*} [options] Override http request option.
|
|
13857
13907
|
* @throws {RequiredError}
|
|
13858
13908
|
*/
|
|
13859
|
-
|
|
13909
|
+
apiV2GroupchannelsDoctorDoctorIdGet: (doctorId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13860
13910
|
/**
|
|
13861
13911
|
*
|
|
13862
13912
|
* @param {string} hospitalId
|
|
13863
13913
|
* @param {*} [options] Override http request option.
|
|
13864
13914
|
* @throws {RequiredError}
|
|
13865
13915
|
*/
|
|
13866
|
-
|
|
13916
|
+
apiV2GroupchannelsHospitalHospitalIdGet: (hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13867
13917
|
};
|
|
13868
13918
|
/**
|
|
13869
13919
|
* GroupChannelsApi - functional programming interface
|
|
@@ -13877,28 +13927,30 @@ export declare const GroupChannelsApiFp: (configuration?: Configuration | undefi
|
|
|
13877
13927
|
* @param {*} [options] Override http request option.
|
|
13878
13928
|
* @throws {RequiredError}
|
|
13879
13929
|
*/
|
|
13880
|
-
|
|
13930
|
+
apiV2GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
|
|
13881
13931
|
/**
|
|
13882
13932
|
*
|
|
13883
13933
|
* @param {string} dealId
|
|
13934
|
+
* @param {string} [hospitalId]
|
|
13884
13935
|
* @param {*} [options] Override http request option.
|
|
13885
13936
|
* @throws {RequiredError}
|
|
13886
13937
|
*/
|
|
13887
|
-
|
|
13938
|
+
apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
|
|
13888
13939
|
/**
|
|
13889
13940
|
*
|
|
13890
13941
|
* @param {string} doctorId
|
|
13942
|
+
* @param {string} [hospitalId]
|
|
13891
13943
|
* @param {*} [options] Override http request option.
|
|
13892
13944
|
* @throws {RequiredError}
|
|
13893
13945
|
*/
|
|
13894
|
-
|
|
13946
|
+
apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
|
|
13895
13947
|
/**
|
|
13896
13948
|
*
|
|
13897
13949
|
* @param {string} hospitalId
|
|
13898
13950
|
* @param {*} [options] Override http request option.
|
|
13899
13951
|
* @throws {RequiredError}
|
|
13900
13952
|
*/
|
|
13901
|
-
|
|
13953
|
+
apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
|
|
13902
13954
|
};
|
|
13903
13955
|
/**
|
|
13904
13956
|
* GroupChannelsApi - factory interface
|
|
@@ -13912,28 +13964,30 @@ export declare const GroupChannelsApiFactory: (configuration?: Configuration | u
|
|
|
13912
13964
|
* @param {*} [options] Override http request option.
|
|
13913
13965
|
* @throws {RequiredError}
|
|
13914
13966
|
*/
|
|
13915
|
-
|
|
13967
|
+
apiV2GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand | undefined, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
|
|
13916
13968
|
/**
|
|
13917
13969
|
*
|
|
13918
13970
|
* @param {string} dealId
|
|
13971
|
+
* @param {string} [hospitalId]
|
|
13919
13972
|
* @param {*} [options] Override http request option.
|
|
13920
13973
|
* @throws {RequiredError}
|
|
13921
13974
|
*/
|
|
13922
|
-
|
|
13975
|
+
apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string | undefined, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
|
|
13923
13976
|
/**
|
|
13924
13977
|
*
|
|
13925
13978
|
* @param {string} doctorId
|
|
13979
|
+
* @param {string} [hospitalId]
|
|
13926
13980
|
* @param {*} [options] Override http request option.
|
|
13927
13981
|
* @throws {RequiredError}
|
|
13928
13982
|
*/
|
|
13929
|
-
|
|
13983
|
+
apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string | undefined, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
|
|
13930
13984
|
/**
|
|
13931
13985
|
*
|
|
13932
13986
|
* @param {string} hospitalId
|
|
13933
13987
|
* @param {*} [options] Override http request option.
|
|
13934
13988
|
* @throws {RequiredError}
|
|
13935
13989
|
*/
|
|
13936
|
-
|
|
13990
|
+
apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
|
|
13937
13991
|
};
|
|
13938
13992
|
/**
|
|
13939
13993
|
* GroupChannelsApi - object-oriented interface
|
|
@@ -13950,23 +14004,25 @@ export declare class GroupChannelsApi extends BaseAPI {
|
|
|
13950
14004
|
* @throws {RequiredError}
|
|
13951
14005
|
* @memberof GroupChannelsApi
|
|
13952
14006
|
*/
|
|
13953
|
-
|
|
14007
|
+
apiV2GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
|
|
13954
14008
|
/**
|
|
13955
14009
|
*
|
|
13956
14010
|
* @param {string} dealId
|
|
14011
|
+
* @param {string} [hospitalId]
|
|
13957
14012
|
* @param {*} [options] Override http request option.
|
|
13958
14013
|
* @throws {RequiredError}
|
|
13959
14014
|
* @memberof GroupChannelsApi
|
|
13960
14015
|
*/
|
|
13961
|
-
|
|
14016
|
+
apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
|
|
13962
14017
|
/**
|
|
13963
14018
|
*
|
|
13964
14019
|
* @param {string} doctorId
|
|
14020
|
+
* @param {string} [hospitalId]
|
|
13965
14021
|
* @param {*} [options] Override http request option.
|
|
13966
14022
|
* @throws {RequiredError}
|
|
13967
14023
|
* @memberof GroupChannelsApi
|
|
13968
14024
|
*/
|
|
13969
|
-
|
|
14025
|
+
apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
|
|
13970
14026
|
/**
|
|
13971
14027
|
*
|
|
13972
14028
|
* @param {string} hospitalId
|
|
@@ -13974,7 +14030,7 @@ export declare class GroupChannelsApi extends BaseAPI {
|
|
|
13974
14030
|
* @throws {RequiredError}
|
|
13975
14031
|
* @memberof GroupChannelsApi
|
|
13976
14032
|
*/
|
|
13977
|
-
|
|
14033
|
+
apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
|
|
13978
14034
|
}
|
|
13979
14035
|
/**
|
|
13980
14036
|
* HospitalsApi - axios parameter creator
|