@infisale-client/api-client 1.3.71 → 1.3.72
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 +236 -12
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -478,6 +478,43 @@ export interface GetMyProductReviewCount200Response {
|
|
|
478
478
|
*/
|
|
479
479
|
'count': number;
|
|
480
480
|
}
|
|
481
|
+
/**
|
|
482
|
+
*
|
|
483
|
+
* @export
|
|
484
|
+
* @interface GoogleSearchResponseInner
|
|
485
|
+
*/
|
|
486
|
+
export interface GoogleSearchResponseInner {
|
|
487
|
+
/**
|
|
488
|
+
*
|
|
489
|
+
* @type {string}
|
|
490
|
+
* @memberof GoogleSearchResponseInner
|
|
491
|
+
*/
|
|
492
|
+
'location'?: string;
|
|
493
|
+
/**
|
|
494
|
+
*
|
|
495
|
+
* @type {string}
|
|
496
|
+
* @memberof GoogleSearchResponseInner
|
|
497
|
+
*/
|
|
498
|
+
'description': string;
|
|
499
|
+
/**
|
|
500
|
+
*
|
|
501
|
+
* @type {number}
|
|
502
|
+
* @memberof GoogleSearchResponseInner
|
|
503
|
+
*/
|
|
504
|
+
'rank': number;
|
|
505
|
+
/**
|
|
506
|
+
*
|
|
507
|
+
* @type {string}
|
|
508
|
+
* @memberof GoogleSearchResponseInner
|
|
509
|
+
*/
|
|
510
|
+
'link': string;
|
|
511
|
+
/**
|
|
512
|
+
*
|
|
513
|
+
* @type {string}
|
|
514
|
+
* @memberof GoogleSearchResponseInner
|
|
515
|
+
*/
|
|
516
|
+
'title': string;
|
|
517
|
+
}
|
|
481
518
|
/**
|
|
482
519
|
*
|
|
483
520
|
* @export
|
|
@@ -9466,6 +9503,37 @@ export interface IResetPasswordRequest {
|
|
|
9466
9503
|
*/
|
|
9467
9504
|
'code': string;
|
|
9468
9505
|
}
|
|
9506
|
+
/**
|
|
9507
|
+
*
|
|
9508
|
+
* @export
|
|
9509
|
+
* @interface IResolvedFont
|
|
9510
|
+
*/
|
|
9511
|
+
export interface IResolvedFont {
|
|
9512
|
+
/**
|
|
9513
|
+
* Yedek yığın, aile adı HARİÇ: `system-ui, -apple-system, …`. Kategoriden türer.
|
|
9514
|
+
* @type {string}
|
|
9515
|
+
* @memberof IResolvedFont
|
|
9516
|
+
*/
|
|
9517
|
+
'stack': string;
|
|
9518
|
+
/**
|
|
9519
|
+
* css2 `family=` değeri; font proxy\'sinin cache anahtarı.
|
|
9520
|
+
* @type {string}
|
|
9521
|
+
* @memberof IResolvedFont
|
|
9522
|
+
*/
|
|
9523
|
+
'spec': string;
|
|
9524
|
+
/**
|
|
9525
|
+
* Eski `font_link` yolunun ihtiyaç duyduğu tam Google URL\'i.
|
|
9526
|
+
* @type {string}
|
|
9527
|
+
* @memberof IResolvedFont
|
|
9528
|
+
*/
|
|
9529
|
+
'url': string;
|
|
9530
|
+
/**
|
|
9531
|
+
* Kırpılmış `@font-face` blokları. Google o an cevap vermediyse yok.
|
|
9532
|
+
* @type {string}
|
|
9533
|
+
* @memberof IResolvedFont
|
|
9534
|
+
*/
|
|
9535
|
+
'css'?: string;
|
|
9536
|
+
}
|
|
9469
9537
|
/**
|
|
9470
9538
|
*
|
|
9471
9539
|
* @export
|
|
@@ -9739,6 +9807,99 @@ export interface IReviewResponse {
|
|
|
9739
9807
|
*/
|
|
9740
9808
|
'product'?: IProductResponse;
|
|
9741
9809
|
}
|
|
9810
|
+
/**
|
|
9811
|
+
*
|
|
9812
|
+
* @export
|
|
9813
|
+
* @interface ISeoRankLog
|
|
9814
|
+
*/
|
|
9815
|
+
export interface ISeoRankLog {
|
|
9816
|
+
/**
|
|
9817
|
+
*
|
|
9818
|
+
* @type {string}
|
|
9819
|
+
* @memberof ISeoRankLog
|
|
9820
|
+
*/
|
|
9821
|
+
'_id': string;
|
|
9822
|
+
/**
|
|
9823
|
+
*
|
|
9824
|
+
* @type {number}
|
|
9825
|
+
* @memberof ISeoRankLog
|
|
9826
|
+
*/
|
|
9827
|
+
'__v': number;
|
|
9828
|
+
/**
|
|
9829
|
+
*
|
|
9830
|
+
* @type {string}
|
|
9831
|
+
* @memberof ISeoRankLog
|
|
9832
|
+
*/
|
|
9833
|
+
'createdAt': string;
|
|
9834
|
+
/**
|
|
9835
|
+
*
|
|
9836
|
+
* @type {string}
|
|
9837
|
+
* @memberof ISeoRankLog
|
|
9838
|
+
*/
|
|
9839
|
+
'updatedAt': string;
|
|
9840
|
+
/**
|
|
9841
|
+
*
|
|
9842
|
+
* @type {ISeoRankLogCompany}
|
|
9843
|
+
* @memberof ISeoRankLog
|
|
9844
|
+
*/
|
|
9845
|
+
'company': ISeoRankLogCompany;
|
|
9846
|
+
/**
|
|
9847
|
+
*
|
|
9848
|
+
* @type {string}
|
|
9849
|
+
* @memberof ISeoRankLog
|
|
9850
|
+
*/
|
|
9851
|
+
'keyword': string;
|
|
9852
|
+
/**
|
|
9853
|
+
*
|
|
9854
|
+
* @type {number}
|
|
9855
|
+
* @memberof ISeoRankLog
|
|
9856
|
+
*/
|
|
9857
|
+
'rank': number;
|
|
9858
|
+
/**
|
|
9859
|
+
*
|
|
9860
|
+
* @type {Array<ISeoRankLogCompetitorRanksInner>}
|
|
9861
|
+
* @memberof ISeoRankLog
|
|
9862
|
+
*/
|
|
9863
|
+
'competitorRanks': Array<ISeoRankLogCompetitorRanksInner>;
|
|
9864
|
+
/**
|
|
9865
|
+
*
|
|
9866
|
+
* @type {Array<GoogleSearchResponseInner>}
|
|
9867
|
+
* @memberof ISeoRankLog
|
|
9868
|
+
*/
|
|
9869
|
+
'results': Array<GoogleSearchResponseInner>;
|
|
9870
|
+
/**
|
|
9871
|
+
*
|
|
9872
|
+
* @type {string}
|
|
9873
|
+
* @memberof ISeoRankLog
|
|
9874
|
+
*/
|
|
9875
|
+
'checkedAt': string;
|
|
9876
|
+
}
|
|
9877
|
+
/**
|
|
9878
|
+
*
|
|
9879
|
+
* @export
|
|
9880
|
+
* @interface ISeoRankLogCompany
|
|
9881
|
+
*/
|
|
9882
|
+
export interface ISeoRankLogCompany {
|
|
9883
|
+
}
|
|
9884
|
+
/**
|
|
9885
|
+
*
|
|
9886
|
+
* @export
|
|
9887
|
+
* @interface ISeoRankLogCompetitorRanksInner
|
|
9888
|
+
*/
|
|
9889
|
+
export interface ISeoRankLogCompetitorRanksInner {
|
|
9890
|
+
/**
|
|
9891
|
+
*
|
|
9892
|
+
* @type {number}
|
|
9893
|
+
* @memberof ISeoRankLogCompetitorRanksInner
|
|
9894
|
+
*/
|
|
9895
|
+
'rank': number;
|
|
9896
|
+
/**
|
|
9897
|
+
*
|
|
9898
|
+
* @type {string}
|
|
9899
|
+
* @memberof ISeoRankLogCompetitorRanksInner
|
|
9900
|
+
*/
|
|
9901
|
+
'domain': string;
|
|
9902
|
+
}
|
|
9742
9903
|
/**
|
|
9743
9904
|
*
|
|
9744
9905
|
* @export
|
|
@@ -10191,6 +10352,12 @@ export interface ITemplateComponentContentResponse {
|
|
|
10191
10352
|
* @memberof ITemplateComponentContentResponse
|
|
10192
10353
|
*/
|
|
10193
10354
|
'_id': string;
|
|
10355
|
+
/**
|
|
10356
|
+
*
|
|
10357
|
+
* @type {Array<ITemplateComponentContentResponse>}
|
|
10358
|
+
* @memberof ITemplateComponentContentResponse
|
|
10359
|
+
*/
|
|
10360
|
+
'contents'?: Array<ITemplateComponentContentResponse>;
|
|
10194
10361
|
}
|
|
10195
10362
|
/**
|
|
10196
10363
|
*
|
|
@@ -10759,11 +10926,19 @@ export interface IThemeResponse {
|
|
|
10759
10926
|
'assetVersion': number;
|
|
10760
10927
|
/**
|
|
10761
10928
|
* Construct a type with a set of properties K of type T
|
|
10762
|
-
* @type {{ [key: string]:
|
|
10929
|
+
* @type {{ [key: string]: IResolvedFont; }}
|
|
10930
|
+
* @memberof IThemeResponse
|
|
10931
|
+
*/
|
|
10932
|
+
'fonts'?: {
|
|
10933
|
+
[key: string]: IResolvedFont;
|
|
10934
|
+
};
|
|
10935
|
+
/**
|
|
10936
|
+
* Construct a type with a set of properties K of type T
|
|
10937
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
|
|
10763
10938
|
* @memberof IThemeResponse
|
|
10764
10939
|
*/
|
|
10765
10940
|
'componentConfigIndex': {
|
|
10766
|
-
[key: string]:
|
|
10941
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
10767
10942
|
};
|
|
10768
10943
|
}
|
|
10769
10944
|
/**
|
|
@@ -10826,13 +11001,19 @@ export interface IThemeVersion {
|
|
|
10826
11001
|
* @memberof IThemeVersion
|
|
10827
11002
|
*/
|
|
10828
11003
|
'isDeprecated': boolean;
|
|
11004
|
+
/**
|
|
11005
|
+
*
|
|
11006
|
+
* @type {string}
|
|
11007
|
+
* @memberof IThemeVersion
|
|
11008
|
+
*/
|
|
11009
|
+
'hash'?: string;
|
|
10829
11010
|
/**
|
|
10830
11011
|
* Construct a type with a set of properties K of type T
|
|
10831
|
-
* @type {{ [key: string]:
|
|
11012
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
|
|
10832
11013
|
* @memberof IThemeVersion
|
|
10833
11014
|
*/
|
|
10834
11015
|
'componentConfigIndex': {
|
|
10835
|
-
[key: string]:
|
|
11016
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
10836
11017
|
};
|
|
10837
11018
|
}
|
|
10838
11019
|
/**
|
|
@@ -11013,11 +11194,19 @@ export interface IThemesResponseData {
|
|
|
11013
11194
|
'assetVersion': number;
|
|
11014
11195
|
/**
|
|
11015
11196
|
* Construct a type with a set of properties K of type T
|
|
11016
|
-
* @type {{ [key: string]:
|
|
11197
|
+
* @type {{ [key: string]: IResolvedFont; }}
|
|
11198
|
+
* @memberof IThemesResponseData
|
|
11199
|
+
*/
|
|
11200
|
+
'fonts'?: {
|
|
11201
|
+
[key: string]: IResolvedFont;
|
|
11202
|
+
};
|
|
11203
|
+
/**
|
|
11204
|
+
* Construct a type with a set of properties K of type T
|
|
11205
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
|
|
11017
11206
|
* @memberof IThemesResponseData
|
|
11018
11207
|
*/
|
|
11019
11208
|
'componentConfigIndex': {
|
|
11020
|
-
[key: string]:
|
|
11209
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
11021
11210
|
};
|
|
11022
11211
|
/**
|
|
11023
11212
|
*
|
|
@@ -14519,6 +14708,27 @@ export interface PickIReviewExcludeKeyofIReviewProduct {
|
|
|
14519
14708
|
*/
|
|
14520
14709
|
'comment': string;
|
|
14521
14710
|
}
|
|
14711
|
+
/**
|
|
14712
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
14713
|
+
* @export
|
|
14714
|
+
* @interface PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents
|
|
14715
|
+
*/
|
|
14716
|
+
export interface PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents {
|
|
14717
|
+
/**
|
|
14718
|
+
*
|
|
14719
|
+
* @type {string}
|
|
14720
|
+
* @memberof PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents
|
|
14721
|
+
*/
|
|
14722
|
+
'type': string;
|
|
14723
|
+
/**
|
|
14724
|
+
* Construct a type with a set of properties K of type T
|
|
14725
|
+
* @type {{ [key: string]: any; }}
|
|
14726
|
+
* @memberof PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents
|
|
14727
|
+
*/
|
|
14728
|
+
'config': {
|
|
14729
|
+
[key: string]: any;
|
|
14730
|
+
};
|
|
14731
|
+
}
|
|
14522
14732
|
/**
|
|
14523
14733
|
* From T, pick a set of properties whose keys are in the union K
|
|
14524
14734
|
* @export
|
|
@@ -15012,11 +15222,19 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
|
|
|
15012
15222
|
'assetVersion': number;
|
|
15013
15223
|
/**
|
|
15014
15224
|
* Construct a type with a set of properties K of type T
|
|
15015
|
-
* @type {{ [key: string]:
|
|
15225
|
+
* @type {{ [key: string]: IResolvedFont; }}
|
|
15226
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
15227
|
+
*/
|
|
15228
|
+
'fonts'?: {
|
|
15229
|
+
[key: string]: IResolvedFont;
|
|
15230
|
+
};
|
|
15231
|
+
/**
|
|
15232
|
+
* Construct a type with a set of properties K of type T
|
|
15233
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
|
|
15016
15234
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
15017
15235
|
*/
|
|
15018
15236
|
'componentConfigIndex': {
|
|
15019
|
-
[key: string]:
|
|
15237
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
15020
15238
|
};
|
|
15021
15239
|
}
|
|
15022
15240
|
/**
|
|
@@ -15613,19 +15831,25 @@ export interface RecordPlanCurrencyEnumNumber {
|
|
|
15613
15831
|
/**
|
|
15614
15832
|
*
|
|
15615
15833
|
* @export
|
|
15616
|
-
* @interface
|
|
15834
|
+
* @interface RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
|
|
15617
15835
|
*/
|
|
15618
|
-
export interface
|
|
15836
|
+
export interface RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue {
|
|
15837
|
+
/**
|
|
15838
|
+
* Construct a type with a set of properties K of type T
|
|
15839
|
+
* @type {object}
|
|
15840
|
+
* @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
|
|
15841
|
+
*/
|
|
15842
|
+
'contentLimits'?: object;
|
|
15619
15843
|
/**
|
|
15620
15844
|
* Construct a type with a set of properties K of type T
|
|
15621
15845
|
* @type {object}
|
|
15622
|
-
* @memberof
|
|
15846
|
+
* @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
|
|
15623
15847
|
*/
|
|
15624
15848
|
'contents': object;
|
|
15625
15849
|
/**
|
|
15626
15850
|
* Construct a type with a set of properties K of type T
|
|
15627
15851
|
* @type {object}
|
|
15628
|
-
* @memberof
|
|
15852
|
+
* @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
|
|
15629
15853
|
*/
|
|
15630
15854
|
'config': object;
|
|
15631
15855
|
}
|
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.72",
|
|
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": "c7bd3310ce44f5bd9f638510852f8ceb6897b6af"
|
|
41
41
|
}
|