@infisale-client/api 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
@@ -993,6 +993,18 @@ export type IBrandCollectionQueryParamsDateFieldEnum = typeof IBrandCollectionQu
993
993
  * @interface IBrandPatchRequest
994
994
  */
995
995
  export interface IBrandPatchRequest {
996
+ /**
997
+ *
998
+ * @type {ContentStatusEnum}
999
+ * @memberof IBrandPatchRequest
1000
+ */
1001
+ 'status'?: ContentStatusEnum;
1002
+ /**
1003
+ *
1004
+ * @type {string}
1005
+ * @memberof IBrandPatchRequest
1006
+ */
1007
+ 'title'?: string;
996
1008
  /**
997
1009
  *
998
1010
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1005,6 +1017,42 @@ export interface IBrandPatchRequest {
1005
1017
  * @memberof IBrandPatchRequest
1006
1018
  */
1007
1019
  'thumbnail'?: IImage;
1020
+ /**
1021
+ *
1022
+ * @type {string}
1023
+ * @memberof IBrandPatchRequest
1024
+ */
1025
+ 'description'?: string;
1026
+ /**
1027
+ *
1028
+ * @type {string}
1029
+ * @memberof IBrandPatchRequest
1030
+ */
1031
+ 'metaTitle'?: string;
1032
+ /**
1033
+ *
1034
+ * @type {string}
1035
+ * @memberof IBrandPatchRequest
1036
+ */
1037
+ 'metaDescription'?: string;
1038
+ /**
1039
+ *
1040
+ * @type {Array<string>}
1041
+ * @memberof IBrandPatchRequest
1042
+ */
1043
+ 'keywords'?: Array<string>;
1044
+ /**
1045
+ *
1046
+ * @type {string}
1047
+ * @memberof IBrandPatchRequest
1048
+ */
1049
+ 'slug'?: string;
1050
+ /**
1051
+ *
1052
+ * @type {string}
1053
+ * @memberof IBrandPatchRequest
1054
+ */
1055
+ 'content'?: string;
1008
1056
  }
1009
1057
  /**
1010
1058
  *
@@ -1018,6 +1066,18 @@ export interface IBrandPostRequest {
1018
1066
  * @memberof IBrandPostRequest
1019
1067
  */
1020
1068
  'company': string;
1069
+ /**
1070
+ *
1071
+ * @type {ContentStatusEnum}
1072
+ * @memberof IBrandPostRequest
1073
+ */
1074
+ 'status': ContentStatusEnum;
1075
+ /**
1076
+ *
1077
+ * @type {string}
1078
+ * @memberof IBrandPostRequest
1079
+ */
1080
+ 'title': string;
1021
1081
  /**
1022
1082
  *
1023
1083
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1030,6 +1090,42 @@ export interface IBrandPostRequest {
1030
1090
  * @memberof IBrandPostRequest
1031
1091
  */
1032
1092
  'thumbnail'?: IImage;
1093
+ /**
1094
+ *
1095
+ * @type {string}
1096
+ * @memberof IBrandPostRequest
1097
+ */
1098
+ 'description'?: string;
1099
+ /**
1100
+ *
1101
+ * @type {string}
1102
+ * @memberof IBrandPostRequest
1103
+ */
1104
+ 'metaTitle'?: string;
1105
+ /**
1106
+ *
1107
+ * @type {string}
1108
+ * @memberof IBrandPostRequest
1109
+ */
1110
+ 'metaDescription'?: string;
1111
+ /**
1112
+ *
1113
+ * @type {Array<string>}
1114
+ * @memberof IBrandPostRequest
1115
+ */
1116
+ 'keywords'?: Array<string>;
1117
+ /**
1118
+ *
1119
+ * @type {string}
1120
+ * @memberof IBrandPostRequest
1121
+ */
1122
+ 'slug': string;
1123
+ /**
1124
+ *
1125
+ * @type {string}
1126
+ * @memberof IBrandPostRequest
1127
+ */
1128
+ 'content'?: string;
1033
1129
  }
1034
1130
  /**
1035
1131
  *
@@ -1063,16 +1159,64 @@ export interface IBrandResponse {
1063
1159
  'updatedAt': string;
1064
1160
  /**
1065
1161
  *
1066
- * @type {string}
1162
+ * @type {ContentStatusEnum}
1067
1163
  * @memberof IBrandResponse
1068
1164
  */
1069
- 'company': string;
1165
+ 'status': ContentStatusEnum;
1070
1166
  /**
1071
1167
  *
1072
1168
  * @type {IImage}
1073
1169
  * @memberof IBrandResponse
1074
1170
  */
1075
1171
  'thumbnail'?: IImage;
1172
+ /**
1173
+ *
1174
+ * @type {string}
1175
+ * @memberof IBrandResponse
1176
+ */
1177
+ 'content'?: string;
1178
+ /**
1179
+ *
1180
+ * @type {string}
1181
+ * @memberof IBrandResponse
1182
+ */
1183
+ 'slug': string;
1184
+ /**
1185
+ *
1186
+ * @type {Array<string>}
1187
+ * @memberof IBrandResponse
1188
+ */
1189
+ 'keywords'?: Array<string>;
1190
+ /**
1191
+ *
1192
+ * @type {string}
1193
+ * @memberof IBrandResponse
1194
+ */
1195
+ 'metaDescription'?: string;
1196
+ /**
1197
+ *
1198
+ * @type {string}
1199
+ * @memberof IBrandResponse
1200
+ */
1201
+ 'metaTitle'?: string;
1202
+ /**
1203
+ *
1204
+ * @type {string}
1205
+ * @memberof IBrandResponse
1206
+ */
1207
+ 'description'?: string;
1208
+ /**
1209
+ *
1210
+ * @type {string}
1211
+ * @memberof IBrandResponse
1212
+ */
1213
+ 'title': string;
1214
+ /**
1215
+ *
1216
+ * @type {string}
1217
+ * @memberof IBrandResponse
1218
+ */
1219
+ 'company': string;
1076
1220
  /**
1077
1221
  *
1078
1222
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1308,6 +1452,18 @@ export interface ICategoryPatchRequest {
1308
1452
  * @memberof ICategoryPatchRequest
1309
1453
  */
