ch-admin-api-client-typescript 4.1.0 → 4.1.3
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 +112 -26
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +7 -14
- package/package.json +1 -1
- package/src/api.ts +115 -33
package/lib/api.d.ts
CHANGED
|
@@ -5084,6 +5084,18 @@ export interface DealItemModel {
|
|
|
5084
5084
|
* @memberof DealItemModel
|
|
5085
5085
|
*/
|
|
5086
5086
|
'photoThumbnail'?: string | null;
|
|
5087
|
+
/**
|
|
5088
|
+
*
|
|
5089
|
+
* @type {number}
|
|
5090
|
+
* @memberof DealItemModel
|
|
5091
|
+
*/
|
|
5092
|
+
'lowestPrice'?: number;
|
|
5093
|
+
/**
|
|
5094
|
+
*
|
|
5095
|
+
* @type {number}
|
|
5096
|
+
* @memberof DealItemModel
|
|
5097
|
+
*/
|
|
5098
|
+
'dealServicesCount'?: number;
|
|
5087
5099
|
/**
|
|
5088
5100
|
*
|
|
5089
5101
|
* @type {number}
|
|
@@ -5206,6 +5218,18 @@ export interface DealModel {
|
|
|
5206
5218
|
* @memberof DealModel
|
|
5207
5219
|
*/
|
|
5208
5220
|
'photoThumbnail'?: string | null;
|
|
5221
|
+
/**
|
|
5222
|
+
*
|
|
5223
|
+
* @type {number}
|
|
5224
|
+
* @memberof DealModel
|
|
5225
|
+
*/
|
|
5226
|
+
'lowestPrice'?: number;
|
|
5227
|
+
/**
|
|
5228
|
+
*
|
|
5229
|
+
* @type {number}
|
|
5230
|
+
* @memberof DealModel
|
|
5231
|
+
*/
|
|
5232
|
+
'dealServicesCount'?: number;
|
|
5209
5233
|
/**
|
|
5210
5234
|
*
|
|
5211
5235
|
* @type {number}
|
|
@@ -7603,6 +7627,12 @@ export interface HospitalItemModel {
|
|
|
7603
7627
|
* @memberof HospitalItemModel
|
|
7604
7628
|
*/
|
|
7605
7629
|
'countryId'?: string;
|
|
7630
|
+
/**
|
|
7631
|
+
*
|
|
7632
|
+
* @type {Array<MediaModel>}
|
|
7633
|
+
* @memberof HospitalItemModel
|
|
7634
|
+
*/
|
|
7635
|
+
'medias'?: Array<MediaModel> | null;
|
|
7606
7636
|
/**
|
|
7607
7637
|
*
|
|
7608
7638
|
* @type {LocationModel}
|
|
@@ -7744,6 +7774,12 @@ export interface HospitalModel {
|
|
|
7744
7774
|
* @memberof HospitalModel
|
|
7745
7775
|
*/
|
|
7746
7776
|
'countryId'?: string;
|
|
7777
|
+
/**
|
|
7778
|
+
*
|
|
7779
|
+
* @type {Array<MediaModel>}
|
|
7780
|
+
* @memberof HospitalModel
|
|
7781
|
+
*/
|
|
7782
|
+
'medias'?: Array<MediaModel> | null;
|
|
7747
7783
|
/**
|
|
7748
7784
|
*
|
|
7749
7785
|
* @type {LocationModel}
|
|
@@ -7895,12 +7931,48 @@ export interface HospitalServiceItemModel {
|
|
|
7895
7931
|
* @memberof HospitalServiceItemModel
|
|
7896
7932
|
*/
|
|
7897
7933
|
'specialtyName'?: string | null;
|
|
7934
|
+
/**
|
|
7935
|
+
*
|
|
7936
|
+
* @type {string}
|
|
7937
|
+
* @memberof HospitalServiceItemModel
|
|
7938
|
+
*/
|
|
7939
|
+
'hospitalSpecialtyName'?: string | null;
|
|
7940
|
+
/**
|
|
7941
|
+
*
|
|
7942
|
+
* @type {string}
|
|
7943
|
+
* @memberof HospitalServiceItemModel
|
|
7944
|
+
*/
|
|
7945
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
7946
|
+
/**
|
|
7947
|
+
*
|
|
7948
|
+
* @type {string}
|
|
7949
|
+
* @memberof HospitalServiceItemModel
|
|
7950
|
+
*/
|
|
7951
|
+
'hospitalSpecialtyId'?: string;
|
|
7898
7952
|
/**
|
|
7899
7953
|
*
|
|
7900
7954
|
* @type {Procedure}
|
|
7901
7955
|
* @memberof HospitalServiceItemModel
|
|
7902
7956
|
*/
|
|
7903
7957
|
'procedure'?: Procedure;
|
|
7958
|
+
/**
|
|
7959
|
+
*
|
|
7960
|
+
* @type {number}
|
|
7961
|
+
* @memberof HospitalServiceItemModel
|
|
7962
|
+
*/
|
|
7963
|
+
'minPrice'?: number | null;
|
|
7964
|
+
/**
|
|
7965
|
+
*
|
|
7966
|
+
* @type {number}
|
|
7967
|
+
* @memberof HospitalServiceItemModel
|
|
7968
|
+
*/
|
|
7969
|
+
'maxPrice'?: number | null;
|
|
7970
|
+
/**
|
|
7971
|
+
*
|
|
7972
|
+
* @type {boolean}
|
|
7973
|
+
* @memberof HospitalServiceItemModel
|
|
7974
|
+
*/
|
|
7975
|
+
'priceReuqest'?: boolean;
|
|
7904
7976
|
/**
|
|
7905
7977
|
*
|
|
7906
7978
|
* @type {number}
|
|
@@ -7992,12 +8064,36 @@ export interface HospitalServiceModel {
|
|
|
7992
8064
|
* @memberof HospitalServiceModel
|
|
7993
8065
|
*/
|
|
7994
8066
|
'specialtyName'?: string | null;
|
|
8067
|
+
/**
|
|
8068
|
+
*
|
|
8069
|
+
* @type {string}
|
|
8070
|
+
* @memberof HospitalServiceModel
|
|
8071
|
+
*/
|
|
8072
|
+
'hospitalSpecialtyId'?: string;
|
|
7995
8073
|
/**
|
|
7996
8074
|
*
|
|
7997
8075
|
* @type {Procedure}
|
|
7998
8076
|
* @memberof HospitalServiceModel
|
|
7999
8077
|
*/
|
|
8000
8078
|
'procedure'?: Procedure;
|
|
8079
|
+
/**
|
|
8080
|
+
*
|
|
8081
|
+
* @type {number}
|
|
8082
|
+
* @memberof HospitalServiceModel
|
|
8083
|
+
*/
|
|
8084
|
+
'minPrice'?: number | null;
|
|
8085
|
+
/**
|
|
8086
|
+
*
|
|
8087
|
+
* @type {number}
|
|
8088
|
+
* @memberof HospitalServiceModel
|
|
8089
|
+
*/
|
|
8090
|
+
'maxPrice'?: number | null;
|
|
8091
|
+
/**
|
|
8092
|
+
*
|
|
8093
|
+
* @type {boolean}
|
|
8094
|
+
* @memberof HospitalServiceModel
|
|
8095
|
+
*/
|
|
8096
|
+
'priceReuqest'?: boolean;
|
|
8001
8097
|
/**
|
|
8002
8098
|
*
|
|
8003
8099
|
* @type {number}
|
|
@@ -8064,24 +8160,6 @@ export interface HospitalServiceModel {
|
|
|
8064
8160
|
* @memberof HospitalServiceModel
|
|
8065
8161
|
*/
|
|
8066
8162
|
'serviceCategoryName'?: string | null;
|
|
8067
|
-
/**
|
|
8068
|
-
*
|
|
8069
|
-
* @type {number}
|
|
8070
|
-
* @memberof HospitalServiceModel
|
|
8071
|
-
*/
|
|
8072
|
-
'minPrice'?: number | null;
|
|
8073
|
-
/**
|
|
8074
|
-
*
|
|
8075
|
-
* @type {number}
|
|
8076
|
-
* @memberof HospitalServiceModel
|
|
8077
|
-
*/
|
|
8078
|
-
'maxPrice'?: number | null;
|
|
8079
|
-
/**
|
|
8080
|
-
*
|
|
8081
|
-
* @type {boolean}
|
|
8082
|
-
* @memberof HospitalServiceModel
|
|
8083
|
-
*/
|
|
8084
|
-
'priceReuqest'?: boolean;
|
|
8085
8163
|
/**
|
|
8086
8164
|
*
|
|
8087
8165
|
* @type {string}
|
|
@@ -10358,6 +10436,12 @@ export interface ServiceReviewItemModel {
|
|
|
10358
10436
|
* @memberof ServiceReviewItemModel
|
|
10359
10437
|
*/
|
|
10360
10438
|
'serviceSlug'?: string | null;
|
|
10439
|
+
/**
|
|
10440
|
+
*
|
|
10441
|
+
* @type {string}
|
|
10442
|
+
* @memberof ServiceReviewItemModel
|
|
10443
|
+
*/
|
|
10444
|
+
'hospitalId'?: string;
|
|
10361
10445
|
/**
|
|
10362
10446
|
*
|
|
10363
10447
|
* @type {string}
|
|
@@ -10455,6 +10539,12 @@ export interface ServiceReviewModel {
|
|
|
10455
10539
|
* @memberof ServiceReviewModel
|
|
10456
10540
|
*/
|
|
10457
10541
|
'serviceSlug'?: string | null;
|
|
10542
|
+
/**
|
|
10543
|
+
*
|
|
10544
|
+
* @type {string}
|
|
10545
|
+
* @memberof ServiceReviewModel
|
|
10546
|
+
*/
|
|
10547
|
+
'hospitalId'?: string;
|
|
10458
10548
|
/**
|
|
10459
10549
|
*
|
|
10460
10550
|
* @type {string}
|
|
@@ -14422,7 +14512,6 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
14422
14512
|
* @param {string} [id]
|
|
14423
14513
|
* @param {string} [name]
|
|
14424
14514
|
* @param {string} [description]
|
|
14425
|
-
* @param {ArticleStatus} [status]
|
|
14426
14515
|
* @param {MarketingType} [marketingType]
|
|
14427
14516
|
* @param {string} [userId]
|
|
14428
14517
|
* @param {string} [userName]
|
|
@@ -14441,7 +14530,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
14441
14530
|
* @param {*} [options] Override http request option.
|
|
14442
14531
|
* @throws {RequiredError}
|
|
14443
14532
|
*/
|
|
14444
|
-
apiV1ArticlesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined,
|
|
14533
|
+
apiV1ArticlesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14445
14534
|
/**
|
|
14446
14535
|
*
|
|
14447
14536
|
* @summary Create a Article.
|
|
@@ -14693,7 +14782,6 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
14693
14782
|
* @param {string} [id]
|
|
14694
14783
|
* @param {string} [name]
|
|
14695
14784
|
* @param {string} [description]
|
|
14696
|
-
* @param {ArticleStatus} [status]
|
|
14697
14785
|
* @param {MarketingType} [marketingType]
|
|
14698
14786
|
* @param {string} [userId]
|
|
14699
14787
|
* @param {string} [userName]
|
|
@@ -14712,7 +14800,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
14712
14800
|
* @param {*} [options] Override http request option.
|
|
14713
14801
|
* @throws {RequiredError}
|
|
14714
14802
|
*/
|
|
14715
|
-
apiV1ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined,
|
|
14803
|
+
apiV1ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
|
|
14716
14804
|
/**
|
|
14717
14805
|
*
|
|
14718
14806
|
* @summary Create a Article.
|
|
@@ -14964,7 +15052,6 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
14964
15052
|
* @param {string} [id]
|
|
14965
15053
|
* @param {string} [name]
|
|
14966
15054
|
* @param {string} [description]
|
|
14967
|
-
* @param {ArticleStatus} [status]
|
|
14968
15055
|
* @param {MarketingType} [marketingType]
|
|
14969
15056
|
* @param {string} [userId]
|
|
14970
15057
|
* @param {string} [userName]
|
|
@@ -14983,7 +15070,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
14983
15070
|
* @param {*} [options] Override http request option.
|
|
14984
15071
|
* @throws {RequiredError}
|
|
14985
15072
|
*/
|
|
14986
|
-
apiV1ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined,
|
|
15073
|
+
apiV1ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
|
|
14987
15074
|
/**
|
|
14988
15075
|
*
|
|
14989
15076
|
* @summary Create a Article.
|
|
@@ -15259,7 +15346,6 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
15259
15346
|
* @param {string} [id]
|
|
15260
15347
|
* @param {string} [name]
|
|
15261
15348
|
* @param {string} [description]
|
|
15262
|
-
* @param {ArticleStatus} [status]
|
|
15263
15349
|
* @param {MarketingType} [marketingType]
|
|
15264
15350
|
* @param {string} [userId]
|
|
15265
15351
|
* @param {string} [userName]
|
|
@@ -15279,7 +15365,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
15279
15365
|
* @throws {RequiredError}
|
|
15280
15366
|
* @memberof ArticlesApi
|
|
15281
15367
|
*/
|
|
15282
|
-
apiV1ArticlesGet(id?: string, name?: string, description?: string,
|
|
15368
|
+
apiV1ArticlesGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel>>;
|
|
15283
15369
|
/**
|
|
15284
15370
|
*
|
|
15285
15371
|
* @summary Create a Article.
|