@infisale-client/api-client 1.3.3 → 1.3.5

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.
Files changed (2) hide show
  1. package/dist/api/api.d.ts +1069 -76
  2. package/package.json +2 -2
package/dist/api/api.d.ts CHANGED
@@ -980,6 +980,18 @@ export type IBrandCollectionQueryParamsDateFieldEnum = typeof IBrandCollectionQu
980
980
  * @interface IBrandPatchRequest
981
981
  */
982
982
  export interface IBrandPatchRequest {
983
+ /**
984
+ *
985
+ * @type {ContentStatusEnum}
986
+ * @memberof IBrandPatchRequest
987
+ */
988
+ 'status'?: ContentStatusEnum;
989
+ /**
990
+ *
991
+ * @type {string}
992
+ * @memberof IBrandPatchRequest
993
+ */
994
+ 'title'?: string;
983
995
  /**
984
996
  *
985
997
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -992,6 +1004,42 @@ export interface IBrandPatchRequest {
992
1004
  * @memberof IBrandPatchRequest
993
1005
  */
994
1006
  'thumbnail'?: IImage;
1007
+ /**
1008
+ *
1009
+ * @type {string}
1010
+ * @memberof IBrandPatchRequest
1011
+ */
1012
+ 'description'?: string;
1013
+ /**
1014
+ *
1015
+ * @type {string}
1016
+ * @memberof IBrandPatchRequest
1017
+ */
1018
+ 'metaTitle'?: string;
1019
+ /**
1020
+ *
1021
+ * @type {string}
1022
+ * @memberof IBrandPatchRequest
1023
+ */
1024
+ 'metaDescription'?: string;
1025
+ /**
1026
+ *
1027
+ * @type {Array<string>}
1028
+ * @memberof IBrandPatchRequest
1029
+ */
1030
+ 'keywords'?: Array<string>;
1031
+ /**
1032
+ *
1033
+ * @type {string}
1034
+ * @memberof IBrandPatchRequest
1035
+ */
1036
+ 'slug'?: string;
1037
+ /**
1038
+ *
1039
+ * @type {string}
1040
+ * @memberof IBrandPatchRequest
1041
+ */
1042
+ 'content'?: string;
995
1043
  }
996
1044
  /**
997
1045
  *
@@ -1005,6 +1053,18 @@ export interface IBrandPostRequest {
1005
1053
  * @memberof IBrandPostRequest
1006
1054
  */
1007
1055
  'company': string;
1056
+ /**
1057
+ *
1058
+ * @type {ContentStatusEnum}
1059
+ * @memberof IBrandPostRequest
1060
+ */
1061
+ 'status': ContentStatusEnum;
1062
+ /**
1063
+ *
1064
+ * @type {string}
1065
+ * @memberof IBrandPostRequest
1066
+ */
1067
+ 'title': string;
1008
1068
  /**
1009
1069
  *
1010
1070
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1017,6 +1077,42 @@ export interface IBrandPostRequest {
1017
1077
  * @memberof IBrandPostRequest
1018
1078
  */
1019
1079
  'thumbnail'?: IImage;
1080
+ /**
1081
+ *
1082
+ * @type {string}
1083
+ * @memberof IBrandPostRequest
1084
+ */
1085
+ 'description'?: string;
1086
+ /**
1087
+ *
1088
+ * @type {string}
1089
+ * @memberof IBrandPostRequest
1090
+ */
1091
+ 'metaTitle'?: string;
1092
+ /**
1093
+ *
1094
+ * @type {string}
1095
+ * @memberof IBrandPostRequest
1096
+ */
1097
+ 'metaDescription'?: string;
1098
+ /**
1099
+ *
1100
+ * @type {Array<string>}
1101
+ * @memberof IBrandPostRequest
1102
+ */
1103
+ 'keywords'?: Array<string>;
1104
+ /**
1105
+ *
1106
+ * @type {string}
1107
+ * @memberof IBrandPostRequest
1108
+ */
1109
+ 'slug': string;
1110
+ /**
1111
+ *
1112
+ * @type {string}
1113
+ * @memberof IBrandPostRequest
1114
+ */
1115
+ 'content'?: string;
1020
1116
  }
1021
1117
  /**
1022
1118
  *
@@ -1050,16 +1146,64 @@ export interface IBrandResponse {
1050
1146
  'updatedAt': string;
1051
1147
  /**
1052
1148
  *
1053
- * @type {string}
1149
+ * @type {ContentStatusEnum}
1054
1150
  * @memberof IBrandResponse
1055
1151
  */
1056
- 'company': string;
1152
+ 'status': ContentStatusEnum;
1057
1153
  /**
1058
1154
  *
1059
1155
  * @type {IImage}
1060
1156
  * @memberof IBrandResponse
1061
1157
  */
1062
1158
  'thumbnail'?: IImage;
1159
+ /**
1160
+ *
1161
+ * @type {string}
1162
+ * @memberof IBrandResponse
1163
+ */
1164
+ 'content'?: string;
1165
+ /**
1166
+ *
1167
+ * @type {string}
1168
+ * @memberof IBrandResponse
1169
+ */
1170
+ 'slug': string;
1171
+ /**
1172
+ *
1173
+ * @type {Array<string>}
1174
+ * @memberof IBrandResponse
1175
+ */
1176
+ 'keywords'?: Array<string>;
1177
+ /**
1178
+ *
1179
+ * @type {string}
1180
+ * @memberof IBrandResponse
1181
+ */
1182
+ 'metaDescription'?: string;
1183
+ /**
1184
+ *
1185
+ * @type {string}
1186
+ * @memberof IBrandResponse
1187
+ */
1188
+ 'metaTitle'?: string;
1189
+ /**
1190
+ *
1191
+ * @type {string}
1192
+ * @memberof IBrandResponse
1193
+ */
1194
+ 'description'?: string;
1195
+ /**
1196
+ *
1197
+ * @type {string}
1198
+ * @memberof IBrandResponse
1199
+ */
1200
+ 'title': string;
1201
+ /**
1202
+ *
1203
+ * @type {string}
1204
+ * @memberof IBrandResponse
1205
+ */
1206
+ 'company': string;
1063
1207
  /**
1064
1208
  *
1065
1209
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1295,6 +1439,18 @@ export interface ICategoryPatchRequest {
1295
1439
  * @memberof ICategoryPatchRequest
1296
1440
  */
