ch-admin-api-client-typescript 3.1.2 → 3.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/src/api.ts CHANGED
@@ -4119,6 +4119,12 @@ export interface CreateFaqCategoryCommand {
4119
4119
  * @memberof CreateFaqCategoryCommand
4120
4120
  */
4121
4121
  'order'?: number;
4122
+ /**
4123
+ *
4124
+ * @type {string}
4125
+ * @memberof CreateFaqCategoryCommand
4126
+ */
4127
+ 'hospitalId'?: string;
4122
4128
  }
4123
4129
  /**
4124
4130
  *
@@ -4150,12 +4156,6 @@ export interface CreateFaqCommand {
4150
4156
  * @memberof CreateFaqCommand
4151
4157
  */
4152
4158
  'faqCategoryId'?: string | null;
4153
- /**
4154
- *
4155
- * @type {string}
4156
- * @memberof CreateFaqCommand
4157
- */
4158
- 'hospitalId'?: string;
4159
4159
  }
4160
4160
  /**
4161
4161
  *
@@ -6853,10 +6853,16 @@ export interface FaqCategoryItemModel {
6853
6853
  'order'?: number;
6854
6854
  /**
6855
6855
  *
6856
- * @type {Array<FaqItemModel>}
6856
+ * @type {string}
6857
6857
  * @memberof FaqCategoryItemModel
6858
6858
  */
6859
- 'faqs'?: Array<FaqItemModel> | null;
6859
+ 'hospitalId'?: string;
6860
+ /**
6861
+ *
6862
+ * @type {string}
6863
+ * @memberof FaqCategoryItemModel
6864
+ */
6865
+ 'hospitalName'?: string | null;
6860
6866
  /**
6861
6867
  *
6862
6868
  * @type {Array<LocalizedUrlModel>}
@@ -6914,10 +6920,16 @@ export interface FaqCategoryModel {
6914
6920
  'order'?: number;
6915
6921
  /**
6916
6922
  *
6917
- * @type {Array<FaqItemModel>}
6923
+ * @type {string}
6918
6924
  * @memberof FaqCategoryModel
6919
6925
  */
6920
- 'faqs'?: Array<FaqItemModel> | null;
6926
+ 'hospitalId'?: string;
6927
+ /**
6928
+ *
6929
+ * @type {string}
6930
+ * @memberof FaqCategoryModel
6931
+ */
6932
+ 'hospitalName'?: string | null;
6921
6933
  /**
6922
6934
  *
6923
6935
  * @type {Array<LocalizedUrlModel>}
@@ -28620,10 +28632,11 @@ export const FaqCategoriesApiAxiosParamCreator = function (configuration?: Confi
28620
28632
  * @summary Get FaqCategory.
28621
28633
  * @param {string} faqCategoryId
28622
28634
  * @param {string} [languageCode]
28635
+ * @param {boolean} [returnDefaultValue]
28623
28636
  * @param {*} [options] Override http request option.
28624
28637
  * @throws {RequiredError}
28625
28638
  */
