@infisale-client/api-client 1.3.50 → 1.3.52

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.
Files changed (2) hide show
  1. package/dist/api/api.d.ts +517 -33
  2. 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}
@@ -9076,6 +9106,12 @@ export interface IThemeResponse {
9076
9106
  * @memberof IThemeResponse
9077
9107
  */
9078
9108
  'creator'?: string;
9109
+ /**
9110
+ *
9111
+ * @type {string}
9112
+ * @memberof IThemeResponse
9113
+ */
9114
+ 'lastVersion': string;
9079
9115
  /**
9080
9116
  * Make all properties in T optional
9081
9117
  * @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
@@ -9084,12 +9120,6 @@ export interface IThemeResponse {
9084
9120
  'groups': {
9085
9121
  [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
9086
9122
  };
9087
- /**
9088
- *
9089
- * @type {ITheme}
9090
- * @memberof IThemeResponse
9091
- */
9092
- 'main'?: ITheme;
9093
9123
  /**
9094
9124
  * Construct a type with a set of properties K of type T
9095
9125
  * @type {{ [key: string]: any; }}
@@ -9118,18 +9148,6 @@ export interface IThemeResponse {
9118
9148
  'componentConfigIndex': {
9119
9149
  [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
9120
9150
  };
9121
- /**
9122
- *
9123
- * @type {IThemeVersion}
9124
- * @memberof IThemeResponse
9125
- */
9126
- 'lastUpdate'?: IThemeVersion;
9127
- /**
9128
- *
9129
- * @type {IThemeVersion}
9130
- * @memberof IThemeResponse
9131
- */
9132
- 'lastVersion'?: IThemeVersion;
9133
9151
  }
9134
9152
  /**
9135
9153
  *
@@ -9208,10 +9226,246 @@ export interface IThemeVersion {
9208
9226
  export interface IThemesResponse {
9209
9227
  /**
9210
9228
  *
9211
- * @type {Array<IThemeResponse>}
9229
+ * @type {Array<IThemesResponseData>}
9212
9230
  * @memberof IThemesResponse
9213
9231
  */
