ch-api-client-typescript2 4.3.6 → 4.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/api.d.ts CHANGED
@@ -6900,6 +6900,201 @@ export interface InviteSendBirdGroupChannelCommand {
6900
6900
  */
6901
6901
  'user_ids'?: Array<string> | null;
6902
6902
  }
6903
+ /**
6904
+ *
6905
+ * @export
6906
+ * @interface LandingItemModel
6907
+ */
6908
+ export interface LandingItemModel {
6909
+ /**
6910
+ *
6911
+ * @type {string}
6912
+ * @memberof LandingItemModel
6913
+ */
6914
+ 'id'?: string;
6915
+ /**
6916
+ *
6917
+ * @type {string}
6918
+ * @memberof LandingItemModel
6919
+ */
6920
+ 'languageCode'?: string | null;
6921
+ /**
6922
+ *
6923
+ * @type {string}
6924
+ * @memberof LandingItemModel
6925
+ */
6926
+ 'name'?: string | null;
6927
+ /**
6928
+ *
6929
+ * @type {string}
6930
+ * @memberof LandingItemModel
6931
+ */
6932
+ 'slug'?: string | null;
6933
+ /**
6934
+ *
6935
+ * @type {boolean}
6936
+ * @memberof LandingItemModel
6937
+ */
6938
+ 'confirmed'?: boolean;
6939
+ /**
6940
+ *
6941
+ * @type {number}
6942
+ * @memberof LandingItemModel
6943
+ */
6944
+ 'order'?: number;
6945
+ /**
6946
+ *
6947
+ * @type {string}
6948
+ * @memberof LandingItemModel
6949
+ */
6950
+ 'photo'?: string | null;
6951
+ /**
6952
+ *
6953
+ * @type {string}
6954
+ * @memberof LandingItemModel
6955
+ */
6956
+ 'photoThumbnail'?: string | null;
6957
+ /**
6958
+ *
6959
+ * @type {AuditableEntity}
6960
+ * @memberof LandingItemModel
6961
+ */
6962
+ 'auditableEntity'?: AuditableEntity;
6963
+ }
6964
+ /**
6965
+ *
6966
+ * @export
6967
+ * @interface LandingModel
6968
+ */
6969
+ export interface LandingModel {
6970
+ /**
6971
+ *
6972
+ * @type {string}
6973
+ * @memberof LandingModel
6974
+ */
6975
+ 'id'?: string;
6976
+ /**
6977
+ *
6978
+ * @type {string}
6979
+ * @memberof LandingModel
6980
+ */
6981
+ 'languageCode'?: string | null;
6982
+ /**
6983
+ *
6984
+ * @type {string}
6985
+ * @memberof LandingModel
6986
+ */
6987
+ 'name'?: string | null;
6988
+ /**
6989
+ *
6990
+ * @type {string}
6991
+ * @memberof LandingModel
6992
+ */
6993
+ 'slug'?: string | null;
6994
+ /**
6995
+ *
6996
+ * @type {boolean}
6997
+ * @memberof LandingModel
6998
+ */
6999
+ 'confirmed'?: boolean;
7000
+ /**
7001
+ *
7002
+ * @type {number}
7003
+ * @memberof LandingModel
7004
+ */
7005
+ 'order'?: number;
7006
+ /**
7007
+ *
7008
+ * @type {string}
7009
+ * @memberof LandingModel
7010
+ */
7011
+ 'photo'?: string | null;
7012
+ /**
7013
+ *
7014
+ * @type {string}
7015
+ * @memberof LandingModel
7016
+ */
7017
+ 'photoThumbnail'?: string | null;
7018
+ /**
7019
+ *
7020
+ * @type {AuditableEntity}
7021
+ * @memberof LandingModel
7022
+ */
7023
+ 'auditableEntity'?: AuditableEntity;
7024
+ /**
7025
+ *
7026
+ * @type {string}
7027
+ * @memberof LandingModel
7028
+ */
7029
+ 'description'?: string | null;
7030
+ /**
7031
+ *
7032
+ * @type {string}
7033
+ * @memberof LandingModel
7034
+ */
7035
+ 'overview'?: string | null;
7036
+ /**
7037
+ *
7038
+ * @type {string}
7039
+ * @memberof LandingModel
7040
+ */
7041
+ 'content'?: string | null;
7042
+ /**
7043
+ *
7044
+ * @type {string}
7045
+ * @memberof LandingModel
7046
+ */
7047
+ 'hospitalId'?: string;
7048
+ /**
7049
+ *
7050
+ * @type {string}
7051
+ * @memberof LandingModel
7052
+ */
7053
+ 'hospitalName'?: string | null;
7054
+ /**
7055
+ *
7056
+ * @type {string}
7057
+ * @memberof LandingModel
7058
+ */
7059
+ 'hospitalSlug'?: string | null;
7060
+ /**
7061
+ *
7062
+ * @type {string}
7063
+ * @memberof LandingModel
7064
+ */
7065
+ 'customStyle'?: string | null;
7066
+ /**
7067
+ *
7068
+ * @type {Array<LocalizedUrlModel>}
7069
+ * @memberof LandingModel
7070
+ */
7071
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
7072
+ /**
7073
+ *
7074
+ * @type {Array<MediaModel>}
7075
+ * @memberof LandingModel
7076
+ */
7077
+ 'medias'?: Array<MediaModel> | null;
7078
+ }
7079
+ /**
7080
+ *
7081
+ * @export
7082
+ * @interface LandingsModel
7083
+ */
7084
+ export interface LandingsModel {
7085
+ /**
7086
+ *
7087
+ * @type {Array<LandingItemModel>}
7088
+ * @memberof LandingsModel
7089
+ */
7090
+ 'items'?: Array<LandingItemModel> | null;
7091
+ /**
7092
+ *
7093
+ * @type {PagedListMetaData}
7094
+ * @memberof LandingsModel
7095
+ */
7096
+ 'metaData'?: PagedListMetaData;
7097
+ }
6903
7098
  /**
6904
7099
  *
6905
7100
  * @export
@@ -15216,6 +15411,38 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
15216
15411
  * @throws {RequiredError}
15217
15412
  */