1297
1441
  'company'?: string;
1442
+ /**
1443
+ *
1444
+ * @type {ContentStatusEnum}
1445
+ * @memberof ICategoryPatchRequest
1446
+ */
1447
+ 'status'?: ContentStatusEnum;
1448
+ /**
1449
+ *
1450
+ * @type {string}
1451
+ * @memberof ICategoryPatchRequest
1452
+ */
1453
+ 'title'?: string;
1298
1454
  /**
1299
1455
  *
1300
1456
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1313,6 +1469,42 @@ export interface ICategoryPatchRequest {
1313
1469
  * @memberof ICategoryPatchRequest
1314
1470
  */
1315
1471
  'main'?: string;
1472
+ /**
1473
+ *
1474
+ * @type {string}
1475
+ * @memberof ICategoryPatchRequest
1476
+ */
1477
+ 'description'?: string;
1478
+ /**
1479
+ *
1480
+ * @type {string}
1481
+ * @memberof ICategoryPatchRequest
1482
+ */
1483
+ 'metaTitle'?: string;
1484
+ /**
1485
+ *
1486
+ * @type {string}
1487
+ * @memberof ICategoryPatchRequest
1488
+ */
1489
+ 'metaDescription'?: string;
1490
+ /**
1491
+ *
1492
+ * @type {Array<string>}
1493
+ * @memberof ICategoryPatchRequest
1494
+ */
1495
+ 'keywords'?: Array<string>;
1496
+ /**
1497
+ *
1498
+ * @type {string}
1499
+ * @memberof ICategoryPatchRequest
1500
+ */
1501
+ 'slug'?: string;
1502
+ /**
1503
+ *
1504
+ * @type {string}
1505
+ * @memberof ICategoryPatchRequest
1506
+ */
1507
+ 'content'?: string;
1316
1508
  }
1317
1509
  /**
1318
1510
  *
@@ -1326,6 +1518,18 @@ export interface ICategoryPostRequest {
1326
1518
  * @memberof ICategoryPostRequest
1327
1519
  */
1328
1520
  'company': string;
1521
+ /**
1522
+ *
1523
+ * @type {ContentStatusEnum}
1524
+ * @memberof ICategoryPostRequest
1525
+ */
1526
+ 'status': ContentStatusEnum;
1527
+ /**
1528
+ *
1529
+ * @type {string}
1530
+ * @memberof ICategoryPostRequest
1531
+ */
1532
+ 'title': string;
1329
1533
  /**
1330
1534
  *
1331
1535
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1344,6 +1548,42 @@ export interface ICategoryPostRequest {
1344
1548
  * @memberof ICategoryPostRequest
1345
1549
  */
1346
1550
  'main'?: string;
1551
+ /**
1552
+ *
1553
+ * @type {string}
1554
+ * @memberof ICategoryPostRequest
1555
+ */
1556
+ 'description'?: string;
1557
+ /**
1558
+ *
1559
+ * @type {string}
1560
+ * @memberof ICategoryPostRequest
1561
+ */
1562
+ 'metaTitle'?: string;
1563
+ /**
1564
+ *
1565
+ * @type {string}
1566
+ * @memberof ICategoryPostRequest
1567
+ */
1568
+ 'metaDescription'?: string;
1569
+ /**
1570
+ *
1571
+ * @type {Array<string>}
1572
+ * @memberof ICategoryPostRequest
1573
+ */
1574
+ 'keywords'?: Array<string>;
1575
+ /**
1576
+ *
1577
+ * @type {string}
1578
+ * @memberof ICategoryPostRequest
1579
+ */
1580
+ 'slug': string;
1581
+ /**
1582
+ *
1583
+ * @type {string}
1584
+ * @memberof ICategoryPostRequest
1585
+ */
1586
+ 'content'?: string;
1347
1587
  /**
1348
1588
  *
1349
1589
  * @type {Array<ICategoryAttributesResponseAttributesInner>}
@@ -1411,6 +1651,54 @@ export interface ICategoryResponse {
1411
1651
  * @memberof ICategoryResponse
1412
1652
  */
1413
1653
  'main'?: string;
