ch-admin-api-client-typescript 3.2.0 → 3.2.4
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 +42 -0
- package/lib/api.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api.ts +42 -0
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -3736,6 +3736,12 @@ export interface CreateCountryCommand {
|
|
|
3736
3736
|
* @memberof CreateCountryCommand
|
|
3737
3737
|
*/
|
|
3738
3738
|
'logo'?: string | null;
|
|
3739
|
+
/**
|
|
3740
|
+
*
|
|
3741
|
+
* @type {Array<MediaModel>}
|
|
3742
|
+
* @memberof CreateCountryCommand
|
|
3743
|
+
*/
|
|
3744
|
+
'medias'?: Array<MediaModel> | null;
|
|
3739
3745
|
}
|
|
3740
3746
|
/**
|
|
3741
3747
|
*
|
|
@@ -3785,6 +3791,12 @@ export interface CreateDealCommand {
|
|
|
3785
3791
|
* @memberof CreateDealCommand
|
|
3786
3792
|
*/
|
|
3787
3793
|
'serviceDuration'?: number;
|
|
3794
|
+
/**
|
|
3795
|
+
*
|
|
3796
|
+
* @type {number}
|
|
3797
|
+
* @memberof CreateDealCommand
|
|
3798
|
+
*/
|
|
3799
|
+
'order'?: number;
|
|
3788
3800
|
}
|
|
3789
3801
|
/**
|
|
3790
3802
|
*
|
|
@@ -4985,6 +4997,12 @@ export interface CreateSpecialtyTypeCommand {
|
|
|
4985
4997
|
* @memberof CreateSpecialtyTypeCommand
|
|
4986
4998
|
*/
|
|
4987
4999
|
'marketingType'?: MarketingType;
|
|
5000
|
+
/**
|
|
5001
|
+
*
|
|
5002
|
+
* @type {Array<MediaModel>}
|
|
5003
|
+
* @memberof CreateSpecialtyTypeCommand
|
|
5004
|
+
*/
|
|
5005
|
+
'medias'?: Array<MediaModel> | null;
|
|
4988
5006
|
}
|
|
4989
5007
|
/**
|
|
4990
5008
|
*
|
|
@@ -11227,6 +11245,12 @@ export interface SpecialtyTypeItemModel {
|
|
|
11227
11245
|
* @memberof SpecialtyTypeItemModel
|
|
11228
11246
|
*/
|
|
11229
11247
|
'confirmed'?: boolean;
|
|
11248
|
+
/**
|
|
11249
|
+
*
|
|
11250
|
+
* @type {Array<MediaModel>}
|
|
11251
|
+
* @memberof SpecialtyTypeItemModel
|
|
11252
|
+
*/
|
|
11253
|
+
'medias'?: Array<MediaModel> | null;
|
|
11230
11254
|
}
|
|
11231
11255
|
/**
|
|
11232
11256
|
*
|
|
@@ -11300,6 +11324,12 @@ export interface SpecialtyTypeModel {
|
|
|
11300
11324
|
* @memberof SpecialtyTypeModel
|
|
11301
11325
|
*/
|
|
11302
11326
|
'confirmed'?: boolean;
|
|
11327
|
+
/**
|
|
11328
|
+
*
|
|
11329
|
+
* @type {Array<MediaModel>}
|
|
11330
|
+
* @memberof SpecialtyTypeModel
|
|
11331
|
+
*/
|
|
11332
|
+
'medias'?: Array<MediaModel> | null;
|
|
11303
11333
|
/**
|
|
11304
11334
|
*
|
|
11305
11335
|
* @type {string}
|
|
@@ -12174,6 +12204,12 @@ export interface UpdateCountryCommand {
|
|
|
12174
12204
|
* @memberof UpdateCountryCommand
|
|
12175
12205
|
*/
|
|
12176
12206
|
'confirmed'?: boolean;
|
|
12207
|
+
/**
|
|
12208
|
+
*
|
|
12209
|
+
* @type {Array<MediaModel>}
|
|
12210
|
+
* @memberof UpdateCountryCommand
|
|
12211
|
+
*/
|
|
12212
|
+
'medias'?: Array<MediaModel> | null;
|
|
12177
12213
|
}
|
|
12178
12214
|
/**
|
|
12179
12215
|
*
|
|
@@ -13640,6 +13676,12 @@ export interface UpdateSpecialtyTypeCommand {
|
|
|
13640
13676
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13641
13677
|
*/
|
|
13642
13678
|
'confirmed'?: boolean;
|
|
13679
|
+
/**
|
|
13680
|
+
*
|
|
13681
|
+
* @type {Array<MediaModel>}
|
|
13682
|
+
* @memberof UpdateSpecialtyTypeCommand
|
|
13683
|
+
*/
|
|
13684
|
+
'medias'?: Array<MediaModel> | null;
|
|
13643
13685
|
/**
|
|
13644
13686
|
*
|
|
13645
13687
|
* @type {string}
|