@infisale-client/api-client 1.3.49 → 1.3.51
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 +396 -28
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -8870,6 +8870,12 @@ export interface ITheme {
|
|
|
8870
8870
|
* @memberof ITheme
|
|
8871
8871
|
*/
|
|
8872
8872
|
'type': CompanyTypeEnum;
|
|
8873
|
+
/**
|
|
8874
|
+
*
|
|
8875
|
+
* @type {Array<string>}
|
|
8876
|
+
* @memberof ITheme
|
|
8877
|
+
*/
|
|
8878
|
+
'companies': Array<string>;
|
|
8873
8879
|
/**
|
|
8874
8880
|
*
|
|
8875
8881
|
* @type {string}
|
|
@@ -8960,6 +8966,12 @@ export interface IThemePatchRequest {
|
|
|
8960
8966
|
* @memberof IThemePatchRequest
|
|
8961
8967
|
*/
|
|
8962
8968
|
'thumbnail'?: IImage;
|
|
8969
|
+
/**
|
|
8970
|
+
*
|
|
8971
|
+
* @type {Array<string>}
|
|
8972
|
+
* @memberof IThemePatchRequest
|
|
8973
|
+
*/
|
|
8974
|
+
'companies'?: Array<string>;
|
|
8963
8975
|
/**
|
|
8964
8976
|
* Make all properties in T optional
|
|
8965
8977
|
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
@@ -9001,6 +9013,12 @@ export interface IThemePostRequest {
|
|
|
9001
9013
|
* @memberof IThemePostRequest
|
|
9002
9014
|
*/
|
|
9003
9015
|
'type': CompanyTypeEnum;
|
|
9016
|
+
/**
|
|
9017
|
+
*
|
|
9018
|
+
* @type {Array<string>}
|
|
9019
|
+
* @memberof IThemePostRequest
|
|
9020
|
+
*/
|
|
9021
|
+
'companies'?: Array<string>;
|
|
9004
9022
|
}
|
|
9005
9023
|
/**
|
|
9006
9024
|
*
|
|
@@ -9050,6 +9068,12 @@ export interface IThemeResponse {
|
|
|
9050
9068
|
* @memberof IThemeResponse
|
|
9051
9069
|
*/
|
|
9052
9070
|
'thumbnail'?: IImage;
|
|
9071
|
+
/**
|
|
9072
|
+
*
|
|
9073
|
+
* @type {string}
|
|
9074
|
+
* @memberof IThemeResponse
|
|
9075
|
+
*/
|
|
9076
|
+
'main'?: string;
|
|
9053
9077
|
/**
|
|
9054
9078
|
*
|
|
9055
9079
|
* @type {CompanyTypeEnum}
|
|
@@ -9064,6 +9088,12 @@ export interface IThemeResponse {
|
|
|
9064
9088
|
'config': {
|
|
9065
9089
|
[key: string]: any;
|
|
9066
9090
|
};
|
|
9091
|
+
/**
|
|
9092
|
+
*
|
|
9093
|
+
* @type {Array<string>}
|
|
9094
|
+
* @memberof IThemeResponse
|
|
9095
|
+
*/
|
|
9096
|
+
'companies': Array<string>;
|
|
9067
9097
|
/**
|
|
9068
9098
|
*
|
|
9069
9099
|
* @type {string}
|
|
@@ -9090,12 +9120,6 @@ export interface IThemeResponse {
|
|
|
9090
9120
|
'groups': {
|
|
9091
9121
|
[key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
9092
9122
|
};
|
|
9093
|
-
/**
|
|
9094
|
-
*
|
|
9095
|
-
* @type {ITheme}
|
|
9096
|
-
* @memberof IThemeResponse
|
|
9097
|
-
*/
|
|
9098
|
-
'main'?: ITheme;
|
|
9099
9123
|
/**
|
|
9100
9124
|
* Construct a type with a set of properties K of type T
|
|
9101
9125
|
* @type {{ [key: string]: any; }}
|
|
@@ -9124,12 +9148,6 @@ export interface IThemeResponse {
|
|
|
9124
9148
|
'componentConfigIndex': {
|
|
9125
9149
|
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
|
|
9126
9150
|
};
|
|
9127
|
-
/**
|
|
9128
|
-
*
|
|
9129
|
-
* @type {IThemeVersion}
|
|
9130
|
-
* @memberof IThemeResponse
|
|
9131
|
-
*/
|
|
9132
|
-
'lastUpdate'?: IThemeVersion;
|
|
9133
9151
|
}
|
|
9134
9152
|
/**
|
|
9135
9153
|
*
|
|
@@ -9208,10 +9226,136 @@ export interface IThemeVersion {
|
|
|
9208
9226
|
export interface IThemesResponse {
|
|
9209
9227
|
/**
|
|
9210
9228
|
*
|
|
9211
|
-
* @type {Array<
|
|
9229
|
+
* @type {PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain & Array<IThemesResponseDataAllOfInner>}
|
|
9212
9230
|
* @memberof IThemesResponse
|
|
9213
9231
|
*/
|
|
9214
|
-
'data': Array<
|
|
9232
|
+
'data': PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain & Array<IThemesResponseDataAllOfInner>;
|
|
9233
|
+
}
|
|
9234
|
+
/**
|
|
9235
|
+
*
|
|
9236
|
+
* @export
|
|
9237
|
+
* @interface IThemesResponseDataAllOfInner
|
|
9238
|
+
*/
|
|
9239
|
+
export interface IThemesResponseDataAllOfInner {
|
|
9240
|
+
/**
|
|
9241
|
+
*
|
|
9242
|
+
* @type {IThemesResponseDataAllOfInnerMain}
|
|
9243
|
+
* @memberof IThemesResponseDataAllOfInner
|
|
9244
|
+
*/
|
|
9245
|
+
'main'?: IThemesResponseDataAllOfInnerMain;
|
|
9246
|
+
/**
|
|
9247
|
+
*
|
|
9248
|
+
* @type {IThemeVersion}
|
|
9249
|
+
* @memberof IThemesResponseDataAllOfInner
|
|
9250
|
+
*/
|
|
9251
|
+
'lastVersion'?: IThemeVersion;
|
|
9252
|
+
/**
|
|
9253
|
+
*
|
|
9254
|
+
* @type {IThemeVersion}
|
|
9255
|
+
* @memberof IThemesResponseDataAllOfInner
|
|
9256
|
+
*/
|
|
9257
|
+
'lastUpdate'?: IThemeVersion;
|
|
9258
|
+
}
|
|
9259
|
+
/**
|
|
9260
|
+
*
|
|
9261
|
+
* @export
|
|
9262
|
+
* @interface IThemesResponseDataAllOfInnerMain
|
|
9263
|
+
*/
|
|
9264
|
+
export interface IThemesResponseDataAllOfInnerMain {
|
|
9265
|
+
/**
|
|
9266
|
+
*
|
|
9267
|
+
* @type {string}
|
|
9268
|
+
* @memberof IThemesResponseDataAllOfInnerMain
|
|
9269
|
+
*/
|
|
9270
|
+
'name': string;
|
|
9271
|
+
/**
|
|
9272
|
+
*
|
|
9273
|
+
* @type {string}
|
|
9274
|
+
* @memberof IThemesResponseDataAllOfInnerMain
|
|
9275
|
+
*/
|
|
9276
|
+
'company'?: string;
|
|
9277
|
+
/**
|
|
9278
|
+
*
|
|
9279
|
+
* @type {string}
|
|
9280
|
+
* @memberof IThemesResponseDataAllOfInnerMain
|
|
9281
|
+
*/
|
|
9282
|
+
'_id': string;
|
|
9283
|
+
/**
|
|
9284
|
+
*
|
|
9285
|
+
* @type {number}
|
|
9286
|
+
* @memberof IThemesResponseDataAllOfInnerMain
|
|
9287
|
+
*/
|
|
9288
|
+
'__v': number;
|
|
9289
|
+
/**
|
|
9290
|
+
*
|
|
9291
|
+
* @type {string}
|
|
9292
|
+
* @memberof IThemesResponseDataAllOfInnerMain
|
|
9293
|
+
*/
|
|
9294
|
+
'createdAt': string;
|
|
9295
|
+
/**
|
|
9296
|
+
*
|
|
9297
|
+
* @type {string}
|
|
9298
|
+
* @memberof IThemesResponseDataAllOfInnerMain
|
|
9299
|
+
*/
|
|
9300
|
+
'updatedAt': string;
|
|
9301
|
+
/**
|
|
9302
|
+
*
|
|
9303
|
+
* @type {IImage}
|
|
9304
|
+
* @memberof IThemesResponseDataAllOfInnerMain
|
|
9305
|
+
*/
|
|
9306
|
+
'thumbnail'?: IImage;
|
|
9307
|
+
/**
|
|
9308
|
+
*
|
|
9309
|
+
* @type {string}
|
|
9310
|
+
* @memberof IThemesResponseDataAllOfInnerMain
|
|
9311
|
+
*/
|
|
9312
|
+
'main'?: string;
|
|
9313
|
+
/**
|
|
9314
|
+
*
|
|
9315
|
+
* @type {CompanyTypeEnum}
|
|
9316
|
+
* @memberof IThemesResponseDataAllOfInnerMain
|
|
9317
|
+
*/
|
|
9318
|
+
'type': CompanyTypeEnum;
|
|
9319
|
+
/**
|
|
9320
|
+
* Construct a type with a set of properties K of type T
|
|
9321
|
+
* @type {{ [key: string]: object; }}
|
|
9322
|
+
* @memberof IThemesResponseDataAllOfInnerMain
|
|
9323
|
+
*/
|
|
9324
|
+
'config': {
|
|
9325
|
+
[key: string]: object;
|
|
9326
|
+
};
|
|
9327
|
+
/**
|
|
9328
|
+
* Make all properties in T optional
|
|
9329
|
+
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentArrayValue; }}
|
|
9330
|
+
* @memberof IThemesResponseDataAllOfInnerMain
|
|
9331
|
+
*/
|
|
9332
|
+
'groups': {
|
|
9333
|
+
[key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentArrayValue;
|
|
9334
|
+
};
|
|
9335
|
+
/**
|
|
9336
|
+
*
|
|
9337
|
+
* @type {Array<string>}
|
|
9338
|
+
* @memberof IThemesResponseDataAllOfInnerMain
|
|
9339
|
+
*/
|
|
9340
|
+
'companies': Array<string>;
|
|
9341
|
+
/**
|
|
9342
|
+
*
|
|
9343
|
+
* @type {string}
|
|
9344
|
+
* @memberof IThemesResponseDataAllOfInnerMain
|
|
9345
|
+
*/
|
|
9346
|
+
'demoUrl'?: string;
|
|
9347
|
+
/**
|
|
9348
|
+
*
|
|
9349
|
+
* @type {string}
|
|
9350
|
+
* @memberof IThemesResponseDataAllOfInnerMain
|
|
9351
|
+
*/
|
|
9352
|
+
'creator'?: string;
|
|
9353
|
+
/**
|
|
9354
|
+
*
|
|
9355
|
+
* @type {IThemeVersion}
|
|
9356
|
+
* @memberof IThemesResponseDataAllOfInnerMain
|
|
9357
|
+
*/
|
|
9358
|
+
'lastVersion'?: IThemeVersion;
|
|
9215
9359
|
}
|
|
9216
9360
|
/**
|
|
9217
9361
|
*
|
|
@@ -12388,84 +12532,308 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
|
|
|
12388
12532
|
/**
|
|
12389
12533
|
* From T, pick a set of properties whose keys are in the union K
|
|
12390
12534
|
* @export
|
|
12391
|
-
* @interface
|
|
12535
|
+
* @interface PickIThemeExcludeKeyofIThemeGroups
|
|
12392
12536
|
*/
|
|
12393
|
-
export interface
|
|
12537
|
+
export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
12394
12538
|
/**
|
|
12395
12539
|
*
|
|
12396
12540
|
* @type {string}
|
|
12397
|
-
* @memberof
|
|
12541
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12398
12542
|
*/
|
|
12399
12543
|
'name': string;
|
|
12400
12544
|
/**
|
|
12401
12545
|
*
|
|
12402
12546
|
* @type {string}
|
|
12403
|
-
* @memberof
|
|
12547
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12404
12548
|
*/
|
|
12405
12549
|
'company'?: string;
|
|
12406
12550
|
/**
|
|
12407
12551
|
*
|
|
12408
12552
|
* @type {string}
|
|
12409
|
-
* @memberof
|
|
12553
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12410
12554
|
*/
|
|
12411
12555
|
'_id': string;
|
|
12412
12556
|
/**
|
|
12413
12557
|
*
|
|
12414
12558
|
* @type {number}
|
|
12415
|
-
* @memberof
|
|
12559
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12416
12560
|
*/
|
|
12417
12561
|
'__v': number;
|
|
12418
12562
|
/**
|
|
12419
12563
|
*
|
|
12420
12564
|
* @type {string}
|
|
12421
|
-
* @memberof
|
|
12565
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12422
12566
|
*/
|
|
12423
12567
|
'createdAt': string;
|
|
12424
12568
|
/**
|
|
12425
12569
|
*
|
|
12426
12570
|
* @type {string}
|
|
12427
|
-
* @memberof
|
|
12571
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12428
12572
|
*/
|
|
12429
12573
|
'updatedAt': string;
|
|
12430
12574
|
/**
|
|
12431
12575
|
*
|
|
12432
12576
|
* @type {IImage}
|
|
12433
|
-
* @memberof
|
|
12577
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12434
12578
|
*/
|
|
12435
12579
|
'thumbnail'?: IImage;
|
|
12580
|
+
/**
|
|
12581
|
+
*
|
|
12582
|
+
* @type {string}
|
|
12583
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12584
|
+
*/
|
|
12585
|
+
'main'?: string;
|
|
12436
12586
|
/**
|
|
12437
12587
|
*
|
|
12438
12588
|
* @type {CompanyTypeEnum}
|
|
12439
|
-
* @memberof
|
|
12589
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12440
12590
|
*/
|
|
12441
12591
|
'type': CompanyTypeEnum;
|
|
12442
12592
|
/**
|
|
12443
12593
|
* Construct a type with a set of properties K of type T
|
|
12444
12594
|
* @type {{ [key: string]: any; }}
|
|
12445
|
-
* @memberof
|
|
12595
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12446
12596
|
*/
|
|
12447
12597
|
'config': {
|
|
12448
12598
|
[key: string]: any;
|
|
12449
12599
|
};
|
|
12600
|
+
/**
|
|
12601
|
+
*
|
|
12602
|
+
* @type {Array<string>}
|
|
12603
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12604
|
+
*/
|
|
12605
|
+
'companies': Array<string>;
|
|
12450
12606
|
/**
|
|
12451
12607
|
*
|
|
12452
12608
|
* @type {string}
|
|
12453
|
-
* @memberof
|
|
12609
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12454
12610
|
*/
|
|
12455
12611
|
'demoUrl'?: string;
|
|
12456
12612
|
/**
|
|
12457
12613
|
*
|
|
12458
12614
|
* @type {string}
|
|
12459
|
-
* @memberof
|
|
12615
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12460
12616
|
*/
|
|
12461
12617
|
'creator'?: string;
|
|
12462
12618
|
/**
|
|
12463
12619
|
*
|
|
12464
12620
|
* @type {string}
|
|
12465
|
-
* @memberof
|
|
12621
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12466
12622
|
*/
|
|
12467
12623
|
'lastVersion': string;
|
|
12468
12624
|
}
|
|
12625
|
+
/**
|
|
12626
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
12627
|
+
* @export
|
|
12628
|
+
* @interface PickIThemeExcludeKeyofIThemeLastVersion
|
|
12629
|
+
*/
|
|
12630
|
+
export interface PickIThemeExcludeKeyofIThemeLastVersion {
|
|
12631
|
+
/**
|
|
12632
|
+
*
|
|
12633
|
+
* @type {string}
|
|
12634
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12635
|
+
*/
|
|
12636
|
+
'name': string;
|
|
12637
|
+
/**
|
|
12638
|
+
*
|
|
12639
|
+
* @type {string}
|
|
12640
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12641
|
+
*/
|
|
12642
|
+
'company'?: string;
|
|
12643
|
+
/**
|
|
12644
|
+
*
|
|
12645
|
+
* @type {string}
|
|
12646
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12647
|
+
*/
|
|
12648
|
+
'_id': string;
|
|
12649
|
+
/**
|
|
12650
|
+
*
|
|
12651
|
+
* @type {number}
|
|
12652
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12653
|
+
*/
|
|
12654
|
+
'__v': number;
|
|
12655
|
+
/**
|
|
12656
|
+
*
|
|
12657
|
+
* @type {string}
|
|
12658
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12659
|
+
*/
|
|
12660
|
+
'createdAt': string;
|
|
12661
|
+
/**
|
|
12662
|
+
*
|
|
12663
|
+
* @type {string}
|
|
12664
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12665
|
+
*/
|
|
12666
|
+
'updatedAt': string;
|
|
12667
|
+
/**
|
|
12668
|
+
*
|
|
12669
|
+
* @type {IImage}
|
|
12670
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12671
|
+
*/
|
|
12672
|
+
'thumbnail'?: IImage;
|
|
12673
|
+
/**
|
|
12674
|
+
*
|
|
12675
|
+
* @type {string}
|
|
12676
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12677
|
+
*/
|
|
12678
|
+
'main'?: string;
|
|
12679
|
+
/**
|
|
12680
|
+
*
|
|
12681
|
+
* @type {CompanyTypeEnum}
|
|
12682
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12683
|
+
*/
|
|
12684
|
+
'type': CompanyTypeEnum;
|
|
12685
|
+
/**
|
|
12686
|
+
* Construct a type with a set of properties K of type T
|
|
12687
|
+
* @type {{ [key: string]: any; }}
|
|
12688
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12689
|
+
*/
|
|
12690
|
+
'config': {
|
|
12691
|
+
[key: string]: any;
|
|
12692
|
+
};
|
|
12693
|
+
/**
|
|
12694
|
+
* Make all properties in T optional
|
|
12695
|
+
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentArrayValue; }}
|
|
12696
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12697
|
+
*/
|
|
12698
|
+
'groups': {
|
|
12699
|
+
[key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentArrayValue;
|
|
12700
|
+
};
|
|
12701
|
+
/**
|
|
12702
|
+
*
|
|
12703
|
+
* @type {Array<string>}
|
|
12704
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12705
|
+
*/
|
|
12706
|
+
'companies': Array<string>;
|
|
12707
|
+
/**
|
|
12708
|
+
*
|
|
12709
|
+
* @type {string}
|
|
12710
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12711
|
+
*/
|
|
12712
|
+
'demoUrl'?: string;
|
|
12713
|
+
/**
|
|
12714
|
+
*
|
|
12715
|
+
* @type {string}
|
|
12716
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12717
|
+
*/
|
|
12718
|
+
'creator'?: string;
|
|
12719
|
+
}
|
|
12720
|
+
/**
|
|
12721
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
12722
|
+
* @export
|
|
12723
|
+
* @interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12724
|
+
*/
|
|
12725
|
+
export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
|
|
12726
|
+
/**
|
|
12727
|
+
*
|
|
12728
|
+
* @type {string}
|
|
12729
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12730
|
+
*/
|
|
12731
|
+
'name': string;
|
|
12732
|
+
/**
|
|
12733
|
+
*
|
|
12734
|
+
* @type {string}
|
|
12735
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12736
|
+
*/
|
|
12737
|
+
'company'?: string;
|
|
12738
|
+
/**
|
|
12739
|
+
*
|
|
12740
|
+
* @type {string}
|
|
12741
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12742
|
+
*/
|
|
12743
|
+
'_id': string;
|
|
12744
|
+
/**
|
|
12745
|
+
*
|
|
12746
|
+
* @type {number}
|
|
12747
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12748
|
+
*/
|
|
12749
|
+
'__v': number;
|
|
12750
|
+
/**
|
|
12751
|
+
*
|
|
12752
|
+
* @type {string}
|
|
12753
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12754
|
+
*/
|
|
12755
|
+
'createdAt': string;
|
|
12756
|
+
/**
|
|
12757
|
+
*
|
|
12758
|
+
* @type {string}
|
|
12759
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12760
|
+
*/
|
|
12761
|
+
'updatedAt': string;
|
|
12762
|
+
/**
|
|
12763
|
+
*
|
|
12764
|
+
* @type {IImage}
|
|
12765
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12766
|
+
*/
|
|
12767
|
+
'thumbnail'?: IImage;
|
|
12768
|
+
/**
|
|
12769
|
+
*
|
|
12770
|
+
* @type {CompanyTypeEnum}
|
|
12771
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12772
|
+
*/
|
|
12773
|
+
'type': CompanyTypeEnum;
|
|
12774
|
+
/**
|
|
12775
|
+
* Construct a type with a set of properties K of type T
|
|
12776
|
+
* @type {{ [key: string]: any; }}
|
|
12777
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12778
|
+
*/
|
|
12779
|
+
'config': {
|
|
12780
|
+
[key: string]: any;
|
|
12781
|
+
};
|
|
12782
|
+
/**
|
|
12783
|
+
* Make all properties in T optional
|
|
12784
|
+
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
12785
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12786
|
+
*/
|
|
12787
|
+
'groups': {
|
|
12788
|
+
[key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
|
|
12789
|
+
};
|
|
12790
|
+
/**
|
|
12791
|
+
*
|
|
12792
|
+
* @type {Array<string>}
|
|
12793
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12794
|
+
*/
|
|
12795
|
+
'companies': Array<string>;
|
|
12796
|
+
/**
|
|
12797
|
+
*
|
|
12798
|
+
* @type {string}
|
|
12799
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12800
|
+
*/
|
|
12801
|
+
'demoUrl'?: string;
|
|
12802
|
+
/**
|
|
12803
|
+
*
|
|
12804
|
+
* @type {string}
|
|
12805
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12806
|
+
*/
|
|
12807
|
+
'creator'?: string;
|
|
12808
|
+
/**
|
|
12809
|
+
* Construct a type with a set of properties K of type T
|
|
12810
|
+
* @type {{ [key: string]: any; }}
|
|
12811
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12812
|
+
*/
|
|
12813
|
+
'files': {
|
|
12814
|
+
[key: string]: any;
|
|
12815
|
+
};
|
|
12816
|
+
/**
|
|
12817
|
+
*
|
|
12818
|
+
* @type {string}
|
|
12819
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12820
|
+
*/
|
|
12821
|
+
'assetUrl': string;
|
|
12822
|
+
/**
|
|
12823
|
+
*
|
|
12824
|
+
* @type {number}
|
|
12825
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12826
|
+
*/
|
|
12827
|
+
'assetVersion': number;
|
|
12828
|
+
/**
|
|
12829
|
+
* Construct a type with a set of properties K of type T
|
|
12830
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
|
|
12831
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12832
|
+
*/
|
|
12833
|
+
'componentConfigIndex': {
|
|
12834
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
|
|
12835
|
+
};
|
|
12836
|
+
}
|
|
12469
12837
|
/**
|
|
12470
12838
|
* From T, pick a set of properties whose keys are in the union K
|
|
12471
12839
|
* @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.51",
|
|
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": "c70db2f5d233329a213f8fc1128552711f152592"
|
|
41
41
|
}
|