9214
- 'data': Array<IThemeResponse>;
9232
+ 'data': Array<IThemesResponseData>;
9233
+ }
9234
+ /**
9235
+ *
9236
+ * @export
9237
+ * @interface IThemesResponseData
9238
+ */
9239
+ export interface IThemesResponseData {
9240
+ /**
9241
+ *
9242
+ * @type {string}
9243
+ * @memberof IThemesResponseData
9244
+ */
9245
+ 'name': string;
9246
+ /**
9247
+ *
9248
+ * @type {string}
9249
+ * @memberof IThemesResponseData
9250
+ */
9251
+ 'company'?: string;
9252
+ /**
9253
+ *
9254
+ * @type {string}
9255
+ * @memberof IThemesResponseData
9256
+ */
9257
+ '_id': string;
9258
+ /**
9259
+ *
9260
+ * @type {number}
9261
+ * @memberof IThemesResponseData
9262
+ */
9263
+ '__v': number;
9264
+ /**
9265
+ *
9266
+ * @type {string}
9267
+ * @memberof IThemesResponseData
9268
+ */
9269
+ 'createdAt': string;
9270
+ /**
9271
+ *
9272
+ * @type {string}
9273
+ * @memberof IThemesResponseData
9274
+ */
9275
+ 'updatedAt': string;
9276
+ /**
9277
+ *
9278
+ * @type {IImage}
9279
+ * @memberof IThemesResponseData
9280
+ */
9281
+ 'thumbnail'?: IImage;
9282
+ /**
9283
+ *
9284
+ * @type {CompanyTypeEnum}
9285
+ * @memberof IThemesResponseData
9286
+ */
9287
+ 'type': CompanyTypeEnum;
9288
+ /**
9289
+ * Construct a type with a set of properties K of type T
9290
+ * @type {{ [key: string]: any; }}
9291
+ * @memberof IThemesResponseData
9292
+ */
9293
+ 'config': {
9294
+ [key: string]: any;
9295
+ };
9296
+ /**
9297
+ * Make all properties in T optional
9298
+ * @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
9299
+ * @memberof IThemesResponseData
9300
+ */
9301
+ 'groups': {
9302
+ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
9303
+ };
9304
+ /**
9305
+ *
9306
+ * @type {Array<string>}
9307
+ * @memberof IThemesResponseData
9308
+ */
9309
+ 'companies': Array<string>;
9310
+ /**
9311
+ *
9312
+ * @type {string}
9313
+ * @memberof IThemesResponseData
9314
+ */
9315
+ 'demoUrl'?: string;
9316
+ /**
9317
+ *
9318
+ * @type {string}
9319
+ * @memberof IThemesResponseData
9320
+ */
9321
+ 'creator'?: string;
9322
+ /**
9323
+ * Construct a type with a set of properties K of type T
9324
+ * @type {{ [key: string]: any; }}
9325
+ * @memberof IThemesResponseData
9326
+ */
9327
+ 'files': {
9328
+ [key: string]: any;
9329
+ };
9330
+ /**
9331
+ *
9332
+ * @type {string}
9333
+ * @memberof IThemesResponseData
9334
+ */
9335
+ 'assetUrl': string;
9336
+ /**
9337
+ *
9338
+ * @type {number}
9339
+ * @memberof IThemesResponseData
9340
+ */
9341
+ 'assetVersion': number;
9342
+ /**
9343
+ * Construct a type with a set of properties K of type T
9344
+ * @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
9345
+ * @memberof IThemesResponseData
9346
+ */
9347
+ 'componentConfigIndex': {
9348
+ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
9349
+ };
9350
+ /**
9351
+ *
9352
+ * @type {IThemeVersion}
9353
+ * @memberof IThemesResponseData
9354
+ */
9355
+ 'lastUpdate'?: IThemeVersion;
9356
+ /**
9357
+ *
9358
+ * @type {IThemeVersion}
9359
+ * @memberof IThemesResponseData
9360
+ */
9361
+ 'lastVersion'?: IThemeVersion;
9362
+ /**
9363
+ *
9364
+ * @type {IThemesResponseDataMain}
9365
+ * @memberof IThemesResponseData
9366
+ */
9367
+ 'main'?: IThemesResponseDataMain;
9368
+ }
9369
+ /**
9370
+ *
9371
+ * @export
9372
+ * @interface IThemesResponseDataMain
9373
+ */
9374
+ export interface IThemesResponseDataMain {
9375
+ /**
9376
+ *
9377
+ * @type {string}
9378
+ * @memberof IThemesResponseDataMain
9379
+ */
9380
+ 'name': string;
9381
+ /**
9382
+ *
9383
+ * @type {string}
9384
+ * @memberof IThemesResponseDataMain
9385
+ */
9386
+ 'company'?: string;
9387
+ /**
9388
+ *
9389
+ * @type {string}
9390
+ * @memberof IThemesResponseDataMain
9391
+ */
9392
+ '_id': string;
9393
+ /**
9394
+ *
9395
+ * @type {number}
9396
+ * @memberof IThemesResponseDataMain
9397
+ */
9398
+ '__v': number;
9399
+ /**
9400
+ *
9401
+ * @type {string}
9402
+ * @memberof IThemesResponseDataMain
9403
+ */
9404
+ 'createdAt': string;
9405
+ /**
9406
+ *
9407
+ * @type {string}
9408
+ * @memberof IThemesResponseDataMain
9409
+ */
9410
+ 'updatedAt': string;
9411
+ /**
9412
+ *
9413
+ * @type {IImage}
9414
+ * @memberof IThemesResponseDataMain
9415
+ */
9416
+ 'thumbnail'?: IImage;
9417
+ /**
9418
+ *
9419
+ * @type {string}
9420
+ * @memberof IThemesResponseDataMain
9421
+ */
9422
+ 'main'?: string;
9423
+ /**
9424
+ *
9425
+ * @type {CompanyTypeEnum}
9426
+ * @memberof IThemesResponseDataMain
9427
+ */
9428
+ 'type': CompanyTypeEnum;
9429
+ /**
9430
+ * Construct a type with a set of properties K of type T
9431
+ * @type {{ [key: string]: any; }}
9432
+ * @memberof IThemesResponseDataMain
9433
+ */
9434
+ 'config': {
9435
+ [key: string]: any;
9436
+ };
9437
+ /**
9438
+ * Make all properties in T optional
9439
+ * @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentArrayValue; }}
9440
+ * @memberof IThemesResponseDataMain
9441
+ */
9442
+ 'groups': {
9443
+ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentArrayValue;
9444
+ };
9445
+ /**
9446
+ *
9447
+ * @type {Array<string>}
9448
+ * @memberof IThemesResponseDataMain
9449
+ */
9450
+ 'companies': Array<string>;
9451
+ /**
9452
+ *
9453
+ * @type {string}
9454
+ * @memberof IThemesResponseDataMain
9455
+ */
9456
+ 'demoUrl'?: string;
9457
+ /**
9458
+ *
9459
+ * @type {string}
9460
+ * @memberof IThemesResponseDataMain
9461
+ */
9462
+ 'creator'?: string;
9463
+ /**
9464
+ *
9465
+ * @type {IThemeVersion}
9466
+ * @memberof IThemesResponseDataMain
9467
+ */
9468
+ 'lastVersion'?: IThemeVersion;
9215
9469
  }