1654
+ /**
1655
+ *
1656
+ * @type {ContentStatusEnum}
1657
+ * @memberof ICategoryResponse
1658
+ */
1659
+ 'status': ContentStatusEnum;
1660
+ /**
1661
+ *
1662
+ * @type {string}
1663
+ * @memberof ICategoryResponse
1664
+ */
1665
+ 'content'?: string;
1666
+ /**
1667
+ *
1668
+ * @type {string}
1669
+ * @memberof ICategoryResponse
1670
+ */
1671
+ 'slug': string;
1672
+ /**
1673
+ *
1674
+ * @type {Array<string>}
1675
+ * @memberof ICategoryResponse
1676
+ */
1677
+ 'keywords'?: Array<string>;
1678
+ /**
1679
+ *
1680
+ * @type {string}
1681
+ * @memberof ICategoryResponse
1682
+ */
1683
+ 'metaDescription'?: string;
1684
+ /**
1685
+ *
1686
+ * @type {string}
1687
+ * @memberof ICategoryResponse
1688
+ */
1689
+ 'metaTitle'?: string;
1690
+ /**
1691
+ *
1692
+ * @type {string}
1693
+ * @memberof ICategoryResponse
1694
+ */
1695
+ 'description'?: string;
1696
+ /**
1697
+ *
1698
+ * @type {string}
1699
+ * @memberof ICategoryResponse
1700
+ */
1701
+ 'title': string;
1414
1702
  /**
1415
1703
  *
1416
1704
  * @type {Array<ICategoryResponseAttributesInner>}
@@ -1665,22 +1953,70 @@ export type ICollectionCollectionsQueryParamsDateFieldEnum = typeof ICollectionC
1665
1953
  export interface ICollectionPatchRequest {
1666
1954
  /**
1667
1955
  *
1668
- * @type {ITemplateResponse}
1956
+ * @type {ContentStatusEnum}
1957
+ * @memberof ICollectionPatchRequest
1958
+ */
1959
+ 'status'?: ContentStatusEnum;
1960
+ /**
1961
+ *
1962
+ * @type {string}
1963
+ * @memberof ICollectionPatchRequest
1964
+ */
1965
+ 'title'?: string;
1966
+ /**
1967
+ *
1968
+ * @type {ITemplateResponse}
1969
+ * @memberof ICollectionPatchRequest
1970
+ */
1971
+ 'template'?: ITemplateResponse;
1972
+ /**
1973
+ *
1974
+ * @type {PartialRecordLanguageEnumIContentsValue}
1975
+ * @memberof ICollectionPatchRequest
1976
+ */
1977
+ 'contents'?: PartialRecordLanguageEnumIContentsValue;
1978
+ /**
1979
+ *
1980
+ * @type {IImage}
1981
+ * @memberof ICollectionPatchRequest
1982
+ */
1983
+ 'thumbnail'?: IImage;
1984
+ /**
1985
+ *
1986
+ * @type {string}
1987
+ * @memberof ICollectionPatchRequest
1988
+ */
1989
+ 'description'?: string;
1990
+ /**
1991
+ *
1992
+ * @type {string}
1993
+ * @memberof ICollectionPatchRequest
1994
+ */
1995
+ 'metaTitle'?: string;
1996
+ /**
1997
+ *
1998
+ * @type {string}
1669
1999
  * @memberof ICollectionPatchRequest
1670
2000
  */
1671
- 'template'?: ITemplateResponse;
2001
+ 'metaDescription'?: string;
1672
2002
  /**
1673
2003
  *
1674
- * @type {PartialRecordLanguageEnumIContentsValue}
2004
+ * @type {Array<string>}
1675
2005
  * @memberof ICollectionPatchRequest
1676
2006
  */
1677
- 'contents'?: PartialRecordLanguageEnumIContentsValue;
2007
+ 'keywords'?: Array<string>;
1678
2008
  /**
1679
2009
  *
1680
- * @type {IImage}
2010
+ * @type {string}
1681
2011
  * @memberof ICollectionPatchRequest
1682
2012
  */
1683
- 'thumbnail'?: IImage;
2013
+ 'slug'?: string;
2014
+ /**
2015
+ *
2016
+ * @type {string}
2017
+ * @memberof ICollectionPatchRequest
2018
+ */
2019
+ 'content'?: string;
1684
2020
  }
1685
2021
  /**
1686
2022
  *
@@ -1694,6 +2030,18 @@ export interface ICollectionPostRequest {
1694
2030
  * @memberof ICollectionPostRequest
1695
2031
  */
1696
2032
  'company': string;
2033
+ /**
2034
+ *
2035
+ * @type {ContentStatusEnum}
2036
+ * @memberof ICollectionPostRequest
2037
+ */
2038
+ 'status': ContentStatusEnum;
2039
+ /**
2040
+ *
2041
+ * @type {string}
2042
+ * @memberof ICollectionPostRequest
2043
+ */
2044
+ 'title': string;
1697
2045
  /**
1698
2046
  *
1699
2047
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1706,6 +2054,42 @@ export interface ICollectionPostRequest {
1706
2054
  * @memberof ICollectionPostRequest
1707
2055
  */
1708
2056
  'thumbnail'?: IImage;
2057
+ /**
2058
+ *
2059
+ * @type {string}
2060
+ * @memberof ICollectionPostRequest
2061
+ */
2062
+ 'description'?: string;
2063
+ /**
2064
+ *
2065
+ * @type {string}
2066
+ * @memberof ICollectionPostRequest
2067
+ */
2068
+ 'metaTitle'?: string;
2069
+ /**
2070
+ *
2071
+ * @type {string}
2072
+ * @memberof ICollectionPostRequest
2073
+ */
2074
+ 'metaDescription'?: string;
2075
+ /**
2076
+ *
2077
+ * @type {Array<string>}
2078
+ * @memberof ICollectionPostRequest
2079
+ */
2080
+ 'keywords'?: Array<string>;
2081
+ /**
2082
+ *
2083
+ * @type {string}
2084
+ * @memberof ICollectionPostRequest
2085
+ */
2086
+ 'slug': string;
2087
+ /**
2088
+ *
2089
+ * @type {string}
2090
+ * @memberof ICollectionPostRequest
2091
+ */
2092
+ 'content'?: string;
1709
2093
  /**
1710
2094
  *
1711
2095
  * @type {ITemplateResponse}
@@ -1775,6 +2159,54 @@ export interface ICollectionResponse {
1775
2159
  'templates': {
1776
2160
  [key: string]: string;
1777
2161
  };
2162
+ /**
2163
+ *
2164
+ * @type {ContentStatusEnum}
2165
+ * @memberof ICollectionResponse
2166
+ */
2167
+ 'status': ContentStatusEnum;
2168
+ /**
2169
+ *
2170
+ * @type {string}
2171
+ * @memberof ICollectionResponse
2172
+ */
2173
+ 'content'?: string;
2174
+ /**
2175
+ *
2176
+ * @type {string}
2177
+ * @memberof ICollectionResponse
2178
+ */
2179
+ 'slug': string;
2180
+ /**
2181
+ *
2182
+ * @type {Array<string>}
2183
+ * @memberof ICollectionResponse
2184
+ */
2185
+ 'keywords'?: Array<string>;
2186
+ /**
2187
+ *
2188
+ * @type {string}
2189
+ * @memberof ICollectionResponse
2190
+ */
2191
+ 'metaDescription'?: string;
2192
+ /**
2193
+ *
2194
+ * @type {string}
2195
+ * @memberof ICollectionResponse
2196
+ */
2197
+ 'metaTitle'?: string;
2198
+ /**
2199
+ *
2200
+ * @type {string}
2201
+ * @memberof ICollectionResponse
2202
+ */
2203
+ 'description'?: string;
2204
+ /**
2205
+ *
2206
+ * @type {string}
2207
+ * @memberof ICollectionResponse
2208
+ */
2209
+ 'title': string;
1778
2210
  /**
1779
2211
  *
1780
2212
  * @type {ITemplateResponse}
@@ -6122,6 +6554,18 @@ export interface IPageGetAllQueryParams {
6122
6554
  * @interface IPagePatchRequest
6123
6555
  */
