@infisale-client/api 1.3.70 → 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 +478 -39
- package/dist/api/api.js +187 -0
- package/dist/api/api.mjs +187 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -492,6 +492,19 @@ export interface FinalizeAiChat200Response {
|
|
|
492
492
|
*/
|
|
493
493
|
'chat': IAiChatResponse;
|
|
494
494
|
}
|
|
495
|
+
/**
|
|
496
|
+
*
|
|
497
|
+
* @export
|
|
498
|
+
* @interface GenerateCliToken200Response
|
|
499
|
+
*/
|
|
500
|
+
export interface GenerateCliToken200Response {
|
|
501
|
+
/**
|
|
502
|
+
*
|
|
503
|
+
* @type {string}
|
|
504
|
+
* @memberof GenerateCliToken200Response
|
|
505
|
+
*/
|
|
506
|
+
'accessToken': string;
|
|
507
|
+
}
|
|
495
508
|
/**
|
|
496
509
|
*
|
|
497
510
|
* @export
|
|
@@ -531,6 +544,43 @@ export interface GetMyProductReviewCount200Response {
|
|
|
531
544
|
*/
|
|
532
545
|
'count': number;
|
|
533
546
|
}
|
|
547
|
+
/**
|
|
548
|
+
*
|
|
549
|
+
* @export
|
|
550
|
+
* @interface GoogleSearchResponseInner
|
|
551
|
+
*/
|
|
552
|
+
export interface GoogleSearchResponseInner {
|
|
553
|
+
/**
|
|
554
|
+
*
|
|
555
|
+
* @type {string}
|
|
556
|
+
* @memberof GoogleSearchResponseInner
|
|
557
|
+
*/
|
|
558
|
+
'location'?: string;
|
|
559
|
+
/**
|
|
560
|
+
*
|
|
561
|
+
* @type {string}
|
|
562
|
+
* @memberof GoogleSearchResponseInner
|
|
563
|
+
*/
|
|
564
|
+
'description': string;
|
|
565
|
+
/**
|
|
566
|
+
*
|
|
567
|
+
* @type {number}
|
|
568
|
+
* @memberof GoogleSearchResponseInner
|
|
569
|
+
*/
|
|
570
|
+
'rank': number;
|
|
571
|
+
/**
|
|
572
|
+
*
|
|
573
|
+
* @type {string}
|
|
574
|
+
* @memberof GoogleSearchResponseInner
|
|
575
|
+
*/
|
|
576
|
+
'link': string;
|
|
577
|
+
/**
|
|
578
|
+
*
|
|
579
|
+
* @type {string}
|
|
580
|
+
* @memberof GoogleSearchResponseInner
|
|
581
|
+
*/
|
|
582
|
+
'title': string;
|
|
583
|
+
}
|
|
534
584
|
/**
|
|
535
585
|
*
|
|
536
586
|
* @export
|
|
@@ -5539,12 +5589,6 @@ export interface IContentPlanPostRequest {
|
|
|
5539
5589
|
* @memberof IContentPlanPostRequest
|
|
5540
5590
|
*/
|
|
5541
5591
|
'targetPublishedAt': string;
|
|
5542
|
-
/**
|
|
5543
|
-
*
|
|
5544
|
-
* @type {number}
|
|
5545
|
-
* @memberof IContentPlanPostRequest
|
|
5546
|
-
*/
|
|
5547
|
-
'minSeoScore'?: number;
|
|
5548
5592
|
}
|
|
5549
5593
|
/**
|
|
5550
5594
|
*
|
|
@@ -5654,12 +5698,6 @@ export interface IContentPlanResponse {
|
|
|
5654
5698
|
* @memberof IContentPlanResponse
|
|
5655
5699
|
*/
|
|
5656
5700
|
'seoScore'?: number;
|
|
5657
|
-
/**
|
|
5658
|
-
*
|
|
5659
|
-
* @type {number}
|
|
5660
|
-
* @memberof IContentPlanResponse
|
|
5661
|
-
*/
|
|
5662
|
-
'minSeoScore'?: number;
|
|
5663
5701
|
/**
|
|
5664
5702
|
*
|
|
5665
5703
|
* @type {Array<IContentPlanAttempt>}
|
|
@@ -9531,6 +9569,37 @@ export interface IResetPasswordRequest {
|
|
|
9531
9569
|
*/
|
|
9532
9570
|
'code': string;
|
|
9533
9571
|
}
|
|
9572
|
+
/**
|
|
9573
|
+
*
|
|
9574
|
+
* @export
|
|
9575
|
+
* @interface IResolvedFont
|
|
9576
|
+
*/
|
|
9577
|
+
export interface IResolvedFont {
|
|
9578
|
+
/**
|
|
9579
|
+
* Yedek yığın, aile adı HARİÇ: `system-ui, -apple-system, …`. Kategoriden türer.
|
|
9580
|
+
* @type {string}
|
|
9581
|
+
* @memberof IResolvedFont
|
|
9582
|
+
*/
|
|
9583
|
+
'stack': string;
|
|
9584
|
+
/**
|
|
9585
|
+
* css2 `family=` değeri; font proxy\'sinin cache anahtarı.
|
|
9586
|
+
* @type {string}
|
|
9587
|
+
* @memberof IResolvedFont
|
|
9588
|
+
*/
|
|
9589
|
+
'spec': string;
|
|
9590
|
+
/**
|
|
9591
|
+
* Eski `font_link` yolunun ihtiyaç duyduğu tam Google URL\'i.
|
|
9592
|
+
* @type {string}
|
|
9593
|
+
* @memberof IResolvedFont
|
|
9594
|
+
*/
|
|
9595
|
+
'url': string;
|
|
9596
|
+
/**
|
|
9597
|
+
* Kırpılmış `@font-face` blokları. Google o an cevap vermediyse yok.
|
|
9598
|
+
* @type {string}
|
|
9599
|
+
* @memberof IResolvedFont
|
|
9600
|
+
*/
|
|
9601
|
+
'css'?: string;
|
|
9602
|
+
}
|
|
9534
9603
|
/**
|
|
9535
9604
|
*
|
|
9536
9605
|
* @export
|
|
@@ -9804,6 +9873,99 @@ export interface IReviewResponse {
|
|
|
9804
9873
|
*/
|
|
9805
9874
|
'product'?: IProductResponse;
|
|
9806
9875
|
}
|
|
9876
|
+
/**
|
|
9877
|
+
*
|
|
9878
|
+
* @export
|
|
9879
|
+
* @interface ISeoRankLog
|
|
9880
|
+
*/
|
|
9881
|
+
export interface ISeoRankLog {
|
|
9882
|
+
/**
|
|
9883
|
+
*
|
|
9884
|
+
* @type {string}
|
|
9885
|
+
* @memberof ISeoRankLog
|
|
9886
|
+
*/
|
|
9887
|
+
'_id': string;
|
|
9888
|
+
/**
|
|
9889
|
+
*
|
|
9890
|
+
* @type {number}
|
|
9891
|
+
* @memberof ISeoRankLog
|
|
9892
|
+
*/
|
|
9893
|
+
'__v': number;
|
|
9894
|
+
/**
|
|
9895
|
+
*
|
|
9896
|
+
* @type {string}
|
|
9897
|
+
* @memberof ISeoRankLog
|
|
9898
|
+
*/
|
|
9899
|
+
'createdAt': string;
|
|
9900
|
+
/**
|
|
9901
|
+
*
|
|
9902
|
+
* @type {string}
|
|
9903
|
+
* @memberof ISeoRankLog
|
|
9904
|
+
*/
|
|
9905
|
+
'updatedAt': string;
|
|
9906
|
+
/**
|
|
9907
|
+
*
|
|
9908
|
+
* @type {ISeoRankLogCompany}
|
|
9909
|
+
* @memberof ISeoRankLog
|
|
9910
|
+
*/
|
|
9911
|
+
'company': ISeoRankLogCompany;
|
|
9912
|
+
/**
|
|
9913
|
+
*
|
|
9914
|
+
* @type {string}
|
|
9915
|
+
* @memberof ISeoRankLog
|
|
9916
|
+
*/
|
|
9917
|
+
'keyword': string;
|
|
9918
|
+
/**
|
|
9919
|
+
*
|
|
9920
|
+
* @type {number}
|
|
9921
|
+
* @memberof ISeoRankLog
|
|
9922
|
+
*/
|
|
9923
|
+
'rank': number;
|
|
9924
|
+
/**
|
|
9925
|
+
*
|
|
9926
|
+
* @type {Array<ISeoRankLogCompetitorRanksInner>}
|
|
9927
|
+
* @memberof ISeoRankLog
|
|
9928
|
+
*/
|
|
9929
|
+
'competitorRanks': Array<ISeoRankLogCompetitorRanksInner>;
|
|
9930
|
+
/**
|
|
9931
|
+
*
|
|
9932
|
+
* @type {Array<GoogleSearchResponseInner>}
|
|
9933
|
+
* @memberof ISeoRankLog
|
|
9934
|
+
*/
|
|
9935
|
+
'results': Array<GoogleSearchResponseInner>;
|
|
9936
|
+
/**
|
|
9937
|
+
*
|
|
9938
|
+
* @type {string}
|
|
9939
|
+
* @memberof ISeoRankLog
|
|
9940
|
+
*/
|
|
9941
|
+
'checkedAt': string;
|
|
9942
|
+
}
|
|
9943
|
+
/**
|
|
9944
|
+
*
|
|
9945
|
+
* @export
|
|
9946
|
+
* @interface ISeoRankLogCompany
|
|
9947
|
+
*/
|
|
9948
|
+
export interface ISeoRankLogCompany {
|
|
9949
|
+
}
|
|
9950
|
+
/**
|
|
9951
|
+
*
|
|
9952
|
+
* @export
|
|
9953
|
+
* @interface ISeoRankLogCompetitorRanksInner
|
|
9954
|
+
*/
|
|
9955
|
+
export interface ISeoRankLogCompetitorRanksInner {
|
|
9956
|
+
/**
|
|
9957
|
+
*
|
|
9958
|
+
* @type {number}
|
|
9959
|
+
* @memberof ISeoRankLogCompetitorRanksInner
|
|
9960
|
+
*/
|
|
9961
|
+
'rank': number;
|
|
9962
|
+
/**
|
|
9963
|
+
*
|
|
9964
|
+
* @type {string}
|
|
9965
|
+
* @memberof ISeoRankLogCompetitorRanksInner
|
|
9966
|
+
*/
|
|
9967
|
+
'domain': string;
|
|
9968
|
+
}
|
|
9807
9969
|
/**
|
|
9808
9970
|
*
|
|
9809
9971
|
* @export
|
|
@@ -9828,6 +9990,12 @@ export interface ISeoRankTrackPatchRequest {
|
|
|
9828
9990
|
* @memberof ISeoRankTrackPatchRequest
|
|
9829
9991
|
*/
|
|
9830
9992
|
'isActive'?: boolean;
|
|
9993
|
+
/**
|
|
9994
|
+
*
|
|
9995
|
+
* @type {string}
|
|
9996
|
+
* @memberof ISeoRankTrackPatchRequest
|
|
9997
|
+
*/
|
|
9998
|
+
'location'?: string;
|
|
9831
9999
|
}
|
|
9832
10000
|
/**
|
|
9833
10001
|
*
|
|
@@ -9853,6 +10021,12 @@ export interface ISeoRankTrackPostRequest {
|
|
|
9853
10021
|
* @memberof ISeoRankTrackPostRequest
|
|
9854
10022
|
*/
|
|
9855
10023
|
'intervalSeconds': number;
|
|
10024
|
+
/**
|
|
10025
|
+
*
|
|
10026
|
+
* @type {string}
|
|
10027
|
+
* @memberof ISeoRankTrackPostRequest
|
|
10028
|
+
*/
|
|
10029
|
+
'location'?: string;
|
|
9856
10030
|
}
|
|
9857
10031
|
/**
|
|
9858
10032
|
*
|
|
@@ -10244,6 +10418,12 @@ export interface ITemplateComponentContentResponse {
|
|
|
10244
10418
|
* @memberof ITemplateComponentContentResponse
|
|
10245
10419
|
*/
|
|
10246
10420
|
'_id': string;
|
|
10421
|
+
/**
|
|
10422
|
+
*
|
|
10423
|
+
* @type {Array<ITemplateComponentContentResponse>}
|
|
10424
|
+
* @memberof ITemplateComponentContentResponse
|
|
10425
|
+
*/
|
|
10426
|
+
'contents'?: Array<ITemplateComponentContentResponse>;
|
|
10247
10427
|
}
|
|
10248
10428
|
/**
|
|
10249
10429
|
*
|
|
@@ -10812,11 +10992,19 @@ export interface IThemeResponse {
|
|
|
10812
10992
|
'assetVersion': number;
|
|
10813
10993
|
/**
|
|
10814
10994
|
* Construct a type with a set of properties K of type T
|
|
10815
|
-
* @type {{ [key: string]:
|
|
10995
|
+
* @type {{ [key: string]: IResolvedFont; }}
|
|
10996
|
+
* @memberof IThemeResponse
|
|
10997
|
+
*/
|
|
10998
|
+
'fonts'?: {
|
|
10999
|
+
[key: string]: IResolvedFont;
|
|
11000
|
+
};
|
|
11001
|
+
/**
|
|
11002
|
+
* Construct a type with a set of properties K of type T
|
|
11003
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
|
|
10816
11004
|
* @memberof IThemeResponse
|
|
10817
11005
|
*/
|
|
10818
11006
|
'componentConfigIndex': {
|
|
10819
|
-
[key: string]:
|
|
11007
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
10820
11008
|
};
|
|
10821
11009
|
}
|
|
10822
11010
|
/**
|
|
@@ -10879,13 +11067,19 @@ export interface IThemeVersion {
|
|
|
10879
11067
|
* @memberof IThemeVersion
|
|
10880
11068
|
*/
|
|
10881
11069
|
'isDeprecated': boolean;
|
|
11070
|
+
/**
|
|
11071
|
+
*
|
|
11072
|
+
* @type {string}
|
|
11073
|
+
* @memberof IThemeVersion
|
|
11074
|
+
*/
|
|
11075
|
+
'hash'?: string;
|
|
10882
11076
|
/**
|
|
10883
11077
|
* Construct a type with a set of properties K of type T
|
|
10884
|
-
* @type {{ [key: string]:
|
|
11078
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
|
|
10885
11079
|
* @memberof IThemeVersion
|
|
10886
11080
|
*/
|
|
10887
11081
|
'componentConfigIndex': {
|
|
10888
|
-
[key: string]:
|
|
11082
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
10889
11083
|
};
|
|
10890
11084
|
}
|
|
10891
11085
|
/**
|
|
@@ -11066,11 +11260,19 @@ export interface IThemesResponseData {
|
|
|
11066
11260
|
'assetVersion': number;
|
|
11067
11261
|
/**
|
|
11068
11262
|
* Construct a type with a set of properties K of type T
|
|
11069
|
-
* @type {{ [key: string]:
|
|
11263
|
+
* @type {{ [key: string]: IResolvedFont; }}
|
|
11264
|
+
* @memberof IThemesResponseData
|
|
11265
|
+
*/
|
|
11266
|
+
'fonts'?: {
|
|
11267
|
+
[key: string]: IResolvedFont;
|
|
11268
|
+
};
|
|
11269
|
+
/**
|
|
11270
|
+
* Construct a type with a set of properties K of type T
|
|
11271
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
|
|
11070
11272
|
* @memberof IThemesResponseData
|
|
11071
11273
|
*/
|
|
11072
11274
|
'componentConfigIndex': {
|
|
11073
|
-
[key: string]:
|
|
11275
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
11074
11276
|
};
|
|
11075
11277
|
/**
|
|
11076
11278
|
*
|
|
@@ -12003,6 +12205,75 @@ export declare const LanguageEnum: {
|
|
|
12003
12205
|
readonly DE: "de";
|
|
12004
12206
|
};
|
|
12005
12207
|
export type LanguageEnum = typeof LanguageEnum[keyof typeof LanguageEnum];
|
|
12208
|
+
/**
|
|
12209
|
+
*
|
|
12210
|
+
* @export
|
|
12211
|
+
* @interface ListSeoRankTracks200ResponseInner
|
|
12212
|
+
*/
|
|
12213
|
+
export interface ListSeoRankTracks200ResponseInner {
|
|
12214
|
+
/**
|
|
12215
|
+
*
|
|
12216
|
+
* @type {string}
|
|
12217
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12218
|
+
*/
|
|
12219
|
+
'updated_at': string;
|
|
12220
|
+
/**
|
|
12221
|
+
*
|
|
12222
|
+
* @type {string}
|
|
12223
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12224
|
+
*/
|
|
12225
|
+
'created_at': string;
|
|
12226
|
+
/**
|
|
12227
|
+
*
|
|
12228
|
+
* @type {boolean}
|
|
12229
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12230
|
+
*/
|
|
12231
|
+
'is_active': boolean;
|
|
12232
|
+
/**
|
|
12233
|
+
*
|
|
12234
|
+
* @type {string}
|
|
12235
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12236
|
+
*/
|
|
12237
|
+
'next_run_at': string;
|
|
12238
|
+
/**
|
|
12239
|
+
*
|
|
12240
|
+
* @type {number}
|
|
12241
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12242
|
+
*/
|
|
12243
|
+
'interval_seconds': number;
|
|
12244
|
+
/**
|
|
12245
|
+
*
|
|
12246
|
+
* @type {string}
|
|
12247
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12248
|
+
*/
|
|
12249
|
+
'payload_hash': string;
|
|
12250
|
+
/**
|
|
12251
|
+
* Construct a type with a set of properties K of type T
|
|
12252
|
+
* @type {{ [key: string]: any; }}
|
|
12253
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12254
|
+
*/
|
|
12255
|
+
'payload': {
|
|
12256
|
+
[key: string]: any;
|
|
12257
|
+
};
|
|
12258
|
+
/**
|
|
12259
|
+
*
|
|
12260
|
+
* @type {string}
|
|
12261
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12262
|
+
*/
|
|
12263
|
+
'id': string;
|
|
12264
|
+
/**
|
|
12265
|
+
*
|
|
12266
|
+
* @type {string}
|
|
12267
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12268
|
+
*/
|
|
12269
|
+
'type': string;
|
|
12270
|
+
/**
|
|
12271
|
+
*
|
|
12272
|
+
* @type {string}
|
|
12273
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12274
|
+
*/
|
|
12275
|
+
'company': string;
|
|
12276
|
+
}
|
|
12006
12277
|
/**
|
|
12007
12278
|
*
|
|
12008
12279
|
* @export
|
|
@@ -14541,6 +14812,27 @@ export interface PickIReviewExcludeKeyofIReviewProduct {
|
|
|
14541
14812
|
*/
|
|
14542
14813
|
'comment': string;
|
|
14543
14814
|
}
|
|
14815
|
+
/**
|
|
14816
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
14817
|
+
* @export
|
|
14818
|
+
* @interface PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents
|
|
14819
|
+
*/
|
|
14820
|
+
export interface PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents {
|
|
14821
|
+
/**
|
|
14822
|
+
*
|
|
14823
|
+
* @type {string}
|
|
14824
|
+
* @memberof PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents
|
|
14825
|
+
*/
|
|
14826
|
+
'type': string;
|
|
14827
|
+
/**
|
|
14828
|
+
* Construct a type with a set of properties K of type T
|
|
14829
|
+
* @type {{ [key: string]: any; }}
|
|
14830
|
+
* @memberof PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents
|
|
14831
|
+
*/
|
|
14832
|
+
'config': {
|
|
14833
|
+
[key: string]: any;
|
|
14834
|
+
};
|
|
14835
|
+
}
|
|
14544
14836
|
/**
|
|
14545
14837
|
* From T, pick a set of properties whose keys are in the union K
|
|
14546
14838
|
* @export
|
|
@@ -15034,11 +15326,19 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
|
|
|
15034
15326
|
'assetVersion': number;
|
|
15035
15327
|
/**
|
|
15036
15328
|
* Construct a type with a set of properties K of type T
|
|
15037
|
-
* @type {{ [key: string]:
|
|
15329
|
+
* @type {{ [key: string]: IResolvedFont; }}
|
|
15330
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
15331
|
+
*/
|
|
15332
|
+
'fonts'?: {
|
|
15333
|
+
[key: string]: IResolvedFont;
|
|
15334
|
+
};
|
|
15335
|
+
/**
|
|
15336
|
+
* Construct a type with a set of properties K of type T
|
|
15337
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
|
|
15038
15338
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
15039
15339
|
*/
|
|
15040
15340
|
'componentConfigIndex': {
|
|
15041
|
-
[key: string]:
|
|
15341
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
15042
15342
|
};
|
|
15043
15343
|
}
|
|
15044
15344
|
/**
|
|
@@ -15635,19 +15935,25 @@ export interface RecordPlanCurrencyEnumNumber {
|
|
|
15635
15935
|
/**
|
|
15636
15936
|
*
|
|
15637
15937
|
* @export
|
|
15638
|
-
* @interface
|
|
15938
|
+
* @interface RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
|
|
15639
15939
|
*/
|
|
15640
|
-
export interface
|
|
15940
|
+
export interface RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue {
|
|
15941
|
+
/**
|
|
15942
|
+
* Construct a type with a set of properties K of type T
|
|
15943
|
+
* @type {object}
|
|
15944
|
+
* @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
|
|
15945
|
+
*/
|
|
15946
|
+
'contentLimits'?: object;
|
|
15641
15947
|
/**
|
|
15642
15948
|
* Construct a type with a set of properties K of type T
|
|
15643
15949
|
* @type {object}
|
|
15644
|
-
* @memberof
|
|
15950
|
+
* @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
|
|
15645
15951
|
*/
|
|
15646
15952
|
'contents': object;
|
|
15647
15953
|
/**
|
|
15648
15954
|
* Construct a type with a set of properties K of type T
|
|
15649
15955
|
* @type {object}
|
|
15650
|
-
* @memberof
|
|
15956
|
+
* @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
|
|
15651
15957
|
*/
|
|
15652
15958
|
'config': object;
|
|
15653
15959
|
}
|
|
@@ -16612,6 +16918,12 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
16612
16918
|
* @throws {RequiredError}
|
|
16613
16919
|
*/
|
|
16614
16920
|
forgotPassword: (domain: string, iForgotPasswordRequest: IForgotPasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16921
|
+
/**
|
|
16922
|
+
*
|
|
16923
|
+
* @param {*} [options] Override http request option.
|
|
16924
|
+
* @throws {RequiredError}
|
|
16925
|
+
*/
|
|
16926
|
+
generateCliToken: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16615
16927
|
/**
|
|
16616
16928
|
*
|
|
16617
16929
|
* @param {string} domain
|
|
@@ -16680,6 +16992,12 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
|
16680
16992
|
* @throws {RequiredError}
|
|
16681
16993
|
*/
|
|
16682
16994
|
forgotPassword(domain: string, iForgotPasswordRequest: IForgotPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
16995
|
+
/**
|
|
16996
|
+
*
|
|
16997
|
+
* @param {*} [options] Override http request option.
|
|
16998
|
+
* @throws {RequiredError}
|
|
16999
|
+
*/
|
|
17000
|
+
generateCliToken(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GenerateCliToken200Response>>;
|
|
16683
17001
|
/**
|
|
16684
17002
|
*
|
|
16685
17003
|
* @param {string} domain
|
|
@@ -16747,6 +17065,12 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
|
|
|
16747
17065
|
* @throws {RequiredError}
|
|
16748
17066
|
*/
|
|
16749
17067
|
forgotPassword(requestParameters: AuthApiForgotPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
17068
|
+
/**
|
|
17069
|
+
*
|
|
17070
|
+
* @param {*} [options] Override http request option.
|
|
17071
|
+
* @throws {RequiredError}
|
|
17072
|
+
*/
|
|
17073
|
+
generateCliToken(options?: RawAxiosRequestConfig): AxiosPromise<GenerateCliToken200Response>;
|
|
16750
17074
|
/**
|
|
16751
17075
|
*
|
|
16752
17076
|
* @param {AuthApiLoginRequest} requestParameters Request parameters.
|
|
@@ -16952,6 +17276,13 @@ export declare class AuthApi extends BaseAPI {
|
|
|
16952
17276
|
* @memberof AuthApi
|
|
16953
17277
|
*/
|
|
16954
17278
|
forgotPassword(requestParameters: AuthApiForgotPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
17279
|
+
/**
|
|
17280
|
+
*
|
|
17281
|
+
* @param {*} [options] Override http request option.
|
|
17282
|
+
* @throws {RequiredError}
|
|
17283
|
+
* @memberof AuthApi
|
|
17284
|
+
*/
|
|
17285
|
+
generateCliToken(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GenerateCliToken200Response, any>>;
|
|
16955
17286
|
/**
|
|
16956
17287
|
*
|
|
16957
17288
|
* @param {AuthApiLoginRequest} requestParameters Request parameters.
|
|
@@ -25650,6 +25981,16 @@ export declare const SEOApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
25650
25981
|
* @throws {RequiredError}
|
|
25651
25982
|
*/
|
|
25652
25983
|
getSeoRankTrack: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25984
|
+
/**
|
|
25985
|
+
*
|
|
25986
|
+
* @param {string} companyId
|
|
25987
|
+
* @param {string} [keyword]
|
|
25988
|
+
* @param {string} [startDate]
|
|
25989
|
+
* @param {string} [endDate]
|
|
25990
|
+
* @param {*} [options] Override http request option.
|
|
25991
|
+
* @throws {RequiredError}
|
|
25992
|
+
*/
|
|
25993
|
+
listSeoRankResults: (companyId: string, keyword?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25653
25994
|
/**
|
|
25654
25995
|
*
|
|
25655
25996
|
* @param {string} [companyId]
|
|
@@ -25677,28 +26018,38 @@ export declare const SEOApiFp: (configuration?: Configuration) => {
|
|
|
25677
26018
|
* @param {*} [options] Override http request option.
|
|
25678
26019
|
* @throws {RequiredError}
|
|
25679
26020
|
*/
|
|
25680
|
-
createSeoRankTrack(iSeoRankTrackPostRequest: ISeoRankTrackPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26021
|
+
createSeoRankTrack(iSeoRankTrackPostRequest: ISeoRankTrackPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListSeoRankTracks200ResponseInner>>;
|
|
25681
26022
|
/**
|
|
25682
26023
|
*
|
|
25683
26024
|
* @param {string} id
|
|
25684
26025
|
* @param {*} [options] Override http request option.
|
|
25685
26026
|
* @throws {RequiredError}
|
|
25686
26027
|
*/
|
|
25687
|
-
deleteSeoRankTrack(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26028
|
+
deleteSeoRankTrack(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
25688
26029
|
/**
|
|
25689
26030
|
*
|
|
25690
26031
|
* @param {string} id
|
|
25691
26032
|
* @param {*} [options] Override http request option.
|
|
25692
26033
|
* @throws {RequiredError}
|
|
25693
26034
|
*/
|
|
25694
|
-
getSeoRankTrack(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26035
|
+
getSeoRankTrack(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListSeoRankTracks200ResponseInner>>;
|
|
26036
|
+
/**
|
|
26037
|
+
*
|
|
26038
|
+
* @param {string} companyId
|
|
26039
|
+
* @param {string} [keyword]
|
|
26040
|
+
* @param {string} [startDate]
|
|
26041
|
+
* @param {string} [endDate]
|
|
26042
|
+
* @param {*} [options] Override http request option.
|
|
26043
|
+
* @throws {RequiredError}
|
|
26044
|
+
*/
|
|
26045
|
+
listSeoRankResults(companyId: string, keyword?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ISeoRankLog>>>;
|
|
25695
26046
|
/**
|
|
25696
26047
|
*
|
|
25697
26048
|
* @param {string} [companyId]
|
|
25698
26049
|
* @param {*} [options] Override http request option.
|
|
25699
26050
|
* @throws {RequiredError}
|
|
25700
26051
|
*/
|
|
25701
|
-
listSeoRankTracks(companyId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26052
|
+
listSeoRankTracks(companyId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListSeoRankTracks200ResponseInner>>>;
|
|
25702
26053
|
/**
|
|
25703
26054
|
*
|
|
25704
26055
|
* @param {string} id
|
|
@@ -25706,7 +26057,7 @@ export declare const SEOApiFp: (configuration?: Configuration) => {
|
|
|
25706
26057
|
* @param {*} [options] Override http request option.
|
|
25707
26058
|
* @throws {RequiredError}
|
|
25708
26059
|
*/
|
|
25709
|
-
updateSeoRankTrack(id: string, iSeoRankTrackPatchRequest: ISeoRankTrackPatchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26060
|
+
updateSeoRankTrack(id: string, iSeoRankTrackPatchRequest: ISeoRankTrackPatchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListSeoRankTracks200ResponseInner>>;
|
|
25710
26061
|
};
|
|
25711
26062
|
/**
|
|
25712
26063
|
* SEOApi - factory interface
|
|
@@ -25719,35 +26070,42 @@ export declare const SEOApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
25719
26070
|
* @param {*} [options] Override http request option.
|
|
25720
26071
|
* @throws {RequiredError}
|
|
25721
26072
|
*/
|
|
25722
|
-
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26073
|
+
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListSeoRankTracks200ResponseInner>;
|
|
25723
26074
|
/**
|
|
25724
26075
|
*
|
|
25725
26076
|
* @param {SEOApiDeleteSeoRankTrackRequest} requestParameters Request parameters.
|
|
25726
26077
|
* @param {*} [options] Override http request option.
|
|
25727
26078
|
* @throws {RequiredError}
|
|
25728
26079
|
*/
|
|
25729
|
-
deleteSeoRankTrack(requestParameters: SEOApiDeleteSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26080
|
+
deleteSeoRankTrack(requestParameters: SEOApiDeleteSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
25730
26081
|
/**
|
|
25731
26082
|
*
|
|
25732
26083
|
* @param {SEOApiGetSeoRankTrackRequest} requestParameters Request parameters.
|
|
25733
26084
|
* @param {*} [options] Override http request option.
|
|
25734
26085
|
* @throws {RequiredError}
|
|
25735
26086
|
*/
|
|
25736
|
-
getSeoRankTrack(requestParameters: SEOApiGetSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26087
|
+
getSeoRankTrack(requestParameters: SEOApiGetSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListSeoRankTracks200ResponseInner>;
|
|
26088
|
+
/**
|
|
26089
|
+
*
|
|
26090
|
+
* @param {SEOApiListSeoRankResultsRequest} requestParameters Request parameters.
|
|
26091
|
+
* @param {*} [options] Override http request option.
|
|
26092
|
+
* @throws {RequiredError}
|
|
26093
|
+
*/
|
|
26094
|
+
listSeoRankResults(requestParameters: SEOApiListSeoRankResultsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<ISeoRankLog>>;
|
|
25737
26095
|
/**
|
|
25738
26096
|
*
|
|
25739
26097
|
* @param {SEOApiListSeoRankTracksRequest} requestParameters Request parameters.
|
|
25740
26098
|
* @param {*} [options] Override http request option.
|
|
25741
26099
|
* @throws {RequiredError}
|
|
25742
26100
|
*/
|
|
25743
|
-
listSeoRankTracks(requestParameters?: SEOApiListSeoRankTracksRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26101
|
+
listSeoRankTracks(requestParameters?: SEOApiListSeoRankTracksRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<ListSeoRankTracks200ResponseInner>>;
|
|
25744
26102
|
/**
|
|
25745
26103
|
*
|
|
25746
26104
|
* @param {SEOApiUpdateSeoRankTrackRequest} requestParameters Request parameters.
|
|
25747
26105
|
* @param {*} [options] Override http request option.
|
|
25748
26106
|
* @throws {RequiredError}
|
|
25749
26107
|
*/
|
|
25750
|
-
updateSeoRankTrack(requestParameters: SEOApiUpdateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26108
|
+
updateSeoRankTrack(requestParameters: SEOApiUpdateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListSeoRankTracks200ResponseInner>;
|
|
25751
26109
|
};
|
|
25752
26110
|
/**
|
|
25753
26111
|
* Request parameters for createSeoRankTrack operation in SEOApi.
|
|
@@ -25788,6 +26146,37 @@ export interface SEOApiGetSeoRankTrackRequest {
|
|
|
25788
26146
|
*/
|
|
25789
26147
|
readonly id: string;
|
|
25790
26148
|
}
|
|
26149
|
+
/**
|
|
26150
|
+
* Request parameters for listSeoRankResults operation in SEOApi.
|
|
26151
|
+
* @export
|
|
26152
|
+
* @interface SEOApiListSeoRankResultsRequest
|
|
26153
|
+
*/
|
|
26154
|
+
export interface SEOApiListSeoRankResultsRequest {
|
|
26155
|
+
/**
|
|
26156
|
+
*
|
|
26157
|
+
* @type {string}
|
|
26158
|
+
* @memberof SEOApiListSeoRankResults
|
|
26159
|
+
*/
|
|
26160
|
+
readonly companyId: string;
|
|
26161
|
+
/**
|
|
26162
|
+
*
|
|
26163
|
+
* @type {string}
|
|
26164
|
+
* @memberof SEOApiListSeoRankResults
|
|
26165
|
+
*/
|
|
26166
|
+
readonly keyword?: string;
|
|
26167
|
+
/**
|
|
26168
|
+
*
|
|
26169
|
+
* @type {string}
|
|
26170
|
+
* @memberof SEOApiListSeoRankResults
|
|
26171
|
+
*/
|
|
26172
|
+
readonly startDate?: string;
|
|
26173
|
+
/**
|
|
26174
|
+
*
|
|
26175
|
+
* @type {string}
|
|
26176
|
+
* @memberof SEOApiListSeoRankResults
|
|
26177
|
+
*/
|
|
26178
|
+
readonly endDate?: string;
|
|
26179
|
+
}
|
|
25791
26180
|
/**
|
|
25792
26181
|
* Request parameters for listSeoRankTracks operation in SEOApi.
|
|
25793
26182
|
* @export
|
|
@@ -25834,7 +26223,7 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25834
26223
|
* @throws {RequiredError}
|
|
25835
26224
|
* @memberof SEOApi
|
|
25836
26225
|
*/
|
|
25837
|
-
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26226
|
+
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListSeoRankTracks200ResponseInner, any>>;
|
|
25838
26227
|
/**
|
|
25839
26228
|
*
|
|
25840
26229
|
* @param {SEOApiDeleteSeoRankTrackRequest} requestParameters Request parameters.
|
|
@@ -25842,7 +26231,7 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25842
26231
|
* @throws {RequiredError}
|
|
25843
26232
|
* @memberof SEOApi
|
|
25844
26233
|
*/
|
|
25845
|
-
deleteSeoRankTrack(requestParameters: SEOApiDeleteSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26234
|
+
deleteSeoRankTrack(requestParameters: SEOApiDeleteSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
25846
26235
|
/**
|
|
25847
26236
|
*
|
|
25848
26237
|
* @param {SEOApiGetSeoRankTrackRequest} requestParameters Request parameters.
|
|
@@ -25850,7 +26239,15 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25850
26239
|
* @throws {RequiredError}
|
|
25851
26240
|
* @memberof SEOApi
|
|
25852
26241
|
*/
|
|
25853
|
-
getSeoRankTrack(requestParameters: SEOApiGetSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26242
|
+
getSeoRankTrack(requestParameters: SEOApiGetSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListSeoRankTracks200ResponseInner, any>>;
|
|
26243
|
+
/**
|
|
26244
|
+
*
|
|
26245
|
+
* @param {SEOApiListSeoRankResultsRequest} requestParameters Request parameters.
|
|
26246
|
+
* @param {*} [options] Override http request option.
|
|
26247
|
+
* @throws {RequiredError}
|
|
26248
|
+
* @memberof SEOApi
|
|
26249
|
+
*/
|
|
26250
|
+
listSeoRankResults(requestParameters: SEOApiListSeoRankResultsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ISeoRankLog[], any>>;
|
|
25854
26251
|
/**
|
|
25855
26252
|
*
|
|
25856
26253
|
* @param {SEOApiListSeoRankTracksRequest} requestParameters Request parameters.
|
|
@@ -25858,7 +26255,7 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25858
26255
|
* @throws {RequiredError}
|
|
25859
26256
|
* @memberof SEOApi
|
|
25860
26257
|
*/
|
|
25861
|
-
listSeoRankTracks(requestParameters?: SEOApiListSeoRankTracksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26258
|
+
listSeoRankTracks(requestParameters?: SEOApiListSeoRankTracksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListSeoRankTracks200ResponseInner[], any>>;
|
|
25862
26259
|
/**
|
|
25863
26260
|
*
|
|
25864
26261
|
* @param {SEOApiUpdateSeoRankTrackRequest} requestParameters Request parameters.
|
|
@@ -25866,7 +26263,7 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25866
26263
|
* @throws {RequiredError}
|
|
25867
26264
|
* @memberof SEOApi
|
|
25868
26265
|
*/
|
|
25869
|
-
updateSeoRankTrack(requestParameters: SEOApiUpdateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26266
|
+
updateSeoRankTrack(requestParameters: SEOApiUpdateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListSeoRankTracks200ResponseInner, any>>;
|
|
25870
26267
|
}
|
|
25871
26268
|
/**
|
|
25872
26269
|
* ServiceAccountsApi - axios parameter creator
|
|
@@ -26518,6 +26915,13 @@ export declare const ThemeApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
26518
26915
|
* @throws {RequiredError}
|
|
26519
26916
|
*/
|
|
26520
26917
|
getThemeById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26918
|
+
/**
|
|
26919
|
+
*
|
|
26920
|
+
* @param {string} id
|
|
26921
|
+
* @param {*} [options] Override http request option.
|
|
26922
|
+
* @throws {RequiredError}
|
|
26923
|
+
*/
|
|
26924
|
+
getThemeLastVersion: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26521
26925
|
/**
|
|
26522
26926
|
*
|
|
26523
26927
|
* @param {CompanyTypeEnum} [type]
|
|
@@ -26594,6 +26998,13 @@ export declare const ThemeApiFp: (configuration?: Configuration) => {
|
|
|
26594
26998
|
* @throws {RequiredError}
|
|
26595
26999
|
*/
|
|
26596
27000
|
getThemeById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IThemeResponse>>;
|
|
27001
|
+
/**
|
|
27002
|
+
*
|
|
27003
|
+
* @param {string} id
|
|
27004
|
+
* @param {*} [options] Override http request option.
|
|
27005
|
+
* @throws {RequiredError}
|
|
27006
|
+
*/
|
|
27007
|
+
getThemeLastVersion(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IThemeVersion>>;
|
|
26597
27008
|
/**
|
|
26598
27009
|
*
|
|
26599
27010
|
* @param {CompanyTypeEnum} [type]
|
|
@@ -26670,6 +27081,13 @@ export declare const ThemeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
26670
27081
|
* @throws {RequiredError}
|
|
26671
27082
|
*/
|
|
26672
27083
|
getThemeById(requestParameters: ThemeApiGetThemeByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<IThemeResponse>;
|
|
27084
|
+
/**
|
|
27085
|
+
*
|
|
27086
|
+
* @param {ThemeApiGetThemeLastVersionRequest} requestParameters Request parameters.
|
|
27087
|
+
* @param {*} [options] Override http request option.
|
|
27088
|
+
* @throws {RequiredError}
|
|
27089
|
+
*/
|
|
27090
|
+
getThemeLastVersion(requestParameters: ThemeApiGetThemeLastVersionRequest, options?: RawAxiosRequestConfig): AxiosPromise<IThemeVersion>;
|
|
26673
27091
|
/**
|
|
26674
27092
|
*
|
|
26675
27093
|
* @param {ThemeApiGetThemesRequest} requestParameters Request parameters.
|
|
@@ -26770,6 +27188,19 @@ export interface ThemeApiGetThemeByIdRequest {
|
|
|
26770
27188
|
*/
|
|
26771
27189
|
readonly id: string;
|
|
26772
27190
|
}
|
|
27191
|
+
/**
|
|
27192
|
+
* Request parameters for getThemeLastVersion operation in ThemeApi.
|
|
27193
|
+
* @export
|
|
27194
|
+
* @interface ThemeApiGetThemeLastVersionRequest
|
|
27195
|
+
*/
|
|
27196
|
+
export interface ThemeApiGetThemeLastVersionRequest {
|
|
27197
|
+
/**
|
|
27198
|
+
*
|
|
27199
|
+
* @type {string}
|
|
27200
|
+
* @memberof ThemeApiGetThemeLastVersion
|
|
27201
|
+
*/
|
|
27202
|
+
readonly id: string;
|
|
27203
|
+
}
|
|
26773
27204
|
/**
|
|
26774
27205
|
* Request parameters for getThemes operation in ThemeApi.
|
|
26775
27206
|
* @export
|
|
@@ -26906,6 +27337,14 @@ export declare class ThemeApi extends BaseAPI {
|
|
|
26906
27337
|
* @memberof ThemeApi
|
|
26907
27338
|
*/
|
|
26908
27339
|
getThemeById(requestParameters: ThemeApiGetThemeByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IThemeResponse, any>>;
|
|
27340
|
+
/**
|
|
27341
|
+
*
|
|
27342
|
+
* @param {ThemeApiGetThemeLastVersionRequest} requestParameters Request parameters.
|
|
27343
|
+
* @param {*} [options] Override http request option.
|
|
27344
|
+
* @throws {RequiredError}
|
|
27345
|
+
* @memberof ThemeApi
|
|
27346
|
+
*/
|
|
27347
|
+
getThemeLastVersion(requestParameters: ThemeApiGetThemeLastVersionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IThemeVersion, any>>;
|
|
26909
27348
|
/**
|
|
26910
27349
|
*
|
|
26911
27350
|
* @param {ThemeApiGetThemesRequest} requestParameters Request parameters.
|
package/dist/api/api.js
CHANGED
|
@@ -1582,6 +1582,30 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
1582
1582
|
options: localVarRequestOptions,
|
|
1583
1583
|
};
|
|
1584
1584
|
},
|
|
1585
|
+
/**
|
|
1586
|
+
*
|
|
1587
|
+
* @param {*} [options] Override http request option.
|
|
1588
|
+
* @throws {RequiredError}
|
|
1589
|
+
*/
|
|
1590
|
+
generateCliToken: async (options = {}) => {
|
|
1591
|
+
const localVarPath = `/api/auth/cli-token`;
|
|
1592
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1593
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1594
|
+
let baseOptions;
|
|
1595
|
+
if (configuration) {
|
|
1596
|
+
baseOptions = configuration.baseOptions;
|
|
1597
|
+
}
|
|
1598
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
1599
|
+
const localVarHeaderParameter = {};
|
|
1600
|
+
const localVarQueryParameter = {};
|
|
1601
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1602
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1603
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1604
|
+
return {
|
|
1605
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1606
|
+
options: localVarRequestOptions,
|
|
1607
|
+
};
|
|
1608
|
+
},
|
|
1585
1609
|
/**
|
|
1586
1610
|
*
|
|
1587
1611
|
* @param {string} domain
|
|
@@ -1837,6 +1861,17 @@ const AuthApiFp = function (configuration) {
|
|
|
1837
1861
|
const localVarOperationServerBasePath = base_1.operationServerMap['AuthApi.forgotPassword']?.[localVarOperationServerIndex]?.url;
|
|
1838
1862
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1839
1863
|
},
|
|
1864
|
+
/**
|
|
1865
|
+
*
|
|
1866
|
+
* @param {*} [options] Override http request option.
|
|
1867
|
+
* @throws {RequiredError}
|
|
1868
|
+
*/
|
|
1869
|
+
async generateCliToken(options) {
|
|
1870
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.generateCliToken(options);
|
|
1871
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1872
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['AuthApi.generateCliToken']?.[localVarOperationServerIndex]?.url;
|
|
1873
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1874
|
+
},
|
|
1840
1875
|
/**
|
|
1841
1876
|
*
|
|
1842
1877
|
* @param {string} domain
|
|
@@ -1945,6 +1980,14 @@ const AuthApiFactory = function (configuration, basePath, axios) {
|
|
|
1945
1980
|
forgotPassword(requestParameters, options) {
|
|
1946
1981
|
return localVarFp.forgotPassword(requestParameters.domain, requestParameters.iForgotPasswordRequest, options).then((request) => request(axios, basePath));
|
|
1947
1982
|
},
|
|
1983
|
+
/**
|
|
1984
|
+
*
|
|
1985
|
+
* @param {*} [options] Override http request option.
|
|
1986
|
+
* @throws {RequiredError}
|
|
1987
|
+
*/
|
|
1988
|
+
generateCliToken(options) {
|
|
1989
|
+
return localVarFp.generateCliToken(options).then((request) => request(axios, basePath));
|
|
1990
|
+
},
|
|
1948
1991
|
/**
|
|
1949
1992
|
*
|
|
1950
1993
|
* @param {AuthApiLoginRequest} requestParameters Request parameters.
|
|
@@ -2028,6 +2071,15 @@ class AuthApi extends base_1.BaseAPI {
|
|
|
2028
2071
|
forgotPassword(requestParameters, options) {
|
|
2029
2072
|
return (0, exports.AuthApiFp)(this.configuration).forgotPassword(requestParameters.domain, requestParameters.iForgotPasswordRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2030
2073
|
}
|
|
2074
|
+
/**
|
|
2075
|
+
*
|
|
2076
|
+
* @param {*} [options] Override http request option.
|
|
2077
|
+
* @throws {RequiredError}
|
|
2078
|
+
* @memberof AuthApi
|
|
2079
|
+
*/
|
|
2080
|
+
generateCliToken(options) {
|
|
2081
|
+
return (0, exports.AuthApiFp)(this.configuration).generateCliToken(options).then((request) => request(this.axios, this.basePath));
|
|
2082
|
+
}
|
|
2031
2083
|
/**
|
|
2032
2084
|
*
|
|
2033
2085
|
* @param {AuthApiLoginRequest} requestParameters Request parameters.
|
|
@@ -12809,6 +12861,48 @@ const SEOApiAxiosParamCreator = function (configuration) {
|
|
|
12809
12861
|
options: localVarRequestOptions,
|
|
12810
12862
|
};
|
|
12811
12863
|
},
|
|
12864
|
+
/**
|
|
12865
|
+
*
|
|
12866
|
+
* @param {string} companyId
|
|
12867
|
+
* @param {string} [keyword]
|
|
12868
|
+
* @param {string} [startDate]
|
|
12869
|
+
* @param {string} [endDate]
|
|
12870
|
+
* @param {*} [options] Override http request option.
|
|
12871
|
+
* @throws {RequiredError}
|
|
12872
|
+
*/
|
|
12873
|
+
listSeoRankResults: async (companyId, keyword, startDate, endDate, options = {}) => {
|
|
12874
|
+
// verify required parameter 'companyId' is not null or undefined
|
|
12875
|
+
(0, common_1.assertParamExists)('listSeoRankResults', 'companyId', companyId);
|
|
12876
|
+
const localVarPath = `/api/seo/rank-results`;
|
|
12877
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12878
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
12879
|
+
let baseOptions;
|
|
12880
|
+
if (configuration) {
|
|
12881
|
+
baseOptions = configuration.baseOptions;
|
|
12882
|
+
}
|
|
12883
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
12884
|
+
const localVarHeaderParameter = {};
|
|
12885
|
+
const localVarQueryParameter = {};
|
|
12886
|
+
if (companyId !== undefined) {
|
|
12887
|
+
localVarQueryParameter['companyId'] = companyId;
|
|
12888
|
+
}
|
|
12889
|
+
if (keyword !== undefined) {
|
|
12890
|
+
localVarQueryParameter['keyword'] = keyword;
|
|
12891
|
+
}
|
|
12892
|
+
if (startDate !== undefined) {
|
|
12893
|
+
localVarQueryParameter['startDate'] = startDate;
|
|
12894
|
+
}
|
|
12895
|
+
if (endDate !== undefined) {
|
|
12896
|
+
localVarQueryParameter['endDate'] = endDate;
|
|
12897
|
+
}
|
|
12898
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
12899
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12900
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
12901
|
+
return {
|
|
12902
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
12903
|
+
options: localVarRequestOptions,
|
|
12904
|
+
};
|
|
12905
|
+
},
|
|
12812
12906
|
/**
|
|
12813
12907
|
*
|
|
12814
12908
|
* @param {string} [companyId]
|
|
@@ -12916,6 +13010,21 @@ const SEOApiFp = function (configuration) {
|
|
|
12916
13010
|
const localVarOperationServerBasePath = base_1.operationServerMap['SEOApi.getSeoRankTrack']?.[localVarOperationServerIndex]?.url;
|
|
12917
13011
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12918
13012
|
},
|
|
13013
|
+
/**
|
|
13014
|
+
*
|
|
13015
|
+
* @param {string} companyId
|
|
13016
|
+
* @param {string} [keyword]
|
|
13017
|
+
* @param {string} [startDate]
|
|
13018
|
+
* @param {string} [endDate]
|
|
13019
|
+
* @param {*} [options] Override http request option.
|
|
13020
|
+
* @throws {RequiredError}
|
|
13021
|
+
*/
|
|
13022
|
+
async listSeoRankResults(companyId, keyword, startDate, endDate, options) {
|
|
13023
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSeoRankResults(companyId, keyword, startDate, endDate, options);
|
|
13024
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13025
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['SEOApi.listSeoRankResults']?.[localVarOperationServerIndex]?.url;
|
|
13026
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
13027
|
+
},
|
|
12919
13028
|
/**
|
|
12920
13029
|
*
|
|
12921
13030
|
* @param {string} [companyId]
|
|
@@ -12978,6 +13087,15 @@ const SEOApiFactory = function (configuration, basePath, axios) {
|
|
|
12978
13087
|
getSeoRankTrack(requestParameters, options) {
|
|
12979
13088
|
return localVarFp.getSeoRankTrack(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
12980
13089
|
},
|
|
13090
|
+
/**
|
|
13091
|
+
*
|
|
13092
|
+
* @param {SEOApiListSeoRankResultsRequest} requestParameters Request parameters.
|
|
13093
|
+
* @param {*} [options] Override http request option.
|
|
13094
|
+
* @throws {RequiredError}
|
|
13095
|
+
*/
|
|
13096
|
+
listSeoRankResults(requestParameters, options) {
|
|
13097
|
+
return localVarFp.listSeoRankResults(requestParameters.companyId, requestParameters.keyword, requestParameters.startDate, requestParameters.endDate, options).then((request) => request(axios, basePath));
|
|
13098
|
+
},
|
|
12981
13099
|
/**
|
|
12982
13100
|
*
|
|
12983
13101
|
* @param {SEOApiListSeoRankTracksRequest} requestParameters Request parameters.
|
|
@@ -13036,6 +13154,16 @@ class SEOApi extends base_1.BaseAPI {
|
|
|
13036
13154
|
getSeoRankTrack(requestParameters, options) {
|
|
13037
13155
|
return (0, exports.SEOApiFp)(this.configuration).getSeoRankTrack(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
13038
13156
|
}
|
|
13157
|
+
/**
|
|
13158
|
+
*
|
|
13159
|
+
* @param {SEOApiListSeoRankResultsRequest} requestParameters Request parameters.
|
|
13160
|
+
* @param {*} [options] Override http request option.
|
|
13161
|
+
* @throws {RequiredError}
|
|
13162
|
+
* @memberof SEOApi
|
|
13163
|
+
*/
|
|
13164
|
+
listSeoRankResults(requestParameters, options) {
|
|
13165
|
+
return (0, exports.SEOApiFp)(this.configuration).listSeoRankResults(requestParameters.companyId, requestParameters.keyword, requestParameters.startDate, requestParameters.endDate, options).then((request) => request(this.axios, this.basePath));
|
|
13166
|
+
}
|
|
13039
13167
|
/**
|
|
13040
13168
|
*
|
|
13041
13169
|
* @param {SEOApiListSeoRankTracksRequest} requestParameters Request parameters.
|
|
@@ -14058,6 +14186,34 @@ const ThemeApiAxiosParamCreator = function (configuration) {
|
|
|
14058
14186
|
options: localVarRequestOptions,
|
|
14059
14187
|
};
|
|
14060
14188
|
},
|
|
14189
|
+
/**
|
|
14190
|
+
*
|
|
14191
|
+
* @param {string} id
|
|
14192
|
+
* @param {*} [options] Override http request option.
|
|
14193
|
+
* @throws {RequiredError}
|
|
14194
|
+
*/
|
|
14195
|
+
getThemeLastVersion: async (id, options = {}) => {
|
|
14196
|
+
// verify required parameter 'id' is not null or undefined
|
|
14197
|
+
(0, common_1.assertParamExists)('getThemeLastVersion', 'id', id);
|
|
14198
|
+
const localVarPath = `/api/themes/{id}/last-version`
|
|
14199
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
14200
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
14201
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
14202
|
+
let baseOptions;
|
|
14203
|
+
if (configuration) {
|
|
14204
|
+
baseOptions = configuration.baseOptions;
|
|
14205
|
+
}
|
|
14206
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
14207
|
+
const localVarHeaderParameter = {};
|
|
14208
|
+
const localVarQueryParameter = {};
|
|
14209
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
14210
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
14211
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
14212
|
+
return {
|
|
14213
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
14214
|
+
options: localVarRequestOptions,
|
|
14215
|
+
};
|
|
14216
|
+
},
|
|
14061
14217
|
/**
|
|
14062
14218
|
*
|
|
14063
14219
|
* @param {CompanyTypeEnum} [type]
|
|
@@ -14262,6 +14418,18 @@ const ThemeApiFp = function (configuration) {
|
|
|
14262
14418
|
const localVarOperationServerBasePath = base_1.operationServerMap['ThemeApi.getThemeById']?.[localVarOperationServerIndex]?.url;
|
|
14263
14419
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
14264
14420
|
},
|
|
14421
|
+
/**
|
|
14422
|
+
*
|
|
14423
|
+
* @param {string} id
|
|
14424
|
+
* @param {*} [options] Override http request option.
|
|
14425
|
+
* @throws {RequiredError}
|
|
14426
|
+
*/
|
|
14427
|
+
async getThemeLastVersion(id, options) {
|
|
14428
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getThemeLastVersion(id, options);
|
|
14429
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
14430
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['ThemeApi.getThemeLastVersion']?.[localVarOperationServerIndex]?.url;
|
|
14431
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
14432
|
+
},
|
|
14265
14433
|
/**
|
|
14266
14434
|
*
|
|
14267
14435
|
* @param {CompanyTypeEnum} [type]
|
|
@@ -14369,6 +14537,15 @@ const ThemeApiFactory = function (configuration, basePath, axios) {
|
|
|
14369
14537
|
getThemeById(requestParameters, options) {
|
|
14370
14538
|
return localVarFp.getThemeById(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
14371
14539
|
},
|
|
14540
|
+
/**
|
|
14541
|
+
*
|
|
14542
|
+
* @param {ThemeApiGetThemeLastVersionRequest} requestParameters Request parameters.
|
|
14543
|
+
* @param {*} [options] Override http request option.
|
|
14544
|
+
* @throws {RequiredError}
|
|
14545
|
+
*/
|
|
14546
|
+
getThemeLastVersion(requestParameters, options) {
|
|
14547
|
+
return localVarFp.getThemeLastVersion(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
14548
|
+
},
|
|
14372
14549
|
/**
|
|
14373
14550
|
*
|
|
14374
14551
|
* @param {ThemeApiGetThemesRequest} requestParameters Request parameters.
|
|
@@ -14466,6 +14643,16 @@ class ThemeApi extends base_1.BaseAPI {
|
|
|
14466
14643
|
getThemeById(requestParameters, options) {
|
|
14467
14644
|
return (0, exports.ThemeApiFp)(this.configuration).getThemeById(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
14468
14645
|
}
|
|
14646
|
+
/**
|
|
14647
|
+
*
|
|
14648
|
+
* @param {ThemeApiGetThemeLastVersionRequest} requestParameters Request parameters.
|
|
14649
|
+
* @param {*} [options] Override http request option.
|
|
14650
|
+
* @throws {RequiredError}
|
|
14651
|
+
* @memberof ThemeApi
|
|
14652
|
+
*/
|
|
14653
|
+
getThemeLastVersion(requestParameters, options) {
|
|
14654
|
+
return (0, exports.ThemeApiFp)(this.configuration).getThemeLastVersion(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
14655
|
+
}
|
|
14469
14656
|
/**
|
|
14470
14657
|
*
|
|
14471
14658
|
* @param {ThemeApiGetThemesRequest} requestParameters Request parameters.
|
package/dist/api/api.mjs
CHANGED
|
@@ -1561,6 +1561,30 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
1561
1561
|
options: localVarRequestOptions,
|
|
1562
1562
|
};
|
|
1563
1563
|
},
|
|
1564
|
+
/**
|
|
1565
|
+
*
|
|
1566
|
+
* @param {*} [options] Override http request option.
|
|
1567
|
+
* @throws {RequiredError}
|
|
1568
|
+
*/
|
|
1569
|
+
generateCliToken: async (options = {}) => {
|
|
1570
|
+
const localVarPath = `/api/auth/cli-token`;
|
|
1571
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1572
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1573
|
+
let baseOptions;
|
|
1574
|
+
if (configuration) {
|
|
1575
|
+
baseOptions = configuration.baseOptions;
|
|
1576
|
+
}
|
|
1577
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
1578
|
+
const localVarHeaderParameter = {};
|
|
1579
|
+
const localVarQueryParameter = {};
|
|
1580
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1581
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1582
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1583
|
+
return {
|
|
1584
|
+
url: toPathString(localVarUrlObj),
|
|
1585
|
+
options: localVarRequestOptions,
|
|
1586
|
+
};
|
|
1587
|
+
},
|
|
1564
1588
|
/**
|
|
1565
1589
|
*
|
|
1566
1590
|
* @param {string} domain
|
|
@@ -1815,6 +1839,17 @@ export const AuthApiFp = function (configuration) {
|
|
|
1815
1839
|
const localVarOperationServerBasePath = operationServerMap['AuthApi.forgotPassword']?.[localVarOperationServerIndex]?.url;
|
|
1816
1840
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1817
1841
|
},
|
|
1842
|
+
/**
|
|
1843
|
+
*
|
|
1844
|
+
* @param {*} [options] Override http request option.
|
|
1845
|
+
* @throws {RequiredError}
|
|
1846
|
+
*/
|
|
1847
|
+
async generateCliToken(options) {
|
|
1848
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.generateCliToken(options);
|
|
1849
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1850
|
+
const localVarOperationServerBasePath = operationServerMap['AuthApi.generateCliToken']?.[localVarOperationServerIndex]?.url;
|
|
1851
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1852
|
+
},
|
|
1818
1853
|
/**
|
|
1819
1854
|
*
|
|
1820
1855
|
* @param {string} domain
|
|
@@ -1922,6 +1957,14 @@ export const AuthApiFactory = function (configuration, basePath, axios) {
|
|
|
1922
1957
|
forgotPassword(requestParameters, options) {
|
|
1923
1958
|
return localVarFp.forgotPassword(requestParameters.domain, requestParameters.iForgotPasswordRequest, options).then((request) => request(axios, basePath));
|
|
1924
1959
|
},
|
|
1960
|
+
/**
|
|
1961
|
+
*
|
|
1962
|
+
* @param {*} [options] Override http request option.
|
|
1963
|
+
* @throws {RequiredError}
|
|
1964
|
+
*/
|
|
1965
|
+
generateCliToken(options) {
|
|
1966
|
+
return localVarFp.generateCliToken(options).then((request) => request(axios, basePath));
|
|
1967
|
+
},
|
|
1925
1968
|
/**
|
|
1926
1969
|
*
|
|
1927
1970
|
* @param {AuthApiLoginRequest} requestParameters Request parameters.
|
|
@@ -2004,6 +2047,15 @@ export class AuthApi extends BaseAPI {
|
|
|
2004
2047
|
forgotPassword(requestParameters, options) {
|
|
2005
2048
|
return AuthApiFp(this.configuration).forgotPassword(requestParameters.domain, requestParameters.iForgotPasswordRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2006
2049
|
}
|
|
2050
|
+
/**
|
|
2051
|
+
*
|
|
2052
|
+
* @param {*} [options] Override http request option.
|
|
2053
|
+
* @throws {RequiredError}
|
|
2054
|
+
* @memberof AuthApi
|
|
2055
|
+
*/
|
|
2056
|
+
generateCliToken(options) {
|
|
2057
|
+
return AuthApiFp(this.configuration).generateCliToken(options).then((request) => request(this.axios, this.basePath));
|
|
2058
|
+
}
|
|
2007
2059
|
/**
|
|
2008
2060
|
*
|
|
2009
2061
|
* @param {AuthApiLoginRequest} requestParameters Request parameters.
|
|
@@ -12720,6 +12772,48 @@ export const SEOApiAxiosParamCreator = function (configuration) {
|
|
|
12720
12772
|
options: localVarRequestOptions,
|
|
12721
12773
|
};
|
|
12722
12774
|
},
|
|
12775
|
+
/**
|
|
12776
|
+
*
|
|
12777
|
+
* @param {string} companyId
|
|
12778
|
+
* @param {string} [keyword]
|
|
12779
|
+
* @param {string} [startDate]
|
|
12780
|
+
* @param {string} [endDate]
|
|
12781
|
+
* @param {*} [options] Override http request option.
|
|
12782
|
+
* @throws {RequiredError}
|
|
12783
|
+
*/
|
|
12784
|
+
listSeoRankResults: async (companyId, keyword, startDate, endDate, options = {}) => {
|
|
12785
|
+
// verify required parameter 'companyId' is not null or undefined
|
|
12786
|
+
assertParamExists('listSeoRankResults', 'companyId', companyId);
|
|
12787
|
+
const localVarPath = `/api/seo/rank-results`;
|
|
12788
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12789
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12790
|
+
let baseOptions;
|
|
12791
|
+
if (configuration) {
|
|
12792
|
+
baseOptions = configuration.baseOptions;
|
|
12793
|
+
}
|
|
12794
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
12795
|
+
const localVarHeaderParameter = {};
|
|
12796
|
+
const localVarQueryParameter = {};
|
|
12797
|
+
if (companyId !== undefined) {
|
|
12798
|
+
localVarQueryParameter['companyId'] = companyId;
|
|
12799
|
+
}
|
|
12800
|
+
if (keyword !== undefined) {
|
|
12801
|
+
localVarQueryParameter['keyword'] = keyword;
|
|
12802
|
+
}
|
|
12803
|
+
if (startDate !== undefined) {
|
|
12804
|
+
localVarQueryParameter['startDate'] = startDate;
|
|
12805
|
+
}
|
|
12806
|
+
if (endDate !== undefined) {
|
|
12807
|
+
localVarQueryParameter['endDate'] = endDate;
|
|
12808
|
+
}
|
|
12809
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12810
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12811
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
12812
|
+
return {
|
|
12813
|
+
url: toPathString(localVarUrlObj),
|
|
12814
|
+
options: localVarRequestOptions,
|
|
12815
|
+
};
|
|
12816
|
+
},
|
|
12723
12817
|
/**
|
|
12724
12818
|
*
|
|
12725
12819
|
* @param {string} [companyId]
|
|
@@ -12826,6 +12920,21 @@ export const SEOApiFp = function (configuration) {
|
|
|
12826
12920
|
const localVarOperationServerBasePath = operationServerMap['SEOApi.getSeoRankTrack']?.[localVarOperationServerIndex]?.url;
|
|
12827
12921
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12828
12922
|
},
|
|
12923
|
+
/**
|
|
12924
|
+
*
|
|
12925
|
+
* @param {string} companyId
|
|
12926
|
+
* @param {string} [keyword]
|
|
12927
|
+
* @param {string} [startDate]
|
|
12928
|
+
* @param {string} [endDate]
|
|
12929
|
+
* @param {*} [options] Override http request option.
|
|
12930
|
+
* @throws {RequiredError}
|
|
12931
|
+
*/
|
|
12932
|
+
async listSeoRankResults(companyId, keyword, startDate, endDate, options) {
|
|
12933
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSeoRankResults(companyId, keyword, startDate, endDate, options);
|
|
12934
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
12935
|
+
const localVarOperationServerBasePath = operationServerMap['SEOApi.listSeoRankResults']?.[localVarOperationServerIndex]?.url;
|
|
12936
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12937
|
+
},
|
|
12829
12938
|
/**
|
|
12830
12939
|
*
|
|
12831
12940
|
* @param {string} [companyId]
|
|
@@ -12887,6 +12996,15 @@ export const SEOApiFactory = function (configuration, basePath, axios) {
|
|
|
12887
12996
|
getSeoRankTrack(requestParameters, options) {
|
|
12888
12997
|
return localVarFp.getSeoRankTrack(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
12889
12998
|
},
|
|
12999
|
+
/**
|
|
13000
|
+
*
|
|
13001
|
+
* @param {SEOApiListSeoRankResultsRequest} requestParameters Request parameters.
|
|
13002
|
+
* @param {*} [options] Override http request option.
|
|
13003
|
+
* @throws {RequiredError}
|
|
13004
|
+
*/
|
|
13005
|
+
listSeoRankResults(requestParameters, options) {
|
|
13006
|
+
return localVarFp.listSeoRankResults(requestParameters.companyId, requestParameters.keyword, requestParameters.startDate, requestParameters.endDate, options).then((request) => request(axios, basePath));
|
|
13007
|
+
},
|
|
12890
13008
|
/**
|
|
12891
13009
|
*
|
|
12892
13010
|
* @param {SEOApiListSeoRankTracksRequest} requestParameters Request parameters.
|
|
@@ -12944,6 +13062,16 @@ export class SEOApi extends BaseAPI {
|
|
|
12944
13062
|
getSeoRankTrack(requestParameters, options) {
|
|
12945
13063
|
return SEOApiFp(this.configuration).getSeoRankTrack(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
12946
13064
|
}
|
|
13065
|
+
/**
|
|
13066
|
+
*
|
|
13067
|
+
* @param {SEOApiListSeoRankResultsRequest} requestParameters Request parameters.
|
|
13068
|
+
* @param {*} [options] Override http request option.
|
|
13069
|
+
* @throws {RequiredError}
|
|
13070
|
+
* @memberof SEOApi
|
|
13071
|
+
*/
|
|
13072
|
+
listSeoRankResults(requestParameters, options) {
|
|
13073
|
+
return SEOApiFp(this.configuration).listSeoRankResults(requestParameters.companyId, requestParameters.keyword, requestParameters.startDate, requestParameters.endDate, options).then((request) => request(this.axios, this.basePath));
|
|
13074
|
+
}
|
|
12947
13075
|
/**
|
|
12948
13076
|
*
|
|
12949
13077
|
* @param {SEOApiListSeoRankTracksRequest} requestParameters Request parameters.
|
|
@@ -13953,6 +14081,34 @@ export const ThemeApiAxiosParamCreator = function (configuration) {
|
|
|
13953
14081
|
options: localVarRequestOptions,
|
|
13954
14082
|
};
|
|
13955
14083
|
},
|
|
14084
|
+
/**
|
|
14085
|
+
*
|
|
14086
|
+
* @param {string} id
|
|
14087
|
+
* @param {*} [options] Override http request option.
|
|
14088
|
+
* @throws {RequiredError}
|
|
14089
|
+
*/
|
|
14090
|
+
getThemeLastVersion: async (id, options = {}) => {
|
|
14091
|
+
// verify required parameter 'id' is not null or undefined
|
|
14092
|
+
assertParamExists('getThemeLastVersion', 'id', id);
|
|
14093
|
+
const localVarPath = `/api/themes/{id}/last-version`
|
|
14094
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
14095
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
14096
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
14097
|
+
let baseOptions;
|
|
14098
|
+
if (configuration) {
|
|
14099
|
+
baseOptions = configuration.baseOptions;
|
|
14100
|
+
}
|
|
14101
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
14102
|
+
const localVarHeaderParameter = {};
|
|
14103
|
+
const localVarQueryParameter = {};
|
|
14104
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
14105
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
14106
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
14107
|
+
return {
|
|
14108
|
+
url: toPathString(localVarUrlObj),
|
|
14109
|
+
options: localVarRequestOptions,
|
|
14110
|
+
};
|
|
14111
|
+
},
|
|
13956
14112
|
/**
|
|
13957
14113
|
*
|
|
13958
14114
|
* @param {CompanyTypeEnum} [type]
|
|
@@ -14156,6 +14312,18 @@ export const ThemeApiFp = function (configuration) {
|
|
|
14156
14312
|
const localVarOperationServerBasePath = operationServerMap['ThemeApi.getThemeById']?.[localVarOperationServerIndex]?.url;
|
|
14157
14313
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
14158
14314
|
},
|
|
14315
|
+
/**
|
|
14316
|
+
*
|
|
14317
|
+
* @param {string} id
|
|
14318
|
+
* @param {*} [options] Override http request option.
|
|
14319
|
+
* @throws {RequiredError}
|
|
14320
|
+
*/
|
|
14321
|
+
async getThemeLastVersion(id, options) {
|
|
14322
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getThemeLastVersion(id, options);
|
|
14323
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
14324
|
+
const localVarOperationServerBasePath = operationServerMap['ThemeApi.getThemeLastVersion']?.[localVarOperationServerIndex]?.url;
|
|
14325
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
14326
|
+
},
|
|
14159
14327
|
/**
|
|
14160
14328
|
*
|
|
14161
14329
|
* @param {CompanyTypeEnum} [type]
|
|
@@ -14262,6 +14430,15 @@ export const ThemeApiFactory = function (configuration, basePath, axios) {
|
|
|
14262
14430
|
getThemeById(requestParameters, options) {
|
|
14263
14431
|
return localVarFp.getThemeById(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
14264
14432
|
},
|
|
14433
|
+
/**
|
|
14434
|
+
*
|
|
14435
|
+
* @param {ThemeApiGetThemeLastVersionRequest} requestParameters Request parameters.
|
|
14436
|
+
* @param {*} [options] Override http request option.
|
|
14437
|
+
* @throws {RequiredError}
|
|
14438
|
+
*/
|
|
14439
|
+
getThemeLastVersion(requestParameters, options) {
|
|
14440
|
+
return localVarFp.getThemeLastVersion(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
14441
|
+
},
|
|
14265
14442
|
/**
|
|
14266
14443
|
*
|
|
14267
14444
|
* @param {ThemeApiGetThemesRequest} requestParameters Request parameters.
|
|
@@ -14358,6 +14535,16 @@ export class ThemeApi extends BaseAPI {
|
|
|
14358
14535
|
getThemeById(requestParameters, options) {
|
|
14359
14536
|
return ThemeApiFp(this.configuration).getThemeById(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
14360
14537
|
}
|
|
14538
|
+
/**
|
|
14539
|
+
*
|
|
14540
|
+
* @param {ThemeApiGetThemeLastVersionRequest} requestParameters Request parameters.
|
|
14541
|
+
* @param {*} [options] Override http request option.
|
|
14542
|
+
* @throws {RequiredError}
|
|
14543
|
+
* @memberof ThemeApi
|
|
14544
|
+
*/
|
|
14545
|
+
getThemeLastVersion(requestParameters, options) {
|
|
14546
|
+
return ThemeApiFp(this.configuration).getThemeLastVersion(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
14547
|
+
}
|
|
14361
14548
|
/**
|
|
14362
14549
|
*
|
|
14363
14550
|
* @param {ThemeApiGetThemesRequest} requestParameters Request parameters.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.72",
|
|
4
4
|
"description": "api-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
|
}
|