28626
- apiV1FaqcategoriesFaqCategoryIdGet: async (faqCategoryId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
28639
+ apiV1FaqcategoriesFaqCategoryIdGet: async (faqCategoryId: string, languageCode?: string, returnDefaultValue?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
28627
28640
  // verify required parameter 'faqCategoryId' is not null or undefined
28628
28641
  assertParamExists('apiV1FaqcategoriesFaqCategoryIdGet', 'faqCategoryId', faqCategoryId)
28629
28642
  const localVarPath = `/api/v1/faqcategories/{faqCategoryId}`
@@ -28647,6 +28660,10 @@ export const FaqCategoriesApiAxiosParamCreator = function (configuration?: Confi
28647
28660
  localVarQueryParameter['languageCode'] = languageCode;
28648
28661
  }
28649
28662
 
28663
+ if (returnDefaultValue !== undefined) {
28664
+ localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
28665
+ }
28666
+
28650
28667
 
28651
28668
 
28652
28669
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -28707,14 +28724,18 @@ export const FaqCategoriesApiAxiosParamCreator = function (configuration?: Confi
28707
28724
  * @param {string} [parentId]
28708
28725
  * @param {string} [name]
28709
28726
  * @param {string} [description]
28727
+ * @param {string} [hospitalId]
28728
+ * @param {string} [hospitalName]
28710
28729
  * @param {string} [languageCode]
28730
+ * @param {boolean} [showHidden]
28731
+ * @param {boolean} [returnDefaultValue]
28711
28732
  * @param {number} [page]
28712
28733
  * @param {number} [limit]
28713
28734
  * @param {Date} [lastRetrieved]
28714
28735
  * @param {*} [options] Override http request option.
28715
28736
  * @throws {RequiredError}
28716
28737
  */
28717
- apiV1FaqcategoriesGet: async (id?: string, parentId?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
28738
+ apiV1FaqcategoriesGet: async (id?: string, parentId?: string, name?: string, description?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
28718
28739
  const localVarPath = `/api/v1/faqcategories`;
28719
28740
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
28720
28741
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -28747,10 +28768,26 @@ export const FaqCategoriesApiAxiosParamCreator = function (configuration?: Confi
28747
28768
  localVarQueryParameter['Description'] = description;
28748
28769
  }
28749
28770
 
28771
+ if (hospitalId !== undefined) {
28772
+ localVarQueryParameter['HospitalId'] = hospitalId;
28773
+ }
28774
+
28775
+ if (hospitalName !== undefined) {
28776
+ localVarQueryParameter['HospitalName'] = hospitalName;
28777
+ }
28778
+
28750
28779
  if (languageCode !== undefined) {
28751
28780
  localVarQueryParameter['LanguageCode'] = languageCode;
28752
28781
  }
28753
28782
 
28783
+ if (showHidden !== undefined) {
28784
+ localVarQueryParameter['ShowHidden'] = showHidden;
28785
+ }
28786
+
28787
+ if (returnDefaultValue !== undefined) {
28788
+ localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
28789
+ }
28790
+
28754
28791
  if (page !== undefined) {
28755
28792
  localVarQueryParameter['page'] = page;
28756
28793
  }
@@ -28896,11 +28933,12 @@ export const FaqCategoriesApiFp = function(configuration?: Configuration) {
28896
28933
  * @summary Get FaqCategory.
28897
28934
  * @param {string} faqCategoryId
28898
28935
  * @param {string} [languageCode]
28936
+ * @param {boolean} [returnDefaultValue]
28899
28937
  * @param {*} [options] Override http request option.
28900
28938
  * @throws {RequiredError}
28901
28939
  */
28902
- async apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FaqCategoryModel>> {
28903
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId, languageCode, options);
28940
+ async apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FaqCategoryModel>> {
28941
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId, languageCode, returnDefaultValue, options);
28904
28942
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
28905
28943
  },
28906
28944
  /**
@@ -28922,15 +28960,19 @@ export const FaqCategoriesApiFp = function(configuration?: Configuration) {
28922
28960
  * @param {string} [parentId]
28923
28961
  * @param {string} [name]
28924
28962
  * @param {string} [description]
28963
+ * @param {string} [hospitalId]
28964
+ * @param {string} [hospitalName]
28925
28965
  * @param {string} [languageCode]
28966
+ * @param {boolean} [showHidden]
28967
+ * @param {boolean} [returnDefaultValue]
28926
28968
  * @param {number} [page]
28927
28969
  * @param {number} [limit]
28928
28970
  * @param {Date} [lastRetrieved]
28929
28971
  * @param {*} [options] Override http request option.
28930
28972
  * @throws {RequiredError}
28931
28973
  */
28932
- async apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FaqCategoriesModel>> {
28933
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1FaqcategoriesGet(id, parentId, name, description, languageCode, page, limit, lastRetrieved, options);
28974
+ async apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FaqCategoriesModel>> {
28975
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1FaqcategoriesGet(id, parentId, name, description, hospitalId, hospitalName, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options);
28934
28976
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
28935
28977
  },
28936
28978
  /**
@@ -28993,11 +29035,12 @@ export const FaqCategoriesApiFactory = function (configuration?: Configuration,
28993
29035
  * @summary Get FaqCategory.
28994
29036
  * @param {string} faqCategoryId
28995
29037
  * @param {string} [languageCode]
29038
+ * @param {boolean} [returnDefaultValue]
28996
29039
  * @param {*} [options] Override http request option.
28997
29040
  * @throws {RequiredError}
28998
29041
  */
28999
- apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, options?: any): AxiosPromise<FaqCategoryModel> {
29000
- return localVarFp.apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId, languageCode, options).then((request) => request(axios, basePath));
29042
+ apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<FaqCategoryModel> {
29043
+ return localVarFp.apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId, languageCode, returnDefaultValue, options).then((request) => request(axios, basePath));
29001
29044
  },
29002
29045
  /**
29003
29046
  *
@@ -29017,15 +29060,19 @@ export const FaqCategoriesApiFactory = function (configuration?: Configuration,
29017
29060
  * @param {string} [parentId]
29018
29061
  * @param {string} [name]
29019
29062
  * @param {string} [description]
29063
+ * @param {string} [hospitalId]
29064
+ * @param {string} [hospitalName]
29020
29065
  * @param {string} [languageCode]
29066
+ * @param {boolean} [showHidden]
29067
+ * @param {boolean} [returnDefaultValue]
29021
29068
  * @param {number} [page]
29022
29069
  * @param {number} [limit]
29023
29070
  * @param {Date} [lastRetrieved]
29024
29071
  * @param {*} [options] Override http request option.
29025
29072
  * @throws {RequiredError}
29026
29073
  */
29027
- apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<FaqCategoriesModel> {
29028
- return localVarFp.apiV1FaqcategoriesGet(id, parentId, name, description, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
29074
+ apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<FaqCategoriesModel> {
29075
+ return localVarFp.apiV1FaqcategoriesGet(id, parentId, name, description, hospitalId, hospitalName, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
29029
29076
  },
29030
29077
  /**
29031
29078
  *
@@ -29089,12 +29136,13 @@ export class FaqCategoriesApi extends BaseAPI {
29089
29136
  * @summary Get FaqCategory.
29090
29137
  * @param {string} faqCategoryId
29091
29138
  * @param {string} [languageCode]
29139
+ * @param {boolean} [returnDefaultValue]
29092
29140
  * @param {*} [options] Override http request option.
29093
29141
  * @throws {RequiredError}
29094
29142
  * @memberof FaqCategoriesApi
29095
29143
  */
29096
- public apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, options?: AxiosRequestConfig) {
29097
- return FaqCategoriesApiFp(this.configuration).apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId, languageCode, options).then((request) => request(this.axios, this.basePath));
29144
+ public apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) {
29145
+ return FaqCategoriesApiFp(this.configuration).apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId, languageCode, returnDefaultValue, options).then((request) => request(this.axios, this.basePath));
29098
29146
  }
29099
29147
 
29100
29148
  /**
@@ -29117,7 +29165,11 @@ export class FaqCategoriesApi extends BaseAPI {
29117
29165
  * @param {string} [parentId]
29118
29166
  * @param {string} [name]
29119
29167
  * @param {string} [description]
29168
+ * @param {string} [hospitalId]
29169
+ * @param {string} [hospitalName]
29120
29170
  * @param {string} [languageCode]
29171
+ * @param {boolean} [showHidden]
29172
+ * @param {boolean} [returnDefaultValue]
29121
29173
  * @param {number} [page]
29122
29174
  * @param {number} [limit]
29123
29175
  * @param {Date} [lastRetrieved]
@@ -29125,8 +29177,8 @@ export class FaqCategoriesApi extends BaseAPI {
29125
29177
  * @throws {RequiredError}
29126
29178
  * @memberof FaqCategoriesApi
29127
29179
  */
29128
- public apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
29129
- return FaqCategoriesApiFp(this.configuration).apiV1FaqcategoriesGet(id, parentId, name, description, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
29180
+ public apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
29181
+ return FaqCategoriesApiFp(this.configuration).apiV1FaqcategoriesGet(id, parentId, name, description, hospitalId, hospitalName, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
29130
29182
  }
29131
29183
 
29132
29184
  /**
@@ -29205,10 +29257,11 @@ export const FaqsApiAxiosParamCreator = function (configuration?: Configuration)
29205
29257
  * @summary Get faq.
29206
29258
  * @param {string} faqId
29207
29259
  * @param {string} [languageCode]
29260
+ * @param {boolean} [returnDefaultValue]
29208
29261
  * @param {*} [options] Override http request option.
29209
29262
  * @throws {RequiredError}
29210
29263
  */
29211
- apiV1FaqsFaqIdGet: async (faqId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
29264
+ apiV1FaqsFaqIdGet: async (faqId: string, languageCode?: string, returnDefaultValue?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
29212
29265
  // verify required parameter 'faqId' is not null or undefined
29213
29266
  assertParamExists('apiV1FaqsFaqIdGet', 'faqId', faqId)
29214
29267
  const localVarPath = `/api/v1/faqs/{faqId}`
@@ -29232,6 +29285,10 @@ export const FaqsApiAxiosParamCreator = function (configuration?: Configuration)
29232
29285
  localVarQueryParameter['languageCode'] = languageCode;
29233
29286
  }
29234
29287
 
29288
+ if (returnDefaultValue !== undefined) {
29289
+ localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
29290
+ }
29291
+
29235
29292
 
29236
29293
 
29237
29294
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -29533,13 +29590,14 @@ export const FaqsApiAxiosParamCreator = function (configuration?: Configuration)
29533
29590
  * @param {string} [hospitalName]
29534
29591
  * @param {string} [languageCode]
29535
29592
  * @param {boolean} [showHidden]
29593
+ * @param {boolean} [returnDefaultValue]
29536
29594
  * @param {number} [page]
29537
29595
  * @param {number} [limit]
29538
29596
  * @param {Date} [lastRetrieved]
29539
29597
  * @param {*} [options] Override http request option.
29540
29598
  * @throws {RequiredError}
29541
29599
  */
29542
- apiV1FaqsGet: async (id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
29600
+ apiV1FaqsGet: async (id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
29543
29601
  const localVarPath = `/api/v1/faqs`;
29544
29602
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
29545
29603
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -29588,6 +29646,10 @@ export const FaqsApiAxiosParamCreator = function (configuration?: Configuration)
29588
29646
  localVarQueryParameter['ShowHidden'] = showHidden;
29589
29647
  }
29590
29648
 
29649
+ if (returnDefaultValue !== undefined) {
29650
+ localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
29651
+ }
29652
+
29591
29653
  if (page !== undefined) {
29592
29654
  localVarQueryParameter['page'] = page;
29593
29655
  }
@@ -29720,11 +29782,12 @@ export const FaqsApiFp = function(configuration?: Configuration) {
29720
29782
  * @summary Get faq.
29721
29783
  * @param {string} faqId
29722
29784
  * @param {string} [languageCode]
29785
+ * @param {boolean} [returnDefaultValue]
29723
29786
  * @param {*} [options] Override http request option.
29724
29787
  * @throws {RequiredError}
29725
29788
  */
29726
- async apiV1FaqsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FaqModel>> {
29727
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1FaqsFaqIdGet(faqId, languageCode, options);
29789
+ async apiV1FaqsFaqIdGet(faqId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FaqModel>> {
29790
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1FaqsFaqIdGet(faqId, languageCode, returnDefaultValue, options);
29728
29791
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
29729
29792
  },
29730
29793
  /**
@@ -29815,14 +29878,15 @@ export const FaqsApiFp = function(configuration?: Configuration) {
29815
29878
  * @param {string} [hospitalName]
29816
29879
  * @param {string} [languageCode]
29817
29880
  * @param {boolean} [showHidden]
29881
+ * @param {boolean} [returnDefaultValue]
29818
29882
  * @param {number} [page]
29819
29883
  * @param {number} [limit]
29820
29884
  * @param {Date} [lastRetrieved]
29821
29885
  * @param {*} [options] Override http request option.
29822
29886
  * @throws {RequiredError}
29823
29887
  */
29824
- async apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FaqsModel>> {
29825
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1FaqsGet(id, title, content, categoryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options);
29888
+ async apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FaqsModel>> {
29889
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1FaqsGet(id, title, content, categoryId, hospitalId, hospitalName, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options);
29826
29890
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
29827
29891
  },
29828
29892
  /**
@@ -29873,11 +29937,12 @@ export const FaqsApiFactory = function (configuration?: Configuration, basePath?
29873
29937
  * @summary Get faq.
29874
29938
  * @param {string} faqId
29875
29939
  * @param {string} [languageCode]
29940
+ * @param {boolean} [returnDefaultValue]
29876
29941
  * @param {*} [options] Override http request option.
29877
29942
  * @throws {RequiredError}
29878
29943
  */
29879
- apiV1FaqsFaqIdGet(faqId: string, languageCode?: string, options?: any): AxiosPromise<FaqModel> {
29880
- return localVarFp.apiV1FaqsFaqIdGet(faqId, languageCode, options).then((request) => request(axios, basePath));
29944
+ apiV1FaqsFaqIdGet(faqId: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<FaqModel> {
29945
+ return localVarFp.apiV1FaqsFaqIdGet(faqId, languageCode, returnDefaultValue, options).then((request) => request(axios, basePath));
29881
29946
  },
29882
29947
  /**
29883
29948
  *
@@ -29961,14 +30026,15 @@ export const FaqsApiFactory = function (configuration?: Configuration, basePath?
29961
30026
  * @param {string} [hospitalName]
29962
30027
  * @param {string} [languageCode]
29963
30028
  * @param {boolean} [showHidden]
30029
+ * @param {boolean} [returnDefaultValue]
29964
30030
  * @param {number} [page]
29965
30031
  * @param {number} [limit]
29966
30032
  * @param {Date} [lastRetrieved]
29967
30033
  * @param {*} [options] Override http request option.
29968
30034
  * @throws {RequiredError}
29969
30035
  */
29970
- apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<FaqsModel> {
29971
- return localVarFp.apiV1FaqsGet(id, title, content, categoryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
30036
+ apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<FaqsModel> {
30037
+ return localVarFp.apiV1FaqsGet(id, title, content, categoryId, hospitalId, hospitalName, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
29972
30038
  },
29973
30039
  /**
29974
30040
  *
@@ -30018,12 +30084,13 @@ export class FaqsApi extends BaseAPI {
30018
30084
  * @summary Get faq.
30019
30085
  * @param {string} faqId
30020
30086
  * @param {string} [languageCode]
30087
+ * @param {boolean} [returnDefaultValue]
30021
30088
  * @param {*} [options] Override http request option.
30022
30089
  * @throws {RequiredError}
30023
30090
  * @memberof FaqsApi
30024
30091
  */
30025
- public apiV1FaqsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig) {
30026
- return FaqsApiFp(this.configuration).apiV1FaqsFaqIdGet(faqId, languageCode, options).then((request) => request(this.axios, this.basePath));
30092
+ public apiV1FaqsFaqIdGet(faqId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) {
30093
+ return FaqsApiFp(this.configuration).apiV1FaqsFaqIdGet(faqId, languageCode, returnDefaultValue, options).then((request) => request(this.axios, this.basePath));
30027
30094
  }
30028
30095
 
30029
30096
  /**
@@ -30120,6 +30187,7 @@ export class FaqsApi extends BaseAPI {
30120
30187
  * @param {string} [hospitalName]
30121
30188
  * @param {string} [languageCode]
30122
30189
  * @param {boolean} [showHidden]
30190
+ * @param {boolean} [returnDefaultValue]
30123
30191
  * @param {number} [page]
30124
30192
  * @param {number} [limit]
30125
30193
  * @param {Date} [lastRetrieved]
@@ -30127,8 +30195,8 @@ export class FaqsApi extends BaseAPI {
30127
30195
  * @throws {RequiredError}
30128
30196
  * @memberof FaqsApi
30129
30197
  */
30130
- public apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
30131
- return FaqsApiFp(this.configuration).apiV1FaqsGet(id, title, content, categoryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
30198
+ public apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
30199
+ return FaqsApiFp(this.configuration).apiV1FaqsGet(id, title, content, categoryId, hospitalId, hospitalName, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
30132
30200
  }
30133
30201
 
30134
30202
  /**