6124
6556
  export interface IPagePatchRequest {
6557
+ /**
6558
+ *
6559
+ * @type {ContentStatusEnum}
6560
+ * @memberof IPagePatchRequest
6561
+ */
6562
+ 'status'?: ContentStatusEnum;
6563
+ /**
6564
+ *
6565
+ * @type {string}
6566
+ * @memberof IPagePatchRequest
6567
+ */
6568
+ 'title'?: string;
6125
6569
  /**
6126
6570
  *
6127
6571
  * @type {ITemplateResponse}
@@ -6146,6 +6590,42 @@ export interface IPagePatchRequest {
6146
6590
  * @memberof IPagePatchRequest
6147
6591
  */
6148
6592
  'type'?: PageTypeEnum;
6593
+ /**
6594
+ *
6595
+ * @type {string}
6596
+ * @memberof IPagePatchRequest
6597
+ */
6598
+ 'description'?: string;
6599
+ /**
6600
+ *
6601
+ * @type {string}
6602
+ * @memberof IPagePatchRequest
6603
+ */
6604
+ 'metaTitle'?: string;
6605
+ /**
6606
+ *
6607
+ * @type {string}
6608
+ * @memberof IPagePatchRequest
6609
+ */
6610
+ 'metaDescription'?: string;
6611
+ /**
6612
+ *
6613
+ * @type {Array<string>}
6614
+ * @memberof IPagePatchRequest
6615
+ */
6616
+ 'keywords'?: Array<string>;
6617
+ /**
6618
+ *
6619
+ * @type {string}
6620
+ * @memberof IPagePatchRequest
6621
+ */
6622
+ 'slug'?: string;
6623
+ /**
6624
+ *
6625
+ * @type {string}
6626
+ * @memberof IPagePatchRequest
6627
+ */
6628
+ 'content'?: string;
6149
6629
  }
6150
6630
  /**
6151
6631
  *
@@ -6159,6 +6639,18 @@ export interface IPagePostRequest {
6159
6639
  * @memberof IPagePostRequest
6160
6640
  */
6161
6641
  'company': string;
6642
+ /**
6643
+ *
6644
+ * @type {ContentStatusEnum}
6645
+ * @memberof IPagePostRequest
6646
+ */
6647
+ 'status': ContentStatusEnum;
6648
+ /**
6649
+ *
6650
+ * @type {string}
6651
+ * @memberof IPagePostRequest
6652
+ */
6653
+ 'title': string;
6162
6654
  /**
6163
6655
  *
6164
6656
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -6177,6 +6669,42 @@ export interface IPagePostRequest {
6177
6669
  * @memberof IPagePostRequest
6178
6670
  */
6179
6671
  'type': PageTypeEnum;
6672
+ /**
6673
+ *
6674
+ * @type {string}
6675
+ * @memberof IPagePostRequest
6676
+ */
6677
+ 'description'?: string;
6678
+ /**
6679
+ *
6680
+ * @type {string}
6681
+ * @memberof IPagePostRequest
6682
+ */
6683
+ 'metaTitle'?: string;
6684
+ /**
6685
+ *
6686
+ * @type {string}
6687
+ * @memberof IPagePostRequest
6688
+ */
6689
+ 'metaDescription'?: string;
6690
+ /**
6691
+ *
6692
+ * @type {Array<string>}
6693
+ * @memberof IPagePostRequest
6694
+ */
6695
+ 'keywords'?: Array<string>;
6696
+ /**
6697
+ *
6698
+ * @type {string}
6699
+ * @memberof IPagePostRequest
6700
+ */
6701
+ 'slug': string;
6702
+ /**
6703
+ *
6704
+ * @type {string}
6705
+ * @memberof IPagePostRequest
6706
+ */
6707
+ 'content'?: string;
6180
6708
  /**
6181
6709
  *
6182
6710
  * @type {ITemplateResponse}
@@ -6245,13 +6773,61 @@ export interface IPageResponse {
6245
6773
  * @type {IImage}
6246
6774
  * @memberof IPageResponse
6247
6775
  */
6248
- 'thumbnail'?: IImage;
6776
+ 'thumbnail'?: IImage;
6777
+ /**
6778
+ *
6779
+ * @type {PageTypeEnum}
6780
+ * @memberof IPageResponse
6781
+ */
6782
+ 'type': PageTypeEnum;
6783
+ /**
6784
+ *
6785
+ * @type {ContentStatusEnum}
6786
+ * @memberof IPageResponse
6787
+ */
6788
+ 'status': ContentStatusEnum;
6789
+ /**
6790
+ *
6791
+ * @type {string}
6792
+ * @memberof IPageResponse
6793
+ */
6794
+ 'content'?: string;
6795
+ /**
6796
+ *
6797
+ * @type {string}
6798
+ * @memberof IPageResponse
6799
+ */
6800
+ 'slug': string;
6801
+ /**
6802
+ *
6803
+ * @type {Array<string>}
6804
+ * @memberof IPageResponse
6805
+ */
6806
+ 'keywords'?: Array<string>;
6807
+ /**
6808
+ *
6809
+ * @type {string}
6810
+ * @memberof IPageResponse
6811
+ */
6812
+ 'metaDescription'?: string;
6813
+ /**
6814
+ *
6815
+ * @type {string}
6816
+ * @memberof IPageResponse
6817
+ */
6818
+ 'metaTitle'?: string;
6819
+ /**
6820
+ *
6821
+ * @type {string}
6822
+ * @memberof IPageResponse
6823
+ */
6824
+ 'description'?: string;
6249
6825
  /**
6250
6826
  *
6251
- * @type {PageTypeEnum}
6827
+ * @type {string}
6252
6828
  * @memberof IPageResponse
6253
6829
  */