9216
9470
  /**
9217
9471
  *
@@ -12388,77 +12642,307 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
12388
12642
  /**
12389
12643
  * From T, pick a set of properties whose keys are in the union K
12390
12644
  * @export
12391
- * @interface PickIThemeExcludeKeyofIThemeGroupsOrMainOrLastVersion
12645
+ * @interface PickIThemeExcludeKeyofIThemeGroups
12392
12646
  */
12393
- export interface PickIThemeExcludeKeyofIThemeGroupsOrMainOrLastVersion {
12647
+ export interface PickIThemeExcludeKeyofIThemeGroups {
12394
12648
  /**
12395
12649
  *
12396
12650
  * @type {string}
12397
- * @memberof PickIThemeExcludeKeyofIThemeGroupsOrMainOrLastVersion
12651
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
12398
12652
  */
12399
12653
  'name': string;
12400
12654
  /**
12401
12655
  *
12402
12656
  * @type {string}
12403
- * @memberof PickIThemeExcludeKeyofIThemeGroupsOrMainOrLastVersion
12657
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
12404
12658
  */
12405
12659
  'company'?: string;
12406
12660
  /**
12407
12661
  *
12408
12662
  * @type {string}
12409
- * @memberof PickIThemeExcludeKeyofIThemeGroupsOrMainOrLastVersion
12663
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
12410
12664
  */
12411
12665
  '_id': string;
12412
12666
  /**
12413
12667
  *
12414
12668
  * @type {number}
12415
- * @memberof PickIThemeExcludeKeyofIThemeGroupsOrMainOrLastVersion
12669
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
12416
12670
  */
12417
12671
  '__v': number;
12418
12672
  /**
12419
12673
  *
12420
12674
  * @type {string}
12421
- * @memberof PickIThemeExcludeKeyofIThemeGroupsOrMainOrLastVersion
12675
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
12422
12676
  */
12423
12677
  'createdAt': string;
12424
12678
  /**
12425
12679
  *
12426
12680
  * @type {string}
12427
- * @memberof PickIThemeExcludeKeyofIThemeGroupsOrMainOrLastVersion
12681
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
12428
12682
  */
12429
12683
  'updatedAt': string;
12430
12684
  /**
12431
12685
  *
12432
12686
  * @type {IImage}
12433
- * @memberof PickIThemeExcludeKeyofIThemeGroupsOrMainOrLastVersion
12687
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
12434
12688
  */
12435
12689
  'thumbnail'?: IImage;
12690
+ /**
12691
+ *
12692
+ * @type {string}
12693
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
12694
+ */
12695
+ 'main'?: string;
12436
12696
  /**
12437
12697
  *
12438
12698
  * @type {CompanyTypeEnum}
12439
- * @memberof PickIThemeExcludeKeyofIThemeGroupsOrMainOrLastVersion
12699
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
12440
12700
  */
12441
12701
  'type': CompanyTypeEnum;
12442
12702
  /**
12443
12703
  * Construct a type with a set of properties K of type T
12444
12704
  * @type {{ [key: string]: any; }}
12445
- * @memberof PickIThemeExcludeKeyofIThemeGroupsOrMainOrLastVersion
12705
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
12446
12706
  */
12447
12707
  'config': {
12448
12708
  [key: string]: any;
12449
12709
  };
12710
+ /**
12711
+ *
12712
+ * @type {Array<string>}
12713
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
12714
+ */
12715
+ 'companies': Array<string>;
12450
12716
  /**
12451
12717
  *
12452
12718
  * @type {string}
12453
- * @memberof PickIThemeExcludeKeyofIThemeGroupsOrMainOrLastVersion
12719
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
12454
12720
  */
12455
12721
  'demoUrl'?: string;
12456
12722
  /**
12457
12723
  *
12458
12724
  * @type {string}
12459
- * @memberof PickIThemeExcludeKeyofIThemeGroupsOrMainOrLastVersion
12725
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
12460
12726
  */
12461
12727
  'creator'?: string;
12728
+ /**
12729
+ *
12730
+ * @type {string}
12731
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
12732
+ */
12733
+ 'lastVersion': string;
12734
+ }
12735
+ /**
12736
+ * From T, pick a set of properties whose keys are in the union K
12737
+ * @export
12738
+ * @interface PickIThemeExcludeKeyofIThemeLastVersion
12739
+ */
12740
+ export interface PickIThemeExcludeKeyofIThemeLastVersion {
12741
+ /**
12742
+ *
12743
+ * @type {string}
12744
+ * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12745
+ */
12746
+ 'name': string;
12747
+ /**
12748
+ *
12749
+ * @type {string}
12750
+ * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12751
+ */
12752
+ 'company'?: string;
12753
+ /**
12754
+ *
12755
+ * @type {string}
12756
+ * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12757
+ */
12758
+ '_id': string;
12759
+ /**
12760
+ *
12761
+ * @type {number}
12762
+ * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12763
+ */
12764
+ '__v': number;
12765
+ /**
12766
+ *
12767
+ * @type {string}
12768
+ * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12769
+ */
12770
+ 'createdAt': string;
12771
+ /**
12772
+ *
12773
+ * @type {string}
12774
+ * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12775
+ */
12776
+ 'updatedAt': string;
12777
+ /**
12778
+ *
12779
+ * @type {IImage}
12780
+ * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12781
+ */
12782
+ 'thumbnail'?: IImage;
12783
+ /**
12784
+ *
12785
+ * @type {string}
12786
+ * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12787
+ */
12788
+ 'main'?: string;
12789
+ /**
12790
+ *
12791
+ * @type {CompanyTypeEnum}
12792
+ * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12793
+ */
12794
+ 'type': CompanyTypeEnum;
12795
+ /**
12796
+ * Construct a type with a set of properties K of type T
12797
+ * @type {{ [key: string]: any; }}
12798
+ * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12799
+ */
12800
+ 'config': {
12801
+ [key: string]: any;
12802
+ };
12803
+ /**
12804
+ * Make all properties in T optional
12805
+ * @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentArrayValue; }}
12806
+ * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12807
+ */
12808
+ 'groups': {
12809
+ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentArrayValue;
12810
+ };
12811
+ /**
12812
+ *
12813
+ * @type {Array<string>}
12814
+ * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12815
+ */
12816
+ 'companies': Array<string>;
12817
+ /**
12818
+ *
12819
+ * @type {string}
12820
+ * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12821
+ */
12822
+ 'demoUrl'?: string;
12823
+ /**
12824
+ *
12825
+ * @type {string}
12826
+ * @memberof PickIThemeExcludeKeyofIThemeLastVersion
12827
+ */
12828
+ 'creator'?: string;
12829
+ }
12830
+ /**
12831
+ * From T, pick a set of properties whose keys are in the union K
12832
+ * @export
12833
+ * @interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12834
+ */
12835
+ export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
12836
+ /**
12837
+ *
12838
+ * @type {string}
12839
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12840
+ */
12841
+ 'name': string;
12842
+ /**
12843
+ *
12844
+ * @type {string}
12845
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12846
+ */
12847
+ 'company'?: string;
12848
+ /**
12849
+ *
12850
+ * @type {string}
12851
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12852
+ */
12853
+ '_id': string;
12854
+ /**
12855
+ *
12856
+ * @type {number}
12857
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12858
+ */
12859
+ '__v': number;
12860
+ /**
12861
+ *
12862
+ * @type {string}
12863
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12864
+ */
12865
+ 'createdAt': string;
12866
+ /**
12867
+ *
12868
+ * @type {string}
12869
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12870
+ */
12871
+ 'updatedAt': string;
12872
+ /**
12873
+ *
12874
+ * @type {IImage}
12875
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12876
+ */
12877
+ 'thumbnail'?: IImage;
12878
+ /**
12879
+ *
12880
+ * @type {CompanyTypeEnum}
12881
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12882
+ */
12883
+ 'type': CompanyTypeEnum;
12884
+ /**
12885
+ * Construct a type with a set of properties K of type T
12886
+ * @type {{ [key: string]: any; }}
12887
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12888
+ */
12889
+ 'config': {
12890
+ [key: string]: any;
12891
+ };
12892
+ /**
12893
+ * Make all properties in T optional
12894
+ * @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
12895
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12896
+ */
12897
+ 'groups': {
12898
+ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
12899
+ };
12900
+ /**
12901
+ *
12902
+ * @type {Array<string>}
12903
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12904
+ */
12905
+ 'companies': Array<string>;
12906
+ /**
12907
+ *
12908
+ * @type {string}
12909
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12910
+ */
12911
+ 'demoUrl'?: string;
12912
+ /**
12913
+ *
12914
+ * @type {string}
12915
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12916
+ */
12917
+ 'creator'?: string;
12918
+ /**
12919
+ * Construct a type with a set of properties K of type T
12920
+ * @type {{ [key: string]: any; }}
12921
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12922
+ */
12923
+ 'files': {
12924
+ [key: string]: any;
12925
+ };
12926
+ /**
12927
+ *
12928
+ * @type {string}
12929
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12930
+ */
12931
+ 'assetUrl': string;
12932
+ /**
12933
+ *
12934
+ * @type {number}
12935
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12936
+ */
12937
+ 'assetVersion': number;
12938
+ /**
12939
+ * Construct a type with a set of properties K of type T
12940
+ * @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue; }}
12941
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
12942
+ */
12943
+ 'componentConfigIndex': {
12944
+ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumValue;
12945
+ };
12462
12946
  }
12463
12947
  /**
12464
12948
  * 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.50",
3
+ "version": "1.3.52",
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": "a4479ac4f4ebc73065fd63100caa852c35ff7ca5"
40
+ "gitHead": "394a1b74938eed805d31995dc12d379e979b7fa0"
41
41
  }