ch-api-client-typescript2 4.7.9 → 4.8.2
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 +482 -34
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +325 -50
- package/package.json +1 -1
- package/src/api.ts +606 -53
package/lib/api.d.ts
CHANGED
|
@@ -3311,6 +3311,12 @@ export interface CreateProfileCommand {
|
|
|
3311
3311
|
* @memberof CreateProfileCommand
|
|
3312
3312
|
*/
|
|
3313
3313
|
'lastName'?: string | null;
|
|
3314
|
+
/**
|
|
3315
|
+
*
|
|
3316
|
+
* @type {string}
|
|
3317
|
+
* @memberof CreateProfileCommand
|
|
3318
|
+
*/
|
|
3319
|
+
'phoneCountryCode'?: string | null;
|
|
3314
3320
|
/**
|
|
3315
3321
|
*
|
|
3316
3322
|
* @type {string}
|
|
@@ -3365,12 +3371,6 @@ export interface CreateProfileCommand {
|
|
|
3365
3371
|
* @memberof CreateProfileCommand
|
|
3366
3372
|
*/
|
|
3367
3373
|
'hospitalId'?: string;
|
|
3368
|
-
/**
|
|
3369
|
-
*
|
|
3370
|
-
* @type {number}
|
|
3371
|
-
* @memberof CreateProfileCommand
|
|
3372
|
-
*/
|
|
3373
|
-
'userType'?: number;
|
|
3374
3374
|
}
|
|
3375
3375
|
/**
|
|
3376
3376
|
*
|
|
@@ -3427,6 +3427,37 @@ export interface CreateServiceReviewCommand {
|
|
|
3427
3427
|
*/
|
|
3428
3428
|
'reviewType'?: ReviewType;
|
|
3429
3429
|
}
|
|
3430
|
+
/**
|
|
3431
|
+
*
|
|
3432
|
+
* @export
|
|
3433
|
+
* @interface CreateSurveyResultCommand
|
|
3434
|
+
*/
|
|
3435
|
+
export interface CreateSurveyResultCommand {
|
|
3436
|
+
/**
|
|
3437
|
+
*
|
|
3438
|
+
* @type {string}
|
|
3439
|
+
* @memberof CreateSurveyResultCommand
|
|
3440
|
+
*/
|
|
3441
|
+
'surveyFormId'?: string;
|
|
3442
|
+
/**
|
|
3443
|
+
*
|
|
3444
|
+
* @type {string}
|
|
3445
|
+
* @memberof CreateSurveyResultCommand
|
|
3446
|
+
*/
|
|
3447
|
+
'hospitalId'?: string;
|
|
3448
|
+
/**
|
|
3449
|
+
*
|
|
3450
|
+
* @type {string}
|
|
3451
|
+
* @memberof CreateSurveyResultCommand
|
|
3452
|
+
*/
|
|
3453
|
+
'languageCode'?: string | null;
|
|
3454
|
+
/**
|
|
3455
|
+
*
|
|
3456
|
+
* @type {Array<SurveyResultElementInputModel>}
|
|
3457
|
+
* @memberof CreateSurveyResultCommand
|
|
3458
|
+
*/
|
|
3459
|
+
'elements'?: Array<SurveyResultElementInputModel> | null;
|
|
3460
|
+
}
|
|
3430
3461
|
/**
|
|
3431
3462
|
*
|
|
3432
3463
|
* @export
|
|
@@ -4957,6 +4988,12 @@ export interface DoctorModel {
|
|
|
4957
4988
|
* @memberof DoctorModel
|
|
4958
4989
|
*/
|
|
4959
4990
|
'auditableEntity'?: AuditableEntity;
|
|
4991
|
+
/**
|
|
4992
|
+
*
|
|
4993
|
+
* @type {string}
|
|
4994
|
+
* @memberof DoctorModel
|
|
4995
|
+
*/
|
|
4996
|
+
'phoneCountryCode'?: string | null;
|
|
4960
4997
|
/**
|
|
4961
4998
|
*
|
|
4962
4999
|
* @type {string}
|
|
@@ -8306,6 +8343,12 @@ export interface PatientModel {
|
|
|
8306
8343
|
* @memberof PatientModel
|
|
8307
8344
|
*/
|
|
8308
8345
|
'auditableEntity'?: AuditableEntity;
|
|
8346
|
+
/**
|
|
8347
|
+
*
|
|
8348
|
+
* @type {string}
|
|
8349
|
+
* @memberof PatientModel
|
|
8350
|
+
*/
|
|
8351
|
+
'phoneCountryCode'?: string | null;
|
|
8309
8352
|
/**
|
|
8310
8353
|
*
|
|
8311
8354
|
* @type {string}
|
|
@@ -10043,6 +10086,281 @@ export interface SubscriptionModel {
|
|
|
10043
10086
|
*/
|
|
10044
10087
|
'status'?: string | null;
|
|
10045
10088
|
}
|
|
10089
|
+
/**
|
|
10090
|
+
*
|
|
10091
|
+
* @export
|
|
10092
|
+
* @interface SurveyFormElementModel
|
|
10093
|
+
*/
|
|
10094
|
+
export interface SurveyFormElementModel {
|
|
10095
|
+
/**
|
|
10096
|
+
*
|
|
10097
|
+
* @type {string}
|
|
10098
|
+
* @memberof SurveyFormElementModel
|
|
10099
|
+
*/
|
|
10100
|
+
'id'?: string;
|
|
10101
|
+
/**
|
|
10102
|
+
*
|
|
10103
|
+
* @type {SurveyFormElementTypes}
|
|
10104
|
+
* @memberof SurveyFormElementModel
|
|
10105
|
+
*/
|
|
10106
|
+
'elementType'?: SurveyFormElementTypes;
|
|
10107
|
+
/**
|
|
10108
|
+
*
|
|
10109
|
+
* @type {string}
|
|
10110
|
+
* @memberof SurveyFormElementModel
|
|
10111
|
+
*/
|
|
10112
|
+
'formInputName'?: string | null;
|
|
10113
|
+
/**
|
|
10114
|
+
*
|
|
10115
|
+
* @type {boolean}
|
|
10116
|
+
* @memberof SurveyFormElementModel
|
|
10117
|
+
*/
|
|
10118
|
+
'isRequired'?: boolean;
|
|
10119
|
+
/**
|
|
10120
|
+
*
|
|
10121
|
+
* @type {boolean}
|
|
10122
|
+
* @memberof SurveyFormElementModel
|
|
10123
|
+
*/
|
|
10124
|
+
'isHidden'?: boolean;
|
|
10125
|
+
/**
|
|
10126
|
+
*
|
|
10127
|
+
* @type {number}
|
|
10128
|
+
* @memberof SurveyFormElementModel
|
|
10129
|
+
*/
|
|
10130
|
+
'order'?: number;
|
|
10131
|
+
/**
|
|
10132
|
+
*
|
|
10133
|
+
* @type {string}
|
|
10134
|
+
* @memberof SurveyFormElementModel
|
|
10135
|
+
*/
|
|
10136
|
+
'languageCode'?: string | null;
|
|
10137
|
+
/**
|
|
10138
|
+
*
|
|
10139
|
+
* @type {string}
|
|
10140
|
+
* @memberof SurveyFormElementModel
|
|
10141
|
+
*/
|
|
10142
|
+
'name'?: string | null;
|
|
10143
|
+
/**
|
|
10144
|
+
*
|
|
10145
|
+
* @type {string}
|
|
10146
|
+
* @memberof SurveyFormElementModel
|
|
10147
|
+
*/
|
|
10148
|
+
'placeholder'?: string | null;
|
|
10149
|
+
/**
|
|
10150
|
+
*
|
|
10151
|
+
* @type {Array<SurveyFormElementOptionModel>}
|
|
10152
|
+
* @memberof SurveyFormElementModel
|
|
10153
|
+
*/
|
|
10154
|
+
'options'?: Array<SurveyFormElementOptionModel> | null;
|
|
10155
|
+
}
|
|
10156
|
+
/**
|
|
10157
|
+
*
|
|
10158
|
+
* @export
|
|
10159
|
+
* @interface SurveyFormElementOptionModel
|
|
10160
|
+
*/
|
|
10161
|
+
export interface SurveyFormElementOptionModel {
|
|
10162
|
+
/**
|
|
10163
|
+
*
|
|
10164
|
+
* @type {string}
|
|
10165
|
+
* @memberof SurveyFormElementOptionModel
|
|
10166
|
+
*/
|
|
10167
|
+
'id'?: string;
|
|
10168
|
+
/**
|
|
10169
|
+
*
|
|
10170
|
+
* @type {string}
|
|
10171
|
+
* @memberof SurveyFormElementOptionModel
|
|
10172
|
+
*/
|
|
10173
|
+
'surveyFormElementId'?: string;
|
|
10174
|
+
/**
|
|
10175
|
+
*
|
|
10176
|
+
* @type {string}
|
|
10177
|
+
* @memberof SurveyFormElementOptionModel
|
|
10178
|
+
*/
|
|
10179
|
+
'value'?: string | null;
|
|
10180
|
+
/**
|
|
10181
|
+
*
|
|
10182
|
+
* @type {boolean}
|
|
10183
|
+
* @memberof SurveyFormElementOptionModel
|
|
10184
|
+
*/
|
|
10185
|
+
'needAdditionalValue'?: boolean;
|
|
10186
|
+
/**
|
|
10187
|
+
*
|
|
10188
|
+
* @type {number}
|
|
10189
|
+
* @memberof SurveyFormElementOptionModel
|
|
10190
|
+
*/
|
|
10191
|
+
'order'?: number;
|
|
10192
|
+
/**
|
|
10193
|
+
*
|
|
10194
|
+
* @type {string}
|
|
10195
|
+
* @memberof SurveyFormElementOptionModel
|
|
10196
|
+
*/
|
|
10197
|
+
'languageCode'?: string | null;
|
|
10198
|
+
/**
|
|
10199
|
+
*
|
|
10200
|
+
* @type {string}
|
|
10201
|
+
* @memberof SurveyFormElementOptionModel
|
|
10202
|
+
*/
|
|
10203
|
+
'name'?: string | null;
|
|
10204
|
+
}
|
|
10205
|
+
/**
|
|
10206
|
+
*
|
|
10207
|
+
* @export
|
|
10208
|
+
* @enum {string}
|
|
10209
|
+
*/
|
|
10210
|
+
export declare const SurveyFormElementTypes: {
|
|
10211
|
+
readonly SingleLineText: "SingleLineText";
|
|
10212
|
+
readonly MultiLineText: "MultiLineText";
|
|
10213
|
+
readonly Email: "Email";
|
|
10214
|
+
readonly DateTime: "DateTime";
|
|
10215
|
+
readonly Date: "Date";
|
|
10216
|
+
readonly Time: "Time";
|
|
10217
|
+
readonly NumberInteger: "NumberInteger";
|
|
10218
|
+
readonly NumberFloat: "NumberFloat";
|
|
10219
|
+
readonly Select: "Select";
|
|
10220
|
+
readonly Checkbox: "Checkbox";
|
|
10221
|
+
readonly Radio: "Radio";
|
|
10222
|
+
readonly File: "File";
|
|
10223
|
+
};
|
|
10224
|
+
export type SurveyFormElementTypes = typeof SurveyFormElementTypes[keyof typeof SurveyFormElementTypes];
|
|
10225
|
+
/**
|
|
10226
|
+
*
|
|
10227
|
+
* @export
|
|
10228
|
+
* @interface SurveyFormModel
|
|
10229
|
+
*/
|
|
10230
|
+
export interface SurveyFormModel {
|
|
10231
|
+
/**
|
|
10232
|
+
*
|
|
10233
|
+
* @type {string}
|
|
10234
|
+
* @memberof SurveyFormModel
|
|
10235
|
+
*/
|
|
10236
|
+
'id'?: string;
|
|
10237
|
+
/**
|
|
10238
|
+
*
|
|
10239
|
+
* @type {string}
|
|
10240
|
+
* @memberof SurveyFormModel
|
|
10241
|
+
*/
|
|
10242
|
+
'hospitalId'?: string;
|
|
10243
|
+
/**
|
|
10244
|
+
*
|
|
10245
|
+
* @type {string}
|
|
10246
|
+
* @memberof SurveyFormModel
|
|
10247
|
+
*/
|
|
10248
|
+
'hospitalName'?: string | null;
|
|
10249
|
+
/**
|
|
10250
|
+
*
|
|
10251
|
+
* @type {string}
|
|
10252
|
+
* @memberof SurveyFormModel
|
|
10253
|
+
*/
|
|
10254
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
10255
|
+
/**
|
|
10256
|
+
*
|
|
10257
|
+
* @type {string}
|
|
10258
|
+
* @memberof SurveyFormModel
|
|
10259
|
+
*/
|
|
10260
|
+
'hospitalLogo'?: string | null;
|
|
10261
|
+
/**
|
|
10262
|
+
*
|
|
10263
|
+
* @type {SurveyFormStatus}
|
|
10264
|
+
* @memberof SurveyFormModel
|
|
10265
|
+
*/
|
|
10266
|
+
'status'?: SurveyFormStatus;
|
|
10267
|
+
/**
|
|
10268
|
+
*
|
|
10269
|
+
* @type {string}
|
|
10270
|
+
* @memberof SurveyFormModel
|
|
10271
|
+
*/
|
|
10272
|
+
'languageCode'?: string | null;
|
|
10273
|
+
/**
|
|
10274
|
+
*
|
|
10275
|
+
* @type {string}
|
|
10276
|
+
* @memberof SurveyFormModel
|
|
10277
|
+
*/
|
|
10278
|
+
'name'?: string | null;
|
|
10279
|
+
/**
|
|
10280
|
+
*
|
|
10281
|
+
* @type {string}
|
|
10282
|
+
* @memberof SurveyFormModel
|
|
10283
|
+
*/
|
|
10284
|
+
'description'?: string | null;
|
|
10285
|
+
/**
|
|
10286
|
+
*
|
|
10287
|
+
* @type {string}
|
|
10288
|
+
* @memberof SurveyFormModel
|
|
10289
|
+
*/
|
|
10290
|
+
'overview'?: string | null;
|
|
10291
|
+
/**
|
|
10292
|
+
*
|
|
10293
|
+
* @type {string}
|
|
10294
|
+
* @memberof SurveyFormModel
|
|
10295
|
+
*/
|
|
10296
|
+
'content'?: string | null;
|
|
10297
|
+
/**
|
|
10298
|
+
*
|
|
10299
|
+
* @type {Array<SurveyFormElementModel>}
|
|
10300
|
+
* @memberof SurveyFormModel
|
|
10301
|
+
*/
|
|
10302
|
+
'elements'?: Array<SurveyFormElementModel> | null;
|
|
10303
|
+
}
|
|
10304
|
+
/**
|
|
10305
|
+
*
|
|
10306
|
+
* @export
|
|
10307
|
+
* @enum {string}
|
|
10308
|
+
*/
|
|
10309
|
+
export declare const SurveyFormStatus: {
|
|
10310
|
+
readonly Draft: "Draft";
|
|
10311
|
+
readonly Active: "Active";
|
|
10312
|
+
};
|
|
10313
|
+
export type SurveyFormStatus = typeof SurveyFormStatus[keyof typeof SurveyFormStatus];
|
|
10314
|
+
/**
|
|
10315
|
+
*
|
|
10316
|
+
* @export
|
|
10317
|
+
* @interface SurveyResultElementInputModel
|
|
10318
|
+
*/
|
|
10319
|
+
export interface SurveyResultElementInputModel {
|
|
10320
|
+
/**
|
|
10321
|
+
*
|
|
10322
|
+
* @type {string}
|
|
10323
|
+
* @memberof SurveyResultElementInputModel
|
|
10324
|
+
*/
|
|
10325
|
+
'label'?: string | null;
|
|
10326
|
+
/**
|
|
10327
|
+
*
|
|
10328
|
+
* @type {number}
|
|
10329
|
+
* @memberof SurveyResultElementInputModel
|
|
10330
|
+
*/
|
|
10331
|
+
'order'?: number;
|
|
10332
|
+
/**
|
|
10333
|
+
*
|
|
10334
|
+
* @type {Array<SurveyResultElementValueInputModel>}
|
|
10335
|
+
* @memberof SurveyResultElementInputModel
|
|
10336
|
+
*/
|
|
10337
|
+
'values'?: Array<SurveyResultElementValueInputModel> | null;
|
|
10338
|
+
}
|
|
10339
|
+
/**
|
|
10340
|
+
*
|
|
10341
|
+
* @export
|
|
10342
|
+
* @interface SurveyResultElementValueInputModel
|
|
10343
|
+
*/
|
|
10344
|
+
export interface SurveyResultElementValueInputModel {
|
|
10345
|
+
/**
|
|
10346
|
+
*
|
|
10347
|
+
* @type {string}
|
|
10348
|
+
* @memberof SurveyResultElementValueInputModel
|
|
10349
|
+
*/
|
|
10350
|
+
'value'?: string | null;
|
|
10351
|
+
/**
|
|
10352
|
+
*
|
|
10353
|
+
* @type {string}
|
|
10354
|
+
* @memberof SurveyResultElementValueInputModel
|
|
10355
|
+
*/
|
|
10356
|
+
'additionalValue'?: string | null;
|
|
10357
|
+
/**
|
|
10358
|
+
*
|
|
10359
|
+
* @type {number}
|
|
10360
|
+
* @memberof SurveyResultElementValueInputModel
|
|
10361
|
+
*/
|
|
10362
|
+
'order'?: number;
|
|
10363
|
+
}
|
|
10046
10364
|
/**
|
|
10047
10365
|
*
|
|
10048
10366
|
* @export
|
|
@@ -10527,6 +10845,12 @@ export interface UpdateProfileCommand {
|
|
|
10527
10845
|
* @memberof UpdateProfileCommand
|
|
10528
10846
|
*/
|
|
10529
10847
|
'lastName'?: string | null;
|
|
10848
|
+
/**
|
|
10849
|
+
*
|
|
10850
|
+
* @type {string}
|
|
10851
|
+
* @memberof UpdateProfileCommand
|
|
10852
|
+
*/
|
|
10853
|
+
'phoneCountryCode'?: string | null;
|
|
10530
10854
|
/**
|
|
10531
10855
|
*
|
|
10532
10856
|
* @type {string}
|
|
@@ -10811,6 +11135,12 @@ export interface UserModel {
|
|
|
10811
11135
|
* @memberof UserModel
|
|
10812
11136
|
*/
|
|
10813
11137
|
'auditableEntity'?: AuditableEntity;
|
|
11138
|
+
/**
|
|
11139
|
+
*
|
|
11140
|
+
* @type {string}
|
|
11141
|
+
* @memberof UserModel
|
|
11142
|
+
*/
|
|
11143
|
+
'phoneCountryCode'?: string | null;
|
|
10814
11144
|
/**
|
|
10815
11145
|
*
|
|
10816
11146
|
* @type {string}
|
|
@@ -18771,21 +19101,20 @@ export declare const ProfilesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
18771
19101
|
apiV2ProfilesGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18772
19102
|
/**
|
|
18773
19103
|
*
|
|
18774
|
-
* @summary
|
|
18775
|
-
* @param {
|
|
18776
|
-
* @param {string} patientId
|
|
19104
|
+
* @summary Create a Profile.
|
|
19105
|
+
* @param {CreateProfileCommand} [createProfileCommand]
|
|
18777
19106
|
* @param {*} [options] Override http request option.
|
|
18778
19107
|
* @throws {RequiredError}
|
|
18779
19108
|
*/
|
|
18780
|
-
|
|
19109
|
+
apiV2ProfilesPost: (createProfileCommand?: CreateProfileCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18781
19110
|
/**
|
|
18782
19111
|
*
|
|
18783
|
-
* @summary
|
|
18784
|
-
* @param {
|
|
19112
|
+
* @summary Delete Profile.
|
|
19113
|
+
* @param {string} profileId
|
|
18785
19114
|
* @param {*} [options] Override http request option.
|
|
18786
19115
|
* @throws {RequiredError}
|
|
18787
19116
|
*/
|
|
18788
|
-
|
|
19117
|
+
apiV2ProfilesProfileIdDelete: (profileId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18789
19118
|
/**
|
|
18790
19119
|
*
|
|
18791
19120
|
* @summary Update Profile.
|
|
@@ -18825,21 +19154,20 @@ export declare const ProfilesApiFp: (configuration?: Configuration) => {
|
|
|
18825
19154
|
apiV2ProfilesGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserModel>>;
|
|
18826
19155
|
/**
|
|
18827
19156
|
*
|
|
18828
|
-
* @summary
|
|
18829
|
-
* @param {
|
|
18830
|
-
* @param {string} patientId
|
|
19157
|
+
* @summary Create a Profile.
|
|
19158
|
+
* @param {CreateProfileCommand} [createProfileCommand]
|
|
18831
19159
|
* @param {*} [options] Override http request option.
|
|
18832
19160
|
* @throws {RequiredError}
|
|
18833
19161
|
*/
|
|
18834
|
-
|
|
19162
|
+
apiV2ProfilesPost(createProfileCommand?: CreateProfileCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserModel>>;
|
|
18835
19163
|
/**
|
|
18836
19164
|
*
|
|
18837
|
-
* @summary
|
|
18838
|
-
* @param {
|
|
19165
|
+
* @summary Delete Profile.
|
|
19166
|
+
* @param {string} profileId
|
|
18839
19167
|
* @param {*} [options] Override http request option.
|
|
18840
19168
|
* @throws {RequiredError}
|
|
18841
19169
|
*/
|
|
18842
|
-
|
|
19170
|
+
apiV2ProfilesProfileIdDelete(profileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
18843
19171
|
/**
|
|
18844
19172
|
*
|
|
18845
19173
|
* @summary Update Profile.
|
|
@@ -18879,21 +19207,20 @@ export declare const ProfilesApiFactory: (configuration?: Configuration, basePat
|
|
|
18879
19207
|
apiV2ProfilesGet(options?: any): AxiosPromise<UserModel>;
|
|
18880
19208
|
/**
|
|
18881
19209
|
*
|
|
18882
|
-
* @summary
|
|
18883
|
-
* @param {
|
|
18884
|
-
* @param {string} patientId
|
|
19210
|
+
* @summary Create a Profile.
|
|
19211
|
+
* @param {CreateProfileCommand} [createProfileCommand]
|
|
18885
19212
|
* @param {*} [options] Override http request option.
|
|
18886
19213
|
* @throws {RequiredError}
|
|
18887
19214
|
*/
|
|
18888
|
-
|
|
19215
|
+
apiV2ProfilesPost(createProfileCommand?: CreateProfileCommand, options?: any): AxiosPromise<UserModel>;
|
|
18889
19216
|
/**
|
|
18890
19217
|
*
|
|
18891
|
-
* @summary
|
|
18892
|
-
* @param {
|
|
19218
|
+
* @summary Delete Profile.
|
|
19219
|
+
* @param {string} profileId
|
|
18893
19220
|
* @param {*} [options] Override http request option.
|
|
18894
19221
|
* @throws {RequiredError}
|
|
18895
19222
|
*/
|
|
18896
|
-
|
|
19223
|
+
apiV2ProfilesProfileIdDelete(profileId: string, options?: any): AxiosPromise<boolean>;
|
|
18897
19224
|
/**
|
|
18898
19225
|
*
|
|
18899
19226
|
* @summary Update Profile.
|
|
@@ -18938,23 +19265,22 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
18938
19265
|
apiV2ProfilesGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel, any>>;
|
|
18939
19266
|
/**
|
|
18940
19267
|
*
|
|
18941
|
-
* @summary
|
|
18942
|
-
* @param {
|
|
18943
|
-
* @param {string} patientId
|
|
19268
|
+
* @summary Create a Profile.
|
|
19269
|
+
* @param {CreateProfileCommand} [createProfileCommand]
|
|
18944
19270
|
* @param {*} [options] Override http request option.
|
|
18945
19271
|
* @throws {RequiredError}
|
|
18946
19272
|
* @memberof ProfilesApi
|
|
18947
19273
|
*/
|
|
18948
|
-
|
|
19274
|
+
apiV2ProfilesPost(createProfileCommand?: CreateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel, any>>;
|
|
18949
19275
|
/**
|
|
18950
19276
|
*
|
|
18951
|
-
* @summary
|
|
18952
|
-
* @param {
|
|
19277
|
+
* @summary Delete Profile.
|
|
19278
|
+
* @param {string} profileId
|
|
18953
19279
|
* @param {*} [options] Override http request option.
|
|
18954
19280
|
* @throws {RequiredError}
|
|
18955
19281
|
* @memberof ProfilesApi
|
|
18956
19282
|
*/
|
|
18957
|
-
|
|
19283
|
+
apiV2ProfilesProfileIdDelete(profileId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
18958
19284
|
/**
|
|
18959
19285
|
*
|
|
18960
19286
|
* @summary Update Profile.
|
|
@@ -20478,6 +20804,128 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
20478
20804
|
*/
|
|
20479
20805
|
apiV2SpecialtytypesSpecialtyTypeIdMediasMediaIdGet(specialtyTypeId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
20480
20806
|
}
|
|
20807
|
+
/**
|
|
20808
|
+
* SurveyFormsApi - axios parameter creator
|
|
20809
|
+
* @export
|
|
20810
|
+
*/
|
|
20811
|
+
export declare const SurveyFormsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20812
|
+
/**
|
|
20813
|
+
*
|
|
20814
|
+
* @summary Get survey form by id
|
|
20815
|
+
* @param {string} surveyFormId
|
|
20816
|
+
* @param {string} [languageCode]
|
|
20817
|
+
* @param {*} [options] Override http request option.
|
|
20818
|
+
* @throws {RequiredError}
|
|
20819
|
+
*/
|
|
20820
|
+
apiV2SurveyformsSurveyFormIdGet: (surveyFormId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20821
|
+
};
|
|
20822
|
+
/**
|
|
20823
|
+
* SurveyFormsApi - functional programming interface
|
|
20824
|
+
* @export
|
|
20825
|
+
*/
|
|
20826
|
+
export declare const SurveyFormsApiFp: (configuration?: Configuration) => {
|
|
20827
|
+
/**
|
|
20828
|
+
*
|
|
20829
|
+
* @summary Get survey form by id
|
|
20830
|
+
* @param {string} surveyFormId
|
|
20831
|
+
* @param {string} [languageCode]
|
|
20832
|
+
* @param {*} [options] Override http request option.
|
|
20833
|
+
* @throws {RequiredError}
|
|
20834
|
+
*/
|
|
20835
|
+
apiV2SurveyformsSurveyFormIdGet(surveyFormId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyFormModel>>;
|
|
20836
|
+
};
|
|
20837
|
+
/**
|
|
20838
|
+
* SurveyFormsApi - factory interface
|
|
20839
|
+
* @export
|
|
20840
|
+
*/
|
|
20841
|
+
export declare const SurveyFormsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
20842
|
+
/**
|
|
20843
|
+
*
|
|
20844
|
+
* @summary Get survey form by id
|
|
20845
|
+
* @param {string} surveyFormId
|
|
20846
|
+
* @param {string} [languageCode]
|
|
20847
|
+
* @param {*} [options] Override http request option.
|
|
20848
|
+
* @throws {RequiredError}
|
|
20849
|
+
*/
|
|
20850
|
+
apiV2SurveyformsSurveyFormIdGet(surveyFormId: string, languageCode?: string, options?: any): AxiosPromise<SurveyFormModel>;
|
|
20851
|
+
};
|
|
20852
|
+
/**
|
|
20853
|
+
* SurveyFormsApi - object-oriented interface
|
|
20854
|
+
* @export
|
|
20855
|
+
* @class SurveyFormsApi
|
|
20856
|
+
* @extends {BaseAPI}
|
|
20857
|
+
*/
|
|
20858
|
+
export declare class SurveyFormsApi extends BaseAPI {
|
|
20859
|
+
/**
|
|
20860
|
+
*
|
|
20861
|
+
* @summary Get survey form by id
|
|
20862
|
+
* @param {string} surveyFormId
|
|
20863
|
+
* @param {string} [languageCode]
|
|
20864
|
+
* @param {*} [options] Override http request option.
|
|
20865
|
+
* @throws {RequiredError}
|
|
20866
|
+
* @memberof SurveyFormsApi
|
|
20867
|
+
*/
|
|
20868
|
+
apiV2SurveyformsSurveyFormIdGet(surveyFormId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SurveyFormModel, any>>;
|
|
20869
|
+
}
|
|
20870
|
+
/**
|
|
20871
|
+
* SurveyResultsApi - axios parameter creator
|
|
20872
|
+
* @export
|
|
20873
|
+
*/
|
|
20874
|
+
export declare const SurveyResultsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20875
|
+
/**
|
|
20876
|
+
*
|
|
20877
|
+
* @summary Create survey result
|
|
20878
|
+
* @param {CreateSurveyResultCommand} [createSurveyResultCommand]
|
|
20879
|
+
* @param {*} [options] Override http request option.
|
|
20880
|
+
* @throws {RequiredError}
|
|
20881
|
+
*/
|
|
20882
|
+
apiV2SurveyresultsPost: (createSurveyResultCommand?: CreateSurveyResultCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20883
|
+
};
|
|
20884
|
+
/**
|
|
20885
|
+
* SurveyResultsApi - functional programming interface
|
|
20886
|
+
* @export
|
|
20887
|
+
*/
|
|
20888
|
+
export declare const SurveyResultsApiFp: (configuration?: Configuration) => {
|
|
20889
|
+
/**
|
|
20890
|
+
*
|
|
20891
|
+
* @summary Create survey result
|
|
20892
|
+
* @param {CreateSurveyResultCommand} [createSurveyResultCommand]
|
|
20893
|
+
* @param {*} [options] Override http request option.
|
|
20894
|
+
* @throws {RequiredError}
|
|
20895
|
+
*/
|
|
20896
|
+
apiV2SurveyresultsPost(createSurveyResultCommand?: CreateSurveyResultCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
20897
|
+
};
|
|
20898
|
+
/**
|
|
20899
|
+
* SurveyResultsApi - factory interface
|
|
20900
|
+
* @export
|
|
20901
|
+
*/
|
|
20902
|
+
export declare const SurveyResultsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
20903
|
+
/**
|
|
20904
|
+
*
|
|
20905
|
+
* @summary Create survey result
|
|
20906
|
+
* @param {CreateSurveyResultCommand} [createSurveyResultCommand]
|
|
20907
|
+
* @param {*} [options] Override http request option.
|
|
20908
|
+
* @throws {RequiredError}
|
|
20909
|
+
*/
|
|
20910
|
+
apiV2SurveyresultsPost(createSurveyResultCommand?: CreateSurveyResultCommand, options?: any): AxiosPromise<boolean>;
|
|
20911
|
+
};
|
|
20912
|
+
/**
|
|
20913
|
+
* SurveyResultsApi - object-oriented interface
|
|
20914
|
+
* @export
|
|
20915
|
+
* @class SurveyResultsApi
|
|
20916
|
+
* @extends {BaseAPI}
|
|
20917
|
+
*/
|
|
20918
|
+
export declare class SurveyResultsApi extends BaseAPI {
|
|
20919
|
+
/**
|
|
20920
|
+
*
|
|
20921
|
+
* @summary Create survey result
|
|
20922
|
+
* @param {CreateSurveyResultCommand} [createSurveyResultCommand]
|
|
20923
|
+
* @param {*} [options] Override http request option.
|
|
20924
|
+
* @throws {RequiredError}
|
|
20925
|
+
* @memberof SurveyResultsApi
|
|
20926
|
+
*/
|
|
20927
|
+
apiV2SurveyresultsPost(createSurveyResultCommand?: CreateSurveyResultCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
20928
|
+
}
|
|
20481
20929
|
/**
|
|
20482
20930
|
* TagsApi - axios parameter creator
|
|
20483
20931
|
* @export
|