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 CHANGED
@@ -633,10 +633,10 @@ export interface ArticleContributorModel {
633
633
  'contributorContent'?: string | null;
634
634
  /**
635
635
  *
636
- * @type {Array<SnsHandle>}
636
+ * @type {Array<SnsHandleModel>}
637
637
  * @memberof ArticleContributorModel
638
638
  */
639
- 'contributorSnsHandles'?: Array<SnsHandle> | null;
639
+ 'contributorSnsHandles'?: Array<SnsHandleModel> | null;
640
640
  }
641
641
  /**
642
642
  *
@@ -3384,10 +3384,10 @@ export interface CreateAboutUsPageCommand {
3384
3384
  'backgroundThumbnail'?: string | null;
3385
3385
  /**
3386
3386
  *
3387
- * @type {Array<Media>}
3387
+ * @type {Array<MediaModel>}
3388
3388
  * @memberof CreateAboutUsPageCommand
3389
3389
  */
3390
- 'medias'?: Array<Media> | null;
3390
+ 'medias'?: Array<MediaModel> | null;
3391
3391
  }
3392
3392
  /**
3393
3393
  *
@@ -10288,61 +10288,6 @@ export declare enum MarketingType {
10288
10288
  GeneralHealth = "GeneralHealth",
10289
10289
  Beauty = "Beauty"
10290
10290
  }
10291
- /**
10292
- *
10293
- * @export
10294
- * @interface Media
10295
- */
10296
- export interface Media {
10297
- /**
10298
- *
10299
- * @type {string}
10300
- * @memberof Media
10301
- */
10302
- 'id'?: string;
10303
- /**
10304
- *
10305
- * @type {MediaType}
10306
- * @memberof Media
10307
- */
10308
- 'mediaType'?: MediaType;
10309
- /**
10310
- *
10311
- * @type {string}
10312
- * @memberof Media
10313
- */
10314
- 'url'?: string | null;
10315
- /**
10316
- *
10317
- * @type {string}
10318
- * @memberof Media
10319
- */
10320
- 'thumbnailUrl'?: string | null;
10321
- /**
10322
- *
10323
- * @type {string}
10324
- * @memberof Media
10325
- */
10326
- 'description'?: string | null;
10327
- /**
10328
- *
10329
- * @type {number}
10330
- * @memberof Media
10331
- */
10332
- 'height'?: number;
10333
- /**
10334
- *
10335
- * @type {number}
10336
- * @memberof Media
10337
- */
10338
- 'width'?: number;
10339
- /**
10340
- *
10341
- * @type {number}
10342
- * @memberof Media
10343
- */
10344
- 'order'?: number;
10345
- }
10346
10291
  /**
10347
10292
  *
10348
10293
  * @export
@@ -12127,31 +12072,6 @@ export interface ServiceReviewsModel {
12127
12072
  */
12128
12073
  'metaData'?: PagedListMetaData;
12129
12074
  }
12130
- /**
12131
- *
12132
- * @export
12133
- * @interface SnsHandle
12134
- */
12135
- export interface SnsHandle {
12136
- /**
12137
- *
12138
- * @type {string}
12139
- * @memberof SnsHandle
12140
- */
12141
- 'id'?: string;
12142
- /**
12143
- *
12144
- * @type {SnsType}
12145
- * @memberof SnsHandle
12146
- */
12147
- 'snsType'?: SnsType;
12148
- /**
12149
- *
12150
- * @type {string}
12151
- * @memberof SnsHandle
12152
- */
12153
- 'handle'?: string | null;
12154
- }
12155
12075
  /**
12156
12076
  *
12157
12077
  * @export