6254
- 'type': PageTypeEnum;
6830
+ 'title': string;
6255
6831
  /**
6256
6832
  *
6257
6833
  * @type {ITemplateResponse}
@@ -6913,6 +7489,18 @@ export interface IProductPatchRequest {
6913
7489
  * @memberof IProductPatchRequest
6914
7490
  */
6915
7491
  'company'?: string;
7492
+ /**
7493
+ *
7494
+ * @type {ContentStatusEnum}
7495
+ * @memberof IProductPatchRequest
7496
+ */
7497
+ 'status'?: ContentStatusEnum;
7498
+ /**
7499
+ *
7500
+ * @type {string}
7501
+ * @memberof IProductPatchRequest
7502
+ */
7503
+ 'title'?: string;
6916
7504
  /**
6917
7505
  *
6918
7506
  * @type {boolean}
@@ -6985,6 +7573,48 @@ export interface IProductPatchRequest {
6985
7573
  'attributes'?: {
6986
7574
  [key: string]: string;
6987
7575
  };
7576
+ /**
7577
+ *
7578
+ * @type {IImage}
7579
+ * @memberof IProductPatchRequest
7580
+ */
7581
+ 'thumbnail'?: IImage;
7582
+ /**
7583
+ *
7584
+ * @type {string}
7585
+ * @memberof IProductPatchRequest
7586
+ */
7587
+ 'description'?: string;
7588
+ /**
7589
+ *
7590
+ * @type {string}
7591
+ * @memberof IProductPatchRequest
7592
+ */
7593
+ 'metaTitle'?: string;
7594
+ /**
7595
+ *
7596
+ * @type {string}
7597
+ * @memberof IProductPatchRequest
7598
+ */
7599
+ 'metaDescription'?: string;
7600
+ /**
7601
+ *
7602
+ * @type {Array<string>}
7603
+ * @memberof IProductPatchRequest
7604
+ */
7605
+ 'keywords'?: Array<string>;
7606
+ /**
7607
+ *
7608
+ * @type {string}
7609
+ * @memberof IProductPatchRequest
7610
+ */
7611
+ 'slug'?: string;
7612
+ /**
7613
+ *
7614
+ * @type {string}
7615
+ * @memberof IProductPatchRequest
7616
+ */
7617
+ 'content'?: string;
6988
7618
  }
6989
7619
  /**
6990
7620
  *
@@ -6998,6 +7628,18 @@ export interface IProductPostRequest {
6998
7628
  * @memberof IProductPostRequest
6999
7629
  */
7000
7630
  'company': string;
7631
+ /**
7632
+ *
7633
+ * @type {ContentStatusEnum}
7634
+ * @memberof IProductPostRequest
7635
+ */
7636
+ 'status': ContentStatusEnum;
7637
+ /**
7638
+ *
7639
+ * @type {string}
7640
+ * @memberof IProductPostRequest
7641
+ */
7642
+ 'title': string;
7001
7643
  /**
7002
7644
  *
7003
7645
  * @type {boolean}
@@ -7070,6 +7712,48 @@ export interface IProductPostRequest {
7070
7712
  'attributes'?: {
7071
7713
  [key: string]: string;
7072
7714
  };
7715
+ /**
7716
+ *
7717
+ * @type {IImage}
7718
+ * @memberof IProductPostRequest
7719
+ */
7720
+ 'thumbnail'?: IImage;
7721
+ /**
7722
+ *
7723
+ * @type {string}
7724
+ * @memberof IProductPostRequest
7725
+ */
7726
+ 'description'?: string;
7727
+ /**
7728
+ *
7729
+ * @type {string}
7730
+ * @memberof IProductPostRequest
7731
+ */
7732
+ 'metaTitle'?: string;
7733
+ /**
7734
+ *
7735
+ * @type {string}
7736
+ * @memberof IProductPostRequest
7737
+ */
7738
+ 'metaDescription'?: string;
7739
+ /**
7740
+ *
7741
+ * @type {Array<string>}
7742
+ * @memberof IProductPostRequest
7743
+ */
7744
+ 'keywords'?: Array<string>;
7745
+ /**
7746
+ *
7747
+ * @type {string}
7748
+ * @memberof IProductPostRequest
7749
+ */
7750
+ 'slug': string;
7751
+ /**
7752
+ *
7753
+ * @type {string}
7754
+ * @memberof IProductPostRequest
7755
+ */
7756
+ 'content'?: string;
7073
7757
  /**
7074
7758
  *
7075
7759
  * @type {string}
@@ -7241,6 +7925,60 @@ export interface IProductResponse {
7241
7925
  * @memberof IProductResponse
7242
7926
  */
7243
7927
  'reviewCounts': IProductResponseReviewCounts;