1310
1454
  'company'?: string;
1455
+ /**
1456
+ *
1457
+ * @type {ContentStatusEnum}
1458
+ * @memberof ICategoryPatchRequest
1459
+ */
1460
+ 'status'?: ContentStatusEnum;
1461
+ /**
1462
+ *
1463
+ * @type {string}
1464
+ * @memberof ICategoryPatchRequest
1465
+ */
1466
+ 'title'?: string;
1311
1467
  /**
1312
1468
  *
1313
1469
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1326,6 +1482,42 @@ export interface ICategoryPatchRequest {
1326
1482
  * @memberof ICategoryPatchRequest
1327
1483
  */
1328
1484
  'main'?: string;
1485
+ /**
1486
+ *
1487
+ * @type {string}
1488
+ * @memberof ICategoryPatchRequest
1489
+ */
1490
+ 'description'?: string;
1491
+ /**
1492
+ *
1493
+ * @type {string}
1494
+ * @memberof ICategoryPatchRequest
1495
+ */
1496
+ 'metaTitle'?: string;
1497
+ /**
1498
+ *
1499
+ * @type {string}
1500
+ * @memberof ICategoryPatchRequest
1501
+ */
1502
+ 'metaDescription'?: string;
1503
+ /**
1504
+ *
1505
+ * @type {Array<string>}
1506
+ * @memberof ICategoryPatchRequest
1507
+ */
1508
+ 'keywords'?: Array<string>;
1509
+ /**
1510
+ *
1511
+ * @type {string}
1512
+ * @memberof ICategoryPatchRequest
1513
+ */
1514
+ 'slug'?: string;
1515
+ /**
1516
+ *
1517
+ * @type {string}
1518
+ * @memberof ICategoryPatchRequest
1519
+ */
1520
+ 'content'?: string;
1329
1521
  }
1330
1522
  /**
1331
1523
  *
@@ -1339,6 +1531,18 @@ export interface ICategoryPostRequest {
1339
1531
  * @memberof ICategoryPostRequest
1340
1532
  */
1341
1533
  'company': string;
1534
+ /**
1535
+ *
1536
+ * @type {ContentStatusEnum}
1537
+ * @memberof ICategoryPostRequest
1538
+ */
1539
+ 'status': ContentStatusEnum;
1540
+ /**
1541
+ *
1542
+ * @type {string}
1543
+ * @memberof ICategoryPostRequest
1544
+ */
1545
+ 'title': string;
1342
1546
  /**
1343
1547
  *
1344
1548
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1357,6 +1561,42 @@ export interface ICategoryPostRequest {
1357
1561
  * @memberof ICategoryPostRequest
1358
1562
  */
1359
1563
  'main'?: string;
1564
+ /**
1565
+ *
1566
+ * @type {string}
1567
+ * @memberof ICategoryPostRequest
1568
+ */
1569
+ 'description'?: string;
1570
+ /**
1571
+ *
1572
+ * @type {string}
1573
+ * @memberof ICategoryPostRequest
1574
+ */
1575
+ 'metaTitle'?: string;
1576
+ /**
1577
+ *
1578
+ * @type {string}
1579
+ * @memberof ICategoryPostRequest
1580
+ */
1581
+ 'metaDescription'?: string;
1582
+ /**
1583
+ *
1584
+ * @type {Array<string>}
1585
+ * @memberof ICategoryPostRequest
1586
+ */
1587
+ 'keywords'?: Array<string>;
1588
+ /**
1589
+ *
1590
+ * @type {string}
1591
+ * @memberof ICategoryPostRequest
1592
+ */
1593
+ 'slug': string;
1594
+ /**
1595
+ *
1596
+ * @type {string}
1597
+ * @memberof ICategoryPostRequest
1598
+ */
1599
+ 'content'?: string;
1360
1600
  /**
1361
1601
  *
1362
1602
  * @type {Array<ICategoryAttributesResponseAttributesInner>}
@@ -1424,6 +1664,54 @@ export interface ICategoryResponse {
1424
1664
  * @memberof ICategoryResponse
1425
1665
  */
1426
1666
  'main'?: string;
