@infisale-client/api 1.3.4 → 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.
- package/dist/api/api.d.ts +1023 -39
- 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 {
|
|
1162
|
+
* @type {ContentStatusEnum}
|
|
1067
1163
|
* @memberof IBrandResponse
|
|
1068
1164
|
*/
|
|
1069
|
-
'
|
|
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>}
|
|
@@ -1387,43 +1627,91 @@ export interface ICategoryResponse {
|
|
|
1387
1627
|
* @type {number}
|
|
1388
1628
|
* @memberof ICategoryResponse
|
|
1389
1629
|
*/
|
|
1390
|
-
'__v': number;
|
|
1630
|
+
'__v': number;
|
|
1631
|
+
/**
|
|
1632
|
+
*
|
|
1633
|
+
* @type {string}
|
|
1634
|
+
* @memberof ICategoryResponse
|
|
1635
|
+
*/
|
|
1636
|
+
'createdAt': string;
|
|
1637
|
+
/**
|
|
1638
|
+
*
|
|
1639
|
+
* @type {string}
|
|
1640
|
+
* @memberof ICategoryResponse
|
|
1641
|
+
*/
|
|
1642
|
+
'updatedAt': string;
|
|
1643
|
+
/**
|
|
1644
|
+
*
|
|
1645
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1646
|
+
* @memberof ICategoryResponse
|
|
1647
|
+
*/
|
|
1648
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1649
|
+
/**
|
|
1650
|
+
*
|
|
1651
|
+
* @type {Array<string>}
|
|
1652
|
+
* @memberof ICategoryResponse
|
|
1653
|
+
*/
|
|
1654
|
+
'slugs': Array<string>;
|
|
1655
|
+
/**
|
|
1656
|
+
*
|
|
1657
|
+
* @type {IImage}
|
|
1658
|
+
* @memberof ICategoryResponse
|
|
1659
|
+
*/
|
|
1660
|
+
'thumbnail'?: IImage;
|
|
1661
|
+
/**
|
|
1662
|
+
*
|
|
1663
|
+
* @type {string}
|
|
1664
|
+
* @memberof ICategoryResponse
|
|
1665
|
+
*/
|
|
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;
|
|
1391
1679
|
/**
|
|
1392
1680
|
*
|
|
1393
1681
|
* @type {string}
|
|
1394
1682
|
* @memberof ICategoryResponse
|
|
1395
1683
|
*/
|
|
1396
|
-
'
|
|
1684
|
+
'slug': string;
|
|
1397
1685
|
/**
|
|
1398
1686
|
*
|
|
1399
|
-
* @type {string}
|
|
1687
|
+
* @type {Array<string>}
|
|
1400
1688
|
* @memberof ICategoryResponse
|
|
1401
1689
|
*/
|
|
1402
|
-
'
|
|
1690
|
+
'keywords'?: Array<string>;
|
|
1403
1691
|
/**
|
|
1404
1692
|
*
|
|
1405
|
-
* @type {
|
|
1693
|
+
* @type {string}
|
|
1406
1694
|
* @memberof ICategoryResponse
|
|
1407
1695
|
*/
|
|
1408
|
-
'
|
|
1696
|
+
'metaDescription'?: string;
|
|
1409
1697
|
/**
|
|
1410
1698
|
*
|
|
1411
|
-
* @type {
|
|
1699
|
+
* @type {string}
|
|
1412
1700
|
* @memberof ICategoryResponse
|
|
1413
1701
|
*/
|
|
1414
|
-
'
|
|
1702
|
+
'metaTitle'?: string;
|
|
1415
1703
|
/**
|
|
1416
1704
|
*
|
|
1417
|
-
* @type {
|
|
1705
|
+
* @type {string}
|
|
1418
1706
|
* @memberof ICategoryResponse
|
|
1419
1707
|
*/
|
|
1420
|
-
'
|
|
1708
|
+
'description'?: string;
|
|
1421
1709
|
/**
|
|
1422
1710
|
*
|
|
1423
1711
|
* @type {string}
|
|
1424
1712
|
* @memberof ICategoryResponse
|
|
1425
1713
|
*/
|
|
1426
|
-
'
|
|
1714
|
+
'title': string;
|
|
1427
1715
|
/**
|
|
1428
1716
|
*
|
|
1429
1717
|
* @type {Array<ICategoryResponseAttributesInner>}
|
|
@@ -1676,6 +1964,18 @@ export type ICollectionCollectionsQueryParamsDateFieldEnum = typeof ICollectionC
|
|
|
1676
1964
|
* @interface ICollectionPatchRequest
|
|
1677
1965
|
*/
|
|
1678
1966
|
export interface ICollectionPatchRequest {
|
|
1967
|
+
/**
|
|
1968
|
+
*
|
|
1969
|
+
* @type {ContentStatusEnum}
|
|
1970
|
+
* @memberof ICollectionPatchRequest
|
|
1971
|
+
*/
|
|
1972
|
+
'status'?: ContentStatusEnum;
|
|
1973
|
+
/**
|
|
1974
|
+
*
|
|
1975
|
+
* @type {string}
|
|
1976
|
+
* @memberof ICollectionPatchRequest
|
|
1977
|
+
*/
|
|
1978
|
+
'title'?: string;
|
|
1679
1979
|
/**
|
|
1680
1980
|
*
|
|
1681
1981
|
* @type {ITemplateResponse}
|
|
@@ -1694,6 +1994,42 @@ export interface ICollectionPatchRequest {
|
|
|
1694
1994
|
* @memberof ICollectionPatchRequest
|
|
1695
1995
|
*/
|
|
1696
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}
|
|
2012
|
+
* @memberof ICollectionPatchRequest
|
|
2013
|
+
*/
|
|
2014
|
+
'metaDescription'?: string;
|
|
2015
|
+
/**
|
|
2016
|
+
*
|
|
2017
|
+
* @type {Array<string>}
|
|
2018
|
+
* @memberof ICollectionPatchRequest
|
|
2019
|
+
*/
|
|
2020
|
+
'keywords'?: Array<string>;
|
|
2021
|
+
/**
|
|
2022
|
+
*
|
|
2023
|
+
* @type {string}
|
|
2024
|
+
* @memberof ICollectionPatchRequest
|
|
2025
|
+
*/
|
|
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}
|
|
@@ -6137,59 +6569,155 @@ export interface IPageGetAllQueryParams {
|
|
|
6137
6569
|
export interface IPagePatchRequest {
|
|
6138
6570
|
/**
|
|
6139
6571
|
*
|
|
6140
|
-
* @type {
|
|
6141
|
-
* @memberof IPagePatchRequest
|
|
6572
|
+
* @type {ContentStatusEnum}
|
|
6573
|
+
* @memberof IPagePatchRequest
|
|
6574
|
+
*/
|
|
6575
|
+
'status'?: ContentStatusEnum;
|
|
6576
|
+
/**
|
|
6577
|
+
*
|
|
6578
|
+
* @type {string}
|
|
6579
|
+
* @memberof IPagePatchRequest
|
|
6580
|
+
*/
|
|
6581
|
+
'title'?: string;
|
|
6582
|
+
/**
|
|
6583
|
+
*
|
|
6584
|
+
* @type {ITemplateResponse}
|
|
6585
|
+
* @memberof IPagePatchRequest
|
|
6586
|
+
*/
|
|
6587
|
+
'template'?: ITemplateResponse;
|
|
6588
|
+
/**
|
|
6589
|
+
*
|
|
6590
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6591
|
+
* @memberof IPagePatchRequest
|
|
6592
|
+
*/
|
|
6593
|
+
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
6594
|
+
/**
|
|
6595
|
+
*
|
|
6596
|
+
* @type {IImage}
|
|
6597
|
+
* @memberof IPagePatchRequest
|
|
6598
|
+
*/
|
|
6599
|
+
'thumbnail'?: IImage;
|
|
6600
|
+
/**
|
|
6601
|
+
*
|
|
6602
|
+
* @type {PageTypeEnum}
|
|
6603
|
+
* @memberof IPagePatchRequest
|
|
6604
|
+
*/
|
|
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;
|
|
6642
|
+
}
|
|
6643
|
+
/**
|
|
6644
|
+
*
|
|
6645
|
+
* @export
|
|
6646
|
+
* @interface IPagePostRequest
|
|
6647
|
+
*/
|
|
6648
|
+
export interface IPagePostRequest {
|
|
6649
|
+
/**
|
|
6650
|
+
*
|
|
6651
|
+
* @type {string}
|
|
6652
|
+
* @memberof IPagePostRequest
|
|
6653
|
+
*/
|
|
6654
|
+
'company': string;
|
|
6655
|
+
/**
|
|
6656
|
+
*
|
|
6657
|
+
* @type {ContentStatusEnum}
|
|
6658
|
+
* @memberof IPagePostRequest
|
|
6659
|
+
*/
|
|
6660
|
+
'status': ContentStatusEnum;
|
|
6661
|
+
/**
|
|
6662
|
+
*
|
|
6663
|
+
* @type {string}
|
|
6664
|
+
* @memberof IPagePostRequest
|
|
6142
6665
|
*/
|
|
6143
|
-
'
|
|
6666
|
+
'title': string;
|
|
6144
6667
|
/**
|
|
6145
6668
|
*
|
|
6146
6669
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6147
|
-
* @memberof
|
|
6670
|
+
* @memberof IPagePostRequest
|
|
6148
6671
|
*/
|
|
6149
|
-
'contents'
|
|
6672
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
6150
6673
|
/**
|
|
6151
6674
|
*
|
|
6152
6675
|
* @type {IImage}
|
|
6153
|
-
* @memberof
|
|
6676
|
+
* @memberof IPagePostRequest
|
|
6154
6677
|
*/
|
|
6155
6678
|
'thumbnail'?: IImage;
|
|
6156
6679
|
/**
|
|
6157
6680
|
*
|
|
6158
6681
|
* @type {PageTypeEnum}
|
|
6159
|
-
* @memberof
|
|
6682
|
+
* @memberof IPagePostRequest
|
|
6160
6683
|
*/
|
|
6161
|
-
'type'
|
|
6162
|
-
}
|
|
6163
|
-
/**
|
|
6164
|
-
*
|
|
6165
|
-
* @export
|
|
6166
|
-
* @interface IPagePostRequest
|
|
6167
|
-
*/
|
|
6168
|
-
export interface IPagePostRequest {
|
|
6684
|
+
'type': PageTypeEnum;
|
|
6169
6685
|
/**
|
|
6170
6686
|
*
|
|
6171
6687
|
* @type {string}
|
|
6172
6688
|
* @memberof IPagePostRequest
|
|
6173
6689
|
*/
|
|
6174
|
-
'
|
|
6690
|
+
'description'?: string;
|
|
6175
6691
|
/**
|
|
6176
6692
|
*
|
|
6177
|
-
* @type {
|
|
6693
|
+
* @type {string}
|
|
6178
6694
|
* @memberof IPagePostRequest
|
|
6179
6695
|
*/
|
|
6180
|
-
'
|
|
6696
|
+
'metaTitle'?: string;
|
|
6181
6697
|
/**
|
|
6182
6698
|
*
|
|
6183
|
-
* @type {
|
|
6699
|
+
* @type {string}
|
|
6184
6700
|
* @memberof IPagePostRequest
|
|
6185
6701
|
*/
|
|
6186
|
-
'
|
|
6702
|
+
'metaDescription'?: string;
|
|
6187
6703
|
/**
|
|
6188
6704
|
*
|
|
6189
|
-
* @type {
|
|
6705
|
+
* @type {Array<string>}
|
|
6190
6706
|
* @memberof IPagePostRequest
|
|
6191
6707
|
*/
|
|
6192
|
-
'
|
|
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}
|
|
@@ -6265,6 +6793,54 @@ export interface IPageResponse {
|
|
|
6265
6793
|
* @memberof IPageResponse
|
|
6266
6794
|
*/
|
|
6267
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;
|
|
6838
|
+
/**
|
|
6839
|
+
*
|
|
6840
|
+
* @type {string}
|
|
6841
|
+
* @memberof IPageResponse
|
|
6842
|
+
*/
|
|
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}
|
|
@@ -7244,16 +7928,70 @@ export interface IProductResponse {
|
|
|
7244
7928
|
};
|
|
7245
7929
|
/**
|
|
7246
7930
|
*
|
|
7247
|
-
* @type {number}
|
|
7931
|
+
* @type {number}
|
|
7932
|
+
* @memberof IProductResponse
|
|
7933
|
+
*/
|
|
7934
|
+
'reviewCount': number;
|
|
7935
|
+
/**
|
|
7936
|
+
*
|
|
7937
|
+
* @type {IProductResponseReviewCounts}
|
|
7938
|
+
* @memberof IProductResponse
|
|
7939
|
+
*/
|
|
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}
|
|
7248
7986
|
* @memberof IProductResponse
|
|
7249
7987
|
*/
|
|
7250
|
-
'
|
|
7988
|
+
'description'?: string;
|
|
7251
7989
|
/**
|
|
7252
7990
|
*
|
|
7253
|
-
* @type {
|
|
7991
|
+
* @type {string}
|
|
7254
7992
|
* @memberof IProductResponse
|
|
7255
7993
|
*/
|
|
7256
|
-
'
|
|
7994
|
+
'title': string;
|
|
7257
7995
|
/**
|
|
7258
7996
|
*
|
|
7259
7997
|
* @type {IBrandResponse}
|
|
@@ -9180,6 +9918,18 @@ export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseO
|
|
|
9180
9918
|
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9181
9919
|
*/
|
|
9182
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;
|
|
9183
9933
|
/**
|
|
9184
9934
|
*
|
|
9185
9935
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -9192,6 +9942,42 @@ export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseO
|
|
|
9192
9942
|
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9193
9943
|
*/
|
|
9194
9944
|
'thumbnail'?: IImage;
|
|
9945
|
+
/**
|
|
9946
|
+
*
|
|
9947
|
+
* @type {string}
|
|
9948
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9949
|
+
*/
|
|
9950
|
+
'description'?: string;
|
|
9951
|
+
/**
|
|
9952
|
+
*
|
|
9953
|
+
* @type {string}
|
|
9954
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9955
|
+
*/
|
|
9956
|
+
'metaTitle'?: string;
|
|
9957
|
+
/**
|
|
9958
|
+
*
|
|
9959
|
+
* @type {string}
|
|
9960
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9961
|
+
*/
|
|
9962
|
+
'metaDescription'?: string;
|
|
9963
|
+
/**
|
|
9964
|
+
*
|
|
9965
|
+
* @type {Array<string>}
|
|
9966
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9967
|
+
*/
|
|
9968
|
+
'keywords'?: Array<string>;
|
|
9969
|
+
/**
|
|
9970
|
+
*
|
|
9971
|
+
* @type {string}
|
|
9972
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9973
|
+
*/
|
|
9974
|
+
'slug': string;
|
|
9975
|
+
/**
|
|
9976
|
+
*
|
|
9977
|
+
* @type {string}
|
|
9978
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9979
|
+
*/
|
|
9980
|
+
'content'?: string;
|
|
9195
9981
|
}
|
|
9196
9982
|
/**
|
|
9197
9983
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -9266,6 +10052,18 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
|
|
|
9266
10052
|
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
|
|
9267
10053
|
*/
|
|
9268
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;
|
|
9269
10067
|
/**
|
|
9270
10068
|
*
|
|
9271
10069
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -9284,6 +10082,42 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
|
|
|
9284
10082
|
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
|
|
9285
10083
|
*/
|
|
9286
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;
|
|
9287
10121
|
}
|
|
9288
10122
|
/**
|
|
9289
10123
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -9401,6 +10235,18 @@ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMong
|
|
|
9401
10235
|
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
9402
10236
|
*/
|
|
9403
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;
|
|
9404
10250
|
/**
|
|
9405
10251
|
*
|
|
9406
10252
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -9413,6 +10259,42 @@ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMong
|
|
|
9413
10259
|
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
9414
10260
|
*/
|
|
9415
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;
|
|
9416
10298
|
}
|
|
9417
10299
|
/**
|
|
9418
10300
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -10448,6 +11330,18 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
|
|
|
10448
11330
|
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
10449
11331
|
*/
|
|
10450
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;
|
|
10451
11345
|
/**
|
|
10452
11346
|
*
|
|
10453
11347
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -10466,6 +11360,42 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
|
|
|
10466
11360
|
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
10467
11361
|
*/
|
|
10468
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;
|
|
10469
11399
|
}
|
|
10470
11400
|
/**
|
|
10471
11401
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -10688,6 +11618,18 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
|
|
|
10688
11618
|
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
10689
11619
|
*/
|
|
10690
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;
|
|
10691
11633
|
/**
|
|
10692
11634
|
*
|
|
10693
11635
|
* @type {boolean}
|
|
@@ -10760,6 +11702,48 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
|
|
|
10760
11702
|
'attributes'?: {
|
|
10761
11703
|
[key: string]: string;
|
|
10762
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;
|
|
10763
11747
|
}
|
|
10764
11748
|
/**
|
|
10765
11749
|
* From T, pick a set of properties whose keys are in the union K
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.5",
|
|
4
4
|
"description": "api-sdk",
|
|
5
5
|
"author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
|
|
6
6
|
"homepage": "https://github.com/infisale/infisale-client#readme",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"bugs": {
|
|
38
38
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "14800b659c106e76194ecc5534489c121b39d7ff"
|
|
41
41
|
}
|