@infisale-client/api-client 1.3.6 → 1.3.7
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/README.md +1 -1
- package/dist/api/api.d.ts +78 -18
- package/package.json +2 -2
package/README.md
CHANGED
package/dist/api/api.d.ts
CHANGED
|
@@ -986,6 +986,12 @@ export interface IBrandPatchRequest {
|
|
|
986
986
|
* @memberof IBrandPatchRequest
|
|
987
987
|
*/
|
|
988
988
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
989
|
+
/**
|
|
990
|
+
*
|
|
991
|
+
* @type {IImage}
|
|
992
|
+
* @memberof IBrandPatchRequest
|
|
993
|
+
*/
|
|
994
|
+
'thumbnail'?: IImage;
|
|
989
995
|
}
|
|
990
996
|
/**
|
|
991
997
|
*
|
|
@@ -1005,6 +1011,12 @@ export interface IBrandPostRequest {
|
|
|
1005
1011
|
* @memberof IBrandPostRequest
|
|
1006
1012
|
*/
|
|
1007
1013
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1014
|
+
/**
|
|
1015
|
+
*
|
|
1016
|
+
* @type {IImage}
|
|
1017
|
+
* @memberof IBrandPostRequest
|
|
1018
|
+
*/
|
|
1019
|
+
'thumbnail'?: IImage;
|
|
1008
1020
|
}
|
|
1009
1021
|
/**
|
|
1010
1022
|
*
|
|
@@ -1042,12 +1054,6 @@ export interface IBrandResponse {
|
|
|
1042
1054
|
* @memberof IBrandResponse
|
|
1043
1055
|
*/
|
|
1044
1056
|
'status': ContentStatusEnum;
|
|
1045
|
-
/**
|
|
1046
|
-
*
|
|
1047
|
-
* @type {IImage}
|
|
1048
|
-
* @memberof IBrandResponse
|
|
1049
|
-
*/
|
|
1050
|
-
'thumbnail'?: IImage;
|
|
1051
1057
|
/**
|
|
1052
1058
|
*
|
|
1053
1059
|
* @type {string}
|
|
@@ -1096,6 +1102,12 @@ export interface IBrandResponse {
|
|
|
1096
1102
|
* @memberof IBrandResponse
|
|
1097
1103
|
*/
|
|
1098
1104
|
'company': string;
|
|
1105
|
+
/**
|
|
1106
|
+
*
|
|
1107
|
+
* @type {IImage}
|
|
1108
|
+
* @memberof IBrandResponse
|
|
1109
|
+
*/
|
|
1110
|
+
'thumbnail'?: IImage;
|
|
1099
1111
|
/**
|
|
1100
1112
|
*
|
|
1101
1113
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
@@ -1337,6 +1349,12 @@ export interface ICategoryPatchRequest {
|
|
|
1337
1349
|
* @memberof ICategoryPatchRequest
|
|
1338
1350
|
*/
|
|
1339
1351
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
1352
|
+
/**
|
|
1353
|
+
*
|
|
1354
|
+
* @type {IImage}
|
|
1355
|
+
* @memberof ICategoryPatchRequest
|
|
1356
|
+
*/
|
|
1357
|
+
'thumbnail'?: IImage;
|
|
1340
1358
|
/**
|
|
1341
1359
|
*
|
|
1342
1360
|
* @type {string}
|
|
@@ -1362,6 +1380,12 @@ export interface ICategoryPostRequest {
|
|
|
1362
1380
|
* @memberof ICategoryPostRequest
|
|
1363
1381
|
*/
|
|
1364
1382
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1383
|
+
/**
|
|
1384
|
+
*
|
|
1385
|
+
* @type {IImage}
|
|
1386
|
+
* @memberof ICategoryPostRequest
|
|
1387
|
+
*/
|
|
1388
|
+
'thumbnail'?: IImage;
|
|
1365
1389
|
/**
|
|
1366
1390
|
*
|
|
1367
1391
|
* @type {string}
|
|
@@ -1747,6 +1771,12 @@ export interface ICollectionPatchRequest {
|
|
|
1747
1771
|
* @memberof ICollectionPatchRequest
|
|
1748
1772
|
*/
|
|
1749
1773
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
1774
|
+
/**
|
|
1775
|
+
*
|
|
1776
|
+
* @type {IImage}
|
|
1777
|
+
* @memberof ICollectionPatchRequest
|
|
1778
|
+
*/
|
|
1779
|
+
'thumbnail'?: IImage;
|
|
1750
1780
|
}
|
|
1751
1781
|
/**
|
|
1752
1782
|
*
|
|
@@ -1766,6 +1796,12 @@ export interface ICollectionPostRequest {
|
|
|
1766
1796
|
* @memberof ICollectionPostRequest
|
|
1767
1797
|
*/
|
|
1768
1798
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1799
|
+
/**
|
|
1800
|
+
*
|
|
1801
|
+
* @type {IImage}
|
|
1802
|
+
* @memberof ICollectionPostRequest
|
|
1803
|
+
*/
|
|
1804
|
+
'thumbnail'?: IImage;
|
|
1769
1805
|
/**
|
|
1770
1806
|
*
|
|
1771
1807
|
* @type {ITemplateResponse}
|
|
@@ -4317,12 +4353,6 @@ export interface IContentsValue {
|
|
|
4317
4353
|
* @memberof IContentsValue
|
|
4318
4354
|
*/
|
|
4319
4355
|
'status': ContentStatusEnum;
|
|
4320
|
-
/**
|
|
4321
|
-
*
|
|
4322
|
-
* @type {IImage}
|
|
4323
|
-
* @memberof IContentsValue
|
|
4324
|
-
*/
|
|
4325
|
-
'thumbnail'?: IImage;
|
|
4326
4356
|
/**
|
|
4327
4357
|
*
|
|
4328
4358
|
* @type {string}
|
|
@@ -6242,6 +6272,12 @@ export interface IPagePatchRequest {
|
|
|
6242
6272
|
* @memberof IPagePatchRequest
|
|
6243
6273
|
*/
|
|
6244
6274
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
6275
|
+
/**
|
|
6276
|
+
*
|
|
6277
|
+
* @type {IImage}
|
|
6278
|
+
* @memberof IPagePatchRequest
|
|
6279
|
+
*/
|
|
6280
|
+
'thumbnail'?: IImage;
|
|
6245
6281
|
/**
|
|
6246
6282
|
*
|
|
6247
6283
|
* @type {PageTypeEnum}
|
|
@@ -6267,6 +6303,12 @@ export interface IPagePostRequest {
|
|
|
6267
6303
|
* @memberof IPagePostRequest
|
|
6268
6304
|
*/
|
|
6269
6305
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
6306
|
+
/**
|
|
6307
|
+
*
|
|
6308
|
+
* @type {IImage}
|
|
6309
|
+
* @memberof IPagePostRequest
|
|
6310
|
+
*/
|
|
6311
|
+
'thumbnail'?: IImage;
|
|
6270
6312
|
/**
|
|
6271
6313
|
*
|
|
6272
6314
|
* @type {PageTypeEnum}
|
|
@@ -7391,12 +7433,6 @@ export interface IProductResponse {
|
|
|
7391
7433
|
* @memberof IProductResponse
|
|
7392
7434
|
*/
|
|
7393
7435
|
'status': ContentStatusEnum;
|
|
7394
|
-
/**
|
|
7395
|
-
*
|
|
7396
|
-
* @type {IImage}
|
|
7397
|
-
* @memberof IProductResponse
|
|
7398
|
-
*/
|
|
7399
|
-
'thumbnail'?: IImage;
|
|
7400
7436
|
/**
|
|
7401
7437
|
*
|
|
7402
7438
|
* @type {string}
|
|
@@ -9371,6 +9407,12 @@ export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseO
|
|
|
9371
9407
|
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
9372
9408
|
*/
|
|
9373
9409
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
9410
|
+
/**
|
|
9411
|
+
*
|
|
9412
|
+
* @type {IImage}
|
|
9413
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
9414
|
+
*/
|
|
9415
|
+
'thumbnail'?: IImage;
|
|
9374
9416
|
}
|
|
9375
9417
|
/**
|
|
9376
9418
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -9451,6 +9493,12 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
|
|
|
9451
9493
|
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
|
|
9452
9494
|
*/
|
|
9453
9495
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
9496
|
+
/**
|
|
9497
|
+
*
|
|
9498
|
+
* @type {IImage}
|
|
9499
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
|
|
9500
|
+
*/
|
|
9501
|
+
'thumbnail'?: IImage;
|
|
9454
9502
|
/**
|
|
9455
9503
|
*
|
|
9456
9504
|
* @type {string}
|
|
@@ -9580,6 +9628,12 @@ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMong
|
|
|
9580
9628
|
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
9581
9629
|
*/
|
|
9582
9630
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
9631
|
+
/**
|
|
9632
|
+
*
|
|
9633
|
+
* @type {IImage}
|
|
9634
|
+
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
9635
|
+
*/
|
|
9636
|
+
'thumbnail'?: IImage;
|
|
9583
9637
|
}
|
|
9584
9638
|
/**
|
|
9585
9639
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -10621,6 +10675,12 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
|
|
|
10621
10675
|
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
10622
10676
|
*/
|
|
10623
10677
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
10678
|
+
/**
|
|
10679
|
+
*
|
|
10680
|
+
* @type {IImage}
|
|
10681
|
+
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
10682
|
+
*/
|
|
10683
|
+
'thumbnail'?: IImage;
|
|
10624
10684
|
/**
|
|
10625
10685
|
*
|
|
10626
10686
|
* @type {PageTypeEnum}
|
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.7",
|
|
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": "9237476390354933f923585b27254e8379d305df"
|
|
41
41
|
}
|