ch-admin-api-client-typescript 4.4.0 → 4.4.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 +90 -0
- package/lib/api.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api.ts +90 -0
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -925,6 +925,12 @@ export interface ArticleModel {
|
|
|
925
925
|
* @memberof ArticleModel
|
|
926
926
|
*/
|
|
927
927
|
'content'?: string | null;
|
|
928
|
+
/**
|
|
929
|
+
*
|
|
930
|
+
* @type {string}
|
|
931
|
+
* @memberof ArticleModel
|
|
932
|
+
*/
|
|
933
|
+
'customStyle'?: string | null;
|
|
928
934
|
}
|
|
929
935
|
/**
|
|
930
936
|
*
|
|
@@ -3434,6 +3440,12 @@ export interface CountryModel {
|
|
|
3434
3440
|
* @memberof CountryModel
|
|
3435
3441
|
*/
|
|
3436
3442
|
'content'?: string | null;
|
|
3443
|
+
/**
|
|
3444
|
+
*
|
|
3445
|
+
* @type {string}
|
|
3446
|
+
* @memberof CountryModel
|
|
3447
|
+
*/
|
|
3448
|
+
'customStyle'?: string | null;
|
|
3437
3449
|
/**
|
|
3438
3450
|
*
|
|
3439
3451
|
* @type {Array<MediaModel>}
|
|
@@ -3624,6 +3636,12 @@ export interface CreateArticleCommand {
|
|
|
3624
3636
|
* @memberof CreateArticleCommand
|
|
3625
3637
|
*/
|
|
3626
3638
|
'backgroundThumbnail'?: string | null;
|
|
3639
|
+
/**
|
|
3640
|
+
*
|
|
3641
|
+
* @type {string}
|
|
3642
|
+
* @memberof CreateArticleCommand
|
|
3643
|
+
*/
|
|
3644
|
+
'customStyle'?: string | null;
|
|
3627
3645
|
/**
|
|
3628
3646
|
*
|
|
3629
3647
|
* @type {Array<ArticleTagItemModel>}
|
|
@@ -3987,6 +4005,12 @@ export interface CreateCountryCommand {
|
|
|
3987
4005
|
* @memberof CreateCountryCommand
|
|
3988
4006
|
*/
|
|
3989
4007
|
'logo'?: string | null;
|
|
4008
|
+
/**
|
|
4009
|
+
*
|
|
4010
|
+
* @type {string}
|
|
4011
|
+
* @memberof CreateCountryCommand
|
|
4012
|
+
*/
|
|
4013
|
+
'customStyle'?: string | null;
|
|
3990
4014
|
/**
|
|
3991
4015
|
*
|
|
3992
4016
|
* @type {Array<MediaModel>}
|
|
@@ -4479,6 +4503,12 @@ export interface CreateFaqCommand {
|
|
|
4479
4503
|
* @memberof CreateFaqCommand
|
|
4480
4504
|
*/
|
|
4481
4505
|
'order'?: number;
|
|
4506
|
+
/**
|
|
4507
|
+
*
|
|
4508
|
+
* @type {string}
|
|
4509
|
+
* @memberof CreateFaqCommand
|
|
4510
|
+
*/
|
|
4511
|
+
'customStyle'?: string | null;
|
|
4482
4512
|
/**
|
|
4483
4513
|
*
|
|
4484
4514
|
* @type {string}
|
|
@@ -5462,6 +5492,12 @@ export interface CreateSpecialtyCommand {
|
|
|
5462
5492
|
* @memberof CreateSpecialtyCommand
|
|
5463
5493
|
*/
|
|
5464
5494
|
'backgroundThumbnail'?: string | null;
|
|
5495
|
+
/**
|
|
5496
|
+
*
|
|
5497
|
+
* @type {string}
|
|
5498
|
+
* @memberof CreateSpecialtyCommand
|
|
5499
|
+
*/
|
|
5500
|
+
'customStyle'?: string | null;
|
|
5465
5501
|
/**
|
|
5466
5502
|
*
|
|
5467
5503
|
* @type {string}
|
|
@@ -5529,6 +5565,12 @@ export interface CreateSpecialtyTypeCommand {
|
|
|
5529
5565
|
* @memberof CreateSpecialtyTypeCommand
|
|
5530
5566
|
*/
|
|
5531
5567
|
'backgroundThumbnail'?: string | null;
|
|
5568
|
+
/**
|
|
5569
|
+
*
|
|
5570
|
+
* @type {string}
|
|
5571
|
+
* @memberof CreateSpecialtyTypeCommand
|
|
5572
|
+
*/
|
|
5573
|
+
'customStyle'?: string | null;
|
|
5532
5574
|
/**
|
|
5533
5575
|
*
|
|
5534
5576
|
* @type {Array<MediaModel>}
|
|
@@ -7804,6 +7846,12 @@ export interface FaqModel {
|
|
|
7804
7846
|
* @memberof FaqModel
|
|
7805
7847
|
*/
|
|
7806
7848
|
'content'?: string | null;
|
|
7849
|
+
/**
|
|
7850
|
+
*
|
|
7851
|
+
* @type {string}
|
|
7852
|
+
* @memberof FaqModel
|
|
7853
|
+
*/
|
|
7854
|
+
'customStyle'?: string | null;
|
|
7807
7855
|
}
|
|
7808
7856
|
/**
|
|
7809
7857
|
*
|
|
@@ -12343,6 +12391,12 @@ export interface SpecialtyModel {
|
|
|
12343
12391
|
* @memberof SpecialtyModel
|
|
12344
12392
|
*/
|
|
12345
12393
|
'content'?: string | null;
|
|
12394
|
+
/**
|
|
12395
|
+
*
|
|
12396
|
+
* @type {string}
|
|
12397
|
+
* @memberof SpecialtyModel
|
|
12398
|
+
*/
|
|
12399
|
+
'customStyle'?: string | null;
|
|
12346
12400
|
}
|
|
12347
12401
|
/**
|
|
12348
12402
|
*
|
|
@@ -12537,6 +12591,12 @@ export interface SpecialtyTypeModel {
|
|
|
12537
12591
|
* @memberof SpecialtyTypeModel
|
|
12538
12592
|
*/
|
|
12539
12593
|
'content'?: string | null;
|
|
12594
|
+
/**
|
|
12595
|
+
*
|
|
12596
|
+
* @type {string}
|
|
12597
|
+
* @memberof SpecialtyTypeModel
|
|
12598
|
+
*/
|
|
12599
|
+
'customStyle'?: string | null;
|
|
12540
12600
|
}
|
|
12541
12601
|
/**
|
|
12542
12602
|
*
|
|
@@ -13098,6 +13158,12 @@ export interface UpdateArticleCommand {
|
|
|
13098
13158
|
* @memberof UpdateArticleCommand
|
|
13099
13159
|
*/
|
|
13100
13160
|
'backgroundThumbnail'?: string | null;
|
|
13161
|
+
/**
|
|
13162
|
+
*
|
|
13163
|
+
* @type {string}
|
|
13164
|
+
* @memberof UpdateArticleCommand
|
|
13165
|
+
*/
|
|
13166
|
+
'customStyle'?: string | null;
|
|
13101
13167
|
/**
|
|
13102
13168
|
*
|
|
13103
13169
|
* @type {Array<ArticleTagItemModel>}
|
|
@@ -13460,6 +13526,12 @@ export interface UpdateCountryCommand {
|
|
|
13460
13526
|
* @memberof UpdateCountryCommand
|
|
13461
13527
|
*/
|
|
13462
13528
|
'content'?: string | null;
|
|
13529
|
+
/**
|
|
13530
|
+
*
|
|
13531
|
+
* @type {string}
|
|
13532
|
+
* @memberof UpdateCountryCommand
|
|
13533
|
+
*/
|
|
13534
|
+
'customStyle'?: string | null;
|
|
13463
13535
|
/**
|
|
13464
13536
|
*
|
|
13465
13537
|
* @type {string}
|
|
@@ -13982,6 +14054,12 @@ export interface UpdateFaqCommand {
|
|
|
13982
14054
|
* @memberof UpdateFaqCommand
|
|
13983
14055
|
*/
|
|
13984
14056
|
'order'?: number;
|
|
14057
|
+
/**
|
|
14058
|
+
*
|
|
14059
|
+
* @type {string}
|
|
14060
|
+
* @memberof UpdateFaqCommand
|
|
14061
|
+
*/
|
|
14062
|
+
'customStyle'?: string | null;
|
|
13985
14063
|
/**
|
|
13986
14064
|
*
|
|
13987
14065
|
* @type {Array<FaqTagItemModel>}
|
|
@@ -15034,6 +15112,12 @@ export interface UpdateSpecialtyCommand {
|
|
|
15034
15112
|
* @memberof UpdateSpecialtyCommand
|
|
15035
15113
|
*/
|
|
15036
15114
|
'backgroundThumbnail'?: string | null;
|
|
15115
|
+
/**
|
|
15116
|
+
*
|
|
15117
|
+
* @type {string}
|
|
15118
|
+
* @memberof UpdateSpecialtyCommand
|
|
15119
|
+
*/
|
|
15120
|
+
'customStyle'?: string | null;
|
|
15037
15121
|
/**
|
|
15038
15122
|
*
|
|
15039
15123
|
* @type {string}
|
|
@@ -15113,6 +15197,12 @@ export interface UpdateSpecialtyTypeCommand {
|
|
|
15113
15197
|
* @memberof UpdateSpecialtyTypeCommand
|
|
15114
15198
|
*/
|
|
15115
15199
|
'backgroundThumbnail'?: string | null;
|
|
15200
|
+
/**
|
|
15201
|
+
*
|
|
15202
|
+
* @type {string}
|
|
15203
|
+
* @memberof UpdateSpecialtyTypeCommand
|
|
15204
|
+
*/
|
|
15205
|
+
'customStyle'?: string | null;
|
|
15116
15206
|
/**
|
|
15117
15207
|
*
|
|
15118
15208
|
* @type {string}
|