@infisale-client/api-client 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
|
@@ -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 {
|
|
1149
|
+
* @type {ContentStatusEnum}
|
|
1054
1150
|
* @memberof IBrandResponse
|
|
1055
1151
|
*/
|
|
1056
|
-
'
|
|
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>}
|
|
@@ -1374,43 +1614,91 @@ export interface ICategoryResponse {
|
|
|
1374
1614
|
* @type {number}
|
|
1375
1615
|
* @memberof ICategoryResponse
|
|
1376
1616
|
*/
|
|
1377
|
-
'__v': number;
|
|
1617
|
+
'__v': number;
|
|
1618
|
+
/**
|
|
1619
|
+
*
|
|
1620
|
+
* @type {string}
|
|
1621
|
+
* @memberof ICategoryResponse
|
|
1622
|
+
*/
|
|
1623
|
+
'createdAt': string;
|
|
1624
|
+
/**
|
|
1625
|
+
*
|
|
1626
|
+
* @type {string}
|
|
1627
|
+
* @memberof ICategoryResponse
|
|
1628
|
+
*/
|
|
1629
|
+
'updatedAt': string;
|
|
1630
|
+
/**
|
|
1631
|
+
*
|
|
1632
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1633
|
+
* @memberof ICategoryResponse
|
|
1634
|
+
*/
|
|
1635
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1636
|
+
/**
|
|
1637
|
+
*
|
|
1638
|
+
* @type {Array<string>}
|
|
1639
|
+
* @memberof ICategoryResponse
|
|
1640
|
+
*/
|
|
1641
|
+
'slugs': Array<string>;
|
|
1642
|
+
/**
|
|
1643
|
+
*
|
|
1644
|
+
* @type {IImage}
|
|
1645
|
+
* @memberof ICategoryResponse
|
|
1646
|
+
*/
|
|
1647
|
+
'thumbnail'?: IImage;
|
|
1648
|
+
/**
|
|
1649
|
+
*
|
|
1650
|
+
* @type {string}
|
|
1651
|
+
* @memberof ICategoryResponse
|
|
1652
|
+
*/
|
|
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;
|
|
1378
1666
|
/**
|
|
1379
1667
|
*
|
|
1380
1668
|
* @type {string}
|
|
1381
1669
|
* @memberof ICategoryResponse
|
|
1382
1670
|
*/
|
|
1383
|
-
'
|
|
1671
|
+
'slug': string;
|
|
1384
1672
|
/**
|
|
1385
1673
|
*
|
|
1386
|
-
* @type {string}
|
|
1674
|
+
* @type {Array<string>}
|
|
1387
1675
|
* @memberof ICategoryResponse
|
|
1388
1676
|
*/
|
|
1389
|
-
'
|
|
1677
|
+
'keywords'?: Array<string>;
|
|
1390
1678
|
/**
|
|
1391
1679
|
*
|
|
1392
|
-
* @type {
|
|
1680
|
+
* @type {string}
|
|
1393
1681
|
* @memberof ICategoryResponse
|
|
1394
1682
|
*/
|
|
1395
|
-
'
|
|
1683
|
+
'metaDescription'?: string;
|
|
1396
1684
|
/**
|
|
1397
1685
|
*
|
|
1398
|
-
* @type {
|
|
1686
|
+
* @type {string}
|
|
1399
1687
|
* @memberof ICategoryResponse
|
|
1400
1688
|
*/
|
|
1401
|
-
'
|
|
1689
|
+
'metaTitle'?: string;
|
|
1402
1690
|
/**
|
|
1403
1691
|
*
|
|
1404
|
-
* @type {
|
|
1692
|
+
* @type {string}
|
|
1405
1693
|
* @memberof ICategoryResponse
|
|
1406
1694
|
*/
|
|
1407
|
-
'
|
|
1695
|
+
'description'?: string;
|
|
1408
1696
|
/**
|
|
1409
1697
|
*
|
|
1410
1698
|
* @type {string}
|
|
1411
1699
|
* @memberof ICategoryResponse
|
|
1412
1700
|
*/
|
|
1413
|
-
'
|
|
1701
|
+
'title': string;
|
|
1414
1702
|
/**
|
|
1415
1703
|
*
|
|
1416
1704
|
* @type {Array<ICategoryResponseAttributesInner>}
|
|
@@ -1663,6 +1951,18 @@ export type ICollectionCollectionsQueryParamsDateFieldEnum = typeof ICollectionC
|
|
|
1663
1951
|
* @interface ICollectionPatchRequest
|
|
1664
1952
|
*/
|
|
1665
1953
|
export interface ICollectionPatchRequest {
|
|
1954
|
+
/**
|
|
1955
|
+
*
|
|
1956
|
+
* @type {ContentStatusEnum}
|
|
1957
|
+
* @memberof ICollectionPatchRequest
|
|
1958
|
+
*/
|
|
1959
|
+
'status'?: ContentStatusEnum;
|
|
1960
|
+
/**
|
|
1961
|
+
*
|
|
1962
|
+
* @type {string}
|
|
1963
|
+
* @memberof ICollectionPatchRequest
|
|
1964
|
+
*/
|
|
1965
|
+
'title'?: string;
|
|
1666
1966
|
/**
|
|
1667
1967
|
*
|
|
1668
1968
|
* @type {ITemplateResponse}
|
|
@@ -1681,6 +1981,42 @@ export interface ICollectionPatchRequest {
|
|
|
1681
1981
|
* @memberof ICollectionPatchRequest
|
|
1682
1982
|
*/
|
|
1683
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}
|
|
1999
|
+
* @memberof ICollectionPatchRequest
|
|
2000
|
+
*/
|
|
2001
|
+
'metaDescription'?: string;
|
|
2002
|
+
/**
|
|
2003
|
+
*
|
|
2004
|
+
* @type {Array<string>}
|
|
2005
|
+
* @memberof ICollectionPatchRequest
|
|
2006
|
+
*/
|
|
2007
|
+
'keywords'?: Array<string>;
|
|
2008
|
+
/**
|
|
2009
|
+
*
|
|
2010
|
+
* @type {string}
|
|
2011
|
+
* @memberof ICollectionPatchRequest
|
|
2012
|
+
*/
|
|
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}
|
|
@@ -6124,59 +6556,155 @@ export interface IPageGetAllQueryParams {
|
|
|
6124
6556
|
export interface IPagePatchRequest {
|
|
6125
6557
|
/**
|
|
6126
6558
|
*
|
|
6127
|
-
* @type {
|
|
6128
|
-
* @memberof IPagePatchRequest
|
|
6559
|
+
* @type {ContentStatusEnum}
|
|
6560
|
+
* @memberof IPagePatchRequest
|
|
6561
|
+
*/
|
|
6562
|
+
'status'?: ContentStatusEnum;
|
|
6563
|
+
/**
|
|
6564
|
+
*
|
|
6565
|
+
* @type {string}
|
|
6566
|
+
* @memberof IPagePatchRequest
|
|
6567
|
+
*/
|
|
6568
|
+
'title'?: string;
|
|
6569
|
+
/**
|
|
6570
|
+
*
|
|
6571
|
+
* @type {ITemplateResponse}
|
|
6572
|
+
* @memberof IPagePatchRequest
|
|
6573
|
+
*/
|
|
6574
|
+
'template'?: ITemplateResponse;
|
|
6575
|
+
/**
|
|
6576
|
+
*
|
|
6577
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6578
|
+
* @memberof IPagePatchRequest
|
|
6579
|
+
*/
|
|
6580
|
+
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
6581
|
+
/**
|
|
6582
|
+
*
|
|
6583
|
+
* @type {IImage}
|
|
6584
|
+
* @memberof IPagePatchRequest
|
|
6585
|
+
*/
|
|
6586
|
+
'thumbnail'?: IImage;
|
|
6587
|
+
/**
|
|
6588
|
+
*
|
|
6589
|
+
* @type {PageTypeEnum}
|
|
6590
|
+
* @memberof IPagePatchRequest
|
|
6591
|
+
*/
|
|
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;
|
|
6629
|
+
}
|
|
6630
|
+
/**
|
|
6631
|
+
*
|
|
6632
|
+
* @export
|
|
6633
|
+
* @interface IPagePostRequest
|
|
6634
|
+
*/
|
|
6635
|
+
export interface IPagePostRequest {
|
|
6636
|
+
/**
|
|
6637
|
+
*
|
|
6638
|
+
* @type {string}
|
|
6639
|
+
* @memberof IPagePostRequest
|
|
6640
|
+
*/
|
|
6641
|
+
'company': string;
|
|
6642
|
+
/**
|
|
6643
|
+
*
|
|
6644
|
+
* @type {ContentStatusEnum}
|
|
6645
|
+
* @memberof IPagePostRequest
|
|
6646
|
+
*/
|
|
6647
|
+
'status': ContentStatusEnum;
|
|
6648
|
+
/**
|
|
6649
|
+
*
|
|
6650
|
+
* @type {string}
|
|
6651
|
+
* @memberof IPagePostRequest
|
|
6129
6652
|
*/
|
|
6130
|
-
'
|
|
6653
|
+
'title': string;
|
|
6131
6654
|
/**
|
|
6132
6655
|
*
|
|
6133
6656
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
6134
|
-
* @memberof
|
|
6657
|
+
* @memberof IPagePostRequest
|
|
6135
6658
|
*/
|
|
6136
|
-
'contents'
|
|
6659
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
6137
6660
|
/**
|
|
6138
6661
|
*
|
|
6139
6662
|
* @type {IImage}
|
|
6140
|
-
* @memberof
|
|
6663
|
+
* @memberof IPagePostRequest
|
|
6141
6664
|
*/
|
|
6142
6665
|
'thumbnail'?: IImage;
|
|
6143
6666
|
/**
|
|
6144
6667
|
*
|
|
6145
6668
|
* @type {PageTypeEnum}
|
|
6146
|
-
* @memberof
|
|
6669
|
+
* @memberof IPagePostRequest
|
|
6147
6670
|
*/
|
|
6148
|
-
'type'
|
|
6149
|
-
}
|
|
6150
|
-
/**
|
|
6151
|
-
*
|
|
6152
|
-
* @export
|
|
6153
|
-
* @interface IPagePostRequest
|
|
6154
|
-
*/
|
|
6155
|
-
export interface IPagePostRequest {
|
|
6671
|
+
'type': PageTypeEnum;
|
|
6156
6672
|
/**
|
|
6157
6673
|
*
|
|
6158
6674
|
* @type {string}
|
|
6159
6675
|
* @memberof IPagePostRequest
|
|
6160
6676
|
*/
|
|
6161
|
-
'
|
|
6677
|
+
'description'?: string;
|
|
6162
6678
|
/**
|
|
6163
6679
|
*
|
|
6164
|
-
* @type {
|
|
6680
|
+
* @type {string}
|
|
6165
6681
|
* @memberof IPagePostRequest
|
|
6166
6682
|
*/
|
|
6167
|
-
'
|
|
6683
|
+
'metaTitle'?: string;
|
|
6168
6684
|
/**
|
|
6169
6685
|
*
|
|
6170
|
-
* @type {
|
|
6686
|
+
* @type {string}
|
|
6171
6687
|
* @memberof IPagePostRequest
|
|
6172
6688
|
*/
|
|
6173
|
-
'
|
|
6689
|
+
'metaDescription'?: string;
|
|
6174
6690
|
/**
|
|
6175
6691
|
*
|
|
6176
|
-
* @type {
|
|
6692
|
+
* @type {Array<string>}
|
|
6177
6693
|
* @memberof IPagePostRequest
|
|
6178
6694
|
*/
|
|
6179
|
-
'
|
|
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}
|
|
@@ -6252,6 +6780,54 @@ export interface IPageResponse {
|
|
|
6252
6780
|
* @memberof IPageResponse
|
|
6253
6781
|
*/
|
|
6254
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;
|
|
6825
|
+
/**
|
|
6826
|
+
*
|
|
6827
|
+
* @type {string}
|
|
6828
|
+
* @memberof IPageResponse
|
|
6829
|
+
*/
|
|
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}
|
|
@@ -7231,16 +7915,70 @@ export interface IProductResponse {
|
|
|
7231
7915
|
};
|
|
7232
7916
|
/**
|
|
7233
7917
|
*
|
|
7234
|
-
* @type {number}
|
|
7918
|
+
* @type {number}
|
|
7919
|
+
* @memberof IProductResponse
|
|
7920
|
+
*/
|
|
7921
|
+
'reviewCount': number;
|
|
7922
|
+
/**
|
|
7923
|
+
*
|
|
7924
|
+
* @type {IProductResponseReviewCounts}
|
|
7925
|
+
* @memberof IProductResponse
|
|
7926
|
+
*/
|
|
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}
|
|
7235
7973
|
* @memberof IProductResponse
|
|
7236
7974
|
*/
|
|
7237
|
-
'
|
|
7975
|
+
'description'?: string;
|
|
7238
7976
|
/**
|
|
7239
7977
|
*
|
|
7240
|
-
* @type {
|
|
7978
|
+
* @type {string}
|
|
7241
7979
|
* @memberof IProductResponse
|
|
7242
7980
|
*/
|
|
7243
|
-
'
|
|
7981
|
+
'title': string;
|
|
7244
7982
|
/**
|
|
7245
7983
|
*
|
|
7246
7984
|
* @type {IBrandResponse}
|
|
@@ -9167,6 +9905,18 @@ export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseO
|
|
|
9167
9905
|
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9168
9906
|
*/
|
|
9169
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;
|
|
9170
9920
|
/**
|
|
9171
9921
|
*
|
|
9172
9922
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -9179,6 +9929,42 @@ export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseO
|
|
|
9179
9929
|
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9180
9930
|
*/
|
|
9181
9931
|
'thumbnail'?: IImage;
|
|
9932
|
+
/**
|
|
9933
|
+
*
|
|
9934
|
+
* @type {string}
|
|
9935
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9936
|
+
*/
|
|
9937
|
+
'description'?: string;
|
|
9938
|
+
/**
|
|
9939
|
+
*
|
|
9940
|
+
* @type {string}
|
|
9941
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9942
|
+
*/
|
|
9943
|
+
'metaTitle'?: string;
|
|
9944
|
+
/**
|
|
9945
|
+
*
|
|
9946
|
+
* @type {string}
|
|
9947
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9948
|
+
*/
|
|
9949
|
+
'metaDescription'?: string;
|
|
9950
|
+
/**
|
|
9951
|
+
*
|
|
9952
|
+
* @type {Array<string>}
|
|
9953
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9954
|
+
*/
|
|
9955
|
+
'keywords'?: Array<string>;
|
|
9956
|
+
/**
|
|
9957
|
+
*
|
|
9958
|
+
* @type {string}
|
|
9959
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9960
|
+
*/
|
|
9961
|
+
'slug': string;
|
|
9962
|
+
/**
|
|
9963
|
+
*
|
|
9964
|
+
* @type {string}
|
|
9965
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9966
|
+
*/
|
|
9967
|
+
'content'?: string;
|
|
9182
9968
|
}
|
|
9183
9969
|
/**
|
|
9184
9970
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -9253,6 +10039,18 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
|
|
|
9253
10039
|
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
|
|
9254
10040
|
*/
|
|
9255
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;
|
|
9256
10054
|
/**
|
|
9257
10055
|
*
|
|
9258
10056
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -9271,6 +10069,42 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
|
|
|
9271
10069
|
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
|
|
9272
10070
|
*/
|
|
9273
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;
|
|
9274
10108
|
}
|
|
9275
10109
|
/**
|
|
9276
10110
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -9388,6 +10222,18 @@ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMong
|
|
|
9388
10222
|
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
9389
10223
|
*/
|
|
9390
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;
|
|
9391
10237
|
/**
|
|
9392
10238
|
*
|
|
9393
10239
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -9400,6 +10246,42 @@ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMong
|
|
|
9400
10246
|
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
9401
10247
|
*/
|
|
9402
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;
|
|
9403
10285
|
}
|
|
9404
10286
|
/**
|
|
9405
10287
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -10435,6 +11317,18 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
|
|
|
10435
11317
|
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
10436
11318
|
*/
|
|
10437
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;
|
|
10438
11332
|
/**
|
|
10439
11333
|
*
|
|
10440
11334
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -10453,6 +11347,42 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
|
|
|
10453
11347
|
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
10454
11348
|
*/
|
|
10455
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;
|
|
10456
11386
|
}
|
|
10457
11387
|
/**
|
|
10458
11388
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -10675,6 +11605,18 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
|
|
|
10675
11605
|
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
10676
11606
|
*/
|
|
10677
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;
|
|
10678
11620
|
/**
|
|
10679
11621
|
*
|
|
10680
11622
|
* @type {boolean}
|
|
@@ -10747,6 +11689,48 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
|
|
|
10747
11689
|
'attributes'?: {
|
|
10748
11690
|
[key: string]: string;
|
|
10749
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;
|
|
10750
11734
|
}
|
|
10751
11735
|
/**
|
|
10752
11736
|
* 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-client",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.5",
|
|
4
4
|
"description": "api-client-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
|
}
|