15218
15413
  apiV2HospitalsHospitalIdHandlesHandleIdGet: (hospitalId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15414
+ /**
15415
+ *
15416
+ * @param {string} hospitalId
15417
+ * @param {string} [name]
15418
+ * @param {string} [slug]
15419
+ * @param {string} [languageCode]
15420
+ * @param {boolean} [showHidden]
15421
+ * @param {number} [page]
15422
+ * @param {number} [limit]
15423
+ * @param {Date} [lastRetrieved]
15424
+ * @param {*} [options] Override http request option.
15425
+ * @throws {RequiredError}
15426
+ */
15427
+ apiV2HospitalsHospitalIdLandingsGet: (hospitalId: string, name?: string | undefined, slug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15428
+ /**
15429
+ *
15430
+ * @param {string} hospitalId
15431
+ * @param {string} landingId
15432
+ * @param {string} [languageCode]
15433
+ * @param {*} [options] Override http request option.
15434
+ * @throws {RequiredError}
15435
+ */
15436
+ apiV2HospitalsHospitalIdLandingsLandingIdGet: (hospitalId: string, landingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15437
+ /**
15438
+ *
15439
+ * @param {string} slug
15440
+ * @param {string} hospitalId
15441
+ * @param {string} [languageCode]
15442
+ * @param {*} [options] Override http request option.
15443
+ * @throws {RequiredError}
15444
+ */
15445
+ apiV2HospitalsHospitalIdLandingsSlugGet: (slug: string, hospitalId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15219
15446
  /**
15220
15447
  *
15221
15448
  * @summary Get all HospitalMedias.
@@ -15597,6 +15824,38 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
15597
15824
  * @throws {RequiredError}
15598
15825
  */
15599
15826
  apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
15827
+ /**
15828
+ *
15829
+ * @param {string} hospitalId
15830
+ * @param {string} [name]
15831
+ * @param {string} [slug]
15832
+ * @param {string} [languageCode]
15833
+ * @param {boolean} [showHidden]
15834
+ * @param {number} [page]
15835
+ * @param {number} [limit]
15836
+ * @param {Date} [lastRetrieved]
15837
+ * @param {*} [options] Override http request option.
15838
+ * @throws {RequiredError}
15839
+ */
15840
+ apiV2HospitalsHospitalIdLandingsGet(hospitalId: string, name?: string | undefined, slug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LandingsModel>>;
15841
+ /**
15842
+ *
15843
+ * @param {string} hospitalId
15844
+ * @param {string} landingId
15845
+ * @param {string} [languageCode]
15846
+ * @param {*} [options] Override http request option.
15847
+ * @throws {RequiredError}
15848
+ */
15849
+ apiV2HospitalsHospitalIdLandingsLandingIdGet(hospitalId: string, landingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LandingModel>>;
15850
+ /**
15851
+ *
15852
+ * @param {string} slug
15853
+ * @param {string} hospitalId
15854
+ * @param {string} [languageCode]
15855
+ * @param {*} [options] Override http request option.
15856
+ * @throws {RequiredError}
15857
+ */
15858
+ apiV2HospitalsHospitalIdLandingsSlugGet(slug: string, hospitalId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LandingModel>>;
15600
15859
  /**
15601
15860
  *
15602
15861
  * @summary Get all HospitalMedias.
@@ -15978,6 +16237,38 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15978
16237
  * @throws {RequiredError}
15979
16238
  */
15980
16239
  apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
16240
+ /**
16241
+ *
16242
+ * @param {string} hospitalId
16243
+ * @param {string} [name]
16244
+ * @param {string} [slug]
16245
+ * @param {string} [languageCode]
16246
+ * @param {boolean} [showHidden]
16247
+ * @param {number} [page]
16248
+ * @param {number} [limit]
16249
+ * @param {Date} [lastRetrieved]
16250
+ * @param {*} [options] Override http request option.
16251
+ * @throws {RequiredError}
16252
+ */
16253
+ apiV2HospitalsHospitalIdLandingsGet(hospitalId: string, name?: string | undefined, slug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<LandingsModel>;
16254
+ /**
16255
+ *
16256
+ * @param {string} hospitalId
16257
+ * @param {string} landingId
16258
+ * @param {string} [languageCode]
16259
+ * @param {*} [options] Override http request option.
16260
+ * @throws {RequiredError}
16261
+ */
16262
+ apiV2HospitalsHospitalIdLandingsLandingIdGet(hospitalId: string, landingId: string, languageCode?: string | undefined, options?: any): AxiosPromise<LandingModel>;
16263
+ /**
16264
+ *
16265
+ * @param {string} slug
16266
+ * @param {string} hospitalId
16267
+ * @param {string} [languageCode]
16268
+ * @param {*} [options] Override http request option.
16269
+ * @throws {RequiredError}
16270
+ */
16271
+ apiV2HospitalsHospitalIdLandingsSlugGet(slug: string, hospitalId: string, languageCode?: string | undefined, options?: any): AxiosPromise<LandingModel>;
15981
16272
  /**
15982
16273
  *
15983
16274
  * @summary Get all HospitalMedias.
@@ -16373,6 +16664,41 @@ export declare class HospitalsApi extends BaseAPI {
16373
16664
  * @memberof HospitalsApi
16374
16665
  */
16375
16666
  apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel, any>>;
16667
+ /**
16668
+ *
16669
+ * @param {string} hospitalId
16670
+ * @param {string} [name]
16671
+ * @param {string} [slug]
16672
+ * @param {string} [languageCode]
16673
+ * @param {boolean} [showHidden]
16674
+ * @param {number} [page]
16675
+ * @param {number} [limit]
16676
+ * @param {Date} [lastRetrieved]
16677
+ * @param {*} [options] Override http request option.
16678
+ * @throws {RequiredError}
16679
+ * @memberof HospitalsApi
16680
+ */
16681
+ apiV2HospitalsHospitalIdLandingsGet(hospitalId: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingsModel, any>>;
16682
+ /**
16683
+ *
16684
+ * @param {string} hospitalId
16685
+ * @param {string} landingId
16686
+ * @param {string} [languageCode]
16687
+ * @param {*} [options] Override http request option.
16688
+ * @throws {RequiredError}
16689
+ * @memberof HospitalsApi
16690
+ */
16691
+ apiV2HospitalsHospitalIdLandingsLandingIdGet(hospitalId: string, landingId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingModel, any>>;
16692
+ /**
16693
+ *
16694
+ * @param {string} slug
16695
+ * @param {string} hospitalId
16696
+ * @param {string} [languageCode]
16697
+ * @param {*} [options] Override http request option.
16698
+ * @throws {RequiredError}
16699
+ * @memberof HospitalsApi
16700
+ */
16701
+ apiV2HospitalsHospitalIdLandingsSlugGet(slug: string, hospitalId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingModel, any>>;
16376
16702
  /**
16377
16703
  *
16378
16704
  * @summary Get all HospitalMedias.