ch-admin-api-client-typescript 4.6.8 → 4.7.1
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 +4 -84
- package/lib/api.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api.ts +4 -84
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -642,10 +642,10 @@ export interface ArticleContributorModel {
|
|
|
642
642
|
'contributorContent'?: string | null;
|
|
643
643
|
/**
|
|
644
644
|
*
|
|
645
|
-
* @type {Array<
|
|
645
|
+
* @type {Array<SnsHandleModel>}
|
|
646
646
|
* @memberof ArticleContributorModel
|
|
647
647
|
*/
|
|
648
|
-
'contributorSnsHandles'?: Array<
|
|
648
|
+
'contributorSnsHandles'?: Array<SnsHandleModel> | null;
|
|
649
649
|
}
|
|
650
650
|
/**
|
|
651
651
|
*
|
|
@@ -3403,10 +3403,10 @@ export interface CreateAboutUsPageCommand {
|
|
|
3403
3403
|
'backgroundThumbnail'?: string | null;
|
|
3404
3404
|
/**
|
|
3405
3405
|
*
|
|
3406
|
-
* @type {Array<
|
|
3406
|
+
* @type {Array<MediaModel>}
|
|
3407
3407
|
* @memberof CreateAboutUsPageCommand
|
|
3408
3408
|
*/
|
|
3409
|
-
'medias'?: Array<
|
|
3409
|
+
'medias'?: Array<MediaModel> | null;
|
|
3410
3410
|
}
|
|
3411
3411
|
/**
|
|
3412
3412
|
*
|
|
@@ -10315,61 +10315,6 @@ export enum MarketingType {
|
|
|
10315
10315
|
Beauty = 'Beauty'
|
|
10316
10316
|
}
|
|
10317
10317
|
|
|
10318
|
-
/**
|
|
10319
|
-
*
|
|
10320
|
-
* @export
|
|
10321
|
-
* @interface Media
|
|
10322
|
-
*/
|
|
10323
|
-
export interface Media {
|
|
10324
|
-
/**
|
|
10325
|
-
*
|
|
10326
|
-
* @type {string}
|
|
10327
|
-
* @memberof Media
|
|
10328
|
-
*/
|
|
10329
|
-
'id'?: string;
|
|
10330
|
-
/**
|
|
10331
|
-
*
|
|
10332
|
-
* @type {MediaType}
|
|
10333
|
-
* @memberof Media
|
|
10334
|
-
*/
|
|
10335
|
-
'mediaType'?: MediaType;
|
|
10336
|
-
/**
|
|
10337
|
-
*
|
|
10338
|
-
* @type {string}
|
|
10339
|
-
* @memberof Media
|
|
10340
|
-
*/
|
|
10341
|
-
'url'?: string | null;
|
|
10342
|
-
/**
|
|
10343
|
-
*
|
|
10344
|
-
* @type {string}
|
|
10345
|
-
* @memberof Media
|
|
10346
|
-
*/
|
|
10347
|
-
'thumbnailUrl'?: string | null;
|
|
10348
|
-
/**
|
|
10349
|
-
*
|
|
10350
|
-
* @type {string}
|
|
10351
|
-
* @memberof Media
|
|
10352
|
-
*/
|
|
10353
|
-
'description'?: string | null;
|
|
10354
|
-
/**
|
|
10355
|
-
*
|
|
10356
|
-
* @type {number}
|
|
10357
|
-
* @memberof Media
|
|
10358
|
-
*/
|
|
10359
|
-
'height'?: number;
|
|
10360
|
-
/**
|
|
10361
|
-
*
|
|
10362
|
-
* @type {number}
|
|
10363
|
-
* @memberof Media
|
|
10364
|
-
*/
|
|
10365
|
-
'width'?: number;
|
|
10366
|
-
/**
|
|
10367
|
-
*
|
|
10368
|
-
* @type {number}
|
|
10369
|
-
* @memberof Media
|
|
10370
|
-
*/
|
|
10371
|
-
'order'?: number;
|
|
10372
|
-
}
|
|
10373
10318
|
/**
|
|
10374
10319
|
*
|
|
10375
10320
|
* @export
|
|
@@ -12173,31 +12118,6 @@ export interface ServiceReviewsModel {
|
|
|
12173
12118
|
*/
|
|
12174
12119
|
'metaData'?: PagedListMetaData;
|
|
12175
12120
|
}
|
|
12176
|
-
/**
|
|
12177
|
-
*
|
|
12178
|
-
* @export
|
|
12179
|
-
* @interface SnsHandle
|
|
12180
|
-
*/
|
|
12181
|
-
export interface SnsHandle {
|
|
12182
|
-
/**
|
|
12183
|
-
*
|
|
12184
|
-
* @type {string}
|
|
12185
|
-
* @memberof SnsHandle
|
|
12186
|
-
*/
|
|
12187
|
-
'id'?: string;
|
|
12188
|
-
/**
|
|
12189
|
-
*
|
|
12190
|
-
* @type {SnsType}
|
|
12191
|
-
* @memberof SnsHandle
|
|
12192
|
-
*/
|
|
12193
|
-
'snsType'?: SnsType;
|
|
12194
|
-
/**
|
|
12195
|
-
*
|
|
12196
|
-
* @type {string}
|
|
12197
|
-
* @memberof SnsHandle
|
|
12198
|
-
*/
|
|
12199
|
-
'handle'?: string | null;
|
|
12200
|
-
}
|
|
12201
12121
|
/**
|
|
12202
12122
|
*
|
|
12203
12123
|
* @export
|