7928
+ /**
7929
+ *
7930
+ * @type {ContentStatusEnum}
7931
+ * @memberof IProductResponse
7932
+ */
7933
+ 'status': ContentStatusEnum;
7934
+ /**
7935
+ *
7936
+ * @type {IImage}
7937
+ * @memberof IProductResponse
7938
+ */
7939
+ 'thumbnail'?: IImage;
7940
+ /**
7941
+ *
7942
+ * @type {string}
7943
+ * @memberof IProductResponse
7944
+ */
7945
+ 'content'?: string;
7946
+ /**
7947
+ *
7948
+ * @type {string}
7949
+ * @memberof IProductResponse
7950
+ */
7951
+ 'slug': string;
7952
+ /**
7953
+ *
7954
+ * @type {Array<string>}
7955
+ * @memberof IProductResponse
7956
+ */
7957
+ 'keywords'?: Array<string>;
7958
+ /**
7959
+ *
7960
+ * @type {string}
7961
+ * @memberof IProductResponse
7962
+ */
7963
+ 'metaDescription'?: string;
7964
+ /**
7965
+ *
7966
+ * @type {string}
7967
+ * @memberof IProductResponse
7968
+ */
7969
+ 'metaTitle'?: string;
7970
+ /**
7971
+ *
7972
+ * @type {string}
7973
+ * @memberof IProductResponse
7974
+ */
7975
+ 'description'?: string;
7976
+ /**
7977
+ *
7978
+ * @type {string}
7979
+ * @memberof IProductResponse
7980
+ */
7981
+ 'title': string;
7244
7982
  /**
7245
7983
  *
7246
7984
  * @type {IBrandResponse}
@@ -8303,13 +9041,17 @@ export interface IThemePatchRequest {
8303
9041
  */
8304
9042
  'demoUrl'?: string;
8305
9043
  /**
8306
- * Construct a type with a set of properties K of type T
8307
- * @type {{ [key: string]: RecordStringStringOrAnyValue; }}
9044
+ *
9045
+ * @type {string}
8308
9046
  * @memberof IThemePatchRequest
8309
9047
  */
8310
- 'files'?: {
8311
- [key: string]: RecordStringStringOrAnyValue;
8312
- };
9048
+ 'assetUrl'?: string;
9049
+ /**
9050
+ *
9051
+ * @type {number}
9052
+ * @memberof IThemePatchRequest
9053
+ */
9054
+ 'assetVersion'?: number;
8313
9055
  }
8314
9056
  /**
8315
9057
  *
@@ -8344,13 +9086,17 @@ export interface IThemePostRequest {
8344
9086
  */
8345
9087
  'demoUrl'?: string;
8346
9088
  /**
8347
- * Construct a type with a set of properties K of type T
8348
- * @type {{ [key: string]: RecordStringStringOrAnyValue; }}
9089
+ *
9090
+ * @type {string}
8349
9091
  * @memberof IThemePostRequest
8350
9092
  */
8351
- 'files'?: {
8352
- [key: string]: RecordStringStringOrAnyValue;
8353
- };
9093
+ 'assetUrl': string;
9094
+ /**
9095
+ *
9096
+ * @type {number}
9097
+ * @memberof IThemePostRequest
9098
+ */
9099
+ 'assetVersion': number;
8354
9100
  /**
8355
9101
  *
8356
9102
  * @type {IThemeResponseTemplate}
@@ -8432,20 +9178,32 @@ export interface IThemeResponse {
8432
9178
  * @memberof IThemeResponse
8433
9179
  */
8434
9180
  'creator'?: string;
9181
+ /**
9182
+ *
9183
+ * @type {IThemeResponseTemplate}
9184
+ * @memberof IThemeResponse
9185
+ */
9186
+ 'template': IThemeResponseTemplate;
8435
9187
  /**
8436
9188
  * Construct a type with a set of properties K of type T
8437
- * @type {{ [key: string]: RecordStringStringOrAnyValue; }}
9189
+ * @type {{ [key: string]: any; }}
8438
9190
  * @memberof IThemeResponse
8439
9191
  */
8440
- 'files'?: {
8441
- [key: string]: RecordStringStringOrAnyValue;
9192
+ 'files': {
9193
+ [key: string]: any;
8442
9194
  };
8443
9195
  /**
8444
9196
  *
8445
- * @type {IThemeResponseTemplate}
9197
+ * @type {string}
8446
9198
  * @memberof IThemeResponse
8447
9199
  */
8448
- 'template': IThemeResponseTemplate;
9200
+ 'assetUrl': string;
9201
+ /**
9202
+ *
9203
+ * @type {number}
9204
+ * @memberof IThemeResponse
9205
+ */
9206
+ 'assetVersion': number;
8449
9207
  }
8450
9208
  /**
8451
9209
  *
@@ -9109,56 +9867,104 @@ export interface PickIBasketExcludeKeyofIBasketItems {
9109
9867
  * @type {string}
9110
9868
  * @memberof PickIBasketExcludeKeyofIBasketItems
9111
9869
  */