1667
+ /**
1668
+ *
1669
+ * @type {ContentStatusEnum}
1670
+ * @memberof ICategoryResponse
1671
+ */
1672
+ 'status': ContentStatusEnum;
1673
+ /**
1674
+ *
1675
+ * @type {string}
1676
+ * @memberof ICategoryResponse
1677
+ */
1678
+ 'content'?: string;
1679
+ /**
1680
+ *
1681
+ * @type {string}
1682
+ * @memberof ICategoryResponse
1683
+ */
1684
+ 'slug': string;
1685
+ /**
1686
+ *
1687
+ * @type {Array<string>}
1688
+ * @memberof ICategoryResponse
1689
+ */
1690
+ 'keywords'?: Array<string>;
1691
+ /**
1692
+ *
1693
+ * @type {string}
1694
+ * @memberof ICategoryResponse
1695
+ */
1696
+ 'metaDescription'?: string;
1697
+ /**
1698
+ *
1699
+ * @type {string}
1700
+ * @memberof ICategoryResponse
1701
+ */
1702
+ 'metaTitle'?: string;
1703
+ /**
1704
+ *
1705
+ * @type {string}
1706
+ * @memberof ICategoryResponse
1707
+ */
1708
+ 'description'?: string;
1709
+ /**
1710
+ *
1711
+ * @type {string}
1712
+ * @memberof ICategoryResponse
1713
+ */
1714
+ 'title': string;
1427
1715
  /**
1428
1716
  *
1429
1717
  * @type {Array<ICategoryResponseAttributesInner>}
@@ -1678,22 +1966,70 @@ export type ICollectionCollectionsQueryParamsDateFieldEnum = typeof ICollectionC
1678
1966
  export interface ICollectionPatchRequest {
1679
1967
  /**
1680
1968
  *
1681
- * @type {ITemplateResponse}
1969
+ * @type {ContentStatusEnum}
1970
+ * @memberof ICollectionPatchRequest
1971
+ */
1972
+ 'status'?: ContentStatusEnum;
1973
+ /**
1974
+ *
1975
+ * @type {string}
1976
+ * @memberof ICollectionPatchRequest
1977
+ */
1978
+ 'title'?: string;
1979
+ /**
1980
+ *
1981
+ * @type {ITemplateResponse}
1982
+ * @memberof ICollectionPatchRequest
1983
+ */
1984
+ 'template'?: ITemplateResponse;
1985
+ /**
1986
+ *
1987
+ * @type {PartialRecordLanguageEnumIContentsValue}
1988
+ * @memberof ICollectionPatchRequest
1989
+ */
1990
+ 'contents'?: PartialRecordLanguageEnumIContentsValue;
1991
+ /**
1992
+ *
1993
+ * @type {IImage}
1994
+ * @memberof ICollectionPatchRequest
1995
+ */
1996
+ 'thumbnail'?: IImage;
1997
+ /**
1998
+ *
1999
+ * @type {string}
2000
+ * @memberof ICollectionPatchRequest
2001
+ */
2002
+ 'description'?: string;
2003
+ /**
2004
+ *
2005
+ * @type {string}
2006
+ * @memberof ICollectionPatchRequest
2007
+ */
2008
+ 'metaTitle'?: string;
2009
+ /**
2010
+ *
2011
+ * @type {string}
1682
2012
  * @memberof ICollectionPatchRequest
1683
2013
  */
1684
- 'template'?: ITemplateResponse;
2014
+ 'metaDescription'?: string;
1685
2015
  /**
1686
2016
  *
1687
- * @type {PartialRecordLanguageEnumIContentsValue}
2017
+ * @type {Array<string>}
1688
2018
  * @memberof ICollectionPatchRequest
1689
2019
  */
1690
- 'contents'?: PartialRecordLanguageEnumIContentsValue;
2020
+ 'keywords'?: Array<string>;
1691
2021
  /**
1692
2022
  *
1693
- * @type {IImage}
2023
+ * @type {string}
1694
2024
  * @memberof ICollectionPatchRequest
1695
2025
  */
1696
- 'thumbnail'?: IImage;
2026
+ 'slug'?: string;
2027
+ /**
2028
+ *
2029
+ * @type {string}
2030
+ * @memberof ICollectionPatchRequest
2031
+ */
2032
+ 'content'?: string;
1697
2033
  }
1698
2034
  /**
1699
2035
  *
@@ -1707,6 +2043,18 @@ export interface ICollectionPostRequest {
1707
2043
  * @memberof ICollectionPostRequest
1708
2044
  */
1709
2045
  'company': string;
2046
+ /**
2047
+ *
2048
+ * @type {ContentStatusEnum}
2049
+ * @memberof ICollectionPostRequest
2050
+ */
2051
+ 'status': ContentStatusEnum;
2052
+ /**
2053
+ *
2054
+ * @type {string}
2055
+ * @memberof ICollectionPostRequest
2056
+ */
2057
+ 'title': string;
1710
2058
  /**
1711
2059
  *
1712
2060
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1719,6 +2067,42 @@ export interface ICollectionPostRequest {
1719
2067
  * @memberof ICollectionPostRequest
1720
2068
  */
1721
2069
  'thumbnail'?: IImage;
2070
+ /**
2071
+ *
2072
+ * @type {string}
2073
+ * @memberof ICollectionPostRequest
2074
+ */
2075
+ 'description'?: string;
2076
+ /**
2077
+ *
2078
+ * @type {string}
2079
+ * @memberof ICollectionPostRequest
2080
+ */
2081
+ 'metaTitle'?: string;
2082
+ /**
2083
+ *
2084
+ * @type {string}
2085
+ * @memberof ICollectionPostRequest
2086
+ */
2087
+ 'metaDescription'?: string;
2088
+ /**
2089
+ *
2090
+ * @type {Array<string>}
2091
+ * @memberof ICollectionPostRequest
2092
+ */
2093
+ 'keywords'?: Array<string>;
2094
+ /**
2095
+ *
2096
+ * @type {string}
2097
+ * @memberof ICollectionPostRequest
2098
+ */
2099
+ 'slug': string;
2100
+ /**
2101
+ *
2102
+ * @type {string}
2103
+ * @memberof ICollectionPostRequest
2104
+ */
2105
+ 'content'?: string;
1722
2106
  /**
1723
2107
  *
1724
2108
  * @type {ITemplateResponse}
@@ -1788,6 +2172,54 @@ export interface ICollectionResponse {
1788
2172
  'templates': {
1789
2173
  [key: string]: string;
1790
2174
  };
2175
+ /**
2176
+ *
2177
+ * @type {ContentStatusEnum}
2178
+ * @memberof ICollectionResponse
2179
+ */
2180
+ 'status': ContentStatusEnum;
2181
+ /**
2182
+ *
2183
+ * @type {string}
2184
+ * @memberof ICollectionResponse
2185
+ */
2186
+ 'content'?: string;
2187
+ /**
2188
+ *
2189
+ * @type {string}
2190
+ * @memberof ICollectionResponse
2191
+ */
2192
+ 'slug': string;
2193
+ /**
2194
+ *
2195
+ * @type {Array<string>}
2196
+ * @memberof ICollectionResponse
2197
+ */
2198
+ 'keywords'?: Array<string>;
2199
+ /**
2200
+ *
2201
+ * @type {string}
2202
+ * @memberof ICollectionResponse
2203
+ */
2204
+ 'metaDescription'?: string;
2205
+ /**
2206
+ *
2207
+ * @type {string}
2208
+ * @memberof ICollectionResponse
2209
+ */
2210
+ 'metaTitle'?: string;
2211
+ /**
2212
+ *
2213
+ * @type {string}
2214
+ * @memberof ICollectionResponse
2215
+ */
2216
+ 'description'?: string;
2217
+ /**
2218
+ *
2219
+ * @type {string}
2220
+ * @memberof ICollectionResponse
2221
+ */
2222
+ 'title': string;
1791
2223
  /**
1792
2224
  *
1793
2225
  * @type {ITemplateResponse}
@@ -6135,6 +6567,18 @@ export interface IPageGetAllQueryParams {
6135
6567
  * @interface IPagePatchRequest
6136
6568
  */
