ch-admin-api-client-typescript 4.1.0 → 4.1.1
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 +100 -26
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +7 -14
- package/package.json +1 -1
- package/src/api.ts +103 -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}
|
|
@@ -14422,7 +14500,6 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
14422
14500
|
* @param {string} [id]
|
|
14423
14501
|
* @param {string} [name]
|
|
14424
14502
|
* @param {string} [description]
|
|
14425
|
-
* @param {ArticleStatus} [status]
|
|
14426
14503
|
* @param {MarketingType} [marketingType]
|
|
14427
14504
|
* @param {string} [userId]
|
|
14428
14505
|
* @param {string} [userName]
|
|
@@ -14441,7 +14518,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
14441
14518
|
* @param {*} [options] Override http request option.
|
|
14442
14519
|
* @throws {RequiredError}
|
|
14443
14520
|
*/
|
|
14444
|
-
apiV1ArticlesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined,
|
|
14521
|
+
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
14522
|
/**
|
|
14446
14523
|
*
|
|
14447
14524
|
* @summary Create a Article.
|
|
@@ -14693,7 +14770,6 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
14693
14770
|
* @param {string} [id]
|
|
14694
14771
|
* @param {string} [name]
|
|
14695
14772
|
* @param {string} [description]
|
|
14696
|
-
* @param {ArticleStatus} [status]
|
|
14697
14773
|
* @param {MarketingType} [marketingType]
|
|
14698
14774
|
* @param {string} [userId]
|
|
14699
14775
|
* @param {string} [userName]
|
|
@@ -14712,7 +14788,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
14712
14788
|
* @param {*} [options] Override http request option.
|
|
14713
14789
|
* @throws {RequiredError}
|
|
14714
14790
|
*/
|
|
14715
|
-
apiV1ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined,
|
|
14791
|
+
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
14792
|
/**
|
|
14717
14793
|
*
|
|
14718
14794
|
* @summary Create a Article.
|
|
@@ -14964,7 +15040,6 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
14964
15040
|
* @param {string} [id]
|
|
14965
15041
|
* @param {string} [name]
|
|
14966
15042
|
* @param {string} [description]
|
|
14967
|
-
* @param {ArticleStatus} [status]
|
|
14968
15043
|
* @param {MarketingType} [marketingType]
|
|
14969
15044
|
* @param {string} [userId]
|
|
14970
15045
|
* @param {string} [userName]
|
|
@@ -14983,7 +15058,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
14983
15058
|
* @param {*} [options] Override http request option.
|
|
14984
15059
|
* @throws {RequiredError}
|
|
14985
15060
|
*/
|
|
14986
|
-
apiV1ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined,
|
|
15061
|
+
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
15062
|
/**
|
|
14988
15063
|
*
|
|
14989
15064
|
* @summary Create a Article.
|
|
@@ -15259,7 +15334,6 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
15259
15334
|
* @param {string} [id]
|
|
15260
15335
|
* @param {string} [name]
|
|
15261
15336
|
* @param {string} [description]
|
|
15262
|
-
* @param {ArticleStatus} [status]
|
|
15263
15337
|
* @param {MarketingType} [marketingType]
|
|
15264
15338
|
* @param {string} [userId]
|
|
15265
15339
|
* @param {string} [userName]
|
|
@@ -15279,7 +15353,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
15279
15353
|
* @throws {RequiredError}
|
|
15280
15354
|
* @memberof ArticlesApi
|
|
15281
15355
|
*/
|
|
15282
|
-
apiV1ArticlesGet(id?: string, name?: string, description?: string,
|
|
15356
|
+
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
15357
|
/**
|
|
15284
15358
|
*
|
|
15285
15359
|
* @summary Create a Article.
|