@infisale-client/api 1.3.71 → 1.3.73
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 +598 -99
- package/dist/api/api.js +246 -0
- package/dist/api/api.mjs +246 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -359,75 +359,6 @@ export declare const CountryEnum: {
|
|
|
359
359
|
readonly ZW: "ZW";
|
|
360
360
|
};
|
|
361
361
|
export type CountryEnum = typeof CountryEnum[keyof typeof CountryEnum];
|
|
362
|
-
/**
|
|
363
|
-
*
|
|
364
|
-
* @export
|
|
365
|
-
* @interface CreateSeoRankTrack200Response
|
|
366
|
-
*/
|
|
367
|
-
export interface CreateSeoRankTrack200Response {
|
|
368
|
-
/**
|
|
369
|
-
*
|
|
370
|
-
* @type {string}
|
|
371
|
-
* @memberof CreateSeoRankTrack200Response
|
|
372
|
-
*/
|
|
373
|
-
'updated_at': string;
|
|
374
|
-
/**
|
|
375
|
-
*
|
|
376
|
-
* @type {string}
|
|
377
|
-
* @memberof CreateSeoRankTrack200Response
|
|
378
|
-
*/
|
|
379
|
-
'created_at': string;
|
|
380
|
-
/**
|
|
381
|
-
*
|
|
382
|
-
* @type {boolean}
|
|
383
|
-
* @memberof CreateSeoRankTrack200Response
|
|
384
|
-
*/
|
|
385
|
-
'is_active': boolean;
|
|
386
|
-
/**
|
|
387
|
-
*
|
|
388
|
-
* @type {string}
|
|
389
|
-
* @memberof CreateSeoRankTrack200Response
|
|
390
|
-
*/
|
|
391
|
-
'next_run_at': string;
|
|
392
|
-
/**
|
|
393
|
-
*
|
|
394
|
-
* @type {number}
|
|
395
|
-
* @memberof CreateSeoRankTrack200Response
|
|
396
|
-
*/
|
|
397
|
-
'interval_seconds': number;
|
|
398
|
-
/**
|
|
399
|
-
*
|
|
400
|
-
* @type {string}
|
|
401
|
-
* @memberof CreateSeoRankTrack200Response
|
|
402
|
-
*/
|
|
403
|
-
'payload_hash': string;
|
|
404
|
-
/**
|
|
405
|
-
* Construct a type with a set of properties K of type T
|
|
406
|
-
* @type {{ [key: string]: any; }}
|
|
407
|
-
* @memberof CreateSeoRankTrack200Response
|
|
408
|
-
*/
|
|
409
|
-
'payload': {
|
|
410
|
-
[key: string]: any;
|
|
411
|
-
};
|
|
412
|
-
/**
|
|
413
|
-
*
|
|
414
|
-
* @type {string}
|
|
415
|
-
* @memberof CreateSeoRankTrack200Response
|
|
416
|
-
*/
|
|
417
|
-
'id': string;
|
|
418
|
-
/**
|
|
419
|
-
*
|
|
420
|
-
* @type {string}
|
|
421
|
-
* @memberof CreateSeoRankTrack200Response
|
|
422
|
-
*/
|
|
423
|
-
'type': string;
|
|
424
|
-
/**
|
|
425
|
-
*
|
|
426
|
-
* @type {string}
|
|
427
|
-
* @memberof CreateSeoRankTrack200Response
|
|
428
|
-
*/
|
|
429
|
-
'company': string;
|
|
430
|
-
}
|
|
431
362
|
/**
|
|
432
363
|
*
|
|
433
364
|
* @export
|
|
@@ -561,6 +492,19 @@ export interface FinalizeAiChat200Response {
|
|
|
561
492
|
*/
|
|
562
493
|
'chat': IAiChatResponse;
|
|
563
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
|
+
}
|
|
564
508
|
/**
|
|
565
509
|
*
|
|
566
510
|
* @export
|
|
@@ -600,6 +544,43 @@ export interface GetMyProductReviewCount200Response {
|
|
|
600
544
|
*/
|
|
601
545
|
'count': number;
|
|
602
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
|
+
}
|
|
603
584
|
/**
|
|
604
585
|
*
|
|
605
586
|
* @export
|
|
@@ -802,7 +783,7 @@ export type IAiChatCollectionQueryParamsDateFieldEnum = typeof IAiChatCollection
|
|
|
802
783
|
*/
|
|
803
784
|
export interface IAiChatFinalizeRequest {
|
|
804
785
|
/**
|
|
805
|
-
*
|
|
786
|
+
* `false` (varsayılan) ÖNİZLEME: model cevabı `chat.result`e yazılır, sohbet OPEN kalır, plan oluşturulmaz. `true` ise saklanan sonuç (yoksa yeni bir çağrı) planlara dönüşür ve sohbet ancak plan yazımı BAŞARIRSA mühürlenir.
|
|
806
787
|
* @type {boolean}
|
|
807
788
|
* @memberof IAiChatFinalizeRequest
|
|
808
789
|
*/
|
|
@@ -813,6 +794,24 @@ export interface IAiChatFinalizeRequest {
|
|
|
813
794
|
* @memberof IAiChatFinalizeRequest
|
|
814
795
|
*/
|
|
815
796
|
'instruction'?: string;
|
|
797
|
+
/**
|
|
798
|
+
* Sohbet öncesi kilitlenen parametreler; modelin seçtiğini ezer.
|
|
799
|
+
* @type {Array<LanguageEnum>}
|
|
800
|
+
* @memberof IAiChatFinalizeRequest
|
|
801
|
+
*/
|
|
802
|
+
'languages'?: Array<LanguageEnum>;
|
|
803
|
+
/**
|
|
804
|
+
*
|
|
805
|
+
* @type {string}
|
|
806
|
+
* @memberof IAiChatFinalizeRequest
|
|
807
|
+
*/
|
|
808
|
+
'template'?: string;
|
|
809
|
+
/**
|
|
810
|
+
*
|
|
811
|
+
* @type {string}
|
|
812
|
+
* @memberof IAiChatFinalizeRequest
|
|
813
|
+
*/
|
|
814
|
+
'type'?: string;
|
|
816
815
|
}
|
|
817
816
|
/**
|
|
818
817
|
*
|
|
@@ -974,6 +973,75 @@ export interface IAiChatResponse {
|
|
|
974
973
|
[key: string]: any;
|
|
975
974
|
};
|
|
976
975
|
}
|
|
976
|
+
/**
|
|
977
|
+
* Koleksiyon ucunun satırı: `messages` ve `result` TAŞINMAZ. Sohbet listesi yalnızca başlık/durum/tarih gösterir; her satırda tüm konuşmayı taşımak listeyi sohbet sayısıyla değil toplam mesaj sayısıyla büyütüyordu.
|
|
978
|
+
* @export
|
|
979
|
+
* @interface IAiChatSummaryResponse
|
|
980
|
+
*/
|
|
981
|
+
export interface IAiChatSummaryResponse {
|
|
982
|
+
/**
|
|
983
|
+
*
|
|
984
|
+
* @type {string}
|
|
985
|
+
* @memberof IAiChatSummaryResponse
|
|
986
|
+
*/
|
|
987
|
+
'_id': string;
|
|
988
|
+
/**
|
|
989
|
+
*
|
|
990
|
+
* @type {number}
|
|
991
|
+
* @memberof IAiChatSummaryResponse
|
|
992
|
+
*/
|
|
993
|
+
'__v': number;
|
|
994
|
+
/**
|
|
995
|
+
*
|
|
996
|
+
* @type {string}
|
|
997
|
+
* @memberof IAiChatSummaryResponse
|
|
998
|
+
*/
|
|
999
|
+
'createdAt': string;
|
|
1000
|
+
/**
|
|
1001
|
+
*
|
|
1002
|
+
* @type {string}
|
|
1003
|
+
* @memberof IAiChatSummaryResponse
|
|
1004
|
+
*/
|
|
1005
|
+
'updatedAt': string;
|
|
1006
|
+
/**
|
|
1007
|
+
*
|
|
1008
|
+
* @type {string}
|
|
1009
|
+
* @memberof IAiChatSummaryResponse
|
|
1010
|
+
*/
|
|
1011
|
+
'company': string;
|
|
1012
|
+
/**
|
|
1013
|
+
*
|
|
1014
|
+
* @type {string}
|
|
1015
|
+
* @memberof IAiChatSummaryResponse
|
|
1016
|
+
*/
|
|
1017
|
+
'user'?: string;
|
|
1018
|
+
/**
|
|
1019
|
+
*
|
|
1020
|
+
* @type {AiChatPurposeEnum}
|
|
1021
|
+
* @memberof IAiChatSummaryResponse
|
|
1022
|
+
*/
|
|
1023
|
+
'purpose': AiChatPurposeEnum;
|
|
1024
|
+
/**
|
|
1025
|
+
*
|
|
1026
|
+
* @type {string}
|
|
1027
|
+
* @memberof IAiChatSummaryResponse
|
|
1028
|
+
*/
|
|
1029
|
+
'title'?: string;
|
|
1030
|
+
/**
|
|
1031
|
+
*
|
|
1032
|
+
* @type {AiChatStatusEnum}
|
|
1033
|
+
* @memberof IAiChatSummaryResponse
|
|
1034
|
+
*/
|
|
1035
|
+
'status': AiChatStatusEnum;
|
|
1036
|
+
/**
|
|
1037
|
+
* Construct a type with a set of properties K of type T
|
|
1038
|
+
* @type {{ [key: string]: any; }}
|
|
1039
|
+
* @memberof IAiChatSummaryResponse
|
|
1040
|
+
*/
|
|
1041
|
+
'context'?: {
|
|
1042
|
+
[key: string]: any;
|
|
1043
|
+
};
|
|
1044
|
+
}
|
|
977
1045
|
/**
|
|
978
1046
|
*
|
|
979
1047
|
* @export
|
|
@@ -1006,10 +1074,10 @@ export interface IAiChatsResponse {
|
|
|
1006
1074
|
'totalPages': number;
|
|
1007
1075
|
/**
|
|
1008
1076
|
*
|
|
1009
|
-
* @type {Array<
|
|
1077
|
+
* @type {Array<IAiChatSummaryResponse>}
|
|
1010
1078
|
* @memberof IAiChatsResponse
|
|
1011
1079
|
*/
|
|
1012
|
-
'data': Array<
|
|
1080
|
+
'data': Array<IAiChatSummaryResponse>;
|
|
1013
1081
|
}
|
|
1014
1082
|
/**
|
|
1015
1083
|
*
|
|
@@ -9588,6 +9656,37 @@ export interface IResetPasswordRequest {
|
|
|
9588
9656
|
*/
|
|
9589
9657
|
'code': string;
|
|
9590
9658
|
}
|
|
9659
|
+
/**
|
|
9660
|
+
*
|
|
9661
|
+
* @export
|
|
9662
|
+
* @interface IResolvedFont
|
|
9663
|
+
*/
|
|
9664
|
+
export interface IResolvedFont {
|
|
9665
|
+
/**
|
|
9666
|
+
* Yedek yığın, aile adı HARİÇ: `system-ui, -apple-system, …`. Kategoriden türer.
|
|
9667
|
+
* @type {string}
|
|
9668
|
+
* @memberof IResolvedFont
|
|
9669
|
+
*/
|
|
9670
|
+
'stack': string;
|
|
9671
|
+
/**
|
|
9672
|
+
* css2 `family=` değeri; font proxy\'sinin cache anahtarı.
|
|
9673
|
+
* @type {string}
|
|
9674
|
+
* @memberof IResolvedFont
|
|
9675
|
+
*/
|
|
9676
|
+
'spec': string;
|
|
9677
|
+
/**
|
|
9678
|
+
* Eski `font_link` yolunun ihtiyaç duyduğu tam Google URL\'i.
|
|
9679
|
+
* @type {string}
|
|
9680
|
+
* @memberof IResolvedFont
|
|
9681
|
+
*/
|
|
9682
|
+
'url': string;
|
|
9683
|
+
/**
|
|
9684
|
+
* Kırpılmış `@font-face` blokları. Google o an cevap vermediyse yok.
|
|
9685
|
+
* @type {string}
|
|
9686
|
+
* @memberof IResolvedFont
|
|
9687
|
+
*/
|
|
9688
|
+
'css'?: string;
|
|
9689
|
+
}
|
|
9591
9690
|
/**
|
|
9592
9691
|
*
|
|
9593
9692
|
* @export
|
|
@@ -9861,6 +9960,99 @@ export interface IReviewResponse {
|
|
|
9861
9960
|
*/
|
|
9862
9961
|
'product'?: IProductResponse;
|
|
9863
9962
|
}
|
|
9963
|
+
/**
|
|
9964
|
+
*
|
|
9965
|
+
* @export
|
|
9966
|
+
* @interface ISeoRankLog
|
|
9967
|
+
*/
|
|
9968
|
+
export interface ISeoRankLog {
|
|
9969
|
+
/**
|
|
9970
|
+
*
|
|
9971
|
+
* @type {string}
|
|
9972
|
+
* @memberof ISeoRankLog
|
|
9973
|
+
*/
|
|
9974
|
+
'_id': string;
|
|
9975
|
+
/**
|
|
9976
|
+
*
|
|
9977
|
+
* @type {number}
|
|
9978
|
+
* @memberof ISeoRankLog
|
|
9979
|
+
*/
|
|
9980
|
+
'__v': number;
|
|
9981
|
+
/**
|
|
9982
|
+
*
|
|
9983
|
+
* @type {string}
|
|
9984
|
+
* @memberof ISeoRankLog
|
|
9985
|
+
*/
|
|
9986
|
+
'createdAt': string;
|
|
9987
|
+
/**
|
|
9988
|
+
*
|
|
9989
|
+
* @type {string}
|
|
9990
|
+
* @memberof ISeoRankLog
|
|
9991
|
+
*/
|
|
9992
|
+
'updatedAt': string;
|
|
9993
|
+
/**
|
|
9994
|
+
*
|
|
9995
|
+
* @type {ISeoRankLogCompany}
|
|
9996
|
+
* @memberof ISeoRankLog
|
|
9997
|
+
*/
|
|
9998
|
+
'company': ISeoRankLogCompany;
|
|
9999
|
+
/**
|
|
10000
|
+
*
|
|
10001
|
+
* @type {string}
|
|
10002
|
+
* @memberof ISeoRankLog
|
|
10003
|
+
*/
|
|
10004
|
+
'keyword': string;
|
|
10005
|
+
/**
|
|
10006
|
+
*
|
|
10007
|
+
* @type {number}
|
|
10008
|
+
* @memberof ISeoRankLog
|
|
10009
|
+
*/
|
|
10010
|
+
'rank': number;
|
|
10011
|
+
/**
|
|
10012
|
+
*
|
|
10013
|
+
* @type {Array<ISeoRankLogCompetitorRanksInner>}
|
|
10014
|
+
* @memberof ISeoRankLog
|
|
10015
|
+
*/
|
|
10016
|
+
'competitorRanks': Array<ISeoRankLogCompetitorRanksInner>;
|
|
10017
|
+
/**
|
|
10018
|
+
*
|
|
10019
|
+
* @type {Array<GoogleSearchResponseInner>}
|
|
10020
|
+
* @memberof ISeoRankLog
|
|
10021
|
+
*/
|
|
10022
|
+
'results': Array<GoogleSearchResponseInner>;
|
|
10023
|
+
/**
|
|
10024
|
+
*
|
|
10025
|
+
* @type {string}
|
|
10026
|
+
* @memberof ISeoRankLog
|
|
10027
|
+
*/
|
|
10028
|
+
'checkedAt': string;
|
|
10029
|
+
}
|
|
10030
|
+
/**
|
|
10031
|
+
*
|
|
10032
|
+
* @export
|
|
10033
|
+
* @interface ISeoRankLogCompany
|
|
10034
|
+
*/
|
|
10035
|
+
export interface ISeoRankLogCompany {
|
|
10036
|
+
}
|
|
10037
|
+
/**
|
|
10038
|
+
*
|
|
10039
|
+
* @export
|
|
10040
|
+
* @interface ISeoRankLogCompetitorRanksInner
|
|
10041
|
+
*/
|
|
10042
|
+
export interface ISeoRankLogCompetitorRanksInner {
|
|
10043
|
+
/**
|
|
10044
|
+
*
|
|
10045
|
+
* @type {number}
|
|
10046
|
+
* @memberof ISeoRankLogCompetitorRanksInner
|
|
10047
|
+
*/
|
|
10048
|
+
'rank': number;
|
|
10049
|
+
/**
|
|
10050
|
+
*
|
|
10051
|
+
* @type {string}
|
|
10052
|
+
* @memberof ISeoRankLogCompetitorRanksInner
|
|
10053
|
+
*/
|
|
10054
|
+
'domain': string;
|
|
10055
|
+
}
|
|
9864
10056
|
/**
|
|
9865
10057
|
*
|
|
9866
10058
|
* @export
|
|
@@ -10313,6 +10505,12 @@ export interface ITemplateComponentContentResponse {
|
|
|
10313
10505
|
* @memberof ITemplateComponentContentResponse
|
|
10314
10506
|
*/
|
|
10315
10507
|
'_id': string;
|
|
10508
|
+
/**
|
|
10509
|
+
*
|
|
10510
|
+
* @type {Array<ITemplateComponentContentResponse>}
|
|
10511
|
+
* @memberof ITemplateComponentContentResponse
|
|
10512
|
+
*/
|
|
10513
|
+
'contents'?: Array<ITemplateComponentContentResponse>;
|
|
10316
10514
|
}
|
|
10317
10515
|
/**
|
|
10318
10516
|
*
|
|
@@ -10881,11 +11079,19 @@ export interface IThemeResponse {
|
|
|
10881
11079
|
'assetVersion': number;
|
|
10882
11080
|
/**
|
|
10883
11081
|
* Construct a type with a set of properties K of type T
|
|
10884
|
-
* @type {{ [key: string]:
|
|
11082
|
+
* @type {{ [key: string]: IResolvedFont; }}
|
|
11083
|
+
* @memberof IThemeResponse
|
|
11084
|
+
*/
|
|
11085
|
+
'fonts'?: {
|
|
11086
|
+
[key: string]: IResolvedFont;
|
|
11087
|
+
};
|
|
11088
|
+
/**
|
|
11089
|
+
* Construct a type with a set of properties K of type T
|
|
11090
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
|
|
10885
11091
|
* @memberof IThemeResponse
|
|
10886
11092
|
*/
|
|
10887
11093
|
'componentConfigIndex': {
|
|
10888
|
-
[key: string]:
|
|
11094
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
10889
11095
|
};
|
|
10890
11096
|
}
|
|
10891
11097
|
/**
|
|
@@ -10948,13 +11154,19 @@ export interface IThemeVersion {
|
|
|
10948
11154
|
* @memberof IThemeVersion
|
|
10949
11155
|
*/
|
|
10950
11156
|
'isDeprecated': boolean;
|
|
11157
|
+
/**
|
|
11158
|
+
*
|
|
11159
|
+
* @type {string}
|
|
11160
|
+
* @memberof IThemeVersion
|
|
11161
|
+
*/
|
|
11162
|
+
'hash'?: string;
|
|
10951
11163
|
/**
|
|
10952
11164
|
* Construct a type with a set of properties K of type T
|
|
10953
|
-
* @type {{ [key: string]:
|
|
11165
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
|
|
10954
11166
|
* @memberof IThemeVersion
|
|
10955
11167
|
*/
|
|
10956
11168
|
'componentConfigIndex': {
|
|
10957
|
-
[key: string]:
|
|
11169
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
10958
11170
|
};
|
|
10959
11171
|
}
|
|
10960
11172
|
/**
|
|
@@ -11135,11 +11347,19 @@ export interface IThemesResponseData {
|
|
|
11135
11347
|
'assetVersion': number;
|
|
11136
11348
|
/**
|
|
11137
11349
|
* Construct a type with a set of properties K of type T
|
|
11138
|
-
* @type {{ [key: string]:
|
|
11350
|
+
* @type {{ [key: string]: IResolvedFont; }}
|
|
11351
|
+
* @memberof IThemesResponseData
|
|
11352
|
+
*/
|
|
11353
|
+
'fonts'?: {
|
|
11354
|
+
[key: string]: IResolvedFont;
|
|
11355
|
+
};
|
|
11356
|
+
/**
|
|
11357
|
+
* Construct a type with a set of properties K of type T
|
|
11358
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
|
|
11139
11359
|
* @memberof IThemesResponseData
|
|
11140
11360
|
*/
|
|
11141
11361
|
'componentConfigIndex': {
|
|
11142
|
-
[key: string]:
|
|
11362
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
11143
11363
|
};
|
|
11144
11364
|
/**
|
|
11145
11365
|
*
|
|
@@ -12072,6 +12292,75 @@ export declare const LanguageEnum: {
|
|
|
12072
12292
|
readonly DE: "de";
|
|
12073
12293
|
};
|
|
12074
12294
|
export type LanguageEnum = typeof LanguageEnum[keyof typeof LanguageEnum];
|
|
12295
|
+
/**
|
|
12296
|
+
*
|
|
12297
|
+
* @export
|
|
12298
|
+
* @interface ListSeoRankTracks200ResponseInner
|
|
12299
|
+
*/
|
|
12300
|
+
export interface ListSeoRankTracks200ResponseInner {
|
|
12301
|
+
/**
|
|
12302
|
+
*
|
|
12303
|
+
* @type {string}
|
|
12304
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12305
|
+
*/
|
|
12306
|
+
'updated_at': string;
|
|
12307
|
+
/**
|
|
12308
|
+
*
|
|
12309
|
+
* @type {string}
|
|
12310
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12311
|
+
*/
|
|
12312
|
+
'created_at': string;
|
|
12313
|
+
/**
|
|
12314
|
+
*
|
|
12315
|
+
* @type {boolean}
|
|
12316
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12317
|
+
*/
|
|
12318
|
+
'is_active': boolean;
|
|
12319
|
+
/**
|
|
12320
|
+
*
|
|
12321
|
+
* @type {string}
|
|
12322
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12323
|
+
*/
|
|
12324
|
+
'next_run_at': string;
|
|
12325
|
+
/**
|
|
12326
|
+
*
|
|
12327
|
+
* @type {number}
|
|
12328
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12329
|
+
*/
|
|
12330
|
+
'interval_seconds': number;
|
|
12331
|
+
/**
|
|
12332
|
+
*
|
|
12333
|
+
* @type {string}
|
|
12334
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12335
|
+
*/
|
|
12336
|
+
'payload_hash': string;
|
|
12337
|
+
/**
|
|
12338
|
+
* Construct a type with a set of properties K of type T
|
|
12339
|
+
* @type {{ [key: string]: any; }}
|
|
12340
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12341
|
+
*/
|
|
12342
|
+
'payload': {
|
|
12343
|
+
[key: string]: any;
|
|
12344
|
+
};
|
|
12345
|
+
/**
|
|
12346
|
+
*
|
|
12347
|
+
* @type {string}
|
|
12348
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12349
|
+
*/
|
|
12350
|
+
'id': string;
|
|
12351
|
+
/**
|
|
12352
|
+
*
|
|
12353
|
+
* @type {string}
|
|
12354
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12355
|
+
*/
|
|
12356
|
+
'type': string;
|
|
12357
|
+
/**
|
|
12358
|
+
*
|
|
12359
|
+
* @type {string}
|
|
12360
|
+
* @memberof ListSeoRankTracks200ResponseInner
|
|
12361
|
+
*/
|
|
12362
|
+
'company': string;
|
|
12363
|
+
}
|
|
12075
12364
|
/**
|
|
12076
12365
|
*
|
|
12077
12366
|
* @export
|
|
@@ -14610,6 +14899,27 @@ export interface PickIReviewExcludeKeyofIReviewProduct {
|
|
|
14610
14899
|
*/
|
|
14611
14900
|
'comment': string;
|
|
14612
14901
|
}
|
|
14902
|
+
/**
|
|
14903
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
14904
|
+
* @export
|
|
14905
|
+
* @interface PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents
|
|
14906
|
+
*/
|
|
14907
|
+
export interface PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents {
|
|
14908
|
+
/**
|
|
14909
|
+
*
|
|
14910
|
+
* @type {string}
|
|
14911
|
+
* @memberof PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents
|
|
14912
|
+
*/
|
|
14913
|
+
'type': string;
|
|
14914
|
+
/**
|
|
14915
|
+
* Construct a type with a set of properties K of type T
|
|
14916
|
+
* @type {{ [key: string]: any; }}
|
|
14917
|
+
* @memberof PickITemplateComponentContentExcludeKeyofITemplateComponentContentContents
|
|
14918
|
+
*/
|
|
14919
|
+
'config': {
|
|
14920
|
+
[key: string]: any;
|
|
14921
|
+
};
|
|
14922
|
+
}
|
|
14613
14923
|
/**
|
|
14614
14924
|
* From T, pick a set of properties whose keys are in the union K
|
|
14615
14925
|
* @export
|
|
@@ -15103,11 +15413,19 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
|
|
|
15103
15413
|
'assetVersion': number;
|
|
15104
15414
|
/**
|
|
15105
15415
|
* Construct a type with a set of properties K of type T
|
|
15106
|
-
* @type {{ [key: string]:
|
|
15416
|
+
* @type {{ [key: string]: IResolvedFont; }}
|
|
15417
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
15418
|
+
*/
|
|
15419
|
+
'fonts'?: {
|
|
15420
|
+
[key: string]: IResolvedFont;
|
|
15421
|
+
};
|
|
15422
|
+
/**
|
|
15423
|
+
* Construct a type with a set of properties K of type T
|
|
15424
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
|
|
15107
15425
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
15108
15426
|
*/
|
|
15109
15427
|
'componentConfigIndex': {
|
|
15110
|
-
[key: string]:
|
|
15428
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
15111
15429
|
};
|
|
15112
15430
|
}
|
|
15113
15431
|
/**
|
|
@@ -15704,19 +16022,25 @@ export interface RecordPlanCurrencyEnumNumber {
|
|
|
15704
16022
|
/**
|
|
15705
16023
|
*
|
|
15706
16024
|
* @export
|
|
15707
|
-
* @interface
|
|
16025
|
+
* @interface RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
|
|
15708
16026
|
*/
|
|
15709
|
-
export interface
|
|
16027
|
+
export interface RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue {
|
|
16028
|
+
/**
|
|
16029
|
+
* Construct a type with a set of properties K of type T
|
|
16030
|
+
* @type {object}
|
|
16031
|
+
* @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
|
|
16032
|
+
*/
|
|
16033
|
+
'contentLimits'?: object;
|
|
15710
16034
|
/**
|
|
15711
16035
|
* Construct a type with a set of properties K of type T
|
|
15712
16036
|
* @type {object}
|
|
15713
|
-
* @memberof
|
|
16037
|
+
* @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
|
|
15714
16038
|
*/
|
|
15715
16039
|
'contents': object;
|
|
15716
16040
|
/**
|
|
15717
16041
|
* Construct a type with a set of properties K of type T
|
|
15718
16042
|
* @type {object}
|
|
15719
|
-
* @memberof
|
|
16043
|
+
* @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
|
|
15720
16044
|
*/
|
|
15721
16045
|
'config': object;
|
|
15722
16046
|
}
|
|
@@ -16681,6 +17005,12 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
16681
17005
|
* @throws {RequiredError}
|
|
16682
17006
|
*/
|
|
16683
17007
|
forgotPassword: (domain: string, iForgotPasswordRequest: IForgotPasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17008
|
+
/**
|
|
17009
|
+
*
|
|
17010
|
+
* @param {*} [options] Override http request option.
|
|
17011
|
+
* @throws {RequiredError}
|
|
17012
|
+
*/
|
|
17013
|
+
generateCliToken: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16684
17014
|
/**
|
|
16685
17015
|
*
|
|
16686
17016
|
* @param {string} domain
|
|
@@ -16749,6 +17079,12 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
|
16749
17079
|
* @throws {RequiredError}
|
|
16750
17080
|
*/
|
|
16751
17081
|
forgotPassword(domain: string, iForgotPasswordRequest: IForgotPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
17082
|
+
/**
|
|
17083
|
+
*
|
|
17084
|
+
* @param {*} [options] Override http request option.
|
|
17085
|
+
* @throws {RequiredError}
|
|
17086
|
+
*/
|
|
17087
|
+
generateCliToken(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GenerateCliToken200Response>>;
|
|
16752
17088
|
/**
|
|
16753
17089
|
*
|
|
16754
17090
|
* @param {string} domain
|
|
@@ -16816,6 +17152,12 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
|
|
|
16816
17152
|
* @throws {RequiredError}
|
|
16817
17153
|
*/
|
|
16818
17154
|
forgotPassword(requestParameters: AuthApiForgotPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
17155
|
+
/**
|
|
17156
|
+
*
|
|
17157
|
+
* @param {*} [options] Override http request option.
|
|
17158
|
+
* @throws {RequiredError}
|
|
17159
|
+
*/
|
|
17160
|
+
generateCliToken(options?: RawAxiosRequestConfig): AxiosPromise<GenerateCliToken200Response>;
|
|
16819
17161
|
/**
|
|
16820
17162
|
*
|
|
16821
17163
|
* @param {AuthApiLoginRequest} requestParameters Request parameters.
|
|
@@ -17021,6 +17363,13 @@ export declare class AuthApi extends BaseAPI {
|
|
|
17021
17363
|
* @memberof AuthApi
|
|
17022
17364
|
*/
|
|
17023
17365
|
forgotPassword(requestParameters: AuthApiForgotPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
17366
|
+
/**
|
|
17367
|
+
*
|
|
17368
|
+
* @param {*} [options] Override http request option.
|
|
17369
|
+
* @throws {RequiredError}
|
|
17370
|
+
* @memberof AuthApi
|
|
17371
|
+
*/
|
|
17372
|
+
generateCliToken(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GenerateCliToken200Response, any>>;
|
|
17024
17373
|
/**
|
|
17025
17374
|
*
|
|
17026
17375
|
* @param {AuthApiLoginRequest} requestParameters Request parameters.
|
|
@@ -21447,6 +21796,13 @@ export declare const ContentPlanApiAxiosParamCreator: (configuration?: Configura
|
|
|
21447
21796
|
* @throws {RequiredError}
|
|
21448
21797
|
*/
|
|
21449
21798
|
deleteContentPlan: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21799
|
+
/**
|
|
21800
|
+
*
|
|
21801
|
+
* @param {string} id
|
|
21802
|
+
* @param {*} [options] Override http request option.
|
|
21803
|
+
* @throws {RequiredError}
|
|
21804
|
+
*/
|
|
21805
|
+
generateContentPlan: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21450
21806
|
/**
|
|
21451
21807
|
*
|
|
21452
21808
|
* @param {string} id
|
|
@@ -21501,6 +21857,13 @@ export declare const ContentPlanApiFp: (configuration?: Configuration) => {
|
|
|
21501
21857
|
* @throws {RequiredError}
|
|
21502
21858
|
*/
|
|
21503
21859
|
deleteContentPlan(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
21860
|
+
/**
|
|
21861
|
+
*
|
|
21862
|
+
* @param {string} id
|
|
21863
|
+
* @param {*} [options] Override http request option.
|
|
21864
|
+
* @throws {RequiredError}
|
|
21865
|
+
*/
|
|
21866
|
+
generateContentPlan(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IContentPlanResponse>>;
|
|
21504
21867
|
/**
|
|
21505
21868
|
*
|
|
21506
21869
|
* @param {string} id
|
|
@@ -21555,6 +21918,13 @@ export declare const ContentPlanApiFactory: (configuration?: Configuration, base
|
|
|
21555
21918
|
* @throws {RequiredError}
|
|
21556
21919
|
*/
|
|
21557
21920
|
deleteContentPlan(requestParameters: ContentPlanApiDeleteContentPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
21921
|
+
/**
|
|
21922
|
+
*
|
|
21923
|
+
* @param {ContentPlanApiGenerateContentPlanRequest} requestParameters Request parameters.
|
|
21924
|
+
* @param {*} [options] Override http request option.
|
|
21925
|
+
* @throws {RequiredError}
|
|
21926
|
+
*/
|
|
21927
|
+
generateContentPlan(requestParameters: ContentPlanApiGenerateContentPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<IContentPlanResponse>;
|
|
21558
21928
|
/**
|
|
21559
21929
|
*
|
|
21560
21930
|
* @param {ContentPlanApiGetContentPlanByIdRequest} requestParameters Request parameters.
|
|
@@ -21603,6 +21973,19 @@ export interface ContentPlanApiDeleteContentPlanRequest {
|
|
|
21603
21973
|
*/
|
|
21604
21974
|
readonly id: string;
|
|
21605
21975
|
}
|
|
21976
|
+
/**
|
|
21977
|
+
* Request parameters for generateContentPlan operation in ContentPlanApi.
|
|
21978
|
+
* @export
|
|
21979
|
+
* @interface ContentPlanApiGenerateContentPlanRequest
|
|
21980
|
+
*/
|
|
21981
|
+
export interface ContentPlanApiGenerateContentPlanRequest {
|
|
21982
|
+
/**
|
|
21983
|
+
*
|
|
21984
|
+
* @type {string}
|
|
21985
|
+
* @memberof ContentPlanApiGenerateContentPlan
|
|
21986
|
+
*/
|
|
21987
|
+
readonly id: string;
|
|
21988
|
+
}
|
|
21606
21989
|
/**
|
|
21607
21990
|
* Request parameters for getContentPlanById operation in ContentPlanApi.
|
|
21608
21991
|
* @export
|
|
@@ -21743,6 +22126,14 @@ export declare class ContentPlanApi extends BaseAPI {
|
|
|
21743
22126
|
* @memberof ContentPlanApi
|
|
21744
22127
|
*/
|
|
21745
22128
|
deleteContentPlan(requestParameters: ContentPlanApiDeleteContentPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
22129
|
+
/**
|
|
22130
|
+
*
|
|
22131
|
+
* @param {ContentPlanApiGenerateContentPlanRequest} requestParameters Request parameters.
|
|
22132
|
+
* @param {*} [options] Override http request option.
|
|
22133
|
+
* @throws {RequiredError}
|
|
22134
|
+
* @memberof ContentPlanApi
|
|
22135
|
+
*/
|
|
22136
|
+
generateContentPlan(requestParameters: ContentPlanApiGenerateContentPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IContentPlanResponse, any>>;
|
|
21746
22137
|
/**
|
|
21747
22138
|
*
|
|
21748
22139
|
* @param {ContentPlanApiGetContentPlanByIdRequest} requestParameters Request parameters.
|
|
@@ -25719,6 +26110,16 @@ export declare const SEOApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
25719
26110
|
* @throws {RequiredError}
|
|
25720
26111
|
*/
|
|
25721
26112
|
getSeoRankTrack: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26113
|
+
/**
|
|
26114
|
+
*
|
|
26115
|
+
* @param {string} companyId
|
|
26116
|
+
* @param {string} [keyword]
|
|
26117
|
+
* @param {string} [startDate]
|
|
26118
|
+
* @param {string} [endDate]
|
|
26119
|
+
* @param {*} [options] Override http request option.
|
|
26120
|
+
* @throws {RequiredError}
|
|
26121
|
+
*/
|
|
26122
|
+
listSeoRankResults: (companyId: string, keyword?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25722
26123
|
/**
|
|
25723
26124
|
*
|
|
25724
26125
|
* @param {string} [companyId]
|
|
@@ -25746,28 +26147,38 @@ export declare const SEOApiFp: (configuration?: Configuration) => {
|
|
|
25746
26147
|
* @param {*} [options] Override http request option.
|
|
25747
26148
|
* @throws {RequiredError}
|
|
25748
26149
|
*/
|
|
25749
|
-
createSeoRankTrack(iSeoRankTrackPostRequest: ISeoRankTrackPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26150
|
+
createSeoRankTrack(iSeoRankTrackPostRequest: ISeoRankTrackPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListSeoRankTracks200ResponseInner>>;
|
|
25750
26151
|
/**
|
|
25751
26152
|
*
|
|
25752
26153
|
* @param {string} id
|
|
25753
26154
|
* @param {*} [options] Override http request option.
|
|
25754
26155
|
* @throws {RequiredError}
|
|
25755
26156
|
*/
|
|
25756
|
-
deleteSeoRankTrack(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26157
|
+
deleteSeoRankTrack(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
25757
26158
|
/**
|
|
25758
26159
|
*
|
|
25759
26160
|
* @param {string} id
|
|
25760
26161
|
* @param {*} [options] Override http request option.
|
|
25761
26162
|
* @throws {RequiredError}
|
|
25762
26163
|
*/
|
|
25763
|
-
getSeoRankTrack(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26164
|
+
getSeoRankTrack(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListSeoRankTracks200ResponseInner>>;
|
|
26165
|
+
/**
|
|
26166
|
+
*
|
|
26167
|
+
* @param {string} companyId
|
|
26168
|
+
* @param {string} [keyword]
|
|
26169
|
+
* @param {string} [startDate]
|
|
26170
|
+
* @param {string} [endDate]
|
|
26171
|
+
* @param {*} [options] Override http request option.
|
|
26172
|
+
* @throws {RequiredError}
|
|
26173
|
+
*/
|
|
26174
|
+
listSeoRankResults(companyId: string, keyword?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ISeoRankLog>>>;
|
|
25764
26175
|
/**
|
|
25765
26176
|
*
|
|
25766
26177
|
* @param {string} [companyId]
|
|
25767
26178
|
* @param {*} [options] Override http request option.
|
|
25768
26179
|
* @throws {RequiredError}
|
|
25769
26180
|
*/
|
|
25770
|
-
listSeoRankTracks(companyId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26181
|
+
listSeoRankTracks(companyId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListSeoRankTracks200ResponseInner>>>;
|
|
25771
26182
|
/**
|
|
25772
26183
|
*
|
|
25773
26184
|
* @param {string} id
|
|
@@ -25775,7 +26186,7 @@ export declare const SEOApiFp: (configuration?: Configuration) => {
|
|
|
25775
26186
|
* @param {*} [options] Override http request option.
|
|
25776
26187
|
* @throws {RequiredError}
|
|
25777
26188
|
*/
|
|
25778
|
-
updateSeoRankTrack(id: string, iSeoRankTrackPatchRequest: ISeoRankTrackPatchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26189
|
+
updateSeoRankTrack(id: string, iSeoRankTrackPatchRequest: ISeoRankTrackPatchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListSeoRankTracks200ResponseInner>>;
|
|
25779
26190
|
};
|
|
25780
26191
|
/**
|
|
25781
26192
|
* SEOApi - factory interface
|
|
@@ -25788,35 +26199,42 @@ export declare const SEOApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
25788
26199
|
* @param {*} [options] Override http request option.
|
|
25789
26200
|
* @throws {RequiredError}
|
|
25790
26201
|
*/
|
|
25791
|
-
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26202
|
+
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListSeoRankTracks200ResponseInner>;
|
|
25792
26203
|
/**
|
|
25793
26204
|
*
|
|
25794
26205
|
* @param {SEOApiDeleteSeoRankTrackRequest} requestParameters Request parameters.
|
|
25795
26206
|
* @param {*} [options] Override http request option.
|
|
25796
26207
|
* @throws {RequiredError}
|
|
25797
26208
|
*/
|
|
25798
|
-
deleteSeoRankTrack(requestParameters: SEOApiDeleteSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26209
|
+
deleteSeoRankTrack(requestParameters: SEOApiDeleteSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
25799
26210
|
/**
|
|
25800
26211
|
*
|
|
25801
26212
|
* @param {SEOApiGetSeoRankTrackRequest} requestParameters Request parameters.
|
|
25802
26213
|
* @param {*} [options] Override http request option.
|
|
25803
26214
|
* @throws {RequiredError}
|
|
25804
26215
|
*/
|
|
25805
|
-
getSeoRankTrack(requestParameters: SEOApiGetSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26216
|
+
getSeoRankTrack(requestParameters: SEOApiGetSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListSeoRankTracks200ResponseInner>;
|
|
26217
|
+
/**
|
|
26218
|
+
*
|
|
26219
|
+
* @param {SEOApiListSeoRankResultsRequest} requestParameters Request parameters.
|
|
26220
|
+
* @param {*} [options] Override http request option.
|
|
26221
|
+
* @throws {RequiredError}
|
|
26222
|
+
*/
|
|
26223
|
+
listSeoRankResults(requestParameters: SEOApiListSeoRankResultsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<ISeoRankLog>>;
|
|
25806
26224
|
/**
|
|
25807
26225
|
*
|
|
25808
26226
|
* @param {SEOApiListSeoRankTracksRequest} requestParameters Request parameters.
|
|
25809
26227
|
* @param {*} [options] Override http request option.
|
|
25810
26228
|
* @throws {RequiredError}
|
|
25811
26229
|
*/
|
|
25812
|
-
listSeoRankTracks(requestParameters?: SEOApiListSeoRankTracksRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26230
|
+
listSeoRankTracks(requestParameters?: SEOApiListSeoRankTracksRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<ListSeoRankTracks200ResponseInner>>;
|
|
25813
26231
|
/**
|
|
25814
26232
|
*
|
|
25815
26233
|
* @param {SEOApiUpdateSeoRankTrackRequest} requestParameters Request parameters.
|
|
25816
26234
|
* @param {*} [options] Override http request option.
|
|
25817
26235
|
* @throws {RequiredError}
|
|
25818
26236
|
*/
|
|
25819
|
-
updateSeoRankTrack(requestParameters: SEOApiUpdateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26237
|
+
updateSeoRankTrack(requestParameters: SEOApiUpdateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListSeoRankTracks200ResponseInner>;
|
|
25820
26238
|
};
|
|
25821
26239
|
/**
|
|
25822
26240
|
* Request parameters for createSeoRankTrack operation in SEOApi.
|
|
@@ -25857,6 +26275,37 @@ export interface SEOApiGetSeoRankTrackRequest {
|
|
|
25857
26275
|
*/
|
|
25858
26276
|
readonly id: string;
|
|
25859
26277
|
}
|
|
26278
|
+
/**
|
|
26279
|
+
* Request parameters for listSeoRankResults operation in SEOApi.
|
|
26280
|
+
* @export
|
|
26281
|
+
* @interface SEOApiListSeoRankResultsRequest
|
|
26282
|
+
*/
|
|
26283
|
+
export interface SEOApiListSeoRankResultsRequest {
|
|
26284
|
+
/**
|
|
26285
|
+
*
|
|
26286
|
+
* @type {string}
|
|
26287
|
+
* @memberof SEOApiListSeoRankResults
|
|
26288
|
+
*/
|
|
26289
|
+
readonly companyId: string;
|
|
26290
|
+
/**
|
|
26291
|
+
*
|
|
26292
|
+
* @type {string}
|
|
26293
|
+
* @memberof SEOApiListSeoRankResults
|
|
26294
|
+
*/
|
|
26295
|
+
readonly keyword?: string;
|
|
26296
|
+
/**
|
|
26297
|
+
*
|
|
26298
|
+
* @type {string}
|
|
26299
|
+
* @memberof SEOApiListSeoRankResults
|
|
26300
|
+
*/
|
|
26301
|
+
readonly startDate?: string;
|
|
26302
|
+
/**
|
|
26303
|
+
*
|
|
26304
|
+
* @type {string}
|
|
26305
|
+
* @memberof SEOApiListSeoRankResults
|
|
26306
|
+
*/
|
|
26307
|
+
readonly endDate?: string;
|
|
26308
|
+
}
|
|
25860
26309
|
/**
|
|
25861
26310
|
* Request parameters for listSeoRankTracks operation in SEOApi.
|
|
25862
26311
|
* @export
|
|
@@ -25903,7 +26352,7 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25903
26352
|
* @throws {RequiredError}
|
|
25904
26353
|
* @memberof SEOApi
|
|
25905
26354
|
*/
|
|
25906
|
-
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26355
|
+
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListSeoRankTracks200ResponseInner, any>>;
|
|
25907
26356
|
/**
|
|
25908
26357
|
*
|
|
25909
26358
|
* @param {SEOApiDeleteSeoRankTrackRequest} requestParameters Request parameters.
|
|
@@ -25911,7 +26360,7 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25911
26360
|
* @throws {RequiredError}
|
|
25912
26361
|
* @memberof SEOApi
|
|
25913
26362
|
*/
|
|
25914
|
-
deleteSeoRankTrack(requestParameters: SEOApiDeleteSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26363
|
+
deleteSeoRankTrack(requestParameters: SEOApiDeleteSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
25915
26364
|
/**
|
|
25916
26365
|
*
|
|
25917
26366
|
* @param {SEOApiGetSeoRankTrackRequest} requestParameters Request parameters.
|
|
@@ -25919,7 +26368,15 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25919
26368
|
* @throws {RequiredError}
|
|
25920
26369
|
* @memberof SEOApi
|
|
25921
26370
|
*/
|
|
25922
|
-
getSeoRankTrack(requestParameters: SEOApiGetSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26371
|
+
getSeoRankTrack(requestParameters: SEOApiGetSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListSeoRankTracks200ResponseInner, any>>;
|
|
26372
|
+
/**
|
|
26373
|
+
*
|
|
26374
|
+
* @param {SEOApiListSeoRankResultsRequest} requestParameters Request parameters.
|
|
26375
|
+
* @param {*} [options] Override http request option.
|
|
26376
|
+
* @throws {RequiredError}
|
|
26377
|
+
* @memberof SEOApi
|
|
26378
|
+
*/
|
|
26379
|
+
listSeoRankResults(requestParameters: SEOApiListSeoRankResultsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ISeoRankLog[], any>>;
|
|
25923
26380
|
/**
|
|
25924
26381
|
*
|
|
25925
26382
|
* @param {SEOApiListSeoRankTracksRequest} requestParameters Request parameters.
|
|
@@ -25927,7 +26384,7 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25927
26384
|
* @throws {RequiredError}
|
|
25928
26385
|
* @memberof SEOApi
|
|
25929
26386
|
*/
|
|
25930
|
-
listSeoRankTracks(requestParameters?: SEOApiListSeoRankTracksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26387
|
+
listSeoRankTracks(requestParameters?: SEOApiListSeoRankTracksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListSeoRankTracks200ResponseInner[], any>>;
|
|
25931
26388
|
/**
|
|
25932
26389
|
*
|
|
25933
26390
|
* @param {SEOApiUpdateSeoRankTrackRequest} requestParameters Request parameters.
|
|
@@ -25935,7 +26392,7 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25935
26392
|
* @throws {RequiredError}
|
|
25936
26393
|
* @memberof SEOApi
|
|
25937
26394
|
*/
|
|
25938
|
-
updateSeoRankTrack(requestParameters: SEOApiUpdateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26395
|
+
updateSeoRankTrack(requestParameters: SEOApiUpdateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListSeoRankTracks200ResponseInner, any>>;
|
|
25939
26396
|
}
|
|
25940
26397
|
/**
|
|
25941
26398
|
* ServiceAccountsApi - axios parameter creator
|
|
@@ -26587,6 +27044,13 @@ export declare const ThemeApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
26587
27044
|
* @throws {RequiredError}
|
|
26588
27045
|
*/
|
|
26589
27046
|
getThemeById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27047
|
+
/**
|
|
27048
|
+
*
|
|
27049
|
+
* @param {string} id
|
|
27050
|
+
* @param {*} [options] Override http request option.
|
|
27051
|
+
* @throws {RequiredError}
|
|
27052
|
+
*/
|
|
27053
|
+
getThemeLastVersion: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26590
27054
|
/**
|
|
26591
27055
|
*
|
|
26592
27056
|
* @param {CompanyTypeEnum} [type]
|
|
@@ -26663,6 +27127,13 @@ export declare const ThemeApiFp: (configuration?: Configuration) => {
|
|
|
26663
27127
|
* @throws {RequiredError}
|
|
26664
27128
|
*/
|
|
26665
27129
|
getThemeById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IThemeResponse>>;
|
|
27130
|
+
/**
|
|
27131
|
+
*
|
|
27132
|
+
* @param {string} id
|
|
27133
|
+
* @param {*} [options] Override http request option.
|
|
27134
|
+
* @throws {RequiredError}
|
|
27135
|
+
*/
|
|
27136
|
+
getThemeLastVersion(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IThemeVersion>>;
|
|
26666
27137
|
/**
|
|
26667
27138
|
*
|
|
26668
27139
|
* @param {CompanyTypeEnum} [type]
|
|
@@ -26739,6 +27210,13 @@ export declare const ThemeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
26739
27210
|
* @throws {RequiredError}
|
|
26740
27211
|
*/
|
|
26741
27212
|
getThemeById(requestParameters: ThemeApiGetThemeByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<IThemeResponse>;
|
|
27213
|
+
/**
|
|
27214
|
+
*
|
|
27215
|
+
* @param {ThemeApiGetThemeLastVersionRequest} requestParameters Request parameters.
|
|
27216
|
+
* @param {*} [options] Override http request option.
|
|
27217
|
+
* @throws {RequiredError}
|
|
27218
|
+
*/
|
|
27219
|
+
getThemeLastVersion(requestParameters: ThemeApiGetThemeLastVersionRequest, options?: RawAxiosRequestConfig): AxiosPromise<IThemeVersion>;
|
|
26742
27220
|
/**
|
|
26743
27221
|
*
|
|
26744
27222
|
* @param {ThemeApiGetThemesRequest} requestParameters Request parameters.
|
|
@@ -26839,6 +27317,19 @@ export interface ThemeApiGetThemeByIdRequest {
|
|
|
26839
27317
|
*/
|
|
26840
27318
|
readonly id: string;
|
|
26841
27319
|
}
|
|
27320
|
+
/**
|
|
27321
|
+
* Request parameters for getThemeLastVersion operation in ThemeApi.
|
|
27322
|
+
* @export
|
|
27323
|
+
* @interface ThemeApiGetThemeLastVersionRequest
|
|
27324
|
+
*/
|
|
27325
|
+
export interface ThemeApiGetThemeLastVersionRequest {
|
|
27326
|
+
/**
|
|
27327
|
+
*
|
|
27328
|
+
* @type {string}
|
|
27329
|
+
* @memberof ThemeApiGetThemeLastVersion
|
|
27330
|
+
*/
|
|
27331
|
+
readonly id: string;
|
|
27332
|
+
}
|
|
26842
27333
|
/**
|
|
26843
27334
|
* Request parameters for getThemes operation in ThemeApi.
|
|
26844
27335
|
* @export
|
|
@@ -26975,6 +27466,14 @@ export declare class ThemeApi extends BaseAPI {
|
|
|
26975
27466
|
* @memberof ThemeApi
|
|
26976
27467
|
*/
|
|
26977
27468
|
getThemeById(requestParameters: ThemeApiGetThemeByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IThemeResponse, any>>;
|
|
27469
|
+
/**
|
|
27470
|
+
*
|
|
27471
|
+
* @param {ThemeApiGetThemeLastVersionRequest} requestParameters Request parameters.
|
|
27472
|
+
* @param {*} [options] Override http request option.
|
|
27473
|
+
* @throws {RequiredError}
|
|
27474
|
+
* @memberof ThemeApi
|
|
27475
|
+
*/
|
|
27476
|
+
getThemeLastVersion(requestParameters: ThemeApiGetThemeLastVersionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IThemeVersion, any>>;
|
|
26978
27477
|
/**
|
|
26979
27478
|
*
|
|
26980
27479
|
* @param {ThemeApiGetThemesRequest} requestParameters Request parameters.
|