6137
6569
  export interface IPagePatchRequest {
6570
+ /**
6571
+ *
6572
+ * @type {ContentStatusEnum}
6573
+ * @memberof IPagePatchRequest
6574
+ */
6575
+ 'status'?: ContentStatusEnum;
6576
+ /**
6577
+ *
6578
+ * @type {string}
6579
+ * @memberof IPagePatchRequest
6580
+ */
6581
+ 'title'?: string;
6138
6582
  /**
6139
6583
  *
6140
6584
  * @type {ITemplateResponse}
@@ -6159,6 +6603,42 @@ export interface IPagePatchRequest {
6159
6603
  * @memberof IPagePatchRequest
6160
6604
  */
6161
6605
  'type'?: PageTypeEnum;
6606
+ /**
6607
+ *
6608
+ * @type {string}
6609
+ * @memberof IPagePatchRequest
6610
+ */
6611
+ 'description'?: string;
6612
+ /**
6613
+ *
6614
+ * @type {string}
6615
+ * @memberof IPagePatchRequest
6616
+ */
6617
+ 'metaTitle'?: string;
6618
+ /**
6619
+ *
6620
+ * @type {string}
6621
+ * @memberof IPagePatchRequest
6622
+ */
6623
+ 'metaDescription'?: string;
6624
+ /**
6625
+ *
6626
+ * @type {Array<string>}
6627
+ * @memberof IPagePatchRequest
6628
+ */
6629
+ 'keywords'?: Array<string>;
6630
+ /**
6631
+ *
6632
+ * @type {string}
6633
+ * @memberof IPagePatchRequest
6634
+ */
6635
+ 'slug'?: string;
6636
+ /**
6637
+ *
6638
+ * @type {string}
6639
+ * @memberof IPagePatchRequest
6640
+ */
6641
+ 'content'?: string;
6162
6642
  }
6163
6643
  /**
6164
6644
  *
@@ -6172,6 +6652,18 @@ export interface IPagePostRequest {
6172
6652
  * @memberof IPagePostRequest
6173
6653
  */
6174
6654
  'company': string;
6655
+ /**
6656
+ *
6657
+ * @type {ContentStatusEnum}
6658
+ * @memberof IPagePostRequest
6659
+ */
6660
+ 'status': ContentStatusEnum;
6661
+ /**
6662
+ *
6663
+ * @type {string}
6664
+ * @memberof IPagePostRequest
6665
+ */
6666
+ 'title': string;
6175
6667
  /**
6176
6668
  *
6177
6669
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -6190,6 +6682,42 @@ export interface IPagePostRequest {
6190
6682
  * @memberof IPagePostRequest
6191
6683
  */
6192
6684
  'type': PageTypeEnum;
6685
+ /**
6686
+ *
6687
+ * @type {string}
6688
+ * @memberof IPagePostRequest
6689
+ */
6690
+ 'description'?: string;
6691
+ /**
6692
+ *
6693
+ * @type {string}
6694
+ * @memberof IPagePostRequest
6695
+ */
6696
+ 'metaTitle'?: string;
6697
+ /**
6698
+ *
6699
+ * @type {string}
6700
+ * @memberof IPagePostRequest
6701
+ */
6702
+ 'metaDescription'?: string;
6703
+ /**
6704
+ *
6705
+ * @type {Array<string>}
6706
+ * @memberof IPagePostRequest
6707
+ */
6708
+ 'keywords'?: Array<string>;
6709
+ /**
6710
+ *
6711
+ * @type {string}
6712
+ * @memberof IPagePostRequest
6713
+ */
6714
+ 'slug': string;
6715
+ /**
6716
+ *
6717
+ * @type {string}
6718
+ * @memberof IPagePostRequest
6719
+ */
6720
+ 'content'?: string;
6193
6721
  /**
6194
6722
  *
6195
6723
  * @type {ITemplateResponse}
@@ -6258,13 +6786,61 @@ export interface IPageResponse {
6258
6786
  * @type {IImage}
6259
6787
  * @memberof IPageResponse
6260
6788
  */
6261
- 'thumbnail'?: IImage;
6789
+ 'thumbnail'?: IImage;
6790
+ /**
6791
+ *
6792
+ * @type {PageTypeEnum}
6793
+ * @memberof IPageResponse
6794
+ */
6795
+ 'type': PageTypeEnum;
6796
+ /**
6797
+ *
6798
+ * @type {ContentStatusEnum}
6799
+ * @memberof IPageResponse
6800
+ */
6801
+ 'status': ContentStatusEnum;
6802
+ /**
6803
+ *
6804
+ * @type {string}
6805
+ * @memberof IPageResponse
6806
+ */
6807
+ 'content'?: string;
6808
+ /**
6809
+ *
6810
+ * @type {string}
6811
+ * @memberof IPageResponse
6812
+ */
6813
+ 'slug': string;
6814
+ /**
6815
+ *
6816
+ * @type {Array<string>}
6817
+ * @memberof IPageResponse
6818
+ */
6819
+ 'keywords'?: Array<string>;
6820
+ /**
6821
+ *
6822
+ * @type {string}
6823
+ * @memberof IPageResponse
6824
+ */
6825
+ 'metaDescription'?: string;
6826
+ /**
6827
+ *
6828
+ * @type {string}
6829
+ * @memberof IPageResponse
6830
+ */
6831
+ 'metaTitle'?: string;
6832
+ /**
6833
+ *
6834
+ * @type {string}
6835
+ * @memberof IPageResponse
6836
+ */
6837
+ 'description'?: string;
6262
6838
  /**
6263
6839
  *
6264
- * @type {PageTypeEnum}
6840
+ * @type {string}
6265
6841
  * @memberof IPageResponse
6266
6842
  */
