@infisale-client/api-client 1.3.50 → 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 +407 -33
- 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,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,77 +12532,307 @@ 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
|
|
12536
|
+
*/
|
|
12537
|
+
export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
12538
|
+
/**
|
|
12539
|
+
*
|
|
12540
|
+
* @type {string}
|
|
12541
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12542
|
+
*/
|
|
12543
|
+
'name': string;
|
|
12544
|
+
/**
|
|
12545
|
+
*
|
|
12546
|
+
* @type {string}
|
|
12547
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12548
|
+
*/
|
|
12549
|
+
'company'?: string;
|
|
12550
|
+
/**
|
|
12551
|
+
*
|
|
12552
|
+
* @type {string}
|
|
12553
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12554
|
+
*/
|
|
12555
|
+
'_id': string;
|
|
12556
|
+
/**
|
|
12557
|
+
*
|
|
12558
|
+
* @type {number}
|
|
12559
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12560
|
+
*/
|
|
12561
|
+
'__v': number;
|
|
12562
|
+
/**
|
|
12563
|
+
*
|
|
12564
|
+
* @type {string}
|
|
12565
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12566
|
+
*/
|
|
12567
|
+
'createdAt': string;
|
|
12568
|
+
/**
|
|
12569
|
+
*
|
|
12570
|
+
* @type {string}
|
|
12571
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12572
|
+
*/
|
|
12573
|
+
'updatedAt': string;
|
|
12574
|
+
/**
|
|
12575
|
+
*
|
|
12576
|
+
* @type {IImage}
|
|
12577
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12578
|
+
*/
|
|
12579
|
+
'thumbnail'?: IImage;
|
|
12580
|
+
/**
|
|
12581
|
+
*
|
|
12582
|
+
* @type {string}
|
|
12583
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12584
|
+
*/
|
|
12585
|
+
'main'?: string;
|
|
12586
|
+
/**
|
|
12587
|
+
*
|
|
12588
|
+
* @type {CompanyTypeEnum}
|
|
12589
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12590
|
+
*/
|
|
12591
|
+
'type': CompanyTypeEnum;
|
|
12592
|
+
/**
|
|
12593
|
+
* Construct a type with a set of properties K of type T
|
|
12594
|
+
* @type {{ [key: string]: any; }}
|
|
12595
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12596
|
+
*/
|
|
12597
|
+
'config': {
|
|
12598
|
+
[key: string]: any;
|
|
12599
|
+
};
|
|
12600
|
+
/**
|
|
12601
|
+
*
|
|
12602
|
+
* @type {Array<string>}
|
|
12603
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12604
|
+
*/
|
|
12605
|
+
'companies': Array<string>;
|
|
12606
|
+
/**
|
|
12607
|
+
*
|
|
12608
|
+
* @type {string}
|
|
12609
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12610
|
+
*/
|
|
12611
|
+
'demoUrl'?: string;
|
|
12612
|
+
/**
|
|
12613
|
+
*
|
|
12614
|
+
* @type {string}
|
|
12615
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12616
|
+
*/
|
|
12617
|
+
'creator'?: string;
|
|
12618
|
+
/**
|
|
12619
|
+
*
|
|
12620
|
+
* @type {string}
|
|
12621
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12622
|
+
*/
|
|
12623
|
+
'lastVersion': string;
|
|
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
|
|
12392
12724
|
*/
|
|
12393
|
-
export interface
|
|
12725
|
+
export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
|
|
12394
12726
|
/**
|
|
12395
12727
|
*
|
|
12396
12728
|
* @type {string}
|
|
12397
|
-
* @memberof
|
|
12729
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12398
12730
|
*/
|
|
12399
12731
|
'name': string;
|
|
12400
12732
|
/**
|
|
12401
12733
|
*
|
|
12402
12734
|
* @type {string}
|
|
12403
|
-
* @memberof
|
|
12735
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12404
12736
|
*/
|
|
12405
12737
|
'company'?: string;
|
|
12406
12738
|
/**
|
|
12407
12739
|
*
|
|
12408
12740
|
* @type {string}
|
|
12409
|
-
* @memberof
|
|
12741
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12410
12742
|
*/
|
|
12411
12743
|
'_id': string;
|
|
12412
12744
|
/**
|
|
12413
12745
|
*
|
|
12414
12746
|
* @type {number}
|
|
12415
|
-
* @memberof
|
|
12747
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12416
12748
|
*/
|
|
12417
12749
|
'__v': number;
|
|
12418
12750
|
/**
|
|
12419
12751
|
*
|
|
12420
12752
|
* @type {string}
|
|
12421
|
-
* @memberof
|
|
12753
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12422
12754
|
*/
|
|
12423
12755
|
'createdAt': string;
|
|
12424
12756
|
/**
|
|
12425
12757
|
*
|
|
12426
12758
|
* @type {string}
|
|
12427
|
-
* @memberof
|
|
12759
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12428
12760
|
*/
|
|
12429
12761
|
'updatedAt': string;
|
|
12430
12762
|
/**
|
|
12431
12763
|
*
|
|
12432
12764
|
* @type {IImage}
|
|
12433
|
-
* @memberof
|
|
12765
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12434
12766
|
*/
|
|
12435
12767
|
'thumbnail'?: IImage;
|
|
12436
12768
|
/**
|
|
12437
12769
|
*
|
|
12438
12770
|
* @type {CompanyTypeEnum}
|
|
12439
|
-
* @memberof
|
|
12771
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12440
12772
|
*/
|
|
12441
12773
|
'type': CompanyTypeEnum;
|
|
12442
12774
|
/**
|
|
12443
12775
|
* Construct a type with a set of properties K of type T
|
|
12444
12776
|
* @type {{ [key: string]: any; }}
|
|
12445
|
-
* @memberof
|
|
12777
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12446
12778
|
*/
|
|
12447
12779
|
'config': {
|
|
12448
12780
|
[key: string]: any;
|
|
12449
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>;
|
|
12450
12796
|
/**
|
|
12451
12797
|
*
|
|
12452
12798
|
* @type {string}
|
|
12453
|
-
* @memberof
|
|
12799
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12454
12800
|
*/
|
|
12455
12801
|
'demoUrl'?: string;
|
|
12456
12802
|
/**
|
|
12457
12803
|
*
|
|
12458
12804
|
* @type {string}
|
|
12459
|
-
* @memberof
|
|
12805
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12460
12806
|
*/
|
|
12461
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
|
+
};
|
|
12462
12836
|
}
|
|
12463
12837
|
/**
|
|
12464
12838
|
* 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.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
|
}
|