9112
- '_id': string;
9870
+ '_id': string;
9871
+ /**
9872
+ *
9873
+ * @type {number}
9874
+ * @memberof PickIBasketExcludeKeyofIBasketItems
9875
+ */
9876
+ '__v': number;
9877
+ /**
9878
+ *
9879
+ * @type {string}
9880
+ * @memberof PickIBasketExcludeKeyofIBasketItems
9881
+ */
9882
+ 'createdAt': string;
9883
+ /**
9884
+ *
9885
+ * @type {string}
9886
+ * @memberof PickIBasketExcludeKeyofIBasketItems
9887
+ */
9888
+ 'updatedAt': string;
9889
+ /**
9890
+ *
9891
+ * @type {string}
9892
+ * @memberof PickIBasketExcludeKeyofIBasketItems
9893
+ */
9894
+ 'user'?: string;
9895
+ }
9896
+ /**
9897
+ * From T, pick a set of properties whose keys are in the union K
9898
+ * @export
9899
+ * @interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9900
+ */
9901
+ export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs {
9902
+ /**
9903
+ *
9904
+ * @type {string}
9905
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9906
+ */
9907
+ 'company': string;
9908
+ /**
9909
+ *
9910
+ * @type {ContentStatusEnum}
9911
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9912
+ */
9913
+ 'status': ContentStatusEnum;
9914
+ /**
9915
+ *
9916
+ * @type {string}
9917
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9918
+ */
9919
+ 'title': string;
9920
+ /**
9921
+ *
9922
+ * @type {PartialRecordLanguageEnumIContentsValue}
9923
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9924
+ */
9925
+ 'contents': PartialRecordLanguageEnumIContentsValue;
9113
9926
  /**
9114
9927
  *
9115
- * @type {number}
9116
- * @memberof PickIBasketExcludeKeyofIBasketItems
9928
+ * @type {IImage}
9929
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9117
9930
  */
9118
- '__v': number;
9931
+ 'thumbnail'?: IImage;
9119
9932
  /**
9120
9933
  *
9121
9934
  * @type {string}
9122
- * @memberof PickIBasketExcludeKeyofIBasketItems
9935
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9123
9936
  */
9124
- 'createdAt': string;
9937
+ 'description'?: string;
9125
9938
  /**
9126
9939
  *
9127
9940
  * @type {string}
9128
- * @memberof PickIBasketExcludeKeyofIBasketItems
9941
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9129
9942
  */
9130
- 'updatedAt': string;
9943
+ 'metaTitle'?: string;
9131
9944
  /**
9132
9945
  *
9133
9946
  * @type {string}
9134
- * @memberof PickIBasketExcludeKeyofIBasketItems
9947
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9135
9948
  */
9136
- 'user'?: string;
9137
- }
9138
- /**
9139
- * From T, pick a set of properties whose keys are in the union K
9140
- * @export
9141
- * @interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9142
- */
9143
- export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs {
9949
+ 'metaDescription'?: string;
9144
9950
  /**
9145
9951
  *
9146
- * @type {string}
9952
+ * @type {Array<string>}
9147
9953
  * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9148
9954
  */
9149
- 'company': string;
9955
+ 'keywords'?: Array<string>;
9150
9956
  /**
9151
9957
  *
9152
- * @type {PartialRecordLanguageEnumIContentsValue}
9958
+ * @type {string}
9153
9959
  * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9154
9960
  */
9155
- 'contents': PartialRecordLanguageEnumIContentsValue;
9961
+ 'slug': string;
9156
9962
  /**
9157
9963
  *
9158
- * @type {IImage}
9964
+ * @type {string}
9159
9965
  * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9160
9966
  */
9161
- 'thumbnail'?: IImage;
9967
+ 'content'?: string;
9162
9968
  }
9163
9969
  /**
9164
9970
  * From T, pick a set of properties whose keys are in the union K
@@ -9233,6 +10039,18 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
9233
10039
  * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
9234
10040
  */
9235
10041
  'company': string;
10042
+ /**
10043
+ *
10044
+ * @type {ContentStatusEnum}
10045
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10046
+ */
10047
+ 'status': ContentStatusEnum;
10048
+ /**
10049
+ *
10050
+ * @type {string}
10051
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10052
+ */
10053
+ 'title': string;
9236
10054
  /**
9237
10055
  *
9238
10056
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -9251,6 +10069,42 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
9251
10069
  * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
9252
10070
  */
9253
10071
  'main'?: string;
10072
+ /**
10073
+ *
10074
+ * @type {string}
10075
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10076
+ */
10077
+ 'description'?: string;
10078
+ /**
10079
+ *
10080
+ * @type {string}
10081
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10082
+ */
10083
+ 'metaTitle'?: string;
10084
+ /**
10085
+ *
10086
+ * @type {string}
10087
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10088
+ */
10089
+ 'metaDescription'?: string;
10090
+ /**
10091
+ *
10092
+ * @type {Array<string>}
10093
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10094
+ */
10095
+ 'keywords'?: Array<string>;
10096
+ /**
10097
+ *
10098
+ * @type {string}
10099
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10100
+ */
10101
+ 'slug': string;
10102
+ /**
10103
+ *
10104
+ * @type {string}
10105
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10106
+ */
10107
+ 'content'?: string;
9254
10108
  }
9255
10109
  /**
9256
10110
  * From T, pick a set of properties whose keys are in the union K
@@ -9368,6 +10222,18 @@ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMong
9368
10222
  * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
9369
10223
  */
9370
10224
  'company': string;
10225
+ /**
10226
+ *
10227
+ * @type {ContentStatusEnum}
10228
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10229
+ */
10230
+ 'status': ContentStatusEnum;
10231
+ /**
10232
+ *
10233
+ * @type {string}
10234
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10235
+ */
10236
+ 'title': string;
9371
10237
  /**
9372
10238
  *
9373
10239
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -9380,6 +10246,42 @@ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMong
9380
10246
  * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
9381
10247
  */
9382
10248
  'thumbnail'?: IImage;
10249
+ /**
10250
+ *
10251
+ * @type {string}
10252
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10253
+ */
10254
+ 'description'?: string;
10255
+ /**
10256
+ *
10257
+ * @type {string}
10258
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10259
+ */
10260
+ 'metaTitle'?: string;
10261
+ /**
10262
+ *
10263
+ * @type {string}
10264
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10265
+ */
10266
+ 'metaDescription'?: string;
10267
+ /**
10268
+ *
10269
+ * @type {Array<string>}
10270
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10271
+ */
10272
+ 'keywords'?: Array<string>;
10273
+ /**
10274
+ *
10275
+ * @type {string}
10276
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10277
+ */
10278
+ 'slug': string;
10279
+ /**
10280
+ *
10281
+ * @type {string}
10282
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10283
+ */
10284
+ 'content'?: string;
9383
10285
  }
9384
10286
  /**
9385
10287
  * From T, pick a set of properties whose keys are in the union K
@@ -10415,6 +11317,18 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
10415
11317
  * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10416
11318
  */
10417
11319
  'company': string;