6267
- 'type': PageTypeEnum;
6843
+ 'title': string;
6268
6844
  /**
6269
6845
  *
6270
6846
  * @type {ITemplateResponse}
@@ -6926,6 +7502,18 @@ export interface IProductPatchRequest {
6926
7502
  * @memberof IProductPatchRequest
6927
7503
  */
6928
7504
  'company'?: string;
7505
+ /**
7506
+ *
7507
+ * @type {ContentStatusEnum}
7508
+ * @memberof IProductPatchRequest
7509
+ */
7510
+ 'status'?: ContentStatusEnum;
7511
+ /**
7512
+ *
7513
+ * @type {string}
7514
+ * @memberof IProductPatchRequest
7515
+ */
7516
+ 'title'?: string;
6929
7517
  /**
6930
7518
  *
6931
7519
  * @type {boolean}
@@ -6998,6 +7586,48 @@ export interface IProductPatchRequest {
6998
7586
  'attributes'?: {
6999
7587
  [key: string]: string;
7000
7588
  };
7589
+ /**
7590
+ *
7591
+ * @type {IImage}
7592
+ * @memberof IProductPatchRequest
7593
+ */
7594
+ 'thumbnail'?: IImage;
7595
+ /**
7596
+ *
7597
+ * @type {string}
7598
+ * @memberof IProductPatchRequest
7599
+ */
7600
+ 'description'?: string;
7601
+ /**
7602
+ *
7603
+ * @type {string}
7604
+ * @memberof IProductPatchRequest
7605
+ */
7606
+ 'metaTitle'?: string;
7607
+ /**
7608
+ *
7609
+ * @type {string}
7610
+ * @memberof IProductPatchRequest
7611
+ */
7612
+ 'metaDescription'?: string;
7613
+ /**
7614
+ *
7615
+ * @type {Array<string>}
7616
+ * @memberof IProductPatchRequest
7617
+ */
7618
+ 'keywords'?: Array<string>;
7619
+ /**
7620
+ *
7621
+ * @type {string}
7622
+ * @memberof IProductPatchRequest
7623
+ */
7624
+ 'slug'?: string;
7625
+ /**
7626
+ *
7627
+ * @type {string}
7628
+ * @memberof IProductPatchRequest
7629
+ */
7630
+ 'content'?: string;
7001
7631
  }
7002
7632
  /**
7003
7633
  *
@@ -7011,6 +7641,18 @@ export interface IProductPostRequest {
7011
7641
  * @memberof IProductPostRequest
7012
7642
  */
7013
7643
  'company': string;
7644
+ /**
7645
+ *
7646
+ * @type {ContentStatusEnum}
7647
+ * @memberof IProductPostRequest
7648
+ */
7649
+ 'status': ContentStatusEnum;
7650
+ /**
7651
+ *
7652
+ * @type {string}
7653
+ * @memberof IProductPostRequest
7654
+ */
7655
+ 'title': string;
7014
7656
  /**
7015
7657
  *
7016
7658
  * @type {boolean}
@@ -7083,6 +7725,48 @@ export interface IProductPostRequest {
7083
7725
  'attributes'?: {
7084
7726
  [key: string]: string;
7085
7727
  };
7728
+ /**
7729
+ *
7730
+ * @type {IImage}
7731
+ * @memberof IProductPostRequest
7732
+ */
7733
+ 'thumbnail'?: IImage;
7734
+ /**
7735
+ *
7736
+ * @type {string}
7737
+ * @memberof IProductPostRequest
7738
+ */
7739
+ 'description'?: string;
7740
+ /**
7741
+ *
7742
+ * @type {string}
7743
+ * @memberof IProductPostRequest
7744
+ */
7745
+ 'metaTitle'?: string;
7746
+ /**
7747
+ *
7748
+ * @type {string}
7749
+ * @memberof IProductPostRequest
7750
+ */
7751
+ 'metaDescription'?: string;
7752
+ /**
7753
+ *
7754
+ * @type {Array<string>}
7755
+ * @memberof IProductPostRequest
7756
+ */
7757
+ 'keywords'?: Array<string>;
7758
+ /**
7759
+ *
7760
+ * @type {string}
7761
+ * @memberof IProductPostRequest
7762
+ */
7763
+ 'slug': string;
7764
+ /**
7765
+ *
7766
+ * @type {string}
7767
+ * @memberof IProductPostRequest
7768
+ */
7769
+ 'content'?: string;
7086
7770
  /**
7087
7771
  *
7088
7772
  * @type {string}
@@ -7254,6 +7938,60 @@ export interface IProductResponse {
7254
7938
  * @memberof IProductResponse
7255
7939
  */
7256
7940
  'reviewCounts': IProductResponseReviewCounts;
