ch-api-client-typescript2 2.9.7 → 3.0.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 +36 -413
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +85 -874
- package/package.json +1 -1
- package/src/api.ts +131 -862
package/lib/api.d.ts
CHANGED
|
@@ -355,44 +355,6 @@ export interface AdminMessageModel {
|
|
|
355
355
|
*/
|
|
356
356
|
'updated_at'?: number;
|
|
357
357
|
}
|
|
358
|
-
/**
|
|
359
|
-
*
|
|
360
|
-
* @export
|
|
361
|
-
* @interface ApproveBookingCommand
|
|
362
|
-
*/
|
|
363
|
-
export interface ApproveBookingCommand {
|
|
364
|
-
/**
|
|
365
|
-
*
|
|
366
|
-
* @type {Date}
|
|
367
|
-
* @memberof ApproveBookingCommand
|
|
368
|
-
*/
|
|
369
|
-
'confirmedDateStart'?: Date | null;
|
|
370
|
-
/**
|
|
371
|
-
*
|
|
372
|
-
* @type {Date}
|
|
373
|
-
* @memberof ApproveBookingCommand
|
|
374
|
-
*/
|
|
375
|
-
'confirmedDateEnd'?: Date | null;
|
|
376
|
-
}
|
|
377
|
-
/**
|
|
378
|
-
*
|
|
379
|
-
* @export
|
|
380
|
-
* @interface ApproveConsultationCommand
|
|
381
|
-
*/
|
|
382
|
-
export interface ApproveConsultationCommand {
|
|
383
|
-
/**
|
|
384
|
-
*
|
|
385
|
-
* @type {Date}
|
|
386
|
-
* @memberof ApproveConsultationCommand
|
|
387
|
-
*/
|
|
388
|
-
'confirmedDateStart'?: Date | null;
|
|
389
|
-
/**
|
|
390
|
-
*
|
|
391
|
-
* @type {Date}
|
|
392
|
-
* @memberof ApproveConsultationCommand
|
|
393
|
-
*/
|
|
394
|
-
'confirmedDateEnd'?: Date | null;
|
|
395
|
-
}
|
|
396
358
|
/**
|
|
397
359
|
*
|
|
398
360
|
* @export
|
|
@@ -1317,12 +1279,6 @@ export interface BookingItemModel {
|
|
|
1317
1279
|
* @memberof BookingItemModel
|
|
1318
1280
|
*/
|
|
1319
1281
|
'requestDate'?: Date;
|
|
1320
|
-
/**
|
|
1321
|
-
*
|
|
1322
|
-
* @type {string}
|
|
1323
|
-
* @memberof BookingItemModel
|
|
1324
|
-
*/
|
|
1325
|
-
'domain'?: string | null;
|
|
1326
1282
|
/**
|
|
1327
1283
|
*
|
|
1328
1284
|
* @type {BookingStatus}
|
|
@@ -1353,6 +1309,12 @@ export interface BookingItemModel {
|
|
|
1353
1309
|
* @memberof BookingItemModel
|
|
1354
1310
|
*/
|
|
1355
1311
|
'completionRate'?: number;
|
|
1312
|
+
/**
|
|
1313
|
+
*
|
|
1314
|
+
* @type {boolean}
|
|
1315
|
+
* @memberof BookingItemModel
|
|
1316
|
+
*/
|
|
1317
|
+
'isExternal'?: boolean;
|
|
1356
1318
|
}
|
|
1357
1319
|
/**
|
|
1358
1320
|
*
|
|
@@ -1534,12 +1496,6 @@ export interface BookingModel {
|
|
|
1534
1496
|
* @memberof BookingModel
|
|
1535
1497
|
*/
|
|
1536
1498
|
'requestDate'?: Date;
|
|
1537
|
-
/**
|
|
1538
|
-
*
|
|
1539
|
-
* @type {string}
|
|
1540
|
-
* @memberof BookingModel
|
|
1541
|
-
*/
|
|
1542
|
-
'domain'?: string | null;
|
|
1543
1499
|
/**
|
|
1544
1500
|
*
|
|
1545
1501
|
* @type {BookingStatus}
|
|
@@ -1570,6 +1526,12 @@ export interface BookingModel {
|
|
|
1570
1526
|
* @memberof BookingModel
|
|
1571
1527
|
*/
|
|
1572
1528
|
'completionRate'?: number;
|
|
1529
|
+
/**
|
|
1530
|
+
*
|
|
1531
|
+
* @type {boolean}
|
|
1532
|
+
* @memberof BookingModel
|
|
1533
|
+
*/
|
|
1534
|
+
'isExternal'?: boolean;
|
|
1573
1535
|
/**
|
|
1574
1536
|
*
|
|
1575
1537
|
* @type {Array<BookingChangeLogModel>}
|
|
@@ -2037,12 +1999,6 @@ export interface ConsultationItemModel {
|
|
|
2037
1999
|
* @memberof ConsultationItemModel
|
|
2038
2000
|
*/
|
|
2039
2001
|
'requestDate'?: Date;
|
|
2040
|
-
/**
|
|
2041
|
-
*
|
|
2042
|
-
* @type {string}
|
|
2043
|
-
* @memberof ConsultationItemModel
|
|
2044
|
-
*/
|
|
2045
|
-
'domain'?: string | null;
|
|
2046
2002
|
/**
|
|
2047
2003
|
*
|
|
2048
2004
|
* @type {ConsultationStatus}
|
|
@@ -2073,6 +2029,12 @@ export interface ConsultationItemModel {
|
|
|
2073
2029
|
* @memberof ConsultationItemModel
|
|
2074
2030
|
*/
|
|
2075
2031
|
'completionRate'?: number;
|
|
2032
|
+
/**
|
|
2033
|
+
*
|
|
2034
|
+
* @type {boolean}
|
|
2035
|
+
* @memberof ConsultationItemModel
|
|
2036
|
+
*/
|
|
2037
|
+
'isExternal'?: boolean;
|
|
2076
2038
|
}
|
|
2077
2039
|
/**
|
|
2078
2040
|
*
|
|
@@ -2314,12 +2276,6 @@ export interface ConsultationModel {
|
|
|
2314
2276
|
* @memberof ConsultationModel
|
|
2315
2277
|
*/
|
|
2316
2278
|
'requestDate'?: Date;
|
|
2317
|
-
/**
|
|
2318
|
-
*
|
|
2319
|
-
* @type {string}
|
|
2320
|
-
* @memberof ConsultationModel
|
|
2321
|
-
*/
|
|
2322
|
-
'domain'?: string | null;
|
|
2323
2279
|
/**
|
|
2324
2280
|
*
|
|
2325
2281
|
* @type {ConsultationStatus}
|
|
@@ -2350,6 +2306,12 @@ export interface ConsultationModel {
|
|
|
2350
2306
|
* @memberof ConsultationModel
|
|
2351
2307
|
*/
|
|
2352
2308
|
'completionRate'?: number;
|
|
2309
|
+
/**
|
|
2310
|
+
*
|
|
2311
|
+
* @type {boolean}
|
|
2312
|
+
* @memberof ConsultationModel
|
|
2313
|
+
*/
|
|
2314
|
+
'isExternal'?: boolean;
|
|
2353
2315
|
/**
|
|
2354
2316
|
*
|
|
2355
2317
|
* @type {Array<ConsultationChangeLogModel>}
|
|
@@ -2927,6 +2889,12 @@ export interface CreateBookingCommand {
|
|
|
2927
2889
|
* @memberof CreateBookingCommand
|
|
2928
2890
|
*/
|
|
2929
2891
|
'timeZone'?: string | null;
|
|
2892
|
+
/**
|
|
2893
|
+
*
|
|
2894
|
+
* @type {boolean}
|
|
2895
|
+
* @memberof CreateBookingCommand
|
|
2896
|
+
*/
|
|
2897
|
+
'isExternal'?: boolean;
|
|
2930
2898
|
}
|
|
2931
2899
|
/**
|
|
2932
2900
|
*
|
|
@@ -3079,6 +3047,12 @@ export interface CreateConsultationCommand {
|
|
|
3079
3047
|
* @memberof CreateConsultationCommand
|
|
3080
3048
|
*/
|
|
3081
3049
|
'timeZone'?: string | null;
|
|
3050
|
+
/**
|
|
3051
|
+
*
|
|
3052
|
+
* @type {boolean}
|
|
3053
|
+
* @memberof CreateConsultationCommand
|
|
3054
|
+
*/
|
|
3055
|
+
'isExternal'?: boolean;
|
|
3082
3056
|
}
|
|
3083
3057
|
/**
|
|
3084
3058
|
*
|
|
@@ -8208,44 +8182,6 @@ export declare enum RefundPolicy {
|
|
|
8208
8182
|
Refundable = "Refundable",
|
|
8209
8183
|
PartialRefundable = "PartialRefundable"
|
|
8210
8184
|
}
|
|
8211
|
-
/**
|
|
8212
|
-
*
|
|
8213
|
-
* @export
|
|
8214
|
-
* @interface RejectBookingCommand
|
|
8215
|
-
*/
|
|
8216
|
-
export interface RejectBookingCommand {
|
|
8217
|
-
/**
|
|
8218
|
-
*
|
|
8219
|
-
* @type {RejectReason}
|
|
8220
|
-
* @memberof RejectBookingCommand
|
|
8221
|
-
*/
|
|
8222
|
-
'rejectReason'?: RejectReason;
|
|
8223
|
-
/**
|
|
8224
|
-
*
|
|
8225
|
-
* @type {string}
|
|
8226
|
-
* @memberof RejectBookingCommand
|
|
8227
|
-
*/
|
|
8228
|
-
'rejectComment'?: string | null;
|
|
8229
|
-
}
|
|
8230
|
-
/**
|
|
8231
|
-
*
|
|
8232
|
-
* @export
|
|
8233
|
-
* @interface RejectConsultationCommand
|
|
8234
|
-
*/
|
|
8235
|
-
export interface RejectConsultationCommand {
|
|
8236
|
-
/**
|
|
8237
|
-
*
|
|
8238
|
-
* @type {RejectReason}
|
|
8239
|
-
* @memberof RejectConsultationCommand
|
|
8240
|
-
*/
|
|
8241
|
-
'rejectReason'?: RejectReason;
|
|
8242
|
-
/**
|
|
8243
|
-
*
|
|
8244
|
-
* @type {string}
|
|
8245
|
-
* @memberof RejectConsultationCommand
|
|
8246
|
-
*/
|
|
8247
|
-
'rejectComment'?: string | null;
|
|
8248
|
-
}
|
|
8249
8185
|
/**
|
|
8250
8186
|
*
|
|
8251
8187
|
* @export
|
|
@@ -11038,31 +10974,6 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
11038
10974
|
* @export
|
|
11039
10975
|
*/
|
|
11040
10976
|
export declare const BookingsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
11041
|
-
/**
|
|
11042
|
-
*
|
|
11043
|
-
* @summary Approve booking.
|
|
11044
|
-
* @param {string} bookingId
|
|
11045
|
-
* @param {ApproveBookingCommand} [approveBookingCommand]
|
|
11046
|
-
* @param {*} [options] Override http request option.
|
|
11047
|
-
* @throws {RequiredError}
|
|
11048
|
-
*/
|
|
11049
|
-
apiV2BookingsBookingIdApprovePut: (bookingId: string, approveBookingCommand?: ApproveBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11050
|
-
/**
|
|
11051
|
-
*
|
|
11052
|
-
* @summary Cancel booking.
|
|
11053
|
-
* @param {string} bookingId
|
|
11054
|
-
* @param {*} [options] Override http request option.
|
|
11055
|
-
* @throws {RequiredError}
|
|
11056
|
-
*/
|
|
11057
|
-
apiV2BookingsBookingIdCancelPut: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11058
|
-
/**
|
|
11059
|
-
*
|
|
11060
|
-
* @summary Delete booking.
|
|
11061
|
-
* @param {string} bookingId
|
|
11062
|
-
* @param {*} [options] Override http request option.
|
|
11063
|
-
* @throws {RequiredError}
|
|
11064
|
-
*/
|
|
11065
|
-
apiV2BookingsBookingIdDelete: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11066
10977
|
/**
|
|
11067
10978
|
*
|
|
11068
10979
|
* @summary Get booking.
|
|
@@ -11071,14 +10982,6 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11071
10982
|
* @throws {RequiredError}
|
|
11072
10983
|
*/
|
|
11073
10984
|
apiV2BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11074
|
-
/**
|
|
11075
|
-
*
|
|
11076
|
-
* @summary Mark as Paid booking.
|
|
11077
|
-
* @param {string} bookingId
|
|
11078
|
-
* @param {*} [options] Override http request option.
|
|
11079
|
-
* @throws {RequiredError}
|
|
11080
|
-
*/
|
|
11081
|
-
apiV2BookingsBookingIdPaidPost: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11082
10985
|
/**
|
|
11083
10986
|
*
|
|
11084
10987
|
* @summary Pay booking.
|
|
@@ -11096,15 +10999,6 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11096
10999
|
* @throws {RequiredError}
|
|
11097
11000
|
*/
|
|
11098
11001
|
apiV2BookingsBookingIdPut: (bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11099
|
-
/**
|
|
11100
|
-
*
|
|
11101
|
-
* @summary Reject booking.
|
|
11102
|
-
* @param {string} bookingId
|
|
11103
|
-
* @param {RejectBookingCommand} [rejectBookingCommand]
|
|
11104
|
-
* @param {*} [options] Override http request option.
|
|
11105
|
-
* @throws {RequiredError}
|
|
11106
|
-
*/
|
|
11107
|
-
apiV2BookingsBookingIdRejectPut: (bookingId: string, rejectBookingCommand?: RejectBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11108
11002
|
/**
|
|
11109
11003
|
*
|
|
11110
11004
|
* @summary Get all bookings.
|
|
@@ -11136,31 +11030,6 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11136
11030
|
* @export
|
|
11137
11031
|
*/
|
|
11138
11032
|
export declare const BookingsApiFp: (configuration?: Configuration | undefined) => {
|
|
11139
|
-
/**
|
|
11140
|
-
*
|
|
11141
|
-
* @summary Approve booking.
|
|
11142
|
-
* @param {string} bookingId
|
|
11143
|
-
* @param {ApproveBookingCommand} [approveBookingCommand]
|
|
11144
|
-
* @param {*} [options] Override http request option.
|
|
11145
|
-
* @throws {RequiredError}
|
|
11146
|
-
*/
|
|
11147
|
-
apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11148
|
-
/**
|
|
11149
|
-
*
|
|
11150
|
-
* @summary Cancel booking.
|
|
11151
|
-
* @param {string} bookingId
|
|
11152
|
-
* @param {*} [options] Override http request option.
|
|
11153
|
-
* @throws {RequiredError}
|
|
11154
|
-
*/
|
|
11155
|
-
apiV2BookingsBookingIdCancelPut(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11156
|
-
/**
|
|
11157
|
-
*
|
|
11158
|
-
* @summary Delete booking.
|
|
11159
|
-
* @param {string} bookingId
|
|
11160
|
-
* @param {*} [options] Override http request option.
|
|
11161
|
-
* @throws {RequiredError}
|
|
11162
|
-
*/
|
|
11163
|
-
apiV2BookingsBookingIdDelete(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11164
11033
|
/**
|
|
11165
11034
|
*
|
|
11166
11035
|
* @summary Get booking.
|
|
@@ -11169,14 +11038,6 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
11169
11038
|
* @throws {RequiredError}
|
|
11170
11039
|
*/
|
|
11171
11040
|
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
11172
|
-
/**
|
|
11173
|
-
*
|
|
11174
|
-
* @summary Mark as Paid booking.
|
|
11175
|
-
* @param {string} bookingId
|
|
11176
|
-
* @param {*} [options] Override http request option.
|
|
11177
|
-
* @throws {RequiredError}
|
|
11178
|
-
*/
|
|
11179
|
-
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
11180
11041
|
/**
|
|
11181
11042
|
*
|
|
11182
11043
|
* @summary Pay booking.
|
|
@@ -11194,15 +11055,6 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
11194
11055
|
* @throws {RequiredError}
|
|
11195
11056
|
*/
|
|
11196
11057
|
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
11197
|
-
/**
|
|
11198
|
-
*
|
|
11199
|
-
* @summary Reject booking.
|
|
11200
|
-
* @param {string} bookingId
|
|
11201
|
-
* @param {RejectBookingCommand} [rejectBookingCommand]
|
|
11202
|
-
* @param {*} [options] Override http request option.
|
|
11203
|
-
* @throws {RequiredError}
|
|
11204
|
-
*/
|
|
11205
|
-
apiV2BookingsBookingIdRejectPut(bookingId: string, rejectBookingCommand?: RejectBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11206
11058
|
/**
|
|
11207
11059
|
*
|
|
11208
11060
|
* @summary Get all bookings.
|
|
@@ -11234,31 +11086,6 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
11234
11086
|
* @export
|
|
11235
11087
|
*/
|
|
11236
11088
|
export declare const BookingsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
11237
|
-
/**
|
|
11238
|
-
*
|
|
11239
|
-
* @summary Approve booking.
|
|
11240
|
-
* @param {string} bookingId
|
|
11241
|
-
* @param {ApproveBookingCommand} [approveBookingCommand]
|
|
11242
|
-
* @param {*} [options] Override http request option.
|
|
11243
|
-
* @throws {RequiredError}
|
|
11244
|
-
*/
|
|
11245
|
-
apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
11246
|
-
/**
|
|
11247
|
-
*
|
|
11248
|
-
* @summary Cancel booking.
|
|
11249
|
-
* @param {string} bookingId
|
|
11250
|
-
* @param {*} [options] Override http request option.
|
|
11251
|
-
* @throws {RequiredError}
|
|
11252
|
-
*/
|
|
11253
|
-
apiV2BookingsBookingIdCancelPut(bookingId: string, options?: any): AxiosPromise<boolean>;
|
|
11254
|
-
/**
|
|
11255
|
-
*
|
|
11256
|
-
* @summary Delete booking.
|
|
11257
|
-
* @param {string} bookingId
|
|
11258
|
-
* @param {*} [options] Override http request option.
|
|
11259
|
-
* @throws {RequiredError}
|
|
11260
|
-
*/
|
|
11261
|
-
apiV2BookingsBookingIdDelete(bookingId: string, options?: any): AxiosPromise<boolean>;
|
|
11262
11089
|
/**
|
|
11263
11090
|
*
|
|
11264
11091
|
* @summary Get booking.
|
|
@@ -11267,14 +11094,6 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
11267
11094
|
* @throws {RequiredError}
|
|
11268
11095
|
*/
|
|
11269
11096
|
apiV2BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
|
|
11270
|
-
/**
|
|
11271
|
-
*
|
|
11272
|
-
* @summary Mark as Paid booking.
|
|
11273
|
-
* @param {string} bookingId
|
|
11274
|
-
* @param {*} [options] Override http request option.
|
|
11275
|
-
* @throws {RequiredError}
|
|
11276
|
-
*/
|
|
11277
|
-
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: any): AxiosPromise<string>;
|
|
11278
11097
|
/**
|
|
11279
11098
|
*
|
|
11280
11099
|
* @summary Pay booking.
|
|
@@ -11292,15 +11111,6 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
11292
11111
|
* @throws {RequiredError}
|
|
11293
11112
|
*/
|
|
11294
11113
|
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: any): AxiosPromise<BookingModel>;
|
|
11295
|
-
/**
|
|
11296
|
-
*
|
|
11297
|
-
* @summary Reject booking.
|
|
11298
|
-
* @param {string} bookingId
|
|
11299
|
-
* @param {RejectBookingCommand} [rejectBookingCommand]
|
|
11300
|
-
* @param {*} [options] Override http request option.
|
|
11301
|
-
* @throws {RequiredError}
|
|
11302
|
-
*/
|
|
11303
|
-
apiV2BookingsBookingIdRejectPut(bookingId: string, rejectBookingCommand?: RejectBookingCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
11304
11114
|
/**
|
|
11305
11115
|
*
|
|
11306
11116
|
* @summary Get all bookings.
|
|
@@ -11334,34 +11144,6 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
11334
11144
|
* @extends {BaseAPI}
|
|
11335
11145
|
*/
|
|
11336
11146
|
export declare class BookingsApi extends BaseAPI {
|
|
11337
|
-
/**
|
|
11338
|
-
*
|
|
11339
|
-
* @summary Approve booking.
|
|
11340
|
-
* @param {string} bookingId
|
|
11341
|
-
* @param {ApproveBookingCommand} [approveBookingCommand]
|
|
11342
|
-
* @param {*} [options] Override http request option.
|
|
11343
|
-
* @throws {RequiredError}
|
|
11344
|
-
* @memberof BookingsApi
|
|
11345
|
-
*/
|
|
11346
|
-
apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11347
|
-
/**
|
|
11348
|
-
*
|
|
11349
|
-
* @summary Cancel booking.
|
|
11350
|
-
* @param {string} bookingId
|
|
11351
|
-
* @param {*} [options] Override http request option.
|
|
11352
|
-
* @throws {RequiredError}
|
|
11353
|
-
* @memberof BookingsApi
|
|
11354
|
-
*/
|
|
11355
|
-
apiV2BookingsBookingIdCancelPut(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11356
|
-
/**
|
|
11357
|
-
*
|
|
11358
|
-
* @summary Delete booking.
|
|
11359
|
-
* @param {string} bookingId
|
|
11360
|
-
* @param {*} [options] Override http request option.
|
|
11361
|
-
* @throws {RequiredError}
|
|
11362
|
-
* @memberof BookingsApi
|
|
11363
|
-
*/
|
|
11364
|
-
apiV2BookingsBookingIdDelete(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11365
11147
|
/**
|
|
11366
11148
|
*
|
|
11367
11149
|
* @summary Get booking.
|
|
@@ -11371,15 +11153,6 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
11371
11153
|
* @memberof BookingsApi
|
|
11372
11154
|
*/
|
|
11373
11155
|
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
|
|
11374
|
-
/**
|
|
11375
|
-
*
|
|
11376
|
-
* @summary Mark as Paid booking.
|
|
11377
|
-
* @param {string} bookingId
|
|
11378
|
-
* @param {*} [options] Override http request option.
|
|
11379
|
-
* @throws {RequiredError}
|
|
11380
|
-
* @memberof BookingsApi
|
|
11381
|
-
*/
|
|
11382
|
-
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
11383
11156
|
/**
|
|
11384
11157
|
*
|
|
11385
11158
|
* @summary Pay booking.
|
|
@@ -11399,16 +11172,6 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
11399
11172
|
* @memberof BookingsApi
|
|
11400
11173
|
*/
|
|
11401
11174
|
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
|
|
11402
|
-
/**
|
|
11403
|
-
*
|
|
11404
|
-
* @summary Reject booking.
|
|
11405
|
-
* @param {string} bookingId
|
|
11406
|
-
* @param {RejectBookingCommand} [rejectBookingCommand]
|
|
11407
|
-
* @param {*} [options] Override http request option.
|
|
11408
|
-
* @throws {RequiredError}
|
|
11409
|
-
* @memberof BookingsApi
|
|
11410
|
-
*/
|
|
11411
|
-
apiV2BookingsBookingIdRejectPut(bookingId: string, rejectBookingCommand?: RejectBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11412
11175
|
/**
|
|
11413
11176
|
*
|
|
11414
11177
|
* @summary Get all bookings.
|
|
@@ -11791,31 +11554,6 @@ export declare class CommunicationsApi extends BaseAPI {
|
|
|
11791
11554
|
* @export
|
|
11792
11555
|
*/
|
|
11793
11556
|
export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
11794
|
-
/**
|
|
11795
|
-
*
|
|
11796
|
-
* @summary Approve consultation.
|
|
11797
|
-
* @param {string} consultationId
|
|
11798
|
-
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
11799
|
-
* @param {*} [options] Override http request option.
|
|
11800
|
-
* @throws {RequiredError}
|
|
11801
|
-
*/
|
|
11802
|
-
apiV2ConsultationsConsultationIdApprovePut: (consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11803
|
-
/**
|
|
11804
|
-
*
|
|
11805
|
-
* @summary Cancel consultation.
|
|
11806
|
-
* @param {string} consultationId
|
|
11807
|
-
* @param {*} [options] Override http request option.
|
|
11808
|
-
* @throws {RequiredError}
|
|
11809
|
-
*/
|
|
11810
|
-
apiV2ConsultationsConsultationIdCancelPut: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11811
|
-
/**
|
|
11812
|
-
*
|
|
11813
|
-
* @summary Delete consultation.
|
|
11814
|
-
* @param {string} consultationId
|
|
11815
|
-
* @param {*} [options] Override http request option.
|
|
11816
|
-
* @throws {RequiredError}
|
|
11817
|
-
*/
|
|
11818
|
-
apiV2ConsultationsConsultationIdDelete: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11819
11557
|
/**
|
|
11820
11558
|
*
|
|
11821
11559
|
* @summary Get consultation.
|
|
@@ -11841,15 +11579,6 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
11841
11579
|
* @throws {RequiredError}
|
|
11842
11580
|
*/
|
|
11843
11581
|
apiV2ConsultationsConsultationIdPut: (consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11844
|
-
/**
|
|
11845
|
-
*
|
|
11846
|
-
* @summary Reject consultation.
|
|
11847
|
-
* @param {string} consultationId
|
|
11848
|
-
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
11849
|
-
* @param {*} [options] Override http request option.
|
|
11850
|
-
* @throws {RequiredError}
|
|
11851
|
-
*/
|
|
11852
|
-
apiV2ConsultationsConsultationIdRejectPut: (consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11853
11582
|
/**
|
|
11854
11583
|
*
|
|
11855
11584
|
* @summary Get all consultations.
|
|
@@ -11881,31 +11610,6 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
11881
11610
|
* @export
|
|
11882
11611
|
*/
|
|
11883
11612
|
export declare const ConsultationsApiFp: (configuration?: Configuration | undefined) => {
|
|
11884
|
-
/**
|
|
11885
|
-
*
|
|
11886
|
-
* @summary Approve consultation.
|
|
11887
|
-
* @param {string} consultationId
|
|
11888
|
-
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
11889
|
-
* @param {*} [options] Override http request option.
|
|
11890
|
-
* @throws {RequiredError}
|
|
11891
|
-
*/
|
|
11892
|
-
apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11893
|
-
/**
|
|
11894
|
-
*
|
|
11895
|
-
* @summary Cancel consultation.
|
|
11896
|
-
* @param {string} consultationId
|
|
11897
|
-
* @param {*} [options] Override http request option.
|
|
11898
|
-
* @throws {RequiredError}
|
|
11899
|
-
*/
|
|
11900
|
-
apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11901
|
-
/**
|
|
11902
|
-
*
|
|
11903
|
-
* @summary Delete consultation.
|
|
11904
|
-
* @param {string} consultationId
|
|
11905
|
-
* @param {*} [options] Override http request option.
|
|
11906
|
-
* @throws {RequiredError}
|
|
11907
|
-
*/
|
|
11908
|
-
apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11909
11613
|
/**
|
|
11910
11614
|
*
|
|
11911
11615
|
* @summary Get consultation.
|
|
@@ -11931,15 +11635,6 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
11931
11635
|
* @throws {RequiredError}
|
|
11932
11636
|
*/
|
|
11933
11637
|
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
11934
|
-
/**
|
|
11935
|
-
*
|
|
11936
|
-
* @summary Reject consultation.
|
|
11937
|
-
* @param {string} consultationId
|
|
11938
|
-
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
11939
|
-
* @param {*} [options] Override http request option.
|
|
11940
|
-
* @throws {RequiredError}
|
|
11941
|
-
*/
|
|
11942
|
-
apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11943
11638
|
/**
|
|
11944
11639
|
*
|
|
11945
11640
|
* @summary Get all consultations.
|
|
@@ -11971,31 +11666,6 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
11971
11666
|
* @export
|
|
11972
11667
|
*/
|
|
11973
11668
|
export declare const ConsultationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
11974
|
-
/**
|
|
11975
|
-
*
|
|
11976
|
-
* @summary Approve consultation.
|
|
11977
|
-
* @param {string} consultationId
|
|
11978
|
-
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
11979
|
-
* @param {*} [options] Override http request option.
|
|
11980
|
-
* @throws {RequiredError}
|
|
11981
|
-
*/
|
|
11982
|
-
apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
11983
|
-
/**
|
|
11984
|
-
*
|
|
11985
|
-
* @summary Cancel consultation.
|
|
11986
|
-
* @param {string} consultationId
|
|
11987
|
-
* @param {*} [options] Override http request option.
|
|
11988
|
-
* @throws {RequiredError}
|
|
11989
|
-
*/
|
|
11990
|
-
apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: any): AxiosPromise<boolean>;
|
|
11991
|
-
/**
|
|
11992
|
-
*
|
|
11993
|
-
* @summary Delete consultation.
|
|
11994
|
-
* @param {string} consultationId
|
|
11995
|
-
* @param {*} [options] Override http request option.
|
|
11996
|
-
* @throws {RequiredError}
|
|
11997
|
-
*/
|
|
11998
|
-
apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: any): AxiosPromise<boolean>;
|
|
11999
11669
|
/**
|
|
12000
11670
|
*
|
|
12001
11671
|
* @summary Get consultation.
|
|
@@ -12021,15 +11691,6 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
12021
11691
|
* @throws {RequiredError}
|
|
12022
11692
|
*/
|
|
12023
11693
|
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: any): AxiosPromise<ConsultationModel>;
|
|
12024
|
-
/**
|
|
12025
|
-
*
|
|
12026
|
-
* @summary Reject consultation.
|
|
12027
|
-
* @param {string} consultationId
|
|
12028
|
-
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
12029
|
-
* @param {*} [options] Override http request option.
|
|
12030
|
-
* @throws {RequiredError}
|
|
12031
|
-
*/
|
|
12032
|
-
apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
12033
11694
|
/**
|
|
12034
11695
|
*
|
|
12035
11696
|
* @summary Get all consultations.
|
|
@@ -12063,34 +11724,6 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
12063
11724
|
* @extends {BaseAPI}
|
|
12064
11725
|
*/
|
|
12065
11726
|
export declare class ConsultationsApi extends BaseAPI {
|
|
12066
|
-
/**
|
|
12067
|
-
*
|
|
12068
|
-
* @summary Approve consultation.
|
|
12069
|
-
* @param {string} consultationId
|
|
12070
|
-
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
12071
|
-
* @param {*} [options] Override http request option.
|
|
12072
|
-
* @throws {RequiredError}
|
|
12073
|
-
* @memberof ConsultationsApi
|
|
12074
|
-
*/
|
|
12075
|
-
apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12076
|
-
/**
|
|
12077
|
-
*
|
|
12078
|
-
* @summary Cancel consultation.
|
|
12079
|
-
* @param {string} consultationId
|
|
12080
|
-
* @param {*} [options] Override http request option.
|
|
12081
|
-
* @throws {RequiredError}
|
|
12082
|
-
* @memberof ConsultationsApi
|
|
12083
|
-
*/
|
|
12084
|
-
apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12085
|
-
/**
|
|
12086
|
-
*
|
|
12087
|
-
* @summary Delete consultation.
|
|
12088
|
-
* @param {string} consultationId
|
|
12089
|
-
* @param {*} [options] Override http request option.
|
|
12090
|
-
* @throws {RequiredError}
|
|
12091
|
-
* @memberof ConsultationsApi
|
|
12092
|
-
*/
|
|
12093
|
-
apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12094
11727
|
/**
|
|
12095
11728
|
*
|
|
12096
11729
|
* @summary Get consultation.
|
|
@@ -12119,16 +11752,6 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
12119
11752
|
* @memberof ConsultationsApi
|
|
12120
11753
|
*/
|
|
12121
11754
|
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel, any>>;
|
|
12122
|
-
/**
|
|
12123
|
-
*
|
|
12124
|
-
* @summary Reject consultation.
|
|
12125
|
-
* @param {string} consultationId
|
|
12126
|
-
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
12127
|
-
* @param {*} [options] Override http request option.
|
|
12128
|
-
* @throws {RequiredError}
|
|
12129
|
-
* @memberof ConsultationsApi
|
|
12130
|
-
*/
|
|
12131
|
-
apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12132
11755
|
/**
|
|
12133
11756
|
*
|
|
12134
11757
|
* @summary Get all consultations.
|