@infisale-client/api 1.3.71 → 1.3.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/api.d.ts +466 -96
- 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
|
@@ -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
|
|
@@ -9588,6 +9569,37 @@ export interface IResetPasswordRequest {
|
|
|
9588
9569
|
*/
|
|
9589
9570
|
'code': string;
|
|
9590
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
|
+
}
|
|
9591
9603
|
/**
|
|
9592
9604
|
*
|
|
9593
9605
|
* @export
|
|
@@ -9861,6 +9873,99 @@ export interface IReviewResponse {
|
|
|
9861
9873
|
*/
|
|
9862
9874
|
'product'?: IProductResponse;
|
|
9863
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
|
+
}
|
|
9864
9969
|
/**
|
|
9865
9970
|
*
|
|
9866
9971
|
* @export
|
|
@@ -10313,6 +10418,12 @@ export interface ITemplateComponentContentResponse {
|
|
|
10313
10418
|
* @memberof ITemplateComponentContentResponse
|
|
10314
10419
|
*/
|
|
10315
10420
|
'_id': string;
|
|
10421
|
+
/**
|
|
10422
|
+
*
|
|
10423
|
+
* @type {Array<ITemplateComponentContentResponse>}
|
|
10424
|
+
* @memberof ITemplateComponentContentResponse
|
|
10425
|
+
*/
|
|
10426
|
+
'contents'?: Array<ITemplateComponentContentResponse>;
|
|
10316
10427
|
}
|
|
10317
10428
|
/**
|
|
10318
10429
|
*
|
|
@@ -10881,11 +10992,19 @@ export interface IThemeResponse {
|
|
|
10881
10992
|
'assetVersion': number;
|
|
10882
10993
|
/**
|
|
10883
10994
|
* Construct a type with a set of properties K of type T
|
|
10884
|
-
* @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; }}
|
|
10885
11004
|
* @memberof IThemeResponse
|
|
10886
11005
|
*/
|
|
10887
11006
|
'componentConfigIndex': {
|
|
10888
|
-
[key: string]:
|
|
11007
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
10889
11008
|
};
|
|
10890
11009
|
}
|
|
10891
11010
|
/**
|
|
@@ -10948,13 +11067,19 @@ export interface IThemeVersion {
|
|
|
10948
11067
|
* @memberof IThemeVersion
|
|
10949
11068
|
*/
|
|
10950
11069
|
'isDeprecated': boolean;
|
|
11070
|
+
/**
|
|
11071
|
+
*
|
|
11072
|
+
* @type {string}
|
|
11073
|
+
* @memberof IThemeVersion
|
|
11074
|
+
*/
|
|
11075
|
+
'hash'?: string;
|
|
10951
11076
|
/**
|
|
10952
11077
|
* Construct a type with a set of properties K of type T
|
|
10953
|
-
* @type {{ [key: string]:
|
|
11078
|
+
* @type {{ [key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue; }}
|
|
10954
11079
|
* @memberof IThemeVersion
|
|
10955
11080
|
*/
|
|
10956
11081
|
'componentConfigIndex': {
|
|
10957
|
-
[key: string]:
|
|
11082
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
10958
11083
|
};
|
|
10959
11084
|
}
|
|
10960
11085
|
/**
|
|
@@ -11135,11 +11260,19 @@ export interface IThemesResponseData {
|
|
|
11135
11260
|
'assetVersion': number;
|
|
11136
11261
|
/**
|
|
11137
11262
|
* Construct a type with a set of properties K of type T
|
|
11138
|
-
* @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; }}
|
|
11139
11272
|
* @memberof IThemesResponseData
|
|
11140
11273
|
*/
|
|
11141
11274
|
'componentConfigIndex': {
|
|
11142
|
-
[key: string]:
|
|
11275
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
11143
11276
|
};
|
|
11144
11277
|
/**
|
|
11145
11278
|
*
|
|
@@ -12072,6 +12205,75 @@ export declare const LanguageEnum: {
|
|
|
12072
12205
|
readonly DE: "de";
|
|
12073
12206
|
};
|
|
12074
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
|
+
}
|
|
12075
12277
|
/**
|
|
12076
12278
|
*
|
|
12077
12279
|
* @export
|
|
@@ -14610,6 +14812,27 @@ export interface PickIReviewExcludeKeyofIReviewProduct {
|
|
|
14610
14812
|
*/
|
|
14611
14813
|
'comment': string;
|
|
14612
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
|
+
}
|
|
14613
14836
|
/**
|
|
14614
14837
|
* From T, pick a set of properties whose keys are in the union K
|
|
14615
14838
|
* @export
|
|
@@ -15103,11 +15326,19 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
|
|
|
15103
15326
|
'assetVersion': number;
|
|
15104
15327
|
/**
|
|
15105
15328
|
* Construct a type with a set of properties K of type T
|
|
15106
|
-
* @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; }}
|
|
15107
15338
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
15108
15339
|
*/
|
|
15109
15340
|
'componentConfigIndex': {
|
|
15110
|
-
[key: string]:
|
|
15341
|
+
[key: string]: RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue;
|
|
15111
15342
|
};
|
|
15112
15343
|
}
|
|
15113
15344
|
/**
|
|
@@ -15704,19 +15935,25 @@ export interface RecordPlanCurrencyEnumNumber {
|
|
|
15704
15935
|
/**
|
|
15705
15936
|
*
|
|
15706
15937
|
* @export
|
|
15707
|
-
* @interface
|
|
15938
|
+
* @interface RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
|
|
15708
15939
|
*/
|
|
15709
|
-
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;
|
|
15710
15947
|
/**
|
|
15711
15948
|
* Construct a type with a set of properties K of type T
|
|
15712
15949
|
* @type {object}
|
|
15713
|
-
* @memberof
|
|
15950
|
+
* @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
|
|
15714
15951
|
*/
|
|
15715
15952
|
'contents': object;
|
|
15716
15953
|
/**
|
|
15717
15954
|
* Construct a type with a set of properties K of type T
|
|
15718
15955
|
* @type {object}
|
|
15719
|
-
* @memberof
|
|
15956
|
+
* @memberof RecordStringConfigRecordStringConfigIndexTypeEnumContentsRecordStringRecordStringConfigIndexTypeEnumContentLimits63RecordStringNumberValue
|
|
15720
15957
|
*/
|
|
15721
15958
|
'config': object;
|
|
15722
15959
|
}
|
|
@@ -16681,6 +16918,12 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
16681
16918
|
* @throws {RequiredError}
|
|
16682
16919
|
*/
|
|
16683
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>;
|
|
16684
16927
|
/**
|
|
16685
16928
|
*
|
|
16686
16929
|
* @param {string} domain
|
|
@@ -16749,6 +16992,12 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
|
16749
16992
|
* @throws {RequiredError}
|
|
16750
16993
|
*/
|
|
16751
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>>;
|
|
16752
17001
|
/**
|
|
16753
17002
|
*
|
|
16754
17003
|
* @param {string} domain
|
|
@@ -16816,6 +17065,12 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
|
|
|
16816
17065
|
* @throws {RequiredError}
|
|
16817
17066
|
*/
|
|
16818
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>;
|
|
16819
17074
|
/**
|
|
16820
17075
|
*
|
|
16821
17076
|
* @param {AuthApiLoginRequest} requestParameters Request parameters.
|
|
@@ -17021,6 +17276,13 @@ export declare class AuthApi extends BaseAPI {
|
|
|
17021
17276
|
* @memberof AuthApi
|
|
17022
17277
|
*/
|
|
17023
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>>;
|
|
17024
17286
|
/**
|
|
17025
17287
|
*
|
|
17026
17288
|
* @param {AuthApiLoginRequest} requestParameters Request parameters.
|
|
@@ -25719,6 +25981,16 @@ export declare const SEOApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
25719
25981
|
* @throws {RequiredError}
|
|
25720
25982
|
*/
|
|
25721
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>;
|
|
25722
25994
|
/**
|
|
25723
25995
|
*
|
|
25724
25996
|
* @param {string} [companyId]
|
|
@@ -25746,28 +26018,38 @@ export declare const SEOApiFp: (configuration?: Configuration) => {
|
|
|
25746
26018
|
* @param {*} [options] Override http request option.
|
|
25747
26019
|
* @throws {RequiredError}
|
|
25748
26020
|
*/
|
|
25749
|
-
createSeoRankTrack(iSeoRankTrackPostRequest: ISeoRankTrackPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26021
|
+
createSeoRankTrack(iSeoRankTrackPostRequest: ISeoRankTrackPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListSeoRankTracks200ResponseInner>>;
|
|
25750
26022
|
/**
|
|
25751
26023
|
*
|
|
25752
26024
|
* @param {string} id
|
|
25753
26025
|
* @param {*} [options] Override http request option.
|
|
25754
26026
|
* @throws {RequiredError}
|
|
25755
26027
|
*/
|
|
25756
|
-
deleteSeoRankTrack(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26028
|
+
deleteSeoRankTrack(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
25757
26029
|
/**
|
|
25758
26030
|
*
|
|
25759
26031
|
* @param {string} id
|
|
25760
26032
|
* @param {*} [options] Override http request option.
|
|
25761
26033
|
* @throws {RequiredError}
|
|
25762
26034
|
*/
|
|
25763
|
-
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>>>;
|
|
25764
26046
|
/**
|
|
25765
26047
|
*
|
|
25766
26048
|
* @param {string} [companyId]
|
|
25767
26049
|
* @param {*} [options] Override http request option.
|
|
25768
26050
|
* @throws {RequiredError}
|
|
25769
26051
|
*/
|
|
25770
|
-
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>>>;
|
|
25771
26053
|
/**
|
|
25772
26054
|
*
|
|
25773
26055
|
* @param {string} id
|
|
@@ -25775,7 +26057,7 @@ export declare const SEOApiFp: (configuration?: Configuration) => {
|
|
|
25775
26057
|
* @param {*} [options] Override http request option.
|
|
25776
26058
|
* @throws {RequiredError}
|
|
25777
26059
|
*/
|
|
25778
|
-
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>>;
|
|
25779
26061
|
};
|
|
25780
26062
|
/**
|
|
25781
26063
|
* SEOApi - factory interface
|
|
@@ -25788,35 +26070,42 @@ export declare const SEOApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
25788
26070
|
* @param {*} [options] Override http request option.
|
|
25789
26071
|
* @throws {RequiredError}
|
|
25790
26072
|
*/
|
|
25791
|
-
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26073
|
+
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListSeoRankTracks200ResponseInner>;
|
|
25792
26074
|
/**
|
|
25793
26075
|
*
|
|
25794
26076
|
* @param {SEOApiDeleteSeoRankTrackRequest} requestParameters Request parameters.
|
|
25795
26077
|
* @param {*} [options] Override http request option.
|
|
25796
26078
|
* @throws {RequiredError}
|
|
25797
26079
|
*/
|
|
25798
|
-
deleteSeoRankTrack(requestParameters: SEOApiDeleteSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26080
|
+
deleteSeoRankTrack(requestParameters: SEOApiDeleteSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
25799
26081
|
/**
|
|
25800
26082
|
*
|
|
25801
26083
|
* @param {SEOApiGetSeoRankTrackRequest} requestParameters Request parameters.
|
|
25802
26084
|
* @param {*} [options] Override http request option.
|
|
25803
26085
|
* @throws {RequiredError}
|
|
25804
26086
|
*/
|
|
25805
|
-
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>>;
|
|
25806
26095
|
/**
|
|
25807
26096
|
*
|
|
25808
26097
|
* @param {SEOApiListSeoRankTracksRequest} requestParameters Request parameters.
|
|
25809
26098
|
* @param {*} [options] Override http request option.
|
|
25810
26099
|
* @throws {RequiredError}
|
|
25811
26100
|
*/
|
|
25812
|
-
listSeoRankTracks(requestParameters?: SEOApiListSeoRankTracksRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26101
|
+
listSeoRankTracks(requestParameters?: SEOApiListSeoRankTracksRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<ListSeoRankTracks200ResponseInner>>;
|
|
25813
26102
|
/**
|
|
25814
26103
|
*
|
|
25815
26104
|
* @param {SEOApiUpdateSeoRankTrackRequest} requestParameters Request parameters.
|
|
25816
26105
|
* @param {*} [options] Override http request option.
|
|
25817
26106
|
* @throws {RequiredError}
|
|
25818
26107
|
*/
|
|
25819
|
-
updateSeoRankTrack(requestParameters: SEOApiUpdateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26108
|
+
updateSeoRankTrack(requestParameters: SEOApiUpdateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListSeoRankTracks200ResponseInner>;
|
|
25820
26109
|
};
|
|
25821
26110
|
/**
|
|
25822
26111
|
* Request parameters for createSeoRankTrack operation in SEOApi.
|
|
@@ -25857,6 +26146,37 @@ export interface SEOApiGetSeoRankTrackRequest {
|
|
|
25857
26146
|
*/
|
|
25858
26147
|
readonly id: string;
|
|
25859
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
|
+
}
|
|
25860
26180
|
/**
|
|
25861
26181
|
* Request parameters for listSeoRankTracks operation in SEOApi.
|
|
25862
26182
|
* @export
|
|
@@ -25903,7 +26223,7 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25903
26223
|
* @throws {RequiredError}
|
|
25904
26224
|
* @memberof SEOApi
|
|
25905
26225
|
*/
|
|
25906
|
-
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26226
|
+
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListSeoRankTracks200ResponseInner, any>>;
|
|
25907
26227
|
/**
|
|
25908
26228
|
*
|
|
25909
26229
|
* @param {SEOApiDeleteSeoRankTrackRequest} requestParameters Request parameters.
|
|
@@ -25911,7 +26231,7 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25911
26231
|
* @throws {RequiredError}
|
|
25912
26232
|
* @memberof SEOApi
|
|
25913
26233
|
*/
|
|
25914
|
-
deleteSeoRankTrack(requestParameters: SEOApiDeleteSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26234
|
+
deleteSeoRankTrack(requestParameters: SEOApiDeleteSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
25915
26235
|
/**
|
|
25916
26236
|
*
|
|
25917
26237
|
* @param {SEOApiGetSeoRankTrackRequest} requestParameters Request parameters.
|
|
@@ -25919,7 +26239,15 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25919
26239
|
* @throws {RequiredError}
|
|
25920
26240
|
* @memberof SEOApi
|
|
25921
26241
|
*/
|
|
25922
|
-
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>>;
|
|
25923
26251
|
/**
|
|
25924
26252
|
*
|
|
25925
26253
|
* @param {SEOApiListSeoRankTracksRequest} requestParameters Request parameters.
|
|
@@ -25927,7 +26255,7 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25927
26255
|
* @throws {RequiredError}
|
|
25928
26256
|
* @memberof SEOApi
|
|
25929
26257
|
*/
|
|
25930
|
-
listSeoRankTracks(requestParameters?: SEOApiListSeoRankTracksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26258
|
+
listSeoRankTracks(requestParameters?: SEOApiListSeoRankTracksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListSeoRankTracks200ResponseInner[], any>>;
|
|
25931
26259
|
/**
|
|
25932
26260
|
*
|
|
25933
26261
|
* @param {SEOApiUpdateSeoRankTrackRequest} requestParameters Request parameters.
|
|
@@ -25935,7 +26263,7 @@ export declare class SEOApi extends BaseAPI {
|
|
|
25935
26263
|
* @throws {RequiredError}
|
|
25936
26264
|
* @memberof SEOApi
|
|
25937
26265
|
*/
|
|
25938
|
-
updateSeoRankTrack(requestParameters: SEOApiUpdateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26266
|
+
updateSeoRankTrack(requestParameters: SEOApiUpdateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListSeoRankTracks200ResponseInner, any>>;
|
|
25939
26267
|
}
|
|
25940
26268
|
/**
|
|
25941
26269
|
* ServiceAccountsApi - axios parameter creator
|
|
@@ -26587,6 +26915,13 @@ export declare const ThemeApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
26587
26915
|
* @throws {RequiredError}
|
|
26588
26916
|
*/
|
|
26589
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>;
|
|
26590
26925
|
/**
|
|
26591
26926
|
*
|
|
26592
26927
|
* @param {CompanyTypeEnum} [type]
|
|
@@ -26663,6 +26998,13 @@ export declare const ThemeApiFp: (configuration?: Configuration) => {
|
|
|
26663
26998
|
* @throws {RequiredError}
|
|
26664
26999
|
*/
|
|
26665
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>>;
|
|
26666
27008
|
/**
|
|
26667
27009
|
*
|
|
26668
27010
|
* @param {CompanyTypeEnum} [type]
|
|
@@ -26739,6 +27081,13 @@ export declare const ThemeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
26739
27081
|
* @throws {RequiredError}
|
|
26740
27082
|
*/
|
|
26741
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>;
|
|
26742
27091
|
/**
|
|
26743
27092
|
*
|
|
26744
27093
|
* @param {ThemeApiGetThemesRequest} requestParameters Request parameters.
|
|
@@ -26839,6 +27188,19 @@ export interface ThemeApiGetThemeByIdRequest {
|
|
|
26839
27188
|
*/
|
|
26840
27189
|
readonly id: string;
|
|
26841
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
|
+
}
|
|
26842
27204
|
/**
|
|
26843
27205
|
* Request parameters for getThemes operation in ThemeApi.
|
|
26844
27206
|
* @export
|
|
@@ -26975,6 +27337,14 @@ export declare class ThemeApi extends BaseAPI {
|
|
|
26975
27337
|
* @memberof ThemeApi
|
|
26976
27338
|
*/
|
|
26977
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>>;
|
|
26978
27348
|
/**
|
|
26979
27349
|
*
|
|
26980
27350
|
* @param {ThemeApiGetThemesRequest} requestParameters Request parameters.
|