7941
+ /**
7942
+ *
7943
+ * @type {ContentStatusEnum}
7944
+ * @memberof IProductResponse
7945
+ */
7946
+ 'status': ContentStatusEnum;
7947
+ /**
7948
+ *
7949
+ * @type {IImage}
7950
+ * @memberof IProductResponse
7951
+ */
7952
+ 'thumbnail'?: IImage;
7953
+ /**
7954
+ *
7955
+ * @type {string}
7956
+ * @memberof IProductResponse
7957
+ */
7958
+ 'content'?: string;
7959
+ /**
7960
+ *
7961
+ * @type {string}
7962
+ * @memberof IProductResponse
7963
+ */
7964
+ 'slug': string;
7965
+ /**
7966
+ *
7967
+ * @type {Array<string>}
7968
+ * @memberof IProductResponse
7969
+ */
7970
+ 'keywords'?: Array<string>;
7971
+ /**
7972
+ *
7973
+ * @type {string}
7974
+ * @memberof IProductResponse
7975
+ */
7976
+ 'metaDescription'?: string;
7977
+ /**
7978
+ *
7979
+ * @type {string}
7980
+ * @memberof IProductResponse
7981
+ */
7982
+ 'metaTitle'?: string;
7983
+ /**
7984
+ *
7985
+ * @type {string}
7986
+ * @memberof IProductResponse
7987
+ */
7988
+ 'description'?: string;
7989
+ /**
7990
+ *
7991
+ * @type {string}
7992
+ * @memberof IProductResponse
7993
+ */
7994
+ 'title': string;
7257
7995
  /**
7258
7996
  *
7259
7997
  * @type {IBrandResponse}
@@ -8316,13 +9054,17 @@ export interface IThemePatchRequest {
8316
9054
  */
8317
9055
  'demoUrl'?: string;
8318
9056
  /**
8319
- * Construct a type with a set of properties K of type T
8320
- * @type {{ [key: string]: RecordStringStringOrAnyValue; }}
9057
+ *
9058
+ * @type {string}
8321
9059
  * @memberof IThemePatchRequest
8322
9060
  */
8323
- 'files'?: {
8324
- [key: string]: RecordStringStringOrAnyValue;
8325
- };
9061
+ 'assetUrl'?: string;
9062
+ /**
9063
+ *
9064
+ * @type {number}
9065
+ * @memberof IThemePatchRequest
9066
+ */
9067
+ 'assetVersion'?: number;
8326
9068
  }
8327
9069
  /**
8328
9070
  *
@@ -8357,13 +9099,17 @@ export interface IThemePostRequest {
8357
9099
  */
8358
9100
  'demoUrl'?: string;
8359
9101
  /**
8360
- * Construct a type with a set of properties K of type T
8361
- * @type {{ [key: string]: RecordStringStringOrAnyValue; }}
9102
+ *
9103
+ * @type {string}
8362
9104
  * @memberof IThemePostRequest
8363
9105
  */
8364
- 'files'?: {
8365
- [key: string]: RecordStringStringOrAnyValue;
8366
- };
9106
+ 'assetUrl': string;
9107
+ /**
9108
+ *
9109
+ * @type {number}
9110
+ * @memberof IThemePostRequest
9111
+ */
9112
+ 'assetVersion': number;
8367
9113
  /**
8368
9114
  *
8369
9115
  * @type {IThemeResponseTemplate}
@@ -8445,20 +9191,32 @@ export interface IThemeResponse {
8445
9191
  * @memberof IThemeResponse
8446
9192
  */
8447
9193
  'creator'?: string;
9194
+ /**
9195
+ *
9196
+ * @type {IThemeResponseTemplate}
9197
+ * @memberof IThemeResponse
9198
+ */
9199
+ 'template': IThemeResponseTemplate;
8448
9200
  /**
8449
9201
  * Construct a type with a set of properties K of type T
8450
- * @type {{ [key: string]: RecordStringStringOrAnyValue; }}
9202
+ * @type {{ [key: string]: any; }}
8451
9203
  * @memberof IThemeResponse
8452
9204
  */
8453
- 'files'?: {
8454
- [key: string]: RecordStringStringOrAnyValue;
9205
+ 'files': {
9206
+ [key: string]: any;
8455
9207
  };
8456
9208
  /**
8457
9209
  *
8458
- * @type {IThemeResponseTemplate}
9210
+ * @type {string}
8459
9211
  * @memberof IThemeResponse
8460
9212
  */
8461
- 'template': IThemeResponseTemplate;
9213
+ 'assetUrl': string;
9214
+ /**
9215
+ *
9216
+ * @type {number}
9217
+ * @memberof IThemeResponse
9218
+ */
9219
+ 'assetVersion': number;
8462
9220
  }
8463
9221
  /**
8464
9222
  *
@@ -9122,56 +9880,104 @@ export interface PickIBasketExcludeKeyofIBasketItems {
9122
9880
  * @type {string}
9123
9881
  * @memberof PickIBasketExcludeKeyofIBasketItems
9124
9882
  */
