@infisale-client/api-client 1.3.6 → 1.3.8
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 +141 -73
- 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}
|
|
@@ -8468,12 +8504,6 @@ export interface IThemeCloneRequest {
|
|
|
8468
8504
|
* @interface IThemePatchRequest
|
|
8469
8505
|
*/
|
|
8470
8506
|
export interface IThemePatchRequest {
|
|
8471
|
-
/**
|
|
8472
|
-
*
|
|
8473
|
-
* @type {IThemeResponseTemplate}
|
|
8474
|
-
* @memberof IThemePatchRequest
|
|
8475
|
-
*/
|
|
8476
|
-
'template'?: IThemeResponseTemplate;
|
|
8477
8507
|
/**
|
|
8478
8508
|
*
|
|
8479
8509
|
* @type {string}
|
|
@@ -8494,6 +8524,14 @@ export interface IThemePatchRequest {
|
|
|
8494
8524
|
'config'?: {
|
|
8495
8525
|
[key: string]: any;
|
|
8496
8526
|
};
|
|
8527
|
+
/**
|
|
8528
|
+
* Construct a type with a set of properties K of type T
|
|
8529
|
+
* @type {{ [key: string]: RecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
8530
|
+
* @memberof IThemePatchRequest
|
|
8531
|
+
*/
|
|
8532
|
+
'groups'?: {
|
|
8533
|
+
[key: string]: RecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
8534
|
+
};
|
|
8497
8535
|
/**
|
|
8498
8536
|
*
|
|
8499
8537
|
* @type {string}
|
|
@@ -8539,6 +8577,14 @@ export interface IThemePostRequest {
|
|
|
8539
8577
|
'config': {
|
|
8540
8578
|
[key: string]: any;
|
|
8541
8579
|
};
|
|
8580
|
+
/**
|
|
8581
|
+
* Construct a type with a set of properties K of type T
|
|
8582
|
+
* @type {{ [key: string]: RecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
8583
|
+
* @memberof IThemePostRequest
|
|
8584
|
+
*/
|
|
8585
|
+
'groups': {
|
|
8586
|
+
[key: string]: RecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
8587
|
+
};
|
|
8542
8588
|
/**
|
|
8543
8589
|
*
|
|
8544
8590
|
* @type {string}
|
|
@@ -8557,12 +8603,6 @@ export interface IThemePostRequest {
|
|
|
8557
8603
|
* @memberof IThemePostRequest
|
|
8558
8604
|
*/
|
|
8559
8605
|
'assetVersion': number;
|
|
8560
|
-
/**
|
|
8561
|
-
*
|
|
8562
|
-
* @type {IThemeResponseTemplate}
|
|
8563
|
-
* @memberof IThemePostRequest
|
|
8564
|
-
*/
|
|
8565
|
-
'template': IThemeResponseTemplate;
|
|
8566
8606
|
}
|
|
8567
8607
|
/**
|
|
8568
8608
|
*
|
|
@@ -8639,11 +8679,13 @@ export interface IThemeResponse {
|
|
|
8639
8679
|
*/
|
|
8640
8680
|
'creator'?: string;
|
|
8641
8681
|
/**
|
|
8642
|
-
*
|
|
8643
|
-
* @type {
|
|
8682
|
+
* Construct a type with a set of properties K of type T
|
|
8683
|
+
* @type {{ [key: string]: RecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
8644
8684
|
* @memberof IThemeResponse
|
|
8645
8685
|
*/
|
|
8646
|
-
'
|
|
8686
|
+
'groups': {
|
|
8687
|
+
[key: string]: RecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
8688
|
+
};
|
|
8647
8689
|
/**
|
|
8648
8690
|
* Construct a type with a set of properties K of type T
|
|
8649
8691
|
* @type {{ [key: string]: any; }}
|
|
@@ -8665,25 +8707,6 @@ export interface IThemeResponse {
|
|
|
8665
8707
|
*/
|
|
8666
8708
|
'assetVersion': number;
|
|
8667
8709
|
}
|
|
8668
|
-
/**
|
|
8669
|
-
*
|
|
8670
|
-
* @export
|
|
8671
|
-
* @interface IThemeResponseTemplate
|
|
8672
|
-
*/
|
|
8673
|
-
export interface IThemeResponseTemplate {
|
|
8674
|
-
/**
|
|
8675
|
-
*
|
|
8676
|
-
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8677
|
-
* @memberof IThemeResponseTemplate
|
|
8678
|
-
*/
|
|
8679
|
-
'footer': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8680
|
-
/**
|
|
8681
|
-
*
|
|
8682
|
-
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8683
|
-
* @memberof IThemeResponseTemplate
|
|
8684
|
-
*/
|
|
8685
|
-
'header': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8686
|
-
}
|
|
8687
8710
|
/**
|
|
8688
8711
|
*
|
|
8689
8712
|
* @export
|
|
@@ -9371,6 +9394,12 @@ export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseO
|
|
|
9371
9394
|
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
9372
9395
|
*/
|
|
9373
9396
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
9397
|
+
/**
|
|
9398
|
+
*
|
|
9399
|
+
* @type {IImage}
|
|
9400
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
9401
|
+
*/
|
|
9402
|
+
'thumbnail'?: IImage;
|
|
9374
9403
|
}
|
|
9375
9404
|
/**
|
|
9376
9405
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -9451,6 +9480,12 @@ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoRes
|
|
|
9451
9480
|
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
|
|
9452
9481
|
*/
|
|
9453
9482
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
9483
|
+
/**
|
|
9484
|
+
*
|
|
9485
|
+
* @type {IImage}
|
|
9486
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
|
|
9487
|
+
*/
|
|
9488
|
+
'thumbnail'?: IImage;
|
|
9454
9489
|
/**
|
|
9455
9490
|
*
|
|
9456
9491
|
* @type {string}
|
|
@@ -9580,6 +9615,12 @@ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMong
|
|
|
9580
9615
|
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
9581
9616
|
*/
|
|
9582
9617
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
9618
|
+
/**
|
|
9619
|
+
*
|
|
9620
|
+
* @type {IImage}
|
|
9621
|
+
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
9622
|
+
*/
|
|
9623
|
+
'thumbnail'?: IImage;
|
|
9583
9624
|
}
|
|
9584
9625
|
/**
|
|
9585
9626
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -10621,6 +10662,12 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
|
|
|
10621
10662
|
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
10622
10663
|
*/
|
|
10623
10664
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
10665
|
+
/**
|
|
10666
|
+
*
|
|
10667
|
+
* @type {IImage}
|
|
10668
|
+
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
|
|
10669
|
+
*/
|
|
10670
|
+
'thumbnail'?: IImage;
|
|
10624
10671
|
/**
|
|
10625
10672
|
*
|
|
10626
10673
|
* @type {PageTypeEnum}
|
|
@@ -11126,61 +11173,61 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
|
|
|
11126
11173
|
/**
|
|
11127
11174
|
* From T, pick a set of properties whose keys are in the union K
|
|
11128
11175
|
* @export
|
|
11129
|
-
* @interface
|
|
11176
|
+
* @interface PickIThemeExcludeKeyofIThemeGroups
|
|
11130
11177
|
*/
|
|
11131
|
-
export interface
|
|
11178
|
+
export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
11132
11179
|
/**
|
|
11133
11180
|
*
|
|
11134
11181
|
* @type {string}
|
|
11135
|
-
* @memberof
|
|
11182
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11136
11183
|
*/
|
|
11137
11184
|
'name': string;
|
|
11138
11185
|
/**
|
|
11139
11186
|
*
|
|
11140
11187
|
* @type {string}
|
|
11141
|
-
* @memberof
|
|
11188
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11142
11189
|
*/
|
|
11143
11190
|
'company'?: string;
|
|
11144
11191
|
/**
|
|
11145
11192
|
*
|
|
11146
11193
|
* @type {string}
|
|
11147
|
-
* @memberof
|
|
11194
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11148
11195
|
*/
|
|
11149
11196
|
'_id': string;
|
|
11150
11197
|
/**
|
|
11151
11198
|
*
|
|
11152
11199
|
* @type {number}
|
|
11153
|
-
* @memberof
|
|
11200
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11154
11201
|
*/
|
|
11155
11202
|
'__v': number;
|
|
11156
11203
|
/**
|
|
11157
11204
|
*
|
|
11158
11205
|
* @type {string}
|
|
11159
|
-
* @memberof
|
|
11206
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11160
11207
|
*/
|
|
11161
11208
|
'createdAt': string;
|
|
11162
11209
|
/**
|
|
11163
11210
|
*
|
|
11164
11211
|
* @type {string}
|
|
11165
|
-
* @memberof
|
|
11212
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11166
11213
|
*/
|
|
11167
11214
|
'updatedAt': string;
|
|
11168
11215
|
/**
|
|
11169
11216
|
*
|
|
11170
11217
|
* @type {IImage}
|
|
11171
|
-
* @memberof
|
|
11218
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11172
11219
|
*/
|
|
11173
11220
|
'thumbnail'?: IImage;
|
|
11174
11221
|
/**
|
|
11175
11222
|
*
|
|
11176
11223
|
* @type {string}
|
|
11177
|
-
* @memberof
|
|
11224
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11178
11225
|
*/
|
|
11179
11226
|
'main'?: string;
|
|
11180
11227
|
/**
|
|
11181
11228
|
* Construct a type with a set of properties K of type T
|
|
11182
11229
|
* @type {{ [key: string]: any; }}
|
|
11183
|
-
* @memberof
|
|
11230
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11184
11231
|
*/
|
|
11185
11232
|
'config': {
|
|
11186
11233
|
[key: string]: any;
|
|
@@ -11188,58 +11235,66 @@ export interface PickIThemeExcludeKeyofIThemeTemplate {
|
|
|
11188
11235
|
/**
|
|
11189
11236
|
*
|
|
11190
11237
|
* @type {string}
|
|
11191
|
-
* @memberof
|
|
11238
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11192
11239
|
*/
|
|
11193
11240
|
'demoUrl'?: string;
|
|
11194
11241
|
/**
|
|
11195
11242
|
*
|
|
11196
11243
|
* @type {string}
|
|
11197
|
-
* @memberof
|
|
11244
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11198
11245
|
*/
|
|
11199
11246
|
'creator'?: string;
|
|
11200
11247
|
}
|
|
11201
11248
|
/**
|
|
11202
11249
|
* From T, pick a set of properties whose keys are in the union K
|
|
11203
11250
|
* @export
|
|
11204
|
-
* @interface
|
|
11251
|
+
* @interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11205
11252
|
*/
|
|
11206
|
-
export interface
|
|
11253
|
+
export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles {
|
|
11207
11254
|
/**
|
|
11208
11255
|
*
|
|
11209
11256
|
* @type {string}
|
|
11210
|
-
* @memberof
|
|
11257
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11211
11258
|
*/
|
|
11212
11259
|
'name': string;
|
|
11213
11260
|
/**
|
|
11214
11261
|
*
|
|
11215
11262
|
* @type {IImage}
|
|
11216
|
-
* @memberof
|
|
11263
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11217
11264
|
*/
|
|
11218
11265
|
'thumbnail'?: IImage;
|
|
11219
11266
|
/**
|
|
11220
11267
|
* Construct a type with a set of properties K of type T
|
|
11221
11268
|
* @type {{ [key: string]: any; }}
|
|
11222
|
-
* @memberof
|
|
11269
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11223
11270
|
*/
|
|
11224
11271
|
'config': {
|
|
11225
11272
|
[key: string]: any;
|
|
11226
11273
|
};
|
|
11274
|
+
/**
|
|
11275
|
+
* Construct a type with a set of properties K of type T
|
|
11276
|
+
* @type {{ [key: string]: RecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
11277
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11278
|
+
*/
|
|
11279
|
+
'groups': {
|
|
11280
|
+
[key: string]: RecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
11281
|
+
};
|
|
11227
11282
|
/**
|
|
11228
11283
|
*
|
|
11229
11284
|
* @type {string}
|
|
11230
|
-
* @memberof
|
|
11285
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11231
11286
|
*/
|
|
11232
11287
|
'demoUrl'?: string;
|
|
11233
11288
|
/**
|
|
11234
11289
|
*
|
|
11235
11290
|
* @type {string}
|
|
11236
|
-
* @memberof
|
|
11291
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11237
11292
|
*/
|
|
11238
11293
|
'assetUrl': string;
|
|
11239
11294
|
/**
|
|
11240
11295
|
*
|
|
11241
11296
|
* @type {number}
|
|
11242
|
-
* @memberof
|
|
11297
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11243
11298
|
*/
|
|
11244
11299
|
'assetVersion': number;
|
|
11245
11300
|
}
|
|
@@ -11641,6 +11696,19 @@ export interface RecordLanguageEnumTitleStringTr {
|
|
|
11641
11696
|
*/
|
|
11642
11697
|
'title': string;
|
|
11643
11698
|
}
|
|
11699
|
+
/**
|
|
11700
|
+
*
|
|
11701
|
+
* @export
|
|
11702
|
+
* @interface RecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue
|
|
11703
|
+
*/
|
|
11704
|
+
export interface RecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue {
|
|
11705
|
+
/**
|
|
11706
|
+
*
|
|
11707
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
11708
|
+
* @memberof RecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue
|
|
11709
|
+
*/
|
|
11710
|
+
'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
11711
|
+
}
|
|
11644
11712
|
/**
|
|
11645
11713
|
*
|
|
11646
11714
|
* @export
|
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.8",
|
|
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": "bb4152da7fc46071be67261b9741c58f8e16466f"
|
|
41
41
|
}
|