11320
+ /**
11321
+ *
11322
+ * @type {ContentStatusEnum}
11323
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11324
+ */
11325
+ 'status': ContentStatusEnum;
11326
+ /**
11327
+ *
11328
+ * @type {string}
11329
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11330
+ */
11331
+ 'title': string;
10418
11332
  /**
10419
11333
  *
10420
11334
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -10433,6 +11347,42 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
10433
11347
  * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10434
11348
  */
10435
11349
  'type': PageTypeEnum;
11350
+ /**
11351
+ *
11352
+ * @type {string}
11353
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11354
+ */
11355
+ 'description'?: string;
11356
+ /**
11357
+ *
11358
+ * @type {string}
11359
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11360
+ */
11361
+ 'metaTitle'?: string;
11362
+ /**
11363
+ *
11364
+ * @type {string}
11365
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11366
+ */
11367
+ 'metaDescription'?: string;
11368
+ /**
11369
+ *
11370
+ * @type {Array<string>}
11371
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11372
+ */
11373
+ 'keywords'?: Array<string>;
11374
+ /**
11375
+ *
11376
+ * @type {string}
11377
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11378
+ */
11379
+ 'slug': string;
11380
+ /**
11381
+ *
11382
+ * @type {string}
11383
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11384
+ */
11385
+ 'content'?: string;
10436
11386
  }
10437
11387
  /**
10438
11388
  * From T, pick a set of properties whose keys are in the union K
@@ -10655,6 +11605,18 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
10655
11605
  * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10656
11606
  */
10657
11607
  'company': string;
11608
+ /**
11609
+ *
11610
+ * @type {ContentStatusEnum}
11611
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11612
+ */
11613
+ 'status': ContentStatusEnum;
11614
+ /**
11615
+ *
11616
+ * @type {string}
11617
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11618
+ */
11619
+ 'title': string;
10658
11620
  /**
10659
11621
  *
10660
11622
  * @type {boolean}
@@ -10727,6 +11689,48 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
10727
11689
  'attributes'?: {
10728
11690
  [key: string]: string;
10729
11691
  };
11692
+ /**
11693
+ *
11694
+ * @type {IImage}
11695
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11696
+ */
11697
+ 'thumbnail'?: IImage;
11698
+ /**
11699
+ *
11700
+ * @type {string}
11701
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11702
+ */
11703
+ 'description'?: string;
11704
+ /**
11705
+ *
11706
+ * @type {string}
11707
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11708
+ */
11709
+ 'metaTitle'?: string;
11710
+ /**
11711
+ *
11712
+ * @type {string}
11713
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11714
+ */
11715
+ 'metaDescription'?: string;
11716
+ /**
11717
+ *
11718
+ * @type {Array<string>}
11719
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11720
+ */
11721
+ 'keywords'?: Array<string>;
11722
+ /**
11723
+ *
11724
+ * @type {string}
11725
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11726
+ */
11727
+ 'slug': string;
11728
+ /**
11729
+ *
11730
+ * @type {string}
11731
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11732
+ */
11733
+ 'content'?: string;
10730
11734
  }
10731
11735
  /**
10732
11736
  * From T, pick a set of properties whose keys are in the union K
@@ -11003,37 +12007,29 @@ export interface PickIThemeExcludeKeyofIThemeTemplate {
11003
12007
  * @memberof PickIThemeExcludeKeyofIThemeTemplate
11004
12008
  */
11005
12009
  'creator'?: string;
11006
- /**
11007
- * Construct a type with a set of properties K of type T
11008
- * @type {{ [key: string]: RecordStringStringOrAnyValue; }}
11009
- * @memberof PickIThemeExcludeKeyofIThemeTemplate
11010
- */
11011
- 'files'?: {
11012
- [key: string]: RecordStringStringOrAnyValue;
11013
- };
11014
12010
  }
11015
12011
  /**
11016
12012
  * From T, pick a set of properties whose keys are in the union K
11017
12013
  * @export
11018
- * @interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
12014
+ * @interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11019
12015
  */
11020
- export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator {
12016
+ export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles {
11021
12017
  /**
11022
12018
  *
11023
12019
  * @type {string}
11024
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
12020
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11025
12021
  */
11026
12022
  'name': string;
11027
12023
  /**
11028
12024
  *
11029
12025
  * @type {IImage}
11030
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
12026
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11031
12027
  */
11032
12028
  'thumbnail'?: IImage;
11033
12029
  /**
11034
12030
  * Construct a type with a set of properties K of type T
11035
12031
  * @type {{ [key: string]: any; }}
11036
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
12032
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11037
12033
  */
11038
12034
  'config': {
11039
12035
  [key: string]: any;
@@ -11041,17 +12037,21 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseO
11041
12037
  /**
11042
12038
  *
11043
12039
  * @type {string}
11044
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
12040
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11045
12041
  */
11046
12042
  'demoUrl'?: string;
11047
12043
  /**
11048
- * Construct a type with a set of properties K of type T
11049
- * @type {{ [key: string]: RecordStringStringOrAnyValue; }}
11050
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
12044
+ *
12045
+ * @type {string}
12046
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11051
12047
  */
11052
- 'files'?: {
11053
- [key: string]: RecordStringStringOrAnyValue;
11054
- };
12048
+ 'assetUrl': string;
12049
+ /**
12050
+ *
12051
+ * @type {number}
12052
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
12053
+ */
12054
+ 'assetVersion': number;
11055
12055
  }
11056
12056
  /**
11057
12057
  * From T, pick a set of properties whose keys are in the union K
@@ -11451,13 +12451,6 @@ export interface RecordLanguageEnumTitleStringTr {
11451
12451
  */
11452
12452
  'title': string;
11453
12453
  }
11454
- /**
11455
- *
11456
- * @export
11457
- * @interface RecordStringStringOrAnyValue
11458
- */
11459
- export interface RecordStringStringOrAnyValue {
11460
- }
11461
12454
  /**
11462
12455
  *
11463
12456
  * @export