9125
- '_id': string;
9883
+ '_id': string;
9884
+ /**
9885
+ *
9886
+ * @type {number}
9887
+ * @memberof PickIBasketExcludeKeyofIBasketItems
9888
+ */
9889
+ '__v': number;
9890
+ /**
9891
+ *
9892
+ * @type {string}
9893
+ * @memberof PickIBasketExcludeKeyofIBasketItems
9894
+ */
9895
+ 'createdAt': string;
9896
+ /**
9897
+ *
9898
+ * @type {string}
9899
+ * @memberof PickIBasketExcludeKeyofIBasketItems
9900
+ */
9901
+ 'updatedAt': string;
9902
+ /**
9903
+ *
9904
+ * @type {string}
9905
+ * @memberof PickIBasketExcludeKeyofIBasketItems
9906
+ */
9907
+ 'user'?: string;
9908
+ }
9909
+ /**
9910
+ * From T, pick a set of properties whose keys are in the union K
9911
+ * @export
9912
+ * @interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9913
+ */
9914
+ export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs {
9915
+ /**
9916
+ *
9917
+ * @type {string}
9918
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9919
+ */
9920
+ 'company': string;
9921
+ /**
9922
+ *
9923
+ * @type {ContentStatusEnum}
9924
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9925
+ */
9926
+ 'status': ContentStatusEnum;
9927
+ /**
9928
+ *
9929
+ * @type {string}
9930
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9931
+ */
9932
+ 'title': string;
9933
+ /**
9934
+ *
9935
+ * @type {PartialRecordLanguageEnumIContentsValue}
9936
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9937
+ */
9938
+ 'contents': PartialRecordLanguageEnumIContentsValue;
9126
9939
  /**
9127
9940
  *
9128
- * @type {number}
9129
- * @memberof PickIBasketExcludeKeyofIBasketItems
9941
+ * @type {IImage}
9942
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9130
9943
  */
9131
- '__v': number;
9944
+ 'thumbnail'?: IImage;
9132
9945
  /**
9133
9946
  *
9134
9947
  * @type {string}
9135
- * @memberof PickIBasketExcludeKeyofIBasketItems
9948
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9136
9949
  */
9137
- 'createdAt': string;
9950
+ 'description'?: string;
9138
9951
  /**
9139
9952
  *
9140
9953
  * @type {string}
9141
- * @memberof PickIBasketExcludeKeyofIBasketItems
9954
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9142
9955
  */
9143
- 'updatedAt': string;
9956
+ 'metaTitle'?: string;
9144
9957
  /**
9145
9958
  *
9146
9959
  * @type {string}
9147
- * @memberof PickIBasketExcludeKeyofIBasketItems
9960
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9148
9961
  */
9149
- 'user'?: string;
9150
- }
9151
- /**
9152
- * From T, pick a set of properties whose keys are in the union K
9153
- * @export
9154
- * @interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9155
- */
9156
- export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs {
9962
+ 'metaDescription'?: string;
9157
9963
  /**
9158
9964
  *
9159
- * @type {string}
9965
+ * @type {Array<string>}
9160
9966
  * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9161
9967
  */
9162
- 'company': string;
9968
+ 'keywords'?: Array<string>;
9163
9969
  /**
9164
9970
  *
9165
- * @type {PartialRecordLanguageEnumIContentsValue}
9971
+ * @type {string}
9166
9972
  * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9167
9973
  */
9168
- 'contents': PartialRecordLanguageEnumIContentsValue;
9974
+ 'slug': string;
9169
9975
  /**
9170
9976
  *
9171
- * @type {IImage}
9977
+ * @type {string}
9172
9978
  * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9173
9979
  */
9174
- 'thumbnail'?: IImage;
9980
+ 'content'?: string;
9175
9981
  }
9176
9982
  /**
9177
9983
  * From T, pick a set of properties whose keys are in the union K
@@ -9246,6 +10052,18 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
9246
10052
  * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
9247
10053
  */
9248
10054
  'company': string;
10055
+ /**
10056
+ *
10057
+ * @type {ContentStatusEnum}
10058
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10059
+ */
10060
+ 'status': ContentStatusEnum;
10061
+ /**
10062
+ *
10063
+ * @type {string}
10064
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10065
+ */
10066
+ 'title': string;
9249
10067
  /**
9250
10068
  *
9251
10069
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -9264,6 +10082,42 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
9264
10082
  * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
9265
10083
  */
9266
10084
  'main'?: string;
10085
+ /**
10086
+ *
10087
+ * @type {string}
10088
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10089
+ */
10090
+ 'description'?: string;
10091
+ /**
10092
+ *
10093
+ * @type {string}
10094
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10095
+ */
10096
+ 'metaTitle'?: string;
10097
+ /**
10098
+ *
10099
+ * @type {string}
10100
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10101
+ */
10102
+ 'metaDescription'?: string;
10103
+ /**
10104
+ *
10105
+ * @type {Array<string>}
10106
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10107
+ */
10108
+ 'keywords'?: Array<string>;
10109
+ /**
10110
+ *
10111
+ * @type {string}
10112
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10113
+ */
10114
+ 'slug': string;
10115
+ /**
10116
+ *
10117
+ * @type {string}
10118
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10119
+ */
10120
+ 'content'?: string;
9267
10121
  }
9268
10122
  /**
9269
10123
  * From T, pick a set of properties whose keys are in the union K
@@ -9381,6 +10235,18 @@ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMong
9381
10235
  * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
9382
10236
  */
9383
10237
  'company': string;
10238
+ /**
10239
+ *
10240
+ * @type {ContentStatusEnum}
10241
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10242
+ */
10243
+ 'status': ContentStatusEnum;
10244
+ /**
10245
+ *
10246
+ * @type {string}
10247
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10248
+ */
10249
+ 'title': string;
9384
10250
  /**
9385
10251
  *
9386
10252
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -9393,6 +10259,42 @@ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMong
9393
10259
  * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
9394
10260
  */
9395
10261
  'thumbnail'?: IImage;
10262
+ /**
10263
+ *
10264
+ * @type {string}
10265
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10266
+ */
10267
+ 'description'?: string;
10268
+ /**
10269
+ *
10270
+ * @type {string}
10271
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10272
+ */
10273
+ 'metaTitle'?: string;
10274
+ /**
10275
+ *
10276
+ * @type {string}
10277
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10278
+ */
10279
+ 'metaDescription'?: string;
10280
+ /**
10281
+ *
10282
+ * @type {Array<string>}
10283
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10284
+ */
10285
+ 'keywords'?: Array<string>;
10286
+ /**
10287
+ *
10288
+ * @type {string}
10289
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10290
+ */
10291
+ 'slug': string;
10292
+ /**
10293
+ *
10294
+ * @type {string}
10295
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10296
+ */
10297
+ 'content'?: string;
9396
10298
  }
9397
10299
  /**
9398
10300
  * From T, pick a set of properties whose keys are in the union K
@@ -10428,6 +11330,18 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
10428
11330
  * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10429
11331
  */
10430
11332
  'company': string;
