ch-admin-api-client-typescript 2.5.5 → 2.5.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 +158 -38
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +56 -28
- package/package.json +1 -1
- package/src/api.ts +187 -51
package/lib/api.d.ts
CHANGED
|
@@ -771,6 +771,37 @@ export interface AwardModel {
|
|
|
771
771
|
*/
|
|
772
772
|
'date'?: Date;
|
|
773
773
|
}
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @export
|
|
777
|
+
* @interface BookingChangeLogModel
|
|
778
|
+
*/
|
|
779
|
+
export interface BookingChangeLogModel {
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @type {BookingStatus}
|
|
783
|
+
* @memberof BookingChangeLogModel
|
|
784
|
+
*/
|
|
785
|
+
'status'?: BookingStatus;
|
|
786
|
+
/**
|
|
787
|
+
*
|
|
788
|
+
* @type {string}
|
|
789
|
+
* @memberof BookingChangeLogModel
|
|
790
|
+
*/
|
|
791
|
+
'actorId'?: string;
|
|
792
|
+
/**
|
|
793
|
+
*
|
|
794
|
+
* @type {Date}
|
|
795
|
+
* @memberof BookingChangeLogModel
|
|
796
|
+
*/
|
|
797
|
+
'createdDate'?: Date;
|
|
798
|
+
/**
|
|
799
|
+
*
|
|
800
|
+
* @type {string}
|
|
801
|
+
* @memberof BookingChangeLogModel
|
|
802
|
+
*/
|
|
803
|
+
'actorName'?: string | null;
|
|
804
|
+
}
|
|
774
805
|
/**
|
|
775
806
|
*
|
|
776
807
|
* @export
|
|
@@ -1168,6 +1199,12 @@ export interface BookingModel {
|
|
|
1168
1199
|
* @memberof BookingModel
|
|
1169
1200
|
*/
|
|
1170
1201
|
'completionRate'?: number;
|
|
1202
|
+
/**
|
|
1203
|
+
*
|
|
1204
|
+
* @type {Array<BookingChangeLogModel>}
|
|
1205
|
+
* @memberof BookingModel
|
|
1206
|
+
*/
|
|
1207
|
+
'statusChangeLogs'?: Array<BookingChangeLogModel> | null;
|
|
1171
1208
|
}
|
|
1172
1209
|
/**
|
|
1173
1210
|
*
|
|
@@ -1796,6 +1833,37 @@ export interface ConfirmEmailCommand {
|
|
|
1796
1833
|
*/
|
|
1797
1834
|
'code'?: string | null;
|
|
1798
1835
|
}
|
|
1836
|
+
/**
|
|
1837
|
+
*
|
|
1838
|
+
* @export
|
|
1839
|
+
* @interface ConsultationChangeLogModel
|
|
1840
|
+
*/
|
|
1841
|
+
export interface ConsultationChangeLogModel {
|
|
1842
|
+
/**
|
|
1843
|
+
*
|
|
1844
|
+
* @type {ConsultationStatus}
|
|
1845
|
+
* @memberof ConsultationChangeLogModel
|
|
1846
|
+
*/
|
|
1847
|
+
'status'?: ConsultationStatus;
|
|
1848
|
+
/**
|
|
1849
|
+
*
|
|
1850
|
+
* @type {string}
|
|
1851
|
+
* @memberof ConsultationChangeLogModel
|
|
1852
|
+
*/
|
|
1853
|
+
'actorId'?: string;
|
|
1854
|
+
/**
|
|
1855
|
+
*
|
|
1856
|
+
* @type {Date}
|
|
1857
|
+
* @memberof ConsultationChangeLogModel
|
|
1858
|
+
*/
|
|
1859
|
+
'createdDate'?: Date;
|
|
1860
|
+
/**
|
|
1861
|
+
*
|
|
1862
|
+
* @type {string}
|
|
1863
|
+
* @memberof ConsultationChangeLogModel
|
|
1864
|
+
*/
|
|
1865
|
+
'actorName'?: string | null;
|
|
1866
|
+
}
|
|
1799
1867
|
/**
|
|
1800
1868
|
*
|
|
1801
1869
|
* @export
|
|
@@ -2313,6 +2381,12 @@ export interface ConsultationModel {
|
|
|
2313
2381
|
* @memberof ConsultationModel
|
|
2314
2382
|
*/
|
|
2315
2383
|
'completionRate'?: number;
|
|
2384
|
+
/**
|
|
2385
|
+
*
|
|
2386
|
+
* @type {Array<ConsultationChangeLogModel>}
|
|
2387
|
+
* @memberof ConsultationModel
|
|
2388
|
+
*/
|
|
2389
|
+
'statusChangeLogs'?: Array<ConsultationChangeLogModel> | null;
|
|
2316
2390
|
}
|
|
2317
2391
|
/**
|
|
2318
2392
|
*
|
|
@@ -2441,10 +2515,16 @@ export interface ContributorItemModel {
|
|
|
2441
2515
|
'order'?: number;
|
|
2442
2516
|
/**
|
|
2443
2517
|
*
|
|
2444
|
-
* @type {Array<
|
|
2518
|
+
* @type {Array<LocalizedUrlModel>}
|
|
2445
2519
|
* @memberof ContributorItemModel
|
|
2446
2520
|
*/
|
|
2447
|
-
'
|
|
2521
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
2522
|
+
/**
|
|
2523
|
+
*
|
|
2524
|
+
* @type {boolean}
|
|
2525
|
+
* @memberof ContributorItemModel
|
|
2526
|
+
*/
|
|
2527
|
+
'confirmed'?: boolean;
|
|
2448
2528
|
}
|
|
2449
2529
|
/**
|
|
2450
2530
|
*
|
|
@@ -2520,10 +2600,22 @@ export interface ContributorModel {
|
|
|
2520
2600
|
'order'?: number;
|
|
2521
2601
|
/**
|
|
2522
2602
|
*
|
|
2523
|
-
* @type {Array<
|
|
2603
|
+
* @type {Array<LocalizedUrlModel>}
|
|
2604
|
+
* @memberof ContributorModel
|
|
2605
|
+
*/
|
|
2606
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
2607
|
+
/**
|
|
2608
|
+
*
|
|
2609
|
+
* @type {boolean}
|
|
2610
|
+
* @memberof ContributorModel
|
|
2611
|
+
*/
|
|
2612
|
+
'confirmed'?: boolean;
|
|
2613
|
+
/**
|
|
2614
|
+
*
|
|
2615
|
+
* @type {string}
|
|
2524
2616
|
* @memberof ContributorModel
|
|
2525
2617
|
*/
|
|
2526
|
-
'
|
|
2618
|
+
'languageCode'?: string | null;
|
|
2527
2619
|
}
|
|
2528
2620
|
/**
|
|
2529
2621
|
*
|
|
@@ -3607,6 +3699,12 @@ export interface CreateFaqCommand {
|
|
|
3607
3699
|
* @memberof CreateFaqCommand
|
|
3608
3700
|
*/
|
|
3609
3701
|
'faqCategoryId'?: string | null;
|
|
3702
|
+
/**
|
|
3703
|
+
*
|
|
3704
|
+
* @type {string}
|
|
3705
|
+
* @memberof CreateFaqCommand
|
|
3706
|
+
*/
|
|
3707
|
+
'hospitalId'?: string;
|
|
3610
3708
|
}
|
|
3611
3709
|
/**
|
|
3612
3710
|
*
|
|
@@ -5889,6 +5987,12 @@ export interface FaqModel {
|
|
|
5889
5987
|
* @memberof FaqModel
|
|
5890
5988
|
*/
|
|
5891
5989
|
'confirmed'?: boolean;
|
|
5990
|
+
/**
|
|
5991
|
+
*
|
|
5992
|
+
* @type {string}
|
|
5993
|
+
* @memberof FaqModel
|
|
5994
|
+
*/
|
|
5995
|
+
'languageCode'?: string | null;
|
|
5892
5996
|
/**
|
|
5893
5997
|
*
|
|
5894
5998
|
* @type {Array<FaqCategoryBreadCrumbModel>}
|
|
@@ -6947,6 +7051,12 @@ export interface HospitalServiceModel {
|
|
|
6947
7051
|
* @memberof HospitalServiceModel
|
|
6948
7052
|
*/
|
|
6949
7053
|
'auditableEntity'?: AuditableEntity;
|
|
7054
|
+
/**
|
|
7055
|
+
*
|
|
7056
|
+
* @type {string}
|
|
7057
|
+
* @memberof HospitalServiceModel
|
|
7058
|
+
*/
|
|
7059
|
+
'languageCode'?: string | null;
|
|
6950
7060
|
}
|
|
6951
7061
|
/**
|
|
6952
7062
|
*
|
|
@@ -9087,6 +9197,12 @@ export interface SpecialtyModel {
|
|
|
9087
9197
|
* @memberof SpecialtyModel
|
|
9088
9198
|
*/
|
|
9089
9199
|
'auditableEntity'?: AuditableEntity;
|
|
9200
|
+
/**
|
|
9201
|
+
*
|
|
9202
|
+
* @type {string}
|
|
9203
|
+
* @memberof SpecialtyModel
|
|
9204
|
+
*/
|
|
9205
|
+
'languageCode'?: string | null;
|
|
9090
9206
|
}
|
|
9091
9207
|
/**
|
|
9092
9208
|
*
|
|
@@ -9233,6 +9349,12 @@ export interface SpecialtyTypeModel {
|
|
|
9233
9349
|
* @memberof SpecialtyTypeModel
|
|
9234
9350
|
*/
|
|
9235
9351
|
'confirmed'?: boolean;
|
|
9352
|
+
/**
|
|
9353
|
+
*
|
|
9354
|
+
* @type {string}
|
|
9355
|
+
* @memberof SpecialtyTypeModel
|
|
9356
|
+
*/
|
|
9357
|
+
'languageCode'?: string | null;
|
|
9236
9358
|
}
|
|
9237
9359
|
/**
|
|
9238
9360
|
*
|
|
@@ -9966,12 +10088,6 @@ export interface UpdateCountryCommand {
|
|
|
9966
10088
|
* @memberof UpdateCountryCommand
|
|
9967
10089
|
*/
|
|
9968
10090
|
'confirmed'?: boolean;
|
|
9969
|
-
/**
|
|
9970
|
-
*
|
|
9971
|
-
* @type {Array<MediaModel>}
|
|
9972
|
-
* @memberof UpdateCountryCommand
|
|
9973
|
-
*/
|
|
9974
|
-
'medias'?: Array<MediaModel> | null;
|
|
9975
10091
|
}
|
|
9976
10092
|
/**
|
|
9977
10093
|
*
|
|
@@ -10299,12 +10415,6 @@ export interface UpdateDoctorSpecialtyCommand {
|
|
|
10299
10415
|
* @interface UpdateFaqCategoryCommand
|
|
10300
10416
|
*/
|
|
10301
10417
|
export interface UpdateFaqCategoryCommand {
|
|
10302
|
-
/**
|
|
10303
|
-
*
|
|
10304
|
-
* @type {string}
|
|
10305
|
-
* @memberof UpdateFaqCategoryCommand
|
|
10306
|
-
*/
|
|
10307
|
-
'id'?: string | null;
|
|
10308
10418
|
/**
|
|
10309
10419
|
*
|
|
10310
10420
|
* @type {string}
|
|
@@ -10836,12 +10946,6 @@ export interface UpdatePlanCommand {
|
|
|
10836
10946
|
* @memberof UpdatePlanCommand
|
|
10837
10947
|
*/
|
|
10838
10948
|
'unitPrice'?: number;
|
|
10839
|
-
/**
|
|
10840
|
-
*
|
|
10841
|
-
* @type {string}
|
|
10842
|
-
* @memberof UpdatePlanCommand
|
|
10843
|
-
*/
|
|
10844
|
-
'stripePriceId'?: string | null;
|
|
10845
10949
|
/**
|
|
10846
10950
|
*
|
|
10847
10951
|
* @type {RecurringInterval}
|
|
@@ -13771,13 +13875,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
13771
13875
|
* @param {boolean} [isOpen]
|
|
13772
13876
|
* @param {boolean} [isCompleted]
|
|
13773
13877
|
* @param {ConsultationStatus} [status]
|
|
13878
|
+
* @param {ConsultationType} [consultationType]
|
|
13774
13879
|
* @param {number} [page]
|
|
13775
13880
|
* @param {number} [limit]
|
|
13776
13881
|
* @param {Date} [lastRetrieved]
|
|
13777
13882
|
* @param {*} [options] Override http request option.
|
|
13778
13883
|
* @throws {RequiredError}
|
|
13779
13884
|
*/
|
|
13780
|
-
apiV1ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13885
|
+
apiV1ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13781
13886
|
};
|
|
13782
13887
|
/**
|
|
13783
13888
|
* ConsultationsApi - functional programming interface
|
|
@@ -13833,13 +13938,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
13833
13938
|
* @param {boolean} [isOpen]
|
|
13834
13939
|
* @param {boolean} [isCompleted]
|
|
13835
13940
|
* @param {ConsultationStatus} [status]
|
|
13941
|
+
* @param {ConsultationType} [consultationType]
|
|
13836
13942
|
* @param {number} [page]
|
|
13837
13943
|
* @param {number} [limit]
|
|
13838
13944
|
* @param {Date} [lastRetrieved]
|
|
13839
13945
|
* @param {*} [options] Override http request option.
|
|
13840
13946
|
* @throws {RequiredError}
|
|
13841
13947
|
*/
|
|
13842
|
-
apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
|
|
13948
|
+
apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
|
|
13843
13949
|
};
|
|
13844
13950
|
/**
|
|
13845
13951
|
* ConsultationsApi - factory interface
|
|
@@ -13895,13 +14001,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
13895
14001
|
* @param {boolean} [isOpen]
|
|
13896
14002
|
* @param {boolean} [isCompleted]
|
|
13897
14003
|
* @param {ConsultationStatus} [status]
|
|
14004
|
+
* @param {ConsultationType} [consultationType]
|
|
13898
14005
|
* @param {number} [page]
|
|
13899
14006
|
* @param {number} [limit]
|
|
13900
14007
|
* @param {Date} [lastRetrieved]
|
|
13901
14008
|
* @param {*} [options] Override http request option.
|
|
13902
14009
|
* @throws {RequiredError}
|
|
13903
14010
|
*/
|
|
13904
|
-
apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
|
|
14011
|
+
apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
|
|
13905
14012
|
};
|
|
13906
14013
|
/**
|
|
13907
14014
|
* ConsultationsApi - object-oriented interface
|
|
@@ -13964,6 +14071,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
13964
14071
|
* @param {boolean} [isOpen]
|
|
13965
14072
|
* @param {boolean} [isCompleted]
|
|
13966
14073
|
* @param {ConsultationStatus} [status]
|
|
14074
|
+
* @param {ConsultationType} [consultationType]
|
|
13967
14075
|
* @param {number} [page]
|
|
13968
14076
|
* @param {number} [limit]
|
|
13969
14077
|
* @param {Date} [lastRetrieved]
|
|
@@ -13971,7 +14079,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
13971
14079
|
* @throws {RequiredError}
|
|
13972
14080
|
* @memberof ConsultationsApi
|
|
13973
14081
|
*/
|
|
13974
|
-
apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
|
|
14082
|
+
apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
|
|
13975
14083
|
}
|
|
13976
14084
|
/**
|
|
13977
14085
|
* ContributorsApi - axios parameter creator
|
|
@@ -14064,9 +14172,9 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
|
|
|
14064
14172
|
* @param {string} [email]
|
|
14065
14173
|
* @param {string} [description]
|
|
14066
14174
|
* @param {string} [website]
|
|
14067
|
-
* @param {string} [languageCode]
|
|
14068
14175
|
* @param {string} [hospitalId]
|
|
14069
14176
|
* @param {boolean} [interviewerOnly]
|
|
14177
|
+
* @param {string} [languageCode]
|
|
14070
14178
|
* @param {boolean} [showHidden]
|
|
14071
14179
|
* @param {number} [page]
|
|
14072
14180
|
* @param {number} [limit]
|
|
@@ -14074,7 +14182,7 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
|
|
|
14074
14182
|
* @param {*} [options] Override http request option.
|
|
14075
14183
|
* @throws {RequiredError}
|
|
14076
14184
|
*/
|
|
14077
|
-
apiV1ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined,
|
|
14185
|
+
apiV1ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14078
14186
|
/**
|
|
14079
14187
|
*
|
|
14080
14188
|
* @summary Create a Contributor.
|
|
@@ -14184,9 +14292,9 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
14184
14292
|
* @param {string} [email]
|
|
14185
14293
|
* @param {string} [description]
|
|
14186
14294
|
* @param {string} [website]
|
|
14187
|
-
* @param {string} [languageCode]
|
|
14188
14295
|
* @param {string} [hospitalId]
|
|
14189
14296
|
* @param {boolean} [interviewerOnly]
|
|
14297
|
+
* @param {string} [languageCode]
|
|
14190
14298
|
* @param {boolean} [showHidden]
|
|
14191
14299
|
* @param {number} [page]
|
|
14192
14300
|
* @param {number} [limit]
|
|
@@ -14194,7 +14302,7 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
14194
14302
|
* @param {*} [options] Override http request option.
|
|
14195
14303
|
* @throws {RequiredError}
|
|
14196
14304
|
*/
|
|
14197
|
-
apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined,
|
|
14305
|
+
apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | 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<ContributorsModel>>;
|
|
14198
14306
|
/**
|
|
14199
14307
|
*
|
|
14200
14308
|
* @summary Create a Contributor.
|
|
@@ -14304,9 +14412,9 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
|
|
|
14304
14412
|
* @param {string} [email]
|
|
14305
14413
|
* @param {string} [description]
|
|
14306
14414
|
* @param {string} [website]
|
|
14307
|
-
* @param {string} [languageCode]
|
|
14308
14415
|
* @param {string} [hospitalId]
|
|
14309
14416
|
* @param {boolean} [interviewerOnly]
|
|
14417
|
+
* @param {string} [languageCode]
|
|
14310
14418
|
* @param {boolean} [showHidden]
|
|
14311
14419
|
* @param {number} [page]
|
|
14312
14420
|
* @param {number} [limit]
|
|
@@ -14314,7 +14422,7 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
|
|
|
14314
14422
|
* @param {*} [options] Override http request option.
|
|
14315
14423
|
* @throws {RequiredError}
|
|
14316
14424
|
*/
|
|
14317
|
-
apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined,
|
|
14425
|
+
apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ContributorsModel>;
|
|
14318
14426
|
/**
|
|
14319
14427
|
*
|
|
14320
14428
|
* @summary Create a Contributor.
|
|
@@ -14434,9 +14542,9 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
14434
14542
|
* @param {string} [email]
|
|
14435
14543
|
* @param {string} [description]
|
|
14436
14544
|
* @param {string} [website]
|
|
14437
|
-
* @param {string} [languageCode]
|
|
14438
14545
|
* @param {string} [hospitalId]
|
|
14439
14546
|
* @param {boolean} [interviewerOnly]
|
|
14547
|
+
* @param {string} [languageCode]
|
|
14440
14548
|
* @param {boolean} [showHidden]
|
|
14441
14549
|
* @param {number} [page]
|
|
14442
14550
|
* @param {number} [limit]
|
|
@@ -14445,7 +14553,7 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
14445
14553
|
* @throws {RequiredError}
|
|
14446
14554
|
* @memberof ContributorsApi
|
|
14447
14555
|
*/
|
|
14448
|
-
apiV1ContributorsGet(id?: string, name?: string, email?: string, description?: string, website?: string,
|
|
14556
|
+
apiV1ContributorsGet(id?: string, name?: string, email?: string, description?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorsModel>>;
|
|
14449
14557
|
/**
|
|
14450
14558
|
*
|
|
14451
14559
|
* @summary Create a Contributor.
|
|
@@ -17796,14 +17904,17 @@ export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
17796
17904
|
* @param {string} [title]
|
|
17797
17905
|
* @param {string} [content]
|
|
17798
17906
|
* @param {string} [categoryId]
|
|
17907
|
+
* @param {string} [hospitalId]
|
|
17908
|
+
* @param {string} [hospitalName]
|
|
17799
17909
|
* @param {string} [languageCode]
|
|
17910
|
+
* @param {boolean} [showHidden]
|
|
17800
17911
|
* @param {number} [page]
|
|
17801
17912
|
* @param {number} [limit]
|
|
17802
17913
|
* @param {Date} [lastRetrieved]
|
|
17803
17914
|
* @param {*} [options] Override http request option.
|
|
17804
17915
|
* @throws {RequiredError}
|
|
17805
17916
|
*/
|
|
17806
|
-
apiV1FaqsGet: (id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17917
|
+
apiV1FaqsGet: (id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17807
17918
|
/**
|
|
17808
17919
|
*
|
|
17809
17920
|
* @summary Create a faq.
|
|
@@ -17910,14 +18021,17 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
17910
18021
|
* @param {string} [title]
|
|
17911
18022
|
* @param {string} [content]
|
|
17912
18023
|
* @param {string} [categoryId]
|
|
18024
|
+
* @param {string} [hospitalId]
|
|
18025
|
+
* @param {string} [hospitalName]
|
|
17913
18026
|
* @param {string} [languageCode]
|
|
18027
|
+
* @param {boolean} [showHidden]
|
|
17914
18028
|
* @param {number} [page]
|
|
17915
18029
|
* @param {number} [limit]
|
|
17916
18030
|
* @param {Date} [lastRetrieved]
|
|
17917
18031
|
* @param {*} [options] Override http request option.
|
|
17918
18032
|
* @throws {RequiredError}
|
|
17919
18033
|
*/
|
|
17920
|
-
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqsModel>>;
|
|
18034
|
+
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: 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<FaqsModel>>;
|
|
17921
18035
|
/**
|
|
17922
18036
|
*
|
|
17923
18037
|
* @summary Create a faq.
|
|
@@ -18024,14 +18138,17 @@ export declare const FaqsApiFactory: (configuration?: Configuration | undefined,
|
|
|
18024
18138
|
* @param {string} [title]
|
|
18025
18139
|
* @param {string} [content]
|
|
18026
18140
|
* @param {string} [categoryId]
|
|
18141
|
+
* @param {string} [hospitalId]
|
|
18142
|
+
* @param {string} [hospitalName]
|
|
18027
18143
|
* @param {string} [languageCode]
|
|
18144
|
+
* @param {boolean} [showHidden]
|
|
18028
18145
|
* @param {number} [page]
|
|
18029
18146
|
* @param {number} [limit]
|
|
18030
18147
|
* @param {Date} [lastRetrieved]
|
|
18031
18148
|
* @param {*} [options] Override http request option.
|
|
18032
18149
|
* @throws {RequiredError}
|
|
18033
18150
|
*/
|
|
18034
|
-
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
|
|
18151
|
+
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
|
|
18035
18152
|
/**
|
|
18036
18153
|
*
|
|
18037
18154
|
* @summary Create a faq.
|
|
@@ -18148,7 +18265,10 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
18148
18265
|
* @param {string} [title]
|
|
18149
18266
|
* @param {string} [content]
|
|
18150
18267
|
* @param {string} [categoryId]
|
|
18268
|
+
* @param {string} [hospitalId]
|
|
18269
|
+
* @param {string} [hospitalName]
|
|
18151
18270
|
* @param {string} [languageCode]
|
|
18271
|
+
* @param {boolean} [showHidden]
|
|
18152
18272
|
* @param {number} [page]
|
|
18153
18273
|
* @param {number} [limit]
|
|
18154
18274
|
* @param {Date} [lastRetrieved]
|
|
@@ -18156,7 +18276,7 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
18156
18276
|
* @throws {RequiredError}
|
|
18157
18277
|
* @memberof FaqsApi
|
|
18158
18278
|
*/
|
|
18159
|
-
apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel>>;
|
|
18279
|
+
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<import("axios").AxiosResponse<FaqsModel>>;
|
|
18160
18280
|
/**
|
|
18161
18281
|
*
|
|
18162
18282
|
* @summary Create a faq.
|