11333
+ /**
11334
+ *
11335
+ * @type {ContentStatusEnum}
11336
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11337
+ */
11338
+ 'status': ContentStatusEnum;
11339
+ /**
11340
+ *
11341
+ * @type {string}
11342
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11343
+ */
11344
+ 'title': string;
10431
11345
  /**
10432
11346
  *
10433
11347
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -10446,6 +11360,42 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
10446
11360
  * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10447
11361
  */
10448
11362
  'type': PageTypeEnum;
11363
+ /**
11364
+ *
11365
+ * @type {string}
11366
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11367
+ */
11368
+ 'description'?: string;
11369
+ /**
11370
+ *
11371
+ * @type {string}
11372
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11373
+ */
11374
+ 'metaTitle'?: string;
11375
+ /**
11376
+ *
11377
+ * @type {string}
11378
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11379
+ */
11380
+ 'metaDescription'?: string;
11381
+ /**
11382
+ *
11383
+ * @type {Array<string>}
11384
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11385
+ */
11386
+ 'keywords'?: Array<string>;
11387
+ /**
11388
+ *
11389
+ * @type {string}
11390
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11391
+ */
11392
+ 'slug': string;
11393
+ /**
11394
+ *
11395
+ * @type {string}
11396
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11397
+ */
11398
+ 'content'?: string;
10449
11399
  }
10450
11400
  /**
10451
11401
  * From T, pick a set of properties whose keys are in the union K
@@ -10668,6 +11618,18 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
10668
11618
  * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10669
11619
  */
10670
11620
  'company': string;
11621
+ /**
11622
+ *
11623
+ * @type {ContentStatusEnum}
11624
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11625
+ */
11626
+ 'status': ContentStatusEnum;
11627
+ /**
11628
+ *
11629
+ * @type {string}
11630
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11631
+ */
11632
+ 'title': string;
10671
11633
  /**
10672
11634
  *
10673
11635
  * @type {boolean}
@@ -10740,6 +11702,48 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
10740
11702
  'attributes'?: {
10741
11703
  [key: string]: string;
10742
11704
  };
11705
+ /**
11706
+ *
11707
+ * @type {IImage}
11708
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11709
+ */
11710
+ 'thumbnail'?: IImage;
11711
+ /**
11712
+ *
11713
+ * @type {string}
11714
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11715
+ */
11716
+ 'description'?: string;
11717
+ /**
11718
+ *
11719
+ * @type {string}
11720
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11721
+ */
11722
+ 'metaTitle'?: string;
11723
+ /**
11724
+ *
11725
+ * @type {string}
11726
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11727
+ */
11728
+ 'metaDescription'?: string;
11729
+ /**
11730
+ *
11731
+ * @type {Array<string>}
11732
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11733
+ */
11734
+ 'keywords'?: Array<string>;
11735
+ /**
11736
+ *
11737
+ * @type {string}
11738
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11739
+ */
11740
+ 'slug': string;
11741
+ /**
11742
+ *
11743
+ * @type {string}
11744
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11745
+ */
11746
+ 'content'?: string;
10743
11747
  }
10744
11748
  /**
10745
11749
  * From T, pick a set of properties whose keys are in the union K
@@ -11016,37 +12020,29 @@ export interface PickIThemeExcludeKeyofIThemeTemplate {
11016
12020
  * @memberof PickIThemeExcludeKeyofIThemeTemplate
11017
12021
  */
11018
12022
  'creator'?: string;
11019
- /**
11020
- * Construct a type with a set of properties K of type T
11021
- * @type {{ [key: string]: RecordStringStringOrAnyValue; }}
11022
- * @memberof PickIThemeExcludeKeyofIThemeTemplate
11023
- */
11024
- 'files'?: {
11025
- [key: string]: RecordStringStringOrAnyValue;
11026
- };
11027
12023
  }
11028
12024
  /**
11029
12025
  * From T, pick a set of properties whose keys are in the union K
11030
12026
  * @export
11031
- * @interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
12027
+ * @interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11032
12028
  */
11033
- export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator {
12029
+ export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles {
11034
12030
  /**
11035
12031
  *
11036
12032
  * @type {string}
11037
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
12033
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11038
12034
  */
11039
12035
  'name': string;
11040
12036
  /**
11041
12037
  *
11042
12038
  * @type {IImage}
11043
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
12039
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11044
12040
  */
11045
12041
  'thumbnail'?: IImage;
11046
12042
  /**
11047
12043
  * Construct a type with a set of properties K of type T
11048
12044
  * @type {{ [key: string]: any; }}
11049
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
12045
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11050
12046
  */
11051
12047
  'config': {
11052
12048
  [key: string]: any;
@@ -11054,17 +12050,21 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseO
11054
12050
  /**
11055
12051
  *
11056
12052
  * @type {string}
11057
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
12053
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11058
12054
  */
11059
12055
  'demoUrl'?: string;
11060
12056
  /**
11061
- * Construct a type with a set of properties K of type T
11062
- * @type {{ [key: string]: RecordStringStringOrAnyValue; }}
11063
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
12057
+ *
12058
+ * @type {string}
12059
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11064
12060
  */
11065
- 'files'?: {
11066
- [key: string]: RecordStringStringOrAnyValue;
11067
- };
12061
+ 'assetUrl': string;
12062
+ /**
12063
+ *
12064
+ * @type {number}
12065
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
12066
+ */
12067
+ 'assetVersion': number;
11068
12068
  }
11069
12069
  /**
11070
12070
  * From T, pick a set of properties whose keys are in the union K
@@ -11464,13 +12464,6 @@ export interface RecordLanguageEnumTitleStringTr {
11464
12464
  */
11465
12465
  'title': string;
11466
12466
  }
11467
- /**
11468
- *
11469
- * @export
11470
- * @interface RecordStringStringOrAnyValue
11471
- */
11472
- export interface RecordStringStringOrAnyValue {
11473
- }
11474
12467
  /**
11475
12468
  *
11476
12469
  * @export