dataforseo-client 1.0.30 → 1.0.31
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/main.d.ts +789 -238
- package/main.js +973 -696
- package/main.js.map +1 -1
- package/main.ts +1708 -1418
- package/package.json +1 -1
package/main.d.ts
CHANGED
|
@@ -1060,6 +1060,9 @@ export declare class SerpApi {
|
|
|
1060
1060
|
googleFinanceQuoteTasksReady(): Promise<SerpGoogleFinanceQuoteTasksReadyResponseInfo | null>;
|
|
1061
1061
|
protected processGoogleFinanceQuoteTasksReady(response: Response): Promise<SerpGoogleFinanceQuoteTasksReadyResponseInfo | null>;
|
|
1062
1062
|
/**
|
|
1063
|
+
* @param id task identifier
|
|
1064
|
+
unique task identifier in our system in the UUID format
|
|
1065
|
+
you will be able to use it within 30 days to request the results of the task at any time
|
|
1063
1066
|
* @return Successful operation
|
|
1064
1067
|
*/
|
|
1065
1068
|
googleFinanceQuoteTaskGetAdvanced(id: string): Promise<SerpGoogleFinanceQuoteTaskGetAdvancedResponseInfo | null>;
|
|
@@ -11413,6 +11416,54 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
11413
11416
|
rectangle?: Rectangle | undefined;
|
|
11414
11417
|
[key: string]: any;
|
|
11415
11418
|
}
|
|
11419
|
+
export declare class ThirdPartyReviewsSerpElementItem extends BaseSerpElementItem implements IThirdPartyReviewsSerpElementItem {
|
|
11420
|
+
/** the alignment of the element in SERP
|
|
11421
|
+
can take the following values:
|
|
11422
|
+
left, right */
|
|
11423
|
+
position?: string | undefined;
|
|
11424
|
+
/** the XPath of the element */
|
|
11425
|
+
xpath?: string | undefined;
|
|
11426
|
+
/** the number of reviews */
|
|
11427
|
+
reviews_count?: number | undefined;
|
|
11428
|
+
/** title of the row */
|
|
11429
|
+
title?: string | undefined;
|
|
11430
|
+
/** source URL */
|
|
11431
|
+
url?: string | undefined;
|
|
11432
|
+
/** the element’s rating
|
|
11433
|
+
the popularity rate based on reviews and displayed in SERP */
|
|
11434
|
+
rating?: RatingInfo | undefined;
|
|
11435
|
+
/** rectangle parameters
|
|
11436
|
+
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
11437
|
+
equals null if calculate_rectangles in the POST request is not set to true */
|
|
11438
|
+
rectangle?: Rectangle | undefined;
|
|
11439
|
+
[key: string]: any;
|
|
11440
|
+
constructor(data?: IThirdPartyReviewsSerpElementItem);
|
|
11441
|
+
init(_data?: any): void;
|
|
11442
|
+
static fromJS(data: any): ThirdPartyReviewsSerpElementItem;
|
|
11443
|
+
toJSON(data?: any): any;
|
|
11444
|
+
}
|
|
11445
|
+
export interface IThirdPartyReviewsSerpElementItem extends IBaseSerpElementItem {
|
|
11446
|
+
/** the alignment of the element in SERP
|
|
11447
|
+
can take the following values:
|
|
11448
|
+
left, right */
|
|
11449
|
+
position?: string | undefined;
|
|
11450
|
+
/** the XPath of the element */
|
|
11451
|
+
xpath?: string | undefined;
|
|
11452
|
+
/** the number of reviews */
|
|
11453
|
+
reviews_count?: number | undefined;
|
|
11454
|
+
/** title of the row */
|
|
11455
|
+
title?: string | undefined;
|
|
11456
|
+
/** source URL */
|
|
11457
|
+
url?: string | undefined;
|
|
11458
|
+
/** the element’s rating
|
|
11459
|
+
the popularity rate based on reviews and displayed in SERP */
|
|
11460
|
+
rating?: RatingInfo | undefined;
|
|
11461
|
+
/** rectangle parameters
|
|
11462
|
+
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
11463
|
+
equals null if calculate_rectangles in the POST request is not set to true */
|
|
11464
|
+
rectangle?: Rectangle | undefined;
|
|
11465
|
+
[key: string]: any;
|
|
11466
|
+
}
|
|
11416
11467
|
export declare class SerpGoogleOrganicTaskGetAdvancedResultInfo implements ISerpGoogleOrganicTaskGetAdvancedResultInfo {
|
|
11417
11468
|
/** keyword received in a POST array
|
|
11418
11469
|
the keyword is returned with decoded %## (plus symbol ‘+’ will be decoded to a space character) */
|
|
@@ -15868,6 +15919,8 @@ if the search engine provided results for a keyword that was corrected, we will
|
|
|
15868
15919
|
spell?: SpellInfo | undefined;
|
|
15869
15920
|
/** search refinement chips */
|
|
15870
15921
|
refinement_chips?: RefinementChipsInfo | undefined;
|
|
15922
|
+
/** indicates whether the response contains non-news search results in addition to news content */
|
|
15923
|
+
includes_non_news_search_results?: boolean | undefined;
|
|
15871
15924
|
/** types of search results in SERP
|
|
15872
15925
|
contains types of search results (items) found in SERP.
|
|
15873
15926
|
possible item types:
|
|
@@ -15910,6 +15963,8 @@ if the search engine provided results for a keyword that was corrected, we will
|
|
|
15910
15963
|
spell?: SpellInfo | undefined;
|
|
15911
15964
|
/** search refinement chips */
|
|
15912
15965
|
refinement_chips?: RefinementChipsInfo | undefined;
|
|
15966
|
+
/** indicates whether the response contains non-news search results in addition to news content */
|
|
15967
|
+
includes_non_news_search_results?: boolean | undefined;
|
|
15913
15968
|
/** types of search results in SERP
|
|
15914
15969
|
contains types of search results (items) found in SERP.
|
|
15915
15970
|
possible item types:
|
|
@@ -16288,6 +16343,8 @@ if the search engine provided results for a keyword that was corrected, we will
|
|
|
16288
16343
|
spell?: SpellInfo | undefined;
|
|
16289
16344
|
/** search refinement chips */
|
|
16290
16345
|
refinement_chips?: RefinementChipsInfo | undefined;
|
|
16346
|
+
/** indicates whether the response contains non-news search results in addition to news content */
|
|
16347
|
+
includes_non_news_search_results?: boolean | undefined;
|
|
16291
16348
|
/** types of search results in SERP
|
|
16292
16349
|
contains types of search results (items) found in SERP.
|
|
16293
16350
|
possible item types:
|
|
@@ -16330,6 +16387,8 @@ if the search engine provided results for a keyword that was corrected, we will
|
|
|
16330
16387
|
spell?: SpellInfo | undefined;
|
|
16331
16388
|
/** search refinement chips */
|
|
16332
16389
|
refinement_chips?: RefinementChipsInfo | undefined;
|
|
16390
|
+
/** indicates whether the response contains non-news search results in addition to news content */
|
|
16391
|
+
includes_non_news_search_results?: boolean | undefined;
|
|
16333
16392
|
/** types of search results in SERP
|
|
16334
16393
|
contains types of search results (items) found in SERP.
|
|
16335
16394
|
possible item types:
|
|
@@ -24764,7 +24823,7 @@ equals null */
|
|
|
24764
24823
|
/** types of search results in SERP
|
|
24765
24824
|
contains types of search results (items) found in SERP.
|
|
24766
24825
|
possible item types:
|
|
24767
|
-
answer_box, carousel, events, featured_snippet, hotels_pack, images, jobs, local_pack, map, organic, paid, people_also_ask, people_also_search, questions_and_answers,recipes, related_searches, shopping, top_stories, video */
|
|
24826
|
+
answer_box, carousel, events, featured_snippet, hotels_pack, images, jobs, local_pack, map, organic, paid, people_also_ask, people_also_search, questions_and_answers,recipes, related_searches, shopping, top_stories, video, ai_overview */
|
|
24768
24827
|
item_types?: (string | undefined)[] | undefined;
|
|
24769
24828
|
/** total number of results in SERP */
|
|
24770
24829
|
se_results_count?: number | undefined;
|
|
@@ -24808,7 +24867,7 @@ equals null */
|
|
|
24808
24867
|
/** types of search results in SERP
|
|
24809
24868
|
contains types of search results (items) found in SERP.
|
|
24810
24869
|
possible item types:
|
|
24811
|
-
answer_box, carousel, events, featured_snippet, hotels_pack, images, jobs, local_pack, map, organic, paid, people_also_ask, people_also_search, questions_and_answers,recipes, related_searches, shopping, top_stories, video */
|
|
24870
|
+
answer_box, carousel, events, featured_snippet, hotels_pack, images, jobs, local_pack, map, organic, paid, people_also_ask, people_also_search, questions_and_answers,recipes, related_searches, shopping, top_stories, video, ai_overview */
|
|
24812
24871
|
item_types?: (string | undefined)[] | undefined;
|
|
24813
24872
|
/** total number of results in SERP */
|
|
24814
24873
|
se_results_count?: number | undefined;
|
|
@@ -25147,8 +25206,7 @@ possible item types: organic, paid */
|
|
|
25147
25206
|
se_results_count?: number | undefined;
|
|
25148
25207
|
/** the number of results returned in the items array */
|
|
25149
25208
|
items_count?: number | undefined;
|
|
25150
|
-
/** items
|
|
25151
|
-
array of 8 search queries related to the keyword */
|
|
25209
|
+
/** items in SERP */
|
|
25152
25210
|
items?: (BaseSerpElementItem | undefined)[] | undefined;
|
|
25153
25211
|
[key: string]: any;
|
|
25154
25212
|
constructor(data?: ISerpBingOrganicLiveRegularResultInfo);
|
|
@@ -25190,8 +25248,7 @@ possible item types: organic, paid */
|
|
|
25190
25248
|
se_results_count?: number | undefined;
|
|
25191
25249
|
/** the number of results returned in the items array */
|
|
25192
25250
|
items_count?: number | undefined;
|
|
25193
|
-
/** items
|
|
25194
|
-
array of 8 search queries related to the keyword */
|
|
25251
|
+
/** items in SERP */
|
|
25195
25252
|
items?: (BaseSerpElementItem | undefined)[] | undefined;
|
|
25196
25253
|
[key: string]: any;
|
|
25197
25254
|
}
|
|
@@ -25524,7 +25581,7 @@ equals null */
|
|
|
25524
25581
|
/** types of search results in SERP
|
|
25525
25582
|
contains types of search results (items) found in SERP.
|
|
25526
25583
|
possible item types:
|
|
25527
|
-
answer_box, carousel, events, featured_snippet, hotels_pack, images, jobs, local_pack, map, organic, paid, people_also_ask, people_also_search, questions_and_answers,recipes, related_searches, shopping, top_stories, video */
|
|
25584
|
+
answer_box, carousel, events, featured_snippet, hotels_pack, images, jobs, local_pack, map, organic, paid, people_also_ask, people_also_search, questions_and_answers,recipes, related_searches, shopping, top_stories, video, ai_overview */
|
|
25528
25585
|
item_types?: (string | undefined)[] | undefined;
|
|
25529
25586
|
/** total number of results in SERP */
|
|
25530
25587
|
se_results_count?: number | undefined;
|
|
@@ -25568,7 +25625,7 @@ equals null */
|
|
|
25568
25625
|
/** types of search results in SERP
|
|
25569
25626
|
contains types of search results (items) found in SERP.
|
|
25570
25627
|
possible item types:
|
|
25571
|
-
answer_box, carousel, events, featured_snippet, hotels_pack, images, jobs, local_pack, map, organic, paid, people_also_ask, people_also_search, questions_and_answers,recipes, related_searches, shopping, top_stories, video */
|
|
25628
|
+
answer_box, carousel, events, featured_snippet, hotels_pack, images, jobs, local_pack, map, organic, paid, people_also_ask, people_also_search, questions_and_answers,recipes, related_searches, shopping, top_stories, video, ai_overview */
|
|
25572
25629
|
item_types?: (string | undefined)[] | undefined;
|
|
25573
25630
|
/** total number of results in SERP */
|
|
25574
25631
|
se_results_count?: number | undefined;
|
|
@@ -43691,7 +43748,12 @@ Spanish, es,
|
|
|
43691
43748
|
Swedish, sv,
|
|
43692
43749
|
Thai, th,
|
|
43693
43750
|
Ukrainian, uk,
|
|
43694
|
-
Vietnamese, vi
|
|
43751
|
+
Vietnamese, vi,
|
|
43752
|
+
Bulgarian, bg,
|
|
43753
|
+
Croatian, hr,
|
|
43754
|
+
Serbian, sr,
|
|
43755
|
+
Slovenian, sl,
|
|
43756
|
+
Bosnian, bs
|
|
43695
43757
|
example:
|
|
43696
43758
|
English */
|
|
43697
43759
|
language_name?: string | undefined;
|
|
@@ -43751,7 +43813,12 @@ Spanish, es,
|
|
|
43751
43813
|
Swedish, sv,
|
|
43752
43814
|
Thai, th,
|
|
43753
43815
|
Ukrainian, uk,
|
|
43754
|
-
Vietnamese, vi
|
|
43816
|
+
Vietnamese, vi,
|
|
43817
|
+
Bulgarian, bg,
|
|
43818
|
+
Croatian, hr,
|
|
43819
|
+
Serbian, sr,
|
|
43820
|
+
Slovenian, sl,
|
|
43821
|
+
Bosnian, bs
|
|
43755
43822
|
example:
|
|
43756
43823
|
English */
|
|
43757
43824
|
language_name?: string | undefined;
|
|
@@ -50873,7 +50940,7 @@ export interface IDataforseoLabsGooglePageIntersectionLiveResponseInfo extends I
|
|
|
50873
50940
|
[key: string]: any;
|
|
50874
50941
|
}
|
|
50875
50942
|
export declare class DataforseoLabsGoogleBulkTrafficEstimationLiveRequestInfo implements IDataforseoLabsGoogleBulkTrafficEstimationLiveRequestInfo {
|
|
50876
|
-
/** target domains and
|
|
50943
|
+
/** target domains, subdomains, and webpages
|
|
50877
50944
|
required field
|
|
50878
50945
|
you can specify domains, subdomains, and webpages in this field;
|
|
50879
50946
|
domains and subdomains should be specified without https:// and www.;
|
|
@@ -50939,7 +51006,7 @@ you will find the specified tag value in the data object of the response */
|
|
|
50939
51006
|
toJSON(data?: any): any;
|
|
50940
51007
|
}
|
|
50941
51008
|
export interface IDataforseoLabsGoogleBulkTrafficEstimationLiveRequestInfo {
|
|
50942
|
-
/** target domains and
|
|
51009
|
+
/** target domains, subdomains, and webpages
|
|
50943
51010
|
required field
|
|
50944
51011
|
you can specify domains, subdomains, and webpages in this field;
|
|
50945
51012
|
domains and subdomains should be specified without https:// and www.;
|
|
@@ -53839,7 +53906,7 @@ export interface IDataforseoLabsBingBulkKeywordDifficultyLiveResponseInfo extend
|
|
|
53839
53906
|
[key: string]: any;
|
|
53840
53907
|
}
|
|
53841
53908
|
export declare class DataforseoLabsBingBulkTrafficEstimationLiveRequestInfo implements IDataforseoLabsBingBulkTrafficEstimationLiveRequestInfo {
|
|
53842
|
-
/** target domains and
|
|
53909
|
+
/** target domains, subdomains, and webpages
|
|
53843
53910
|
required field
|
|
53844
53911
|
you can specify domains, subdomains, and webpages in this field;
|
|
53845
53912
|
domains and subdomains should be specified without https:// and www.;
|
|
@@ -53903,7 +53970,7 @@ you will find the specified tag value in the data object of the response */
|
|
|
53903
53970
|
toJSON(data?: any): any;
|
|
53904
53971
|
}
|
|
53905
53972
|
export interface IDataforseoLabsBingBulkTrafficEstimationLiveRequestInfo {
|
|
53906
|
-
/** target domains and
|
|
53973
|
+
/** target domains, subdomains, and webpages
|
|
53907
53974
|
required field
|
|
53908
53975
|
you can specify domains, subdomains, and webpages in this field;
|
|
53909
53976
|
domains and subdomains should be specified without https:// and www.;
|
|
@@ -63170,7 +63237,8 @@ export declare class KeywordsDataGoogleTrendsExploreTaskPostRequestInfo implemen
|
|
|
63170
63237
|
/** keywords
|
|
63171
63238
|
required field
|
|
63172
63239
|
the maximum number of keywords you can specify: 5
|
|
63173
|
-
the
|
|
63240
|
+
the maximum number of characters you can specify in a keyword: 100
|
|
63241
|
+
the minimum number of characters must be greater than 1
|
|
63174
63242
|
comma characters (,) in the specified keywords will be unset and ignored
|
|
63175
63243
|
Note: keywords cannot consist of a combination of the following characters: < > | \ " - + = ~ ! : * ( ) [ ] { }
|
|
63176
63244
|
Note: to obtain google_trends_topics_list and google_trends_queries_list items, specify no more than 1 keyword
|
|
@@ -63290,7 +63358,8 @@ export interface IKeywordsDataGoogleTrendsExploreTaskPostRequestInfo {
|
|
|
63290
63358
|
/** keywords
|
|
63291
63359
|
required field
|
|
63292
63360
|
the maximum number of keywords you can specify: 5
|
|
63293
|
-
the
|
|
63361
|
+
the maximum number of characters you can specify in a keyword: 100
|
|
63362
|
+
the minimum number of characters must be greater than 1
|
|
63294
63363
|
comma characters (,) in the specified keywords will be unset and ignored
|
|
63295
63364
|
Note: keywords cannot consist of a combination of the following characters: < > | \ " - + = ~ ! : * ( ) [ ] { }
|
|
63296
63365
|
Note: to obtain google_trends_topics_list and google_trends_queries_list items, specify no more than 1 keyword
|
|
@@ -63759,9 +63828,9 @@ export interface IKeywordsDataGoogleTrendsExploreTaskGetResponseInfo extends IBa
|
|
|
63759
63828
|
export declare class KeywordsDataGoogleTrendsExploreLiveRequestInfo implements IKeywordsDataGoogleTrendsExploreLiveRequestInfo {
|
|
63760
63829
|
/** keywords
|
|
63761
63830
|
required field
|
|
63762
|
-
if keywords are not specified, the results will not contain keyword-related data;
|
|
63763
63831
|
the maximum number of keywords you can specify: 5
|
|
63764
|
-
the
|
|
63832
|
+
the maximum number of characters you can specify in a keyword: 100
|
|
63833
|
+
the minimum number of characters must be greater than 1
|
|
63765
63834
|
comma characters (,) in the specified keywords will be unset and ignored
|
|
63766
63835
|
Note: keywords cannot consist of a combination of the following characters: < > | \ " - + = ~ ! : * ( ) [ ] { }
|
|
63767
63836
|
Note: to obtain google_trends_topics_list and google_trends_queries_list items, specify no more than 1 keyword
|
|
@@ -63858,9 +63927,9 @@ you will find the specified tag value in the data object of the response */
|
|
|
63858
63927
|
export interface IKeywordsDataGoogleTrendsExploreLiveRequestInfo {
|
|
63859
63928
|
/** keywords
|
|
63860
63929
|
required field
|
|
63861
|
-
if keywords are not specified, the results will not contain keyword-related data;
|
|
63862
63930
|
the maximum number of keywords you can specify: 5
|
|
63863
|
-
the
|
|
63931
|
+
the maximum number of characters you can specify in a keyword: 100
|
|
63932
|
+
the minimum number of characters must be greater than 1
|
|
63864
63933
|
comma characters (,) in the specified keywords will be unset and ignored
|
|
63865
63934
|
Note: keywords cannot consist of a combination of the following characters: < > | \ " - + = ~ ! : * ( ) [ ] { }
|
|
63866
63935
|
Note: to obtain google_trends_topics_list and google_trends_queries_list items, specify no more than 1 keyword
|
|
@@ -70787,6 +70856,15 @@ using this parameter, you can include only dofollow backlinks in the response an
|
|
|
70787
70856
|
example:
|
|
70788
70857
|
"backlinks_filters": ["dofollow", "=", true] */
|
|
70789
70858
|
backlinks_filters?: (any | undefined)[] | undefined;
|
|
70859
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
70860
|
+
optional field
|
|
70861
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
70862
|
+
possible values:
|
|
70863
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
70864
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
70865
|
+
default value: one_thousand
|
|
70866
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
70867
|
+
rank_scale?: string | undefined;
|
|
70790
70868
|
/** user-defined task identifier
|
|
70791
70869
|
optional field
|
|
70792
70870
|
the character limit is 255
|
|
@@ -70850,6 +70928,15 @@ using this parameter, you can include only dofollow backlinks in the response an
|
|
|
70850
70928
|
example:
|
|
70851
70929
|
"backlinks_filters": ["dofollow", "=", true] */
|
|
70852
70930
|
backlinks_filters?: (any | undefined)[] | undefined;
|
|
70931
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
70932
|
+
optional field
|
|
70933
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
70934
|
+
possible values:
|
|
70935
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
70936
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
70937
|
+
default value: one_thousand
|
|
70938
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
70939
|
+
rank_scale?: string | undefined;
|
|
70853
70940
|
/** user-defined task identifier
|
|
70854
70941
|
optional field
|
|
70855
70942
|
the character limit is 255
|
|
@@ -70979,8 +71066,7 @@ nofollow, noopener, noreferrer, external, ugc, sponsored */
|
|
|
70979
71066
|
} | undefined;
|
|
70980
71067
|
/** types of referring platforms
|
|
70981
71068
|
indicates referring platform types and and link count per each platform
|
|
70982
|
-
|
|
70983
|
-
cms, blogs, unknown, ecommerce, message-boards */
|
|
71069
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
70984
71070
|
referring_links_platform_types?: {
|
|
70985
71071
|
[key: string]: number;
|
|
70986
71072
|
} | undefined;
|
|
@@ -71082,8 +71168,7 @@ nofollow, noopener, noreferrer, external, ugc, sponsored */
|
|
|
71082
71168
|
} | undefined;
|
|
71083
71169
|
/** types of referring platforms
|
|
71084
71170
|
indicates referring platform types and and link count per each platform
|
|
71085
|
-
|
|
71086
|
-
cms, blogs, unknown, ecommerce, message-boards */
|
|
71171
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
71087
71172
|
referring_links_platform_types?: {
|
|
71088
71173
|
[key: string]: number;
|
|
71089
71174
|
} | undefined;
|
|
@@ -71152,6 +71237,15 @@ date format: "yyyy-mm-dd"
|
|
|
71152
71237
|
example:
|
|
71153
71238
|
"2019-01-15" */
|
|
71154
71239
|
date_to?: string | undefined;
|
|
71240
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
71241
|
+
optional field
|
|
71242
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
71243
|
+
possible values:
|
|
71244
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
71245
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
71246
|
+
default value: one_thousand
|
|
71247
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
71248
|
+
rank_scale?: string | undefined;
|
|
71155
71249
|
/** user-defined task identifier
|
|
71156
71250
|
optional field
|
|
71157
71251
|
the character limit is 255
|
|
@@ -71184,6 +71278,15 @@ date format: "yyyy-mm-dd"
|
|
|
71184
71278
|
example:
|
|
71185
71279
|
"2019-01-15" */
|
|
71186
71280
|
date_to?: string | undefined;
|
|
71281
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
71282
|
+
optional field
|
|
71283
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
71284
|
+
possible values:
|
|
71285
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
71286
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
71287
|
+
default value: one_thousand
|
|
71288
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
71289
|
+
rank_scale?: string | undefined;
|
|
71187
71290
|
/** user-defined task identifier
|
|
71188
71291
|
optional field
|
|
71189
71292
|
the character limit is 255
|
|
@@ -71277,7 +71380,8 @@ indicates link attributes of the referring links and link count per each attribu
|
|
|
71277
71380
|
[key: string]: number;
|
|
71278
71381
|
} | undefined;
|
|
71279
71382
|
/** types of referring platforms
|
|
71280
|
-
indicates referring platform types and and link count per each platform
|
|
71383
|
+
indicates referring platform types and and link count per each platform
|
|
71384
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
71281
71385
|
referring_links_platform_types?: {
|
|
71282
71386
|
[key: string]: number;
|
|
71283
71387
|
} | undefined;
|
|
@@ -71385,7 +71489,8 @@ indicates link attributes of the referring links and link count per each attribu
|
|
|
71385
71489
|
[key: string]: number;
|
|
71386
71490
|
} | undefined;
|
|
71387
71491
|
/** types of referring platforms
|
|
71388
|
-
indicates referring platform types and and link count per each platform
|
|
71492
|
+
indicates referring platform types and and link count per each platform
|
|
71493
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
71389
71494
|
referring_links_platform_types?: {
|
|
71390
71495
|
[key: string]: number;
|
|
71391
71496
|
} | undefined;
|
|
@@ -71594,6 +71699,15 @@ if set to true, the results will not include data on internal backlinks from sub
|
|
|
71594
71699
|
if set to false, internal links will be included in the results
|
|
71595
71700
|
default value: true */
|
|
71596
71701
|
exclude_internal_backlinks?: boolean | undefined;
|
|
71702
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
71703
|
+
optional field
|
|
71704
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
71705
|
+
possible values:
|
|
71706
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
71707
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
71708
|
+
default value: one_thousand
|
|
71709
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
71710
|
+
rank_scale?: string | undefined;
|
|
71597
71711
|
/** user-defined task identifier
|
|
71598
71712
|
optional field
|
|
71599
71713
|
the character limit is 255
|
|
@@ -71722,6 +71836,15 @@ if set to true, the results will not include data on internal backlinks from sub
|
|
|
71722
71836
|
if set to false, internal links will be included in the results
|
|
71723
71837
|
default value: true */
|
|
71724
71838
|
exclude_internal_backlinks?: boolean | undefined;
|
|
71839
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
71840
|
+
optional field
|
|
71841
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
71842
|
+
possible values:
|
|
71843
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
71844
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
71845
|
+
default value: one_thousand
|
|
71846
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
71847
|
+
rank_scale?: string | undefined;
|
|
71725
71848
|
/** user-defined task identifier
|
|
71726
71849
|
optional field
|
|
71727
71850
|
the character limit is 255
|
|
@@ -71816,9 +71939,7 @@ domain_from_rank is calculated based on the method for node ranking in a linked
|
|
|
71816
71939
|
learn more about the metric and how it is calculated in this help center article */
|
|
71817
71940
|
domain_from_rank?: number | undefined;
|
|
71818
71941
|
/** platform types of the referring domain
|
|
71819
|
-
|
|
71820
|
-
"cms",
|
|
71821
|
-
"blogs" */
|
|
71942
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
71822
71943
|
domain_from_platform_type?: (string | undefined)[] | undefined;
|
|
71823
71944
|
/** indicates if the domain is IP
|
|
71824
71945
|
if true, the domain functions as an IP address and does not have a domain name */
|
|
@@ -71971,9 +72092,7 @@ domain_from_rank is calculated based on the method for node ranking in a linked
|
|
|
71971
72092
|
learn more about the metric and how it is calculated in this help center article */
|
|
71972
72093
|
domain_from_rank?: number | undefined;
|
|
71973
72094
|
/** platform types of the referring domain
|
|
71974
|
-
|
|
71975
|
-
"cms",
|
|
71976
|
-
"blogs" */
|
|
72095
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
71977
72096
|
domain_from_platform_type?: (string | undefined)[] | undefined;
|
|
71978
72097
|
/** indicates if the domain is IP
|
|
71979
72098
|
if true, the domain functions as an IP address and does not have a domain name */
|
|
@@ -72245,6 +72364,15 @@ optional field
|
|
|
72245
72364
|
if set to false, the backlinks from subdomains of the target will be ommited and you won’t receive the same domain in the response;
|
|
72246
72365
|
default value: true */
|
|
72247
72366
|
exclude_internal_backlinks?: boolean | undefined;
|
|
72367
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
72368
|
+
optional field
|
|
72369
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
72370
|
+
possible values:
|
|
72371
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
72372
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
72373
|
+
default value: one_thousand
|
|
72374
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
72375
|
+
rank_scale?: string | undefined;
|
|
72248
72376
|
/** user-defined task identifier
|
|
72249
72377
|
optional field
|
|
72250
72378
|
the character limit is 255
|
|
@@ -72348,6 +72476,15 @@ optional field
|
|
|
72348
72476
|
if set to false, the backlinks from subdomains of the target will be ommited and you won’t receive the same domain in the response;
|
|
72349
72477
|
default value: true */
|
|
72350
72478
|
exclude_internal_backlinks?: boolean | undefined;
|
|
72479
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
72480
|
+
optional field
|
|
72481
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
72482
|
+
possible values:
|
|
72483
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
72484
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
72485
|
+
default value: one_thousand
|
|
72486
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
72487
|
+
rank_scale?: string | undefined;
|
|
72351
72488
|
/** user-defined task identifier
|
|
72352
72489
|
optional field
|
|
72353
72490
|
the character limit is 255
|
|
@@ -72423,7 +72560,8 @@ indicates link attributes of the referring links and link count per each attribu
|
|
|
72423
72560
|
[key: string]: number;
|
|
72424
72561
|
} | undefined;
|
|
72425
72562
|
/** types of referring platforms
|
|
72426
|
-
indicates referring platform types and and link count per each platform
|
|
72563
|
+
indicates referring platform types and and link count per each platform
|
|
72564
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
72427
72565
|
referring_links_platform_types?: {
|
|
72428
72566
|
[key: string]: number;
|
|
72429
72567
|
} | undefined;
|
|
@@ -72513,7 +72651,8 @@ indicates link attributes of the referring links and link count per each attribu
|
|
|
72513
72651
|
[key: string]: number;
|
|
72514
72652
|
} | undefined;
|
|
72515
72653
|
/** types of referring platforms
|
|
72516
|
-
indicates referring platform types and and link count per each platform
|
|
72654
|
+
indicates referring platform types and and link count per each platform
|
|
72655
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
72517
72656
|
referring_links_platform_types?: {
|
|
72518
72657
|
[key: string]: number;
|
|
72519
72658
|
} | undefined;
|
|
@@ -72673,6 +72812,15 @@ if set to true, the results will not include data on internal backlinks from sub
|
|
|
72673
72812
|
if set to false, internal links will be included in the results
|
|
72674
72813
|
default value: true */
|
|
72675
72814
|
exclude_internal_backlinks?: boolean | undefined;
|
|
72815
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
72816
|
+
optional field
|
|
72817
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
72818
|
+
possible values:
|
|
72819
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
72820
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
72821
|
+
default value: one_thousand
|
|
72822
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
72823
|
+
rank_scale?: string | undefined;
|
|
72676
72824
|
/** user-defined task identifier
|
|
72677
72825
|
optional field
|
|
72678
72826
|
the character limit is 255
|
|
@@ -72772,6 +72920,15 @@ if set to true, the results will not include data on internal backlinks from sub
|
|
|
72772
72920
|
if set to false, internal links will be included in the results
|
|
72773
72921
|
default value: true */
|
|
72774
72922
|
exclude_internal_backlinks?: boolean | undefined;
|
|
72923
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
72924
|
+
optional field
|
|
72925
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
72926
|
+
possible values:
|
|
72927
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
72928
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
72929
|
+
default value: one_thousand
|
|
72930
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
72931
|
+
rank_scale?: string | undefined;
|
|
72775
72932
|
/** user-defined task identifier
|
|
72776
72933
|
optional field
|
|
72777
72934
|
the character limit is 255
|
|
@@ -72949,7 +73106,8 @@ indicates link attributes of the referring links and link count per each attribu
|
|
|
72949
73106
|
[key: string]: number;
|
|
72950
73107
|
} | undefined;
|
|
72951
73108
|
/** types of referring platforms
|
|
72952
|
-
indicates referring platform types and and link count per each platform
|
|
73109
|
+
indicates referring platform types and and link count per each platform
|
|
73110
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
72953
73111
|
referring_links_platform_types?: {
|
|
72954
73112
|
[key: string]: number;
|
|
72955
73113
|
} | undefined;
|
|
@@ -73035,7 +73193,8 @@ indicates link attributes of the referring links and link count per each attribu
|
|
|
73035
73193
|
[key: string]: number;
|
|
73036
73194
|
} | undefined;
|
|
73037
73195
|
/** types of referring platforms
|
|
73038
|
-
indicates referring platform types and and link count per each platform
|
|
73196
|
+
indicates referring platform types and and link count per each platform
|
|
73197
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
73039
73198
|
referring_links_platform_types?: {
|
|
73040
73199
|
[key: string]: number;
|
|
73041
73200
|
} | undefined;
|
|
@@ -73313,6 +73472,15 @@ optional field
|
|
|
73313
73472
|
if set to false, backlinks from the subdomains of the target domain will be ommited and you won’t receive the same domain in the response;
|
|
73314
73473
|
default value: true */
|
|
73315
73474
|
exclude_internal_backlinks?: boolean | undefined;
|
|
73475
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
73476
|
+
optional field
|
|
73477
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
73478
|
+
possible values:
|
|
73479
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
73480
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
73481
|
+
default value: one_thousand
|
|
73482
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
73483
|
+
rank_scale?: string | undefined;
|
|
73316
73484
|
/** user-defined task identifier
|
|
73317
73485
|
optional field
|
|
73318
73486
|
the character limit is 255
|
|
@@ -73416,6 +73584,15 @@ optional field
|
|
|
73416
73584
|
if set to false, backlinks from the subdomains of the target domain will be ommited and you won’t receive the same domain in the response;
|
|
73417
73585
|
default value: true */
|
|
73418
73586
|
exclude_internal_backlinks?: boolean | undefined;
|
|
73587
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
73588
|
+
optional field
|
|
73589
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
73590
|
+
possible values:
|
|
73591
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
73592
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
73593
|
+
default value: one_thousand
|
|
73594
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
73595
|
+
rank_scale?: string | undefined;
|
|
73419
73596
|
/** user-defined task identifier
|
|
73420
73597
|
optional field
|
|
73421
73598
|
the character limit is 255
|
|
@@ -73471,6 +73648,8 @@ number of IP addresses pointing to this page */
|
|
|
73471
73648
|
referring_subnets?: number | undefined;
|
|
73472
73649
|
/** indicates the number of pages pointing to the relevant url */
|
|
73473
73650
|
referring_pages?: number | undefined;
|
|
73651
|
+
/** number of referring pages pointing at least one nofollow link to the page */
|
|
73652
|
+
referring_pages_nofollow?: number | undefined;
|
|
73474
73653
|
/** top-level domains of the referring links
|
|
73475
73654
|
contains top level domains and referring link count per each */
|
|
73476
73655
|
referring_links_tld?: {
|
|
@@ -73489,7 +73668,8 @@ indicates link attributes of the referring links and link count per each attribu
|
|
|
73489
73668
|
[key: string]: number;
|
|
73490
73669
|
} | undefined;
|
|
73491
73670
|
/** types of referring platforms
|
|
73492
|
-
indicates referring platform types and and link count per each platform
|
|
73671
|
+
indicates referring platform types and and link count per each platform
|
|
73672
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
73493
73673
|
referring_links_platform_types?: {
|
|
73494
73674
|
[key: string]: number;
|
|
73495
73675
|
} | undefined;
|
|
@@ -73506,8 +73686,6 @@ indicates ISO country codes of the domains where the referring links are located
|
|
|
73506
73686
|
referring_links_countries?: {
|
|
73507
73687
|
[key: string]: number;
|
|
73508
73688
|
} | undefined;
|
|
73509
|
-
/** number of referring pages pointing at least one nofollow link to the page */
|
|
73510
|
-
referring_pages_nofollow?: number | undefined;
|
|
73511
73689
|
[key: string]: any;
|
|
73512
73690
|
constructor(data?: IBacklinksDomainPagesSummaryLiveItem);
|
|
73513
73691
|
init(_data?: any): void;
|
|
@@ -73561,6 +73739,8 @@ number of IP addresses pointing to this page */
|
|
|
73561
73739
|
referring_subnets?: number | undefined;
|
|
73562
73740
|
/** indicates the number of pages pointing to the relevant url */
|
|
73563
73741
|
referring_pages?: number | undefined;
|
|
73742
|
+
/** number of referring pages pointing at least one nofollow link to the page */
|
|
73743
|
+
referring_pages_nofollow?: number | undefined;
|
|
73564
73744
|
/** top-level domains of the referring links
|
|
73565
73745
|
contains top level domains and referring link count per each */
|
|
73566
73746
|
referring_links_tld?: {
|
|
@@ -73579,7 +73759,8 @@ indicates link attributes of the referring links and link count per each attribu
|
|
|
73579
73759
|
[key: string]: number;
|
|
73580
73760
|
} | undefined;
|
|
73581
73761
|
/** types of referring platforms
|
|
73582
|
-
indicates referring platform types and and link count per each platform
|
|
73762
|
+
indicates referring platform types and and link count per each platform
|
|
73763
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
73583
73764
|
referring_links_platform_types?: {
|
|
73584
73765
|
[key: string]: number;
|
|
73585
73766
|
} | undefined;
|
|
@@ -73596,8 +73777,6 @@ indicates ISO country codes of the domains where the referring links are located
|
|
|
73596
73777
|
referring_links_countries?: {
|
|
73597
73778
|
[key: string]: number;
|
|
73598
73779
|
} | undefined;
|
|
73599
|
-
/** number of referring pages pointing at least one nofollow link to the page */
|
|
73600
|
-
referring_pages_nofollow?: number | undefined;
|
|
73601
73780
|
[key: string]: any;
|
|
73602
73781
|
}
|
|
73603
73782
|
export declare class BacklinksDomainPagesSummaryLiveResultInfo implements IBacklinksDomainPagesSummaryLiveResultInfo {
|
|
@@ -73745,6 +73924,15 @@ optional field
|
|
|
73745
73924
|
if set to false, the backlinks from subdomains of the target will be ommited and you won’t receive the same domain in the response;
|
|
73746
73925
|
default value: true */
|
|
73747
73926
|
exclude_internal_backlinks?: boolean | undefined;
|
|
73927
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
73928
|
+
optional field
|
|
73929
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
73930
|
+
possible values:
|
|
73931
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
73932
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
73933
|
+
default value: one_thousand
|
|
73934
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
73935
|
+
rank_scale?: string | undefined;
|
|
73748
73936
|
/** user-defined task identifier
|
|
73749
73937
|
optional field
|
|
73750
73938
|
the character limit is 255
|
|
@@ -73848,6 +74036,15 @@ optional field
|
|
|
73848
74036
|
if set to false, the backlinks from subdomains of the target will be ommited and you won’t receive the same domain in the response;
|
|
73849
74037
|
default value: true */
|
|
73850
74038
|
exclude_internal_backlinks?: boolean | undefined;
|
|
74039
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
74040
|
+
optional field
|
|
74041
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
74042
|
+
possible values:
|
|
74043
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
74044
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
74045
|
+
default value: one_thousand
|
|
74046
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
74047
|
+
rank_scale?: string | undefined;
|
|
73851
74048
|
/** user-defined task identifier
|
|
73852
74049
|
optional field
|
|
73853
74050
|
the character limit is 255
|
|
@@ -73925,7 +74122,8 @@ indicates link attributes of the referring links and link count per each attribu
|
|
|
73925
74122
|
[key: string]: number;
|
|
73926
74123
|
} | undefined;
|
|
73927
74124
|
/** types of referring platforms
|
|
73928
|
-
indicates referring platform types and link count per each platform
|
|
74125
|
+
indicates referring platform types and link count per each platform
|
|
74126
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
73929
74127
|
referring_links_platform_types?: {
|
|
73930
74128
|
[key: string]: number;
|
|
73931
74129
|
} | undefined;
|
|
@@ -74017,7 +74215,8 @@ indicates link attributes of the referring links and link count per each attribu
|
|
|
74017
74215
|
[key: string]: number;
|
|
74018
74216
|
} | undefined;
|
|
74019
74217
|
/** types of referring platforms
|
|
74020
|
-
indicates referring platform types and link count per each platform
|
|
74218
|
+
indicates referring platform types and link count per each platform
|
|
74219
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
74021
74220
|
referring_links_platform_types?: {
|
|
74022
74221
|
[key: string]: number;
|
|
74023
74222
|
} | undefined;
|
|
@@ -74190,6 +74389,15 @@ optional field
|
|
|
74190
74389
|
if set to false, the backlinks from subdomains of the target will be ommited and you won’t receive the same domain in the response;
|
|
74191
74390
|
default value: true */
|
|
74192
74391
|
exclude_internal_backlinks?: boolean | undefined;
|
|
74392
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
74393
|
+
optional field
|
|
74394
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
74395
|
+
possible values:
|
|
74396
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
74397
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
74398
|
+
default value: one_thousand
|
|
74399
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
74400
|
+
rank_scale?: string | undefined;
|
|
74193
74401
|
/** user-defined task identifier
|
|
74194
74402
|
optional field
|
|
74195
74403
|
the character limit is 255
|
|
@@ -74298,6 +74506,15 @@ optional field
|
|
|
74298
74506
|
if set to false, the backlinks from subdomains of the target will be ommited and you won’t receive the same domain in the response;
|
|
74299
74507
|
default value: true */
|
|
74300
74508
|
exclude_internal_backlinks?: boolean | undefined;
|
|
74509
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
74510
|
+
optional field
|
|
74511
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
74512
|
+
possible values:
|
|
74513
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
74514
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
74515
|
+
default value: one_thousand
|
|
74516
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
74517
|
+
rank_scale?: string | undefined;
|
|
74301
74518
|
/** user-defined task identifier
|
|
74302
74519
|
optional field
|
|
74303
74520
|
the character limit is 255
|
|
@@ -74371,7 +74588,8 @@ indicates link attributes of the referring links and link count per each attribu
|
|
|
74371
74588
|
[key: string]: number;
|
|
74372
74589
|
} | undefined;
|
|
74373
74590
|
/** types of referring platforms
|
|
74374
|
-
indicates referring platform types and and link count per each platform
|
|
74591
|
+
indicates referring platform types and and link count per each platform
|
|
74592
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
74375
74593
|
referring_links_platform_types?: {
|
|
74376
74594
|
[key: string]: number;
|
|
74377
74595
|
} | undefined;
|
|
@@ -74459,7 +74677,8 @@ indicates link attributes of the referring links and link count per each attribu
|
|
|
74459
74677
|
[key: string]: number;
|
|
74460
74678
|
} | undefined;
|
|
74461
74679
|
/** types of referring platforms
|
|
74462
|
-
indicates referring platform types and and link count per each platform
|
|
74680
|
+
indicates referring platform types and and link count per each platform
|
|
74681
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
74463
74682
|
referring_links_platform_types?: {
|
|
74464
74683
|
[key: string]: number;
|
|
74465
74684
|
} | undefined;
|
|
@@ -74592,6 +74811,15 @@ if set to true, the results will not include data on internal backlinks from sub
|
|
|
74592
74811
|
if set to false, internal links will be included in the results
|
|
74593
74812
|
default value: true */
|
|
74594
74813
|
exclude_internal_backlinks?: boolean | undefined;
|
|
74814
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
74815
|
+
optional field
|
|
74816
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
74817
|
+
possible values:
|
|
74818
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
74819
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
74820
|
+
default value: one_thousand
|
|
74821
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
74822
|
+
rank_scale?: string | undefined;
|
|
74595
74823
|
/** user-defined task identifier
|
|
74596
74824
|
optional field
|
|
74597
74825
|
the character limit is 255
|
|
@@ -74664,6 +74892,15 @@ if set to true, the results will not include data on internal backlinks from sub
|
|
|
74664
74892
|
if set to false, internal links will be included in the results
|
|
74665
74893
|
default value: true */
|
|
74666
74894
|
exclude_internal_backlinks?: boolean | undefined;
|
|
74895
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
74896
|
+
optional field
|
|
74897
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
74898
|
+
possible values:
|
|
74899
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
74900
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
74901
|
+
default value: one_thousand
|
|
74902
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
74903
|
+
rank_scale?: string | undefined;
|
|
74667
74904
|
/** user-defined task identifier
|
|
74668
74905
|
optional field
|
|
74669
74906
|
the character limit is 255
|
|
@@ -74871,6 +75108,15 @@ all – results are based on all backlinks;
|
|
|
74871
75108
|
partial – results are based on the intersecting backlinks only;
|
|
74872
75109
|
default value: all */
|
|
74873
75110
|
intersection_mode?: string | undefined;
|
|
75111
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
75112
|
+
optional field
|
|
75113
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
75114
|
+
possible values:
|
|
75115
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
75116
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
75117
|
+
default value: one_thousand
|
|
75118
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
75119
|
+
rank_scale?: string | undefined;
|
|
74874
75120
|
/** user-defined task identifier
|
|
74875
75121
|
optional field
|
|
74876
75122
|
the character limit is 255
|
|
@@ -75000,6 +75246,15 @@ all – results are based on all backlinks;
|
|
|
75000
75246
|
partial – results are based on the intersecting backlinks only;
|
|
75001
75247
|
default value: all */
|
|
75002
75248
|
intersection_mode?: string | undefined;
|
|
75249
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
75250
|
+
optional field
|
|
75251
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
75252
|
+
possible values:
|
|
75253
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
75254
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
75255
|
+
default value: one_thousand
|
|
75256
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
75257
|
+
rank_scale?: string | undefined;
|
|
75003
75258
|
/** user-defined task identifier
|
|
75004
75259
|
optional field
|
|
75005
75260
|
the character limit is 255
|
|
@@ -75072,7 +75327,8 @@ indicates link attributes of the referring links and the link count per each att
|
|
|
75072
75327
|
[key: string]: number;
|
|
75073
75328
|
} | undefined;
|
|
75074
75329
|
/** types of referring platforms
|
|
75075
|
-
indicates referring platform types and link count per each platform
|
|
75330
|
+
indicates referring platform types and link count per each platform
|
|
75331
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
75076
75332
|
referring_links_platform_types?: {
|
|
75077
75333
|
[key: string]: number;
|
|
75078
75334
|
} | undefined;
|
|
@@ -75157,7 +75413,8 @@ indicates link attributes of the referring links and the link count per each att
|
|
|
75157
75413
|
[key: string]: number;
|
|
75158
75414
|
} | undefined;
|
|
75159
75415
|
/** types of referring platforms
|
|
75160
|
-
indicates referring platform types and link count per each platform
|
|
75416
|
+
indicates referring platform types and link count per each platform
|
|
75417
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
75161
75418
|
referring_links_platform_types?: {
|
|
75162
75419
|
[key: string]: number;
|
|
75163
75420
|
} | undefined;
|
|
@@ -75377,6 +75634,15 @@ all – results are based on all backlinks;
|
|
|
75377
75634
|
partial – results are based on the intersecting backlinks only;
|
|
75378
75635
|
default value: all */
|
|
75379
75636
|
intersection_mode?: string | undefined;
|
|
75637
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
75638
|
+
optional field
|
|
75639
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
75640
|
+
possible values:
|
|
75641
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
75642
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
75643
|
+
default value: one_thousand
|
|
75644
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
75645
|
+
rank_scale?: string | undefined;
|
|
75380
75646
|
/** user-defined task identifier
|
|
75381
75647
|
optional field
|
|
75382
75648
|
the character limit is 255
|
|
@@ -75496,6 +75762,15 @@ all – results are based on all backlinks;
|
|
|
75496
75762
|
partial – results are based on the intersecting backlinks only;
|
|
75497
75763
|
default value: all */
|
|
75498
75764
|
intersection_mode?: string | undefined;
|
|
75765
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
75766
|
+
optional field
|
|
75767
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
75768
|
+
possible values:
|
|
75769
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
75770
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
75771
|
+
default value: one_thousand
|
|
75772
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
75773
|
+
rank_scale?: string | undefined;
|
|
75499
75774
|
/** user-defined task identifier
|
|
75500
75775
|
optional field
|
|
75501
75776
|
the character limit is 255
|
|
@@ -75546,9 +75821,7 @@ domain_from_rank is calculated based on the method for node ranking in a linked
|
|
|
75546
75821
|
learn more about the metric and how it is calculated in this help center article */
|
|
75547
75822
|
domain_from_rank?: number | undefined;
|
|
75548
75823
|
/** platform types of the referring domain
|
|
75549
|
-
|
|
75550
|
-
"cms",
|
|
75551
|
-
"blogs" */
|
|
75824
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
75552
75825
|
domain_from_platform_type?: (string | undefined)[] | undefined;
|
|
75553
75826
|
/** indicates if the domain is IP
|
|
75554
75827
|
if true, the domain functions as an IP address and does not have a domain name */
|
|
@@ -75696,9 +75969,7 @@ domain_from_rank is calculated based on the method for node ranking in a linked
|
|
|
75696
75969
|
learn more about the metric and how it is calculated in this help center article */
|
|
75697
75970
|
domain_from_rank?: number | undefined;
|
|
75698
75971
|
/** platform types of the referring domain
|
|
75699
|
-
|
|
75700
|
-
"cms",
|
|
75701
|
-
"blogs" */
|
|
75972
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
75702
75973
|
domain_from_platform_type?: (string | undefined)[] | undefined;
|
|
75703
75974
|
/** indicates if the domain is IP
|
|
75704
75975
|
if true, the domain functions as an IP address and does not have a domain name */
|
|
@@ -75925,6 +76196,15 @@ optional field
|
|
|
75925
76196
|
if set to false, the subdomains will be ignored
|
|
75926
76197
|
default value: true */
|
|
75927
76198
|
include_subdomains?: boolean | undefined;
|
|
76199
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
76200
|
+
optional field
|
|
76201
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
76202
|
+
possible values:
|
|
76203
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
76204
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
76205
|
+
default value: one_thousand
|
|
76206
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
76207
|
+
rank_scale?: string | undefined;
|
|
75928
76208
|
/** user-defined task identifier
|
|
75929
76209
|
optional field
|
|
75930
76210
|
the character limit is 255
|
|
@@ -75980,6 +76260,15 @@ optional field
|
|
|
75980
76260
|
if set to false, the subdomains will be ignored
|
|
75981
76261
|
default value: true */
|
|
75982
76262
|
include_subdomains?: boolean | undefined;
|
|
76263
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
76264
|
+
optional field
|
|
76265
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
76266
|
+
possible values:
|
|
76267
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
76268
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
76269
|
+
default value: one_thousand
|
|
76270
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
76271
|
+
rank_scale?: string | undefined;
|
|
75983
76272
|
/** user-defined task identifier
|
|
75984
76273
|
optional field
|
|
75985
76274
|
the character limit is 255
|
|
@@ -76400,6 +76689,15 @@ example:
|
|
|
76400
76689
|
"www.trustpilot.com"
|
|
76401
76690
|
] */
|
|
76402
76691
|
targets?: string[];
|
|
76692
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
76693
|
+
optional field
|
|
76694
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
76695
|
+
possible values:
|
|
76696
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
76697
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
76698
|
+
default value: one_thousand
|
|
76699
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
76700
|
+
rank_scale?: string | undefined;
|
|
76403
76701
|
/** user-defined task identifier
|
|
76404
76702
|
optional field
|
|
76405
76703
|
the character limit is 255
|
|
@@ -76432,6 +76730,15 @@ example:
|
|
|
76432
76730
|
"www.trustpilot.com"
|
|
76433
76731
|
] */
|
|
76434
76732
|
targets?: string[];
|
|
76733
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
76734
|
+
optional field
|
|
76735
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
76736
|
+
possible values:
|
|
76737
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
76738
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
76739
|
+
default value: one_thousand
|
|
76740
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
76741
|
+
rank_scale?: string | undefined;
|
|
76435
76742
|
/** user-defined task identifier
|
|
76436
76743
|
optional field
|
|
76437
76744
|
the character limit is 255
|
|
@@ -77241,6 +77548,15 @@ optional field
|
|
|
77241
77548
|
if set to false, the subdomains will be ignored
|
|
77242
77549
|
default value: true */
|
|
77243
77550
|
include_subdomains?: boolean | undefined;
|
|
77551
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
77552
|
+
optional field
|
|
77553
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
77554
|
+
possible values:
|
|
77555
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
77556
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
77557
|
+
default value: one_thousand
|
|
77558
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
77559
|
+
rank_scale?: string | undefined;
|
|
77244
77560
|
/** user-defined task identifier
|
|
77245
77561
|
optional field
|
|
77246
77562
|
the character limit is 255
|
|
@@ -77266,6 +77582,15 @@ optional field
|
|
|
77266
77582
|
if set to false, the subdomains will be ignored
|
|
77267
77583
|
default value: true */
|
|
77268
77584
|
include_subdomains?: boolean | undefined;
|
|
77585
|
+
/** defines the scale used for calculating and displaying the rank, domain_from_rank, and page_from_rank values
|
|
77586
|
+
optional field
|
|
77587
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
77588
|
+
possible values:
|
|
77589
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
77590
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
77591
|
+
default value: one_thousand
|
|
77592
|
+
learn more about how this parameter works and how ranking metrics are calculated in this Help Center article */
|
|
77593
|
+
rank_scale?: string | undefined;
|
|
77269
77594
|
/** user-defined task identifier
|
|
77270
77595
|
optional field
|
|
77271
77596
|
the character limit is 255
|
|
@@ -77345,7 +77670,8 @@ indicates link attributes of the referring links and link count per each attribu
|
|
|
77345
77670
|
[key: string]: number;
|
|
77346
77671
|
} | undefined;
|
|
77347
77672
|
/** types of referring platforms
|
|
77348
|
-
indicates referring platform types and and link count per each platform
|
|
77673
|
+
indicates referring platform types and and link count per each platform
|
|
77674
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
77349
77675
|
referring_links_platform_types?: {
|
|
77350
77676
|
[key: string]: number;
|
|
77351
77677
|
} | undefined;
|
|
@@ -77439,7 +77765,8 @@ indicates link attributes of the referring links and link count per each attribu
|
|
|
77439
77765
|
[key: string]: number;
|
|
77440
77766
|
} | undefined;
|
|
77441
77767
|
/** types of referring platforms
|
|
77442
|
-
indicates referring platform types and and link count per each platform
|
|
77768
|
+
indicates referring platform types and and link count per each platform
|
|
77769
|
+
possible values: cms, blogs, ecommerce, message-boards, wikis, news, organization */
|
|
77443
77770
|
referring_links_platform_types?: {
|
|
77444
77771
|
[key: string]: number;
|
|
77445
77772
|
} | undefined;
|
|
@@ -80150,40 +80477,6 @@ the amount of time the browser needs to complete downloading a resource */
|
|
|
80150
80477
|
is_render_blocking?: boolean | undefined;
|
|
80151
80478
|
[key: string]: any;
|
|
80152
80479
|
}
|
|
80153
|
-
export declare class ScriptResourceElementItem extends BaseOnPageResourceItemInfo implements IScriptResourceElementItem {
|
|
80154
|
-
/** resource properties
|
|
80155
|
-
the value depends on the resource_type
|
|
80156
|
-
note that if you do not indicate a url when setting a task, resource’s meta is returned based on the data from the page where our crawler first saw the resource;
|
|
80157
|
-
to obtain resource’s meta from a particular url, specify that URL when setting a task */
|
|
80158
|
-
meta?: ResourceMetaInfo | undefined;
|
|
80159
|
-
/** resource fething time range */
|
|
80160
|
-
fetch_timing?: FetchTiming | undefined;
|
|
80161
|
-
/** indicates the expected type of resource
|
|
80162
|
-
for example, if "resource_type": "broken", accept_type will indicate the type of the broken resource
|
|
80163
|
-
possible values:
|
|
80164
|
-
any, none, image, sitemap, robots, script, stylesheet, redirect, html, text, other, font */
|
|
80165
|
-
accept_type?: string | undefined;
|
|
80166
|
-
[key: string]: any;
|
|
80167
|
-
constructor(data?: IScriptResourceElementItem);
|
|
80168
|
-
init(_data?: any): void;
|
|
80169
|
-
static fromJS(data: any): ScriptResourceElementItem;
|
|
80170
|
-
toJSON(data?: any): any;
|
|
80171
|
-
}
|
|
80172
|
-
export interface IScriptResourceElementItem extends IBaseOnPageResourceItemInfo {
|
|
80173
|
-
/** resource properties
|
|
80174
|
-
the value depends on the resource_type
|
|
80175
|
-
note that if you do not indicate a url when setting a task, resource’s meta is returned based on the data from the page where our crawler first saw the resource;
|
|
80176
|
-
to obtain resource’s meta from a particular url, specify that URL when setting a task */
|
|
80177
|
-
meta?: ResourceMetaInfo | undefined;
|
|
80178
|
-
/** resource fething time range */
|
|
80179
|
-
fetch_timing?: FetchTiming | undefined;
|
|
80180
|
-
/** indicates the expected type of resource
|
|
80181
|
-
for example, if "resource_type": "broken", accept_type will indicate the type of the broken resource
|
|
80182
|
-
possible values:
|
|
80183
|
-
any, none, image, sitemap, robots, script, stylesheet, redirect, html, text, other, font */
|
|
80184
|
-
accept_type?: string | undefined;
|
|
80185
|
-
[key: string]: any;
|
|
80186
|
-
}
|
|
80187
80480
|
export declare class OnPageResourcesResultInfo implements IOnPageResourcesResultInfo {
|
|
80188
80481
|
/** status of the crawling session
|
|
80189
80482
|
possible values: in_progress, finished */
|
|
@@ -80230,6 +80523,40 @@ export interface IOnPageResourcesTaskInfo extends IBaseResponseTaskInfo {
|
|
|
80230
80523
|
result?: (OnPageResourcesResultInfo | undefined)[] | undefined;
|
|
80231
80524
|
[key: string]: any;
|
|
80232
80525
|
}
|
|
80526
|
+
export declare class ScriptResourceElementItem extends BaseOnPageResourceItemInfo implements IScriptResourceElementItem {
|
|
80527
|
+
/** resource properties
|
|
80528
|
+
the value depends on the resource_type
|
|
80529
|
+
note that if you do not indicate a url when setting a task, resource’s meta is returned based on the data from the page where our crawler first saw the resource;
|
|
80530
|
+
to obtain resource’s meta from a particular url, specify that URL when setting a task */
|
|
80531
|
+
meta?: ResourceMetaInfo | undefined;
|
|
80532
|
+
/** resource fething time range */
|
|
80533
|
+
fetch_timing?: FetchTiming | undefined;
|
|
80534
|
+
/** indicates the expected type of resource
|
|
80535
|
+
for example, if "resource_type": "broken", accept_type will indicate the type of the broken resource
|
|
80536
|
+
possible values:
|
|
80537
|
+
any, none, image, sitemap, robots, script, stylesheet, redirect, html, text, other, font */
|
|
80538
|
+
accept_type?: string | undefined;
|
|
80539
|
+
[key: string]: any;
|
|
80540
|
+
constructor(data?: IScriptResourceElementItem);
|
|
80541
|
+
init(_data?: any): void;
|
|
80542
|
+
static fromJS(data: any): ScriptResourceElementItem;
|
|
80543
|
+
toJSON(data?: any): any;
|
|
80544
|
+
}
|
|
80545
|
+
export interface IScriptResourceElementItem extends IBaseOnPageResourceItemInfo {
|
|
80546
|
+
/** resource properties
|
|
80547
|
+
the value depends on the resource_type
|
|
80548
|
+
note that if you do not indicate a url when setting a task, resource’s meta is returned based on the data from the page where our crawler first saw the resource;
|
|
80549
|
+
to obtain resource’s meta from a particular url, specify that URL when setting a task */
|
|
80550
|
+
meta?: ResourceMetaInfo | undefined;
|
|
80551
|
+
/** resource fething time range */
|
|
80552
|
+
fetch_timing?: FetchTiming | undefined;
|
|
80553
|
+
/** indicates the expected type of resource
|
|
80554
|
+
for example, if "resource_type": "broken", accept_type will indicate the type of the broken resource
|
|
80555
|
+
possible values:
|
|
80556
|
+
any, none, image, sitemap, robots, script, stylesheet, redirect, html, text, other, font */
|
|
80557
|
+
accept_type?: string | undefined;
|
|
80558
|
+
[key: string]: any;
|
|
80559
|
+
}
|
|
80233
80560
|
export declare class ImageResourceElementItem extends BaseOnPageResourceItemInfo implements IImageResourceElementItem {
|
|
80234
80561
|
/** resource properties
|
|
80235
80562
|
the value depends on the resource_type
|
|
@@ -84080,6 +84407,15 @@ by specifying the unique offset_token value from the response array, you will ge
|
|
|
84080
84407
|
offset_token values are unique for each subsequent task
|
|
84081
84408
|
Note: if the offset_token is specified in the request, all other parameters except limit will not be taken into account when processing a task */
|
|
84082
84409
|
offset_token?: string | undefined;
|
|
84410
|
+
/** defines the scale used for calculating and displaying the domain_rank, and url_rank values
|
|
84411
|
+
optional field
|
|
84412
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
84413
|
+
possible values:
|
|
84414
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
84415
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
84416
|
+
default value: one_thousand
|
|
84417
|
+
learn more about how this parameter works in this Help Center article */
|
|
84418
|
+
rank_scale?: string | undefined;
|
|
84083
84419
|
/** user-defined task identifier
|
|
84084
84420
|
optional field
|
|
84085
84421
|
the character limit is 255
|
|
@@ -84180,6 +84516,15 @@ by specifying the unique offset_token value from the response array, you will ge
|
|
|
84180
84516
|
offset_token values are unique for each subsequent task
|
|
84181
84517
|
Note: if the offset_token is specified in the request, all other parameters except limit will not be taken into account when processing a task */
|
|
84182
84518
|
offset_token?: string | undefined;
|
|
84519
|
+
/** defines the scale used for calculating and displaying the domain_rank, and url_rank values
|
|
84520
|
+
optional field
|
|
84521
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
84522
|
+
possible values:
|
|
84523
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
84524
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
84525
|
+
default value: one_thousand
|
|
84526
|
+
learn more about how this parameter works in this Help Center article */
|
|
84527
|
+
rank_scale?: string | undefined;
|
|
84183
84528
|
/** user-defined task identifier
|
|
84184
84529
|
optional field
|
|
84185
84530
|
the character limit is 255
|
|
@@ -84571,6 +84916,15 @@ example:
|
|
|
84571
84916
|
["content_info.text_category","has",10994]]]
|
|
84572
84917
|
for more information about filters, please refer to Content Analysis API – Filters */
|
|
84573
84918
|
initial_dataset_filters?: (any | undefined)[] | undefined;
|
|
84919
|
+
/** defines the scale used for calculating and displaying the rank values
|
|
84920
|
+
optional field
|
|
84921
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
84922
|
+
possible values:
|
|
84923
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
84924
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
84925
|
+
default value: one_thousand
|
|
84926
|
+
learn more about how this parameter works in this Help Center article */
|
|
84927
|
+
rank_scale?: string | undefined;
|
|
84574
84928
|
/** user-defined task identifier
|
|
84575
84929
|
optional field
|
|
84576
84930
|
the character limit is 255
|
|
@@ -84656,6 +85010,15 @@ example:
|
|
|
84656
85010
|
["content_info.text_category","has",10994]]]
|
|
84657
85011
|
for more information about filters, please refer to Content Analysis API – Filters */
|
|
84658
85012
|
initial_dataset_filters?: (any | undefined)[] | undefined;
|
|
85013
|
+
/** defines the scale used for calculating and displaying the rank values
|
|
85014
|
+
optional field
|
|
85015
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
85016
|
+
possible values:
|
|
85017
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
85018
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
85019
|
+
default value: one_thousand
|
|
85020
|
+
learn more about how this parameter works in this Help Center article */
|
|
85021
|
+
rank_scale?: string | undefined;
|
|
84659
85022
|
/** user-defined task identifier
|
|
84660
85023
|
optional field
|
|
84661
85024
|
the character limit is 255
|
|
@@ -84868,6 +85231,15 @@ example:
|
|
|
84868
85231
|
["content_info.text_category","has",10994]]]
|
|
84869
85232
|
for more information about filters, please refer to Content Analysis API – Filters */
|
|
84870
85233
|
initial_dataset_filters?: (any | undefined)[] | undefined;
|
|
85234
|
+
/** defines the scale used for calculating and displaying the rank values
|
|
85235
|
+
optional field
|
|
85236
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
85237
|
+
possible values:
|
|
85238
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
85239
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
85240
|
+
default value: one_thousand
|
|
85241
|
+
learn more about how this parameter works in this Help Center article */
|
|
85242
|
+
rank_scale?: string | undefined;
|
|
84871
85243
|
/** user-defined task identifier
|
|
84872
85244
|
optional field
|
|
84873
85245
|
the character limit is 255
|
|
@@ -84952,6 +85324,15 @@ example:
|
|
|
84952
85324
|
["content_info.text_category","has",10994]]]
|
|
84953
85325
|
for more information about filters, please refer to Content Analysis API – Filters */
|
|
84954
85326
|
initial_dataset_filters?: (any | undefined)[] | undefined;
|
|
85327
|
+
/** defines the scale used for calculating and displaying the rank values
|
|
85328
|
+
optional field
|
|
85329
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
85330
|
+
possible values:
|
|
85331
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
85332
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
85333
|
+
default value: one_thousand
|
|
85334
|
+
learn more about how this parameter works in this Help Center article */
|
|
85335
|
+
rank_scale?: string | undefined;
|
|
84955
85336
|
/** user-defined task identifier
|
|
84956
85337
|
optional field
|
|
84957
85338
|
the character limit is 255
|
|
@@ -85135,6 +85516,15 @@ example:
|
|
|
85135
85516
|
["content_info.text_category","has",10994]]]
|
|
85136
85517
|
for more information about filters, please refer to Content Analysis API – Filters */
|
|
85137
85518
|
initial_dataset_filters?: (any | undefined)[] | undefined;
|
|
85519
|
+
/** defines the scale used for calculating and displaying the rank values
|
|
85520
|
+
optional field
|
|
85521
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
85522
|
+
possible values:
|
|
85523
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
85524
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
85525
|
+
default value: one_thousand
|
|
85526
|
+
learn more about how this parameter works in this Help Center article */
|
|
85527
|
+
rank_scale?: string | undefined;
|
|
85138
85528
|
/** user-defined task identifier
|
|
85139
85529
|
optional field
|
|
85140
85530
|
the character limit is 255
|
|
@@ -85226,6 +85616,15 @@ example:
|
|
|
85226
85616
|
["content_info.text_category","has",10994]]]
|
|
85227
85617
|
for more information about filters, please refer to Content Analysis API – Filters */
|
|
85228
85618
|
initial_dataset_filters?: (any | undefined)[] | undefined;
|
|
85619
|
+
/** defines the scale used for calculating and displaying the rank values
|
|
85620
|
+
optional field
|
|
85621
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
85622
|
+
possible values:
|
|
85623
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
85624
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
85625
|
+
default value: one_thousand
|
|
85626
|
+
learn more about how this parameter works in this Help Center article */
|
|
85627
|
+
rank_scale?: string | undefined;
|
|
85229
85628
|
/** user-defined task identifier
|
|
85230
85629
|
optional field
|
|
85231
85630
|
the character limit is 255
|
|
@@ -85371,6 +85770,15 @@ example:
|
|
|
85371
85770
|
["content_info.text_category","has",10994]]]
|
|
85372
85771
|
for more information about filters, please refer to Content Analysis API – Filters */
|
|
85373
85772
|
initial_dataset_filter?: string[] | undefined;
|
|
85773
|
+
/** defines the scale used for calculating and displaying the rank values
|
|
85774
|
+
optional field
|
|
85775
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
85776
|
+
possible values:
|
|
85777
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
85778
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
85779
|
+
default value: one_thousand
|
|
85780
|
+
learn more about how this parameter works in this Help Center article */
|
|
85781
|
+
rank_scale?: string | undefined;
|
|
85374
85782
|
/** user-defined task identifier
|
|
85375
85783
|
optional field
|
|
85376
85784
|
the character limit is 255
|
|
@@ -85466,6 +85874,15 @@ example:
|
|
|
85466
85874
|
["content_info.text_category","has",10994]]]
|
|
85467
85875
|
for more information about filters, please refer to Content Analysis API – Filters */
|
|
85468
85876
|
initial_dataset_filter?: string[] | undefined;
|
|
85877
|
+
/** defines the scale used for calculating and displaying the rank values
|
|
85878
|
+
optional field
|
|
85879
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
85880
|
+
possible values:
|
|
85881
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
85882
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
85883
|
+
default value: one_thousand
|
|
85884
|
+
learn more about how this parameter works in this Help Center article */
|
|
85885
|
+
rank_scale?: string | undefined;
|
|
85469
85886
|
/** user-defined task identifier
|
|
85470
85887
|
optional field
|
|
85471
85888
|
the character limit is 255
|
|
@@ -85674,6 +86091,15 @@ example:
|
|
|
85674
86091
|
["content_info.text_category","has",10994]]]
|
|
85675
86092
|
for more information about filters, please refer to Content Analysis API – Filters */
|
|
85676
86093
|
initial_dataset_filters?: (any | undefined)[] | undefined;
|
|
86094
|
+
/** defines the scale used for calculating and displaying the rank values
|
|
86095
|
+
optional field
|
|
86096
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
86097
|
+
possible values:
|
|
86098
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
86099
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
86100
|
+
default value: one_thousand
|
|
86101
|
+
learn more about how this parameter works in this Help Center article */
|
|
86102
|
+
rank_scale?: string | undefined;
|
|
85677
86103
|
/** user-defined task identifier
|
|
85678
86104
|
optional field
|
|
85679
86105
|
the character limit is 255
|
|
@@ -85750,6 +86176,15 @@ example:
|
|
|
85750
86176
|
["content_info.text_category","has",10994]]]
|
|
85751
86177
|
for more information about filters, please refer to Content Analysis API – Filters */
|
|
85752
86178
|
initial_dataset_filters?: (any | undefined)[] | undefined;
|
|
86179
|
+
/** defines the scale used for calculating and displaying the rank values
|
|
86180
|
+
optional field
|
|
86181
|
+
you can use this parameter to choose whether rank values are presented on a 0–100 or 0–1000 scale
|
|
86182
|
+
possible values:
|
|
86183
|
+
one_hundred — rank values are displayed on a 0–100 scale
|
|
86184
|
+
one_thousand — rank values are displayed on a 0–1000 scale
|
|
86185
|
+
default value: one_thousand
|
|
86186
|
+
learn more about how this parameter works in this Help Center article */
|
|
86187
|
+
rank_scale?: string | undefined;
|
|
85753
86188
|
/** user-defined task identifier
|
|
85754
86189
|
optional field
|
|
85755
86190
|
the character limit is 255
|
|
@@ -94194,11 +94629,11 @@ The cost can be calculated on the Pricing page. */
|
|
|
94194
94629
|
/** parsing depth
|
|
94195
94630
|
optional field
|
|
94196
94631
|
number of results to be returned to be returned from the Google Play SERP;
|
|
94197
|
-
we strongly recommend setting the parsing depth in the multiples of
|
|
94198
|
-
Note: your account will be billed per each SERP containing up to
|
|
94199
|
-
thus, setting a depth above
|
|
94632
|
+
we strongly recommend setting the parsing depth in the multiples of 30, because our system processes 30 results in a row;
|
|
94633
|
+
Note: your account will be billed per each SERP containing up to 30 results;
|
|
94634
|
+
thus, setting a depth above 30 may result in additional charges if the search engine returns more than 30 results;
|
|
94200
94635
|
if the specified depth is higher than the number of results in the response, the difference will be refunded to your account balance automatically
|
|
94201
|
-
default value:
|
|
94636
|
+
default value: 30;
|
|
94202
94637
|
maximum value: 200 */
|
|
94203
94638
|
depth?: number | undefined;
|
|
94204
94639
|
/** user-defined task identifier
|
|
@@ -94287,11 +94722,11 @@ The cost can be calculated on the Pricing page. */
|
|
|
94287
94722
|
/** parsing depth
|
|
94288
94723
|
optional field
|
|
94289
94724
|
number of results to be returned to be returned from the Google Play SERP;
|
|
94290
|
-
we strongly recommend setting the parsing depth in the multiples of
|
|
94291
|
-
Note: your account will be billed per each SERP containing up to
|
|
94292
|
-
thus, setting a depth above
|
|
94725
|
+
we strongly recommend setting the parsing depth in the multiples of 30, because our system processes 30 results in a row;
|
|
94726
|
+
Note: your account will be billed per each SERP containing up to 30 results;
|
|
94727
|
+
thus, setting a depth above 30 may result in additional charges if the search engine returns more than 30 results;
|
|
94293
94728
|
if the specified depth is higher than the number of results in the response, the difference will be refunded to your account balance automatically
|
|
94294
|
-
default value:
|
|
94729
|
+
default value: 30;
|
|
94295
94730
|
maximum value: 200 */
|
|
94296
94731
|
depth?: number | undefined;
|
|
94297
94732
|
/** user-defined task identifier
|
|
@@ -94370,9 +94805,9 @@ unique task identifier in our system in the UUID format */
|
|
|
94370
94805
|
date_posted?: string | undefined;
|
|
94371
94806
|
/** user-defined task identifier */
|
|
94372
94807
|
tag?: string | undefined;
|
|
94373
|
-
/** URL for collecting the results of the Google
|
|
94808
|
+
/** URL for collecting the results of the Google app_searches task */
|
|
94374
94809
|
endpoint_advanced?: string | undefined;
|
|
94375
|
-
/** URL for collecting the results of the Google
|
|
94810
|
+
/** URL for collecting the results of the Google app_searches HTML task
|
|
94376
94811
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
94377
94812
|
endpoint_html?: string | undefined;
|
|
94378
94813
|
[key: string]: any;
|
|
@@ -94393,9 +94828,9 @@ unique task identifier in our system in the UUID format */
|
|
|
94393
94828
|
date_posted?: string | undefined;
|
|
94394
94829
|
/** user-defined task identifier */
|
|
94395
94830
|
tag?: string | undefined;
|
|
94396
|
-
/** URL for collecting the results of the Google
|
|
94831
|
+
/** URL for collecting the results of the Google app_searches task */
|
|
94397
94832
|
endpoint_advanced?: string | undefined;
|
|
94398
|
-
/** URL for collecting the results of the Google
|
|
94833
|
+
/** URL for collecting the results of the Google app_searches HTML task
|
|
94399
94834
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
94400
94835
|
endpoint_html?: string | undefined;
|
|
94401
94836
|
[key: string]: any;
|
|
@@ -94440,9 +94875,9 @@ unique task identifier in our system in the UUID format */
|
|
|
94440
94875
|
date_posted?: string | undefined;
|
|
94441
94876
|
/** user-defined task identifier */
|
|
94442
94877
|
tag?: string | undefined;
|
|
94443
|
-
/** URL for collecting the results of the Apple
|
|
94878
|
+
/** URL for collecting the results of the Apple app_reviews task */
|
|
94444
94879
|
endpoint_advanced?: string | undefined;
|
|
94445
|
-
/** URL for collecting the results of the Apple
|
|
94880
|
+
/** URL for collecting the results of the Apple app_reviews HTML task
|
|
94446
94881
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
94447
94882
|
endpoint_html?: string | undefined;
|
|
94448
94883
|
[key: string]: any;
|
|
@@ -94463,9 +94898,9 @@ unique task identifier in our system in the UUID format */
|
|
|
94463
94898
|
date_posted?: string | undefined;
|
|
94464
94899
|
/** user-defined task identifier */
|
|
94465
94900
|
tag?: string | undefined;
|
|
94466
|
-
/** URL for collecting the results of the Apple
|
|
94901
|
+
/** URL for collecting the results of the Apple app_reviews task */
|
|
94467
94902
|
endpoint_advanced?: string | undefined;
|
|
94468
|
-
/** URL for collecting the results of the Apple
|
|
94903
|
+
/** URL for collecting the results of the Apple app_reviews HTML task
|
|
94469
94904
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
94470
94905
|
endpoint_html?: string | undefined;
|
|
94471
94906
|
[key: string]: any;
|
|
@@ -94908,9 +95343,9 @@ unique task identifier in our system in the UUID format */
|
|
|
94908
95343
|
date_posted?: string | undefined;
|
|
94909
95344
|
/** user-defined task identifier */
|
|
94910
95345
|
tag?: string | undefined;
|
|
94911
|
-
/** URL for collecting the results of the Google
|
|
95346
|
+
/** URL for collecting the results of the Google app_list task */
|
|
94912
95347
|
endpoint_advanced?: string | undefined;
|
|
94913
|
-
/** URL for collecting the results of the Google
|
|
95348
|
+
/** URL for collecting the results of the Google app_list HTML task
|
|
94914
95349
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
94915
95350
|
endpoint_html?: string | undefined;
|
|
94916
95351
|
[key: string]: any;
|
|
@@ -94931,9 +95366,9 @@ unique task identifier in our system in the UUID format */
|
|
|
94931
95366
|
date_posted?: string | undefined;
|
|
94932
95367
|
/** user-defined task identifier */
|
|
94933
95368
|
tag?: string | undefined;
|
|
94934
|
-
/** URL for collecting the results of the Google
|
|
95369
|
+
/** URL for collecting the results of the Google app_list task */
|
|
94935
95370
|
endpoint_advanced?: string | undefined;
|
|
94936
|
-
/** URL for collecting the results of the Google
|
|
95371
|
+
/** URL for collecting the results of the Google app_list HTML task
|
|
94937
95372
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
94938
95373
|
endpoint_html?: string | undefined;
|
|
94939
95374
|
[key: string]: any;
|
|
@@ -95330,9 +95765,9 @@ unique task identifier in our system in the UUID format */
|
|
|
95330
95765
|
date_posted?: string | undefined;
|
|
95331
95766
|
/** user-defined task identifier */
|
|
95332
95767
|
tag?: string | undefined;
|
|
95333
|
-
/** URL for collecting the results of the Google
|
|
95768
|
+
/** URL for collecting the results of the Google app_info task */
|
|
95334
95769
|
endpoint_advanced?: string | undefined;
|
|
95335
|
-
/** URL for collecting the results of the Google
|
|
95770
|
+
/** URL for collecting the results of the Google app_info HTML task
|
|
95336
95771
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
95337
95772
|
endpoint_html?: string | undefined;
|
|
95338
95773
|
[key: string]: any;
|
|
@@ -95353,9 +95788,9 @@ unique task identifier in our system in the UUID format */
|
|
|
95353
95788
|
date_posted?: string | undefined;
|
|
95354
95789
|
/** user-defined task identifier */
|
|
95355
95790
|
tag?: string | undefined;
|
|
95356
|
-
/** URL for collecting the results of the Google
|
|
95791
|
+
/** URL for collecting the results of the Google app_info task */
|
|
95357
95792
|
endpoint_advanced?: string | undefined;
|
|
95358
|
-
/** URL for collecting the results of the Google
|
|
95793
|
+
/** URL for collecting the results of the Google app_info HTML task
|
|
95359
95794
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
95360
95795
|
endpoint_html?: string | undefined;
|
|
95361
95796
|
[key: string]: any;
|
|
@@ -95974,9 +96409,9 @@ unique task identifier in our system in the UUID format */
|
|
|
95974
96409
|
date_posted?: string | undefined;
|
|
95975
96410
|
/** user-defined task identifier */
|
|
95976
96411
|
tag?: string | undefined;
|
|
95977
|
-
/** URL for collecting the results of the Google
|
|
96412
|
+
/** URL for collecting the results of the Google app_reviews task */
|
|
95978
96413
|
endpoint_advanced?: string | undefined;
|
|
95979
|
-
/** URL for collecting the results of the Google
|
|
96414
|
+
/** URL for collecting the results of the Google app_reviews HTML task
|
|
95980
96415
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
95981
96416
|
endpoint_html?: string | undefined;
|
|
95982
96417
|
[key: string]: any;
|
|
@@ -95997,9 +96432,9 @@ unique task identifier in our system in the UUID format */
|
|
|
95997
96432
|
date_posted?: string | undefined;
|
|
95998
96433
|
/** user-defined task identifier */
|
|
95999
96434
|
tag?: string | undefined;
|
|
96000
|
-
/** URL for collecting the results of the Google
|
|
96435
|
+
/** URL for collecting the results of the Google app_reviews task */
|
|
96001
96436
|
endpoint_advanced?: string | undefined;
|
|
96002
|
-
/** URL for collecting the results of the Google
|
|
96437
|
+
/** URL for collecting the results of the Google app_reviews HTML task
|
|
96003
96438
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
96004
96439
|
endpoint_html?: string | undefined;
|
|
96005
96440
|
[key: string]: any;
|
|
@@ -96990,9 +97425,9 @@ unique task identifier in our system in the UUID format */
|
|
|
96990
97425
|
date_posted?: string | undefined;
|
|
96991
97426
|
/** user-defined task identifier */
|
|
96992
97427
|
tag?: string | undefined;
|
|
96993
|
-
/** URL for collecting the results of the Apple
|
|
97428
|
+
/** URL for collecting the results of the Apple app_searches task */
|
|
96994
97429
|
endpoint_advanced?: string | undefined;
|
|
96995
|
-
/** URL for collecting the results of the Apple
|
|
97430
|
+
/** URL for collecting the results of the Apple app_searches HTML task
|
|
96996
97431
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
96997
97432
|
endpoint_html?: string | undefined;
|
|
96998
97433
|
[key: string]: any;
|
|
@@ -97013,9 +97448,9 @@ unique task identifier in our system in the UUID format */
|
|
|
97013
97448
|
date_posted?: string | undefined;
|
|
97014
97449
|
/** user-defined task identifier */
|
|
97015
97450
|
tag?: string | undefined;
|
|
97016
|
-
/** URL for collecting the results of the Apple
|
|
97451
|
+
/** URL for collecting the results of the Apple app_searches task */
|
|
97017
97452
|
endpoint_advanced?: string | undefined;
|
|
97018
|
-
/** URL for collecting the results of the Apple
|
|
97453
|
+
/** URL for collecting the results of the Apple app_searches HTML task
|
|
97019
97454
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
97020
97455
|
endpoint_html?: string | undefined;
|
|
97021
97456
|
[key: string]: any;
|
|
@@ -97338,9 +97773,9 @@ unique task identifier in our system in the UUID format */
|
|
|
97338
97773
|
date_posted?: string | undefined;
|
|
97339
97774
|
/** user-defined task identifier */
|
|
97340
97775
|
tag?: string | undefined;
|
|
97341
|
-
/** URL for collecting the results of the Apple
|
|
97776
|
+
/** URL for collecting the results of the Apple app_info task */
|
|
97342
97777
|
endpoint_advanced?: string | undefined;
|
|
97343
|
-
/** URL for collecting the results of the Apple
|
|
97778
|
+
/** URL for collecting the results of the Apple app_info HTML task
|
|
97344
97779
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
97345
97780
|
endpoint_html?: string | undefined;
|
|
97346
97781
|
[key: string]: any;
|
|
@@ -97361,9 +97796,9 @@ unique task identifier in our system in the UUID format */
|
|
|
97361
97796
|
date_posted?: string | undefined;
|
|
97362
97797
|
/** user-defined task identifier */
|
|
97363
97798
|
tag?: string | undefined;
|
|
97364
|
-
/** URL for collecting the results of the Apple
|
|
97799
|
+
/** URL for collecting the results of the Apple app_info task */
|
|
97365
97800
|
endpoint_advanced?: string | undefined;
|
|
97366
|
-
/** URL for collecting the results of the Apple
|
|
97801
|
+
/** URL for collecting the results of the Apple app_info HTML task
|
|
97367
97802
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
97368
97803
|
endpoint_html?: string | undefined;
|
|
97369
97804
|
[key: string]: any;
|
|
@@ -97838,9 +98273,9 @@ unique task identifier in our system in the UUID format */
|
|
|
97838
98273
|
date_posted?: string | undefined;
|
|
97839
98274
|
/** user-defined task identifier */
|
|
97840
98275
|
tag?: string | undefined;
|
|
97841
|
-
/** URL for collecting the results of the Apple
|
|
98276
|
+
/** URL for collecting the results of the Apple app_list task */
|
|
97842
98277
|
endpoint_advanced?: string | undefined;
|
|
97843
|
-
/** URL for collecting the results of the Apple
|
|
98278
|
+
/** URL for collecting the results of the Apple app_list HTML task
|
|
97844
98279
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
97845
98280
|
endpoint_html?: string | undefined;
|
|
97846
98281
|
[key: string]: any;
|
|
@@ -97861,9 +98296,9 @@ unique task identifier in our system in the UUID format */
|
|
|
97861
98296
|
date_posted?: string | undefined;
|
|
97862
98297
|
/** user-defined task identifier */
|
|
97863
98298
|
tag?: string | undefined;
|
|
97864
|
-
/** URL for collecting the results of the Apple
|
|
98299
|
+
/** URL for collecting the results of the Apple app_list task */
|
|
97865
98300
|
endpoint_advanced?: string | undefined;
|
|
97866
|
-
/** URL for collecting the results of the Apple
|
|
98301
|
+
/** URL for collecting the results of the Apple app_list HTML task
|
|
97867
98302
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
97868
98303
|
endpoint_html?: string | undefined;
|
|
97869
98304
|
[key: string]: any;
|
|
@@ -98220,9 +98655,9 @@ unique task identifier in our system in the UUID format */
|
|
|
98220
98655
|
date_posted?: string | undefined;
|
|
98221
98656
|
/** user-defined task identifier */
|
|
98222
98657
|
tag?: string | undefined;
|
|
98223
|
-
/** URL for collecting the results of the Apple
|
|
98658
|
+
/** URL for collecting the results of the Apple app_reviews task */
|
|
98224
98659
|
endpoint_advanced?: string | undefined;
|
|
98225
|
-
/** URL for collecting the results of the Apple
|
|
98660
|
+
/** URL for collecting the results of the Apple app_reviews HTML task
|
|
98226
98661
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
98227
98662
|
endpoint_html?: string | undefined;
|
|
98228
98663
|
[key: string]: any;
|
|
@@ -98243,9 +98678,9 @@ unique task identifier in our system in the UUID format */
|
|
|
98243
98678
|
date_posted?: string | undefined;
|
|
98244
98679
|
/** user-defined task identifier */
|
|
98245
98680
|
tag?: string | undefined;
|
|
98246
|
-
/** URL for collecting the results of the Apple
|
|
98681
|
+
/** URL for collecting the results of the Apple app_reviews task */
|
|
98247
98682
|
endpoint_advanced?: string | undefined;
|
|
98248
|
-
/** URL for collecting the results of the Apple
|
|
98683
|
+
/** URL for collecting the results of the Apple app_reviews HTML task
|
|
98249
98684
|
if HTML tasks are not supported in the specified endpoint, the value will be null */
|
|
98250
98685
|
endpoint_html?: string | undefined;
|
|
98251
98686
|
[key: string]: any;
|
|
@@ -105418,7 +105853,7 @@ optional field
|
|
|
105418
105853
|
number of reviews in SERP
|
|
105419
105854
|
we strongly recommend setting the parsing depth in the multiples of twenty, because our systems processes twenty reviews in a row
|
|
105420
105855
|
default value: 20
|
|
105421
|
-
maximum value:
|
|
105856
|
+
maximum value: 1000 */
|
|
105422
105857
|
depth?: number | undefined;
|
|
105423
105858
|
/** user-defined task identifier
|
|
105424
105859
|
optional field
|
|
@@ -105530,7 +105965,7 @@ optional field
|
|
|
105530
105965
|
number of reviews in SERP
|
|
105531
105966
|
we strongly recommend setting the parsing depth in the multiples of twenty, because our systems processes twenty reviews in a row
|
|
105532
105967
|
default value: 20
|
|
105533
|
-
maximum value:
|
|
105968
|
+
maximum value: 1000 */
|
|
105534
105969
|
depth?: number | undefined;
|
|
105535
105970
|
/** user-defined task identifier
|
|
105536
105971
|
optional field
|
|
@@ -108982,7 +109417,7 @@ export interface IAppendixJobsSerpLimitsRatesDataInfo {
|
|
|
108982
109417
|
task_post?: number | undefined;
|
|
108983
109418
|
[key: string]: any;
|
|
108984
109419
|
}
|
|
108985
|
-
export declare class
|
|
109420
|
+
export declare class AppendixSerpsRatesDataInfo implements IAppendixSerpsRatesDataInfo {
|
|
108986
109421
|
task_post?: number | undefined;
|
|
108987
109422
|
task_get?: AppendixFunctionTypeInfo | undefined;
|
|
108988
109423
|
tasks_ready?: number | undefined;
|
|
@@ -108994,12 +109429,12 @@ export declare class AppendixSerpLimitsRatesDataInfo implements IAppendixSerpLim
|
|
|
108994
109429
|
jobs?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
108995
109430
|
screenshot?: number | undefined;
|
|
108996
109431
|
[key: string]: any;
|
|
108997
|
-
constructor(data?:
|
|
109432
|
+
constructor(data?: IAppendixSerpsRatesDataInfo);
|
|
108998
109433
|
init(_data?: any): void;
|
|
108999
|
-
static fromJS(data: any):
|
|
109434
|
+
static fromJS(data: any): AppendixSerpsRatesDataInfo;
|
|
109000
109435
|
toJSON(data?: any): any;
|
|
109001
109436
|
}
|
|
109002
|
-
export interface
|
|
109437
|
+
export interface IAppendixSerpsRatesDataInfo {
|
|
109003
109438
|
task_post?: number | undefined;
|
|
109004
109439
|
task_get?: AppendixFunctionTypeInfo | undefined;
|
|
109005
109440
|
tasks_ready?: number | undefined;
|
|
@@ -109329,10 +109764,10 @@ export interface IAppendixSellersGoogleMerchantLimitsRatesDataInfo {
|
|
|
109329
109764
|
[key: string]: any;
|
|
109330
109765
|
}
|
|
109331
109766
|
export declare class AppendixMerchantGoogleInfo implements IAppendixMerchantGoogleInfo {
|
|
109332
|
-
products?:
|
|
109767
|
+
products?: AppendixSerpsRatesDataInfo | undefined;
|
|
109333
109768
|
sellers?: AppendixSellersGoogleMerchantLimitsRatesDataInfo | undefined;
|
|
109334
|
-
product_spec?:
|
|
109335
|
-
product_info?:
|
|
109769
|
+
product_spec?: AppendixSerpsRatesDataInfo | undefined;
|
|
109770
|
+
product_info?: AppendixSerpsRatesDataInfo | undefined;
|
|
109336
109771
|
[key: string]: any;
|
|
109337
109772
|
constructor(data?: IAppendixMerchantGoogleInfo);
|
|
109338
109773
|
init(_data?: any): void;
|
|
@@ -109340,16 +109775,16 @@ export declare class AppendixMerchantGoogleInfo implements IAppendixMerchantGoog
|
|
|
109340
109775
|
toJSON(data?: any): any;
|
|
109341
109776
|
}
|
|
109342
109777
|
export interface IAppendixMerchantGoogleInfo {
|
|
109343
|
-
products?:
|
|
109778
|
+
products?: AppendixSerpsRatesDataInfo | undefined;
|
|
109344
109779
|
sellers?: AppendixSellersGoogleMerchantLimitsRatesDataInfo | undefined;
|
|
109345
|
-
product_spec?:
|
|
109346
|
-
product_info?:
|
|
109780
|
+
product_spec?: AppendixSerpsRatesDataInfo | undefined;
|
|
109781
|
+
product_info?: AppendixSerpsRatesDataInfo | undefined;
|
|
109347
109782
|
[key: string]: any;
|
|
109348
109783
|
}
|
|
109349
109784
|
export declare class AppendixMerchantAmazonInfo implements IAppendixMerchantAmazonInfo {
|
|
109350
|
-
asin?:
|
|
109351
|
-
products?:
|
|
109352
|
-
sellers?:
|
|
109785
|
+
asin?: AppendixSerpsRatesDataInfo | undefined;
|
|
109786
|
+
products?: AppendixSerpsRatesDataInfo | undefined;
|
|
109787
|
+
sellers?: AppendixSerpsRatesDataInfo | undefined;
|
|
109353
109788
|
[key: string]: any;
|
|
109354
109789
|
constructor(data?: IAppendixMerchantAmazonInfo);
|
|
109355
109790
|
init(_data?: any): void;
|
|
@@ -109357,9 +109792,9 @@ export declare class AppendixMerchantAmazonInfo implements IAppendixMerchantAmaz
|
|
|
109357
109792
|
toJSON(data?: any): any;
|
|
109358
109793
|
}
|
|
109359
109794
|
export interface IAppendixMerchantAmazonInfo {
|
|
109360
|
-
asin?:
|
|
109361
|
-
products?:
|
|
109362
|
-
sellers?:
|
|
109795
|
+
asin?: AppendixSerpsRatesDataInfo | undefined;
|
|
109796
|
+
products?: AppendixSerpsRatesDataInfo | undefined;
|
|
109797
|
+
sellers?: AppendixSerpsRatesDataInfo | undefined;
|
|
109363
109798
|
[key: string]: any;
|
|
109364
109799
|
}
|
|
109365
109800
|
export declare class AppendixMerchantLimitsRatesDataInfo implements IAppendixMerchantLimitsRatesDataInfo {
|
|
@@ -109368,7 +109803,7 @@ export declare class AppendixMerchantLimitsRatesDataInfo implements IAppendixMer
|
|
|
109368
109803
|
locations?: number | undefined;
|
|
109369
109804
|
languages?: number | undefined;
|
|
109370
109805
|
errors?: number | undefined;
|
|
109371
|
-
reviews?:
|
|
109806
|
+
reviews?: AppendixSerpsRatesDataInfo | undefined;
|
|
109372
109807
|
tasks_ready?: number | undefined;
|
|
109373
109808
|
[key: string]: any;
|
|
109374
109809
|
constructor(data?: IAppendixMerchantLimitsRatesDataInfo);
|
|
@@ -109382,7 +109817,7 @@ export interface IAppendixMerchantLimitsRatesDataInfo {
|
|
|
109382
109817
|
locations?: number | undefined;
|
|
109383
109818
|
languages?: number | undefined;
|
|
109384
109819
|
errors?: number | undefined;
|
|
109385
|
-
reviews?:
|
|
109820
|
+
reviews?: AppendixSerpsRatesDataInfo | undefined;
|
|
109386
109821
|
tasks_ready?: number | undefined;
|
|
109387
109822
|
[key: string]: any;
|
|
109388
109823
|
}
|
|
@@ -109439,7 +109874,7 @@ export interface IAppendixOnPageLimitsRatesDataInfo {
|
|
|
109439
109874
|
export declare class AppendixBusinessDataGoogleInfo implements IAppendixBusinessDataGoogleInfo {
|
|
109440
109875
|
my_business_info?: AppendixInfo | undefined;
|
|
109441
109876
|
my_business_updates?: AppendixInfo | undefined;
|
|
109442
|
-
hotel_info?:
|
|
109877
|
+
hotel_info?: AppendixSerpsRatesDataInfo | undefined;
|
|
109443
109878
|
hotel_searches?: AppendixInfo | undefined;
|
|
109444
109879
|
reviews?: AppendixInfo | undefined;
|
|
109445
109880
|
questions_and_answers?: AppendixInfo | undefined;
|
|
@@ -109453,7 +109888,7 @@ export declare class AppendixBusinessDataGoogleInfo implements IAppendixBusiness
|
|
|
109453
109888
|
export interface IAppendixBusinessDataGoogleInfo {
|
|
109454
109889
|
my_business_info?: AppendixInfo | undefined;
|
|
109455
109890
|
my_business_updates?: AppendixInfo | undefined;
|
|
109456
|
-
hotel_info?:
|
|
109891
|
+
hotel_info?: AppendixSerpsRatesDataInfo | undefined;
|
|
109457
109892
|
hotel_searches?: AppendixInfo | undefined;
|
|
109458
109893
|
reviews?: AppendixInfo | undefined;
|
|
109459
109894
|
questions_and_answers?: AppendixInfo | undefined;
|
|
@@ -109593,10 +110028,10 @@ export interface IAppendixBacklinksLimitsRatesDataInfo {
|
|
|
109593
110028
|
[key: string]: any;
|
|
109594
110029
|
}
|
|
109595
110030
|
export declare class AppendixAppDataLimitsRatesDataInfo implements IAppendixAppDataLimitsRatesDataInfo {
|
|
109596
|
-
app_info?:
|
|
109597
|
-
app_list?:
|
|
109598
|
-
app_reviews?:
|
|
109599
|
-
app_searches?:
|
|
110031
|
+
app_info?: AppendixSerpsRatesDataInfo | undefined;
|
|
110032
|
+
app_list?: AppendixSerpsRatesDataInfo | undefined;
|
|
110033
|
+
app_reviews?: AppendixSerpsRatesDataInfo | undefined;
|
|
110034
|
+
app_searches?: AppendixSerpsRatesDataInfo | undefined;
|
|
109600
110035
|
errors?: number | undefined;
|
|
109601
110036
|
languages?: number | undefined;
|
|
109602
110037
|
locations?: number | undefined;
|
|
@@ -109610,10 +110045,10 @@ export declare class AppendixAppDataLimitsRatesDataInfo implements IAppendixAppD
|
|
|
109610
110045
|
toJSON(data?: any): any;
|
|
109611
110046
|
}
|
|
109612
110047
|
export interface IAppendixAppDataLimitsRatesDataInfo {
|
|
109613
|
-
app_info?:
|
|
109614
|
-
app_list?:
|
|
109615
|
-
app_reviews?:
|
|
109616
|
-
app_searches?:
|
|
110048
|
+
app_info?: AppendixSerpsRatesDataInfo | undefined;
|
|
110049
|
+
app_list?: AppendixSerpsRatesDataInfo | undefined;
|
|
110050
|
+
app_reviews?: AppendixSerpsRatesDataInfo | undefined;
|
|
110051
|
+
app_searches?: AppendixSerpsRatesDataInfo | undefined;
|
|
109617
110052
|
errors?: number | undefined;
|
|
109618
110053
|
languages?: number | undefined;
|
|
109619
110054
|
locations?: number | undefined;
|
|
@@ -109691,7 +110126,7 @@ export interface IAppendixContentGenerationLimitsRatesDataInfo {
|
|
|
109691
110126
|
[key: string]: any;
|
|
109692
110127
|
}
|
|
109693
110128
|
export declare class AppendixDayLimitsRatesData implements IAppendixDayLimitsRatesData {
|
|
109694
|
-
serp?:
|
|
110129
|
+
serp?: AppendixSerpsRatesDataInfo | undefined;
|
|
109695
110130
|
/** total amount of money deposited to your account */
|
|
109696
110131
|
total?: number | undefined;
|
|
109697
110132
|
total_serp?: number | undefined;
|
|
@@ -109727,7 +110162,7 @@ export declare class AppendixDayLimitsRatesData implements IAppendixDayLimitsRat
|
|
|
109727
110162
|
toJSON(data?: any): any;
|
|
109728
110163
|
}
|
|
109729
110164
|
export interface IAppendixDayLimitsRatesData {
|
|
109730
|
-
serp?:
|
|
110165
|
+
serp?: AppendixSerpsRatesDataInfo | undefined;
|
|
109731
110166
|
/** total amount of money deposited to your account */
|
|
109732
110167
|
total?: number | undefined;
|
|
109733
110168
|
total_serp?: number | undefined;
|
|
@@ -109758,6 +110193,38 @@ export interface IAppendixDayLimitsRatesData {
|
|
|
109758
110193
|
total_traffic_analytics?: number | undefined;
|
|
109759
110194
|
[key: string]: any;
|
|
109760
110195
|
}
|
|
110196
|
+
export declare class AppendixSerpDataInfo implements IAppendixSerpDataInfo {
|
|
110197
|
+
task_post?: number | undefined;
|
|
110198
|
+
task_get?: AppendixFunctionTypeInfo | undefined;
|
|
110199
|
+
tasks_ready?: number | undefined;
|
|
110200
|
+
locations?: number | undefined;
|
|
110201
|
+
languages?: number | undefined;
|
|
110202
|
+
live?: AppendixFunctionTypeInfo | undefined;
|
|
110203
|
+
errors?: number | undefined;
|
|
110204
|
+
tasks_fixed?: number | undefined;
|
|
110205
|
+
jobs?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
110206
|
+
screenshot?: number | undefined;
|
|
110207
|
+
tasks_ready_queue?: number | undefined;
|
|
110208
|
+
[key: string]: any;
|
|
110209
|
+
constructor(data?: IAppendixSerpDataInfo);
|
|
110210
|
+
init(_data?: any): void;
|
|
110211
|
+
static fromJS(data: any): AppendixSerpDataInfo;
|
|
110212
|
+
toJSON(data?: any): any;
|
|
110213
|
+
}
|
|
110214
|
+
export interface IAppendixSerpDataInfo {
|
|
110215
|
+
task_post?: number | undefined;
|
|
110216
|
+
task_get?: AppendixFunctionTypeInfo | undefined;
|
|
110217
|
+
tasks_ready?: number | undefined;
|
|
110218
|
+
locations?: number | undefined;
|
|
110219
|
+
languages?: number | undefined;
|
|
110220
|
+
live?: AppendixFunctionTypeInfo | undefined;
|
|
110221
|
+
errors?: number | undefined;
|
|
110222
|
+
tasks_fixed?: number | undefined;
|
|
110223
|
+
jobs?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
110224
|
+
screenshot?: number | undefined;
|
|
110225
|
+
tasks_ready_queue?: number | undefined;
|
|
110226
|
+
[key: string]: any;
|
|
110227
|
+
}
|
|
109761
110228
|
export declare class AppendixNaverKeywordsDataDataInfo implements IAppendixNaverKeywordsDataDataInfo {
|
|
109762
110229
|
keywords_for_category?: AppendixInfo | undefined;
|
|
109763
110230
|
search_volume?: AppendixInfo | undefined;
|
|
@@ -109793,7 +110260,7 @@ export declare class AppendixKeywordsDataDataInfo implements IAppendixKeywordsDa
|
|
|
109793
110260
|
keyword_suggestions_for_url?: AppendixInfo | undefined;
|
|
109794
110261
|
naver?: AppendixNaverKeywordsDataDataInfo | undefined;
|
|
109795
110262
|
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
109796
|
-
keyword_ideas_ads_api?:
|
|
110263
|
+
keyword_ideas_ads_api?: AppendixSerpsRatesDataInfo | undefined;
|
|
109797
110264
|
[key: string]: any;
|
|
109798
110265
|
constructor(data?: IAppendixKeywordsDataDataInfo);
|
|
109799
110266
|
init(_data?: any): void;
|
|
@@ -109821,7 +110288,7 @@ export interface IAppendixKeywordsDataDataInfo {
|
|
|
109821
110288
|
keyword_suggestions_for_url?: AppendixInfo | undefined;
|
|
109822
110289
|
naver?: AppendixNaverKeywordsDataDataInfo | undefined;
|
|
109823
110290
|
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
109824
|
-
keyword_ideas_ads_api?:
|
|
110291
|
+
keyword_ideas_ads_api?: AppendixSerpsRatesDataInfo | undefined;
|
|
109825
110292
|
[key: string]: any;
|
|
109826
110293
|
}
|
|
109827
110294
|
export declare class AppendixAppendixDataInfo implements IAppendixAppendixDataInfo {
|
|
@@ -109843,7 +110310,7 @@ export interface IAppendixAppendixDataInfo {
|
|
|
109843
110310
|
[key: string]: any;
|
|
109844
110311
|
}
|
|
109845
110312
|
export declare class AppendixDataInfo implements IAppendixDataInfo {
|
|
109846
|
-
serp?:
|
|
110313
|
+
serp?: AppendixSerpDataInfo | undefined;
|
|
109847
110314
|
/** total amount of money deposited to your account */
|
|
109848
110315
|
total?: number | undefined;
|
|
109849
110316
|
total_serp?: number | undefined;
|
|
@@ -109870,11 +110337,11 @@ export declare class AppendixDataInfo implements IAppendixDataInfo {
|
|
|
109870
110337
|
content_generation?: AppendixContentGenerationLimitsRatesDataInfo | undefined;
|
|
109871
110338
|
total_content_generation?: number | undefined;
|
|
109872
110339
|
total_reviews?: number | undefined;
|
|
109873
|
-
reviews?:
|
|
110340
|
+
reviews?: AppendixSerpsRatesDataInfo | undefined;
|
|
109874
110341
|
total_social?: number | undefined;
|
|
109875
|
-
social?:
|
|
110342
|
+
social?: AppendixSerpsRatesDataInfo | undefined;
|
|
109876
110343
|
total_traffic_analytics?: number | undefined;
|
|
109877
|
-
traffic_analytics?:
|
|
110344
|
+
traffic_analytics?: AppendixSerpsRatesDataInfo | undefined;
|
|
109878
110345
|
[key: string]: any;
|
|
109879
110346
|
constructor(data?: IAppendixDataInfo);
|
|
109880
110347
|
init(_data?: any): void;
|
|
@@ -109882,7 +110349,7 @@ export declare class AppendixDataInfo implements IAppendixDataInfo {
|
|
|
109882
110349
|
toJSON(data?: any): any;
|
|
109883
110350
|
}
|
|
109884
110351
|
export interface IAppendixDataInfo {
|
|
109885
|
-
serp?:
|
|
110352
|
+
serp?: AppendixSerpDataInfo | undefined;
|
|
109886
110353
|
/** total amount of money deposited to your account */
|
|
109887
110354
|
total?: number | undefined;
|
|
109888
110355
|
total_serp?: number | undefined;
|
|
@@ -109909,11 +110376,11 @@ export interface IAppendixDataInfo {
|
|
|
109909
110376
|
content_generation?: AppendixContentGenerationLimitsRatesDataInfo | undefined;
|
|
109910
110377
|
total_content_generation?: number | undefined;
|
|
109911
110378
|
total_reviews?: number | undefined;
|
|
109912
|
-
reviews?:
|
|
110379
|
+
reviews?: AppendixSerpsRatesDataInfo | undefined;
|
|
109913
110380
|
total_social?: number | undefined;
|
|
109914
|
-
social?:
|
|
110381
|
+
social?: AppendixSerpsRatesDataInfo | undefined;
|
|
109915
110382
|
total_traffic_analytics?: number | undefined;
|
|
109916
|
-
traffic_analytics?:
|
|
110383
|
+
traffic_analytics?: AppendixSerpsRatesDataInfo | undefined;
|
|
109917
110384
|
[key: string]: any;
|
|
109918
110385
|
}
|
|
109919
110386
|
export declare class AppendixLimitsRatesData implements IAppendixLimitsRatesData {
|
|
@@ -109941,8 +110408,8 @@ export declare class AppendixSerpDayStatisticsRatesData implements IAppendixSerp
|
|
|
109941
110408
|
tasks_fixed?: number | undefined;
|
|
109942
110409
|
jobs?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
109943
110410
|
screenshot?: number | undefined;
|
|
109944
|
-
id_list?: number | undefined;
|
|
109945
110411
|
ai_summary?: number | undefined;
|
|
110412
|
+
id_list?: number | undefined;
|
|
109946
110413
|
[key: string]: any;
|
|
109947
110414
|
constructor(data?: IAppendixSerpDayStatisticsRatesData);
|
|
109948
110415
|
init(_data?: any): void;
|
|
@@ -109960,8 +110427,8 @@ export interface IAppendixSerpDayStatisticsRatesData {
|
|
|
109960
110427
|
tasks_fixed?: number | undefined;
|
|
109961
110428
|
jobs?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
109962
110429
|
screenshot?: number | undefined;
|
|
109963
|
-
id_list?: number | undefined;
|
|
109964
110430
|
ai_summary?: number | undefined;
|
|
110431
|
+
id_list?: number | undefined;
|
|
109965
110432
|
[key: string]: any;
|
|
109966
110433
|
}
|
|
109967
110434
|
export declare class AppendixBingKeywordsDataDayStatisticsDataInfo implements IAppendixBingKeywordsDataDayStatisticsDataInfo {
|
|
@@ -110007,11 +110474,11 @@ export declare class AppendixKeywordsDataDayStatisticsRatesData implements IAppe
|
|
|
110007
110474
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
110008
110475
|
audience_estimation?: AppendixInfo | undefined;
|
|
110009
110476
|
keyword_suggestions_for_url?: AppendixInfo | undefined;
|
|
110010
|
-
|
|
110477
|
+
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
110011
110478
|
industries?: number | undefined;
|
|
110012
|
-
job_functions?: number | undefined;
|
|
110013
110479
|
id_list?: number | undefined;
|
|
110014
|
-
|
|
110480
|
+
search_volume_history?: AppendixInfo | undefined;
|
|
110481
|
+
job_functions?: number | undefined;
|
|
110015
110482
|
[key: string]: any;
|
|
110016
110483
|
constructor(data?: IAppendixKeywordsDataDayStatisticsRatesData);
|
|
110017
110484
|
init(_data?: any): void;
|
|
@@ -110037,11 +110504,11 @@ export interface IAppendixKeywordsDataDayStatisticsRatesData {
|
|
|
110037
110504
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
110038
110505
|
audience_estimation?: AppendixInfo | undefined;
|
|
110039
110506
|
keyword_suggestions_for_url?: AppendixInfo | undefined;
|
|
110040
|
-
|
|
110507
|
+
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
110041
110508
|
industries?: number | undefined;
|
|
110042
|
-
job_functions?: number | undefined;
|
|
110043
110509
|
id_list?: number | undefined;
|
|
110044
|
-
|
|
110510
|
+
search_volume_history?: AppendixInfo | undefined;
|
|
110511
|
+
job_functions?: number | undefined;
|
|
110045
110512
|
[key: string]: any;
|
|
110046
110513
|
}
|
|
110047
110514
|
export declare class AppendixDataforseoLabsDayStatisticsRatesData implements IAppendixDataforseoLabsDayStatisticsRatesData {
|
|
@@ -110082,14 +110549,14 @@ export declare class AppendixDataforseoLabsDayStatisticsRatesData implements IAp
|
|
|
110082
110549
|
categories_for_keywords?: AppendixInfo | undefined;
|
|
110083
110550
|
keyword_overview?: AppendixInfo | undefined;
|
|
110084
110551
|
historical_keyword_data?: AppendixInfo | undefined;
|
|
110085
|
-
id_list?: number | undefined;
|
|
110086
|
-
historical_search_volume?: AppendixInfo | undefined;
|
|
110087
|
-
available_filters?: number | undefined;
|
|
110088
|
-
available_history?: number | undefined;
|
|
110089
|
-
languages?: number | undefined;
|
|
110090
110552
|
top_google_searches?: AppendixInfo | undefined;
|
|
110553
|
+
languages?: number | undefined;
|
|
110091
110554
|
amazon?: AppendixDataforseoLabsLimitsRatesDataInfo | undefined;
|
|
110555
|
+
historical_search_volume?: AppendixInfo | undefined;
|
|
110092
110556
|
status?: number | undefined;
|
|
110557
|
+
id_list?: number | undefined;
|
|
110558
|
+
available_history?: number | undefined;
|
|
110559
|
+
available_filters?: number | undefined;
|
|
110093
110560
|
[key: string]: any;
|
|
110094
110561
|
constructor(data?: IAppendixDataforseoLabsDayStatisticsRatesData);
|
|
110095
110562
|
init(_data?: any): void;
|
|
@@ -110134,14 +110601,14 @@ export interface IAppendixDataforseoLabsDayStatisticsRatesData {
|
|
|
110134
110601
|
categories_for_keywords?: AppendixInfo | undefined;
|
|
110135
110602
|
keyword_overview?: AppendixInfo | undefined;
|
|
110136
110603
|
historical_keyword_data?: AppendixInfo | undefined;
|
|
110137
|
-
id_list?: number | undefined;
|
|
110138
|
-
historical_search_volume?: AppendixInfo | undefined;
|
|
110139
|
-
available_filters?: number | undefined;
|
|
110140
|
-
available_history?: number | undefined;
|
|
110141
|
-
languages?: number | undefined;
|
|
110142
110604
|
top_google_searches?: AppendixInfo | undefined;
|
|
110605
|
+
languages?: number | undefined;
|
|
110143
110606
|
amazon?: AppendixDataforseoLabsLimitsRatesDataInfo | undefined;
|
|
110607
|
+
historical_search_volume?: AppendixInfo | undefined;
|
|
110144
110608
|
status?: number | undefined;
|
|
110609
|
+
id_list?: number | undefined;
|
|
110610
|
+
available_history?: number | undefined;
|
|
110611
|
+
available_filters?: number | undefined;
|
|
110145
110612
|
[key: string]: any;
|
|
110146
110613
|
}
|
|
110147
110614
|
export declare class AppendixDomainAnalyticsDayStatisticsRatesData implements IAppendixDomainAnalyticsDayStatisticsRatesData {
|
|
@@ -110149,8 +110616,8 @@ export declare class AppendixDomainAnalyticsDayStatisticsRatesData implements IA
|
|
|
110149
110616
|
errors?: number | undefined;
|
|
110150
110617
|
whois?: AppendixWhoisDomainAnalyticsLimitsRatesDataInfo | undefined;
|
|
110151
110618
|
technologies?: AppendixTechnologiesDomainAnalyticsLimitsRatesDataInfo | undefined;
|
|
110152
|
-
id_list?: number | undefined;
|
|
110153
110619
|
available_filters?: number | undefined;
|
|
110620
|
+
id_list?: number | undefined;
|
|
110154
110621
|
[key: string]: any;
|
|
110155
110622
|
constructor(data?: IAppendixDomainAnalyticsDayStatisticsRatesData);
|
|
110156
110623
|
init(_data?: any): void;
|
|
@@ -110162,8 +110629,8 @@ export interface IAppendixDomainAnalyticsDayStatisticsRatesData {
|
|
|
110162
110629
|
errors?: number | undefined;
|
|
110163
110630
|
whois?: AppendixWhoisDomainAnalyticsLimitsRatesDataInfo | undefined;
|
|
110164
110631
|
technologies?: AppendixTechnologiesDomainAnalyticsLimitsRatesDataInfo | undefined;
|
|
110165
|
-
id_list?: number | undefined;
|
|
110166
110632
|
available_filters?: number | undefined;
|
|
110633
|
+
id_list?: number | undefined;
|
|
110167
110634
|
[key: string]: any;
|
|
110168
110635
|
}
|
|
110169
110636
|
export declare class AppendixMerchantDayStatisticsRatesData implements IAppendixMerchantDayStatisticsRatesData {
|
|
@@ -110172,7 +110639,7 @@ export declare class AppendixMerchantDayStatisticsRatesData implements IAppendix
|
|
|
110172
110639
|
locations?: number | undefined;
|
|
110173
110640
|
languages?: number | undefined;
|
|
110174
110641
|
errors?: number | undefined;
|
|
110175
|
-
reviews?:
|
|
110642
|
+
reviews?: AppendixSerpsRatesDataInfo | undefined;
|
|
110176
110643
|
tasks_ready?: number | undefined;
|
|
110177
110644
|
id_list?: number | undefined;
|
|
110178
110645
|
[key: string]: any;
|
|
@@ -110187,7 +110654,7 @@ export interface IAppendixMerchantDayStatisticsRatesData {
|
|
|
110187
110654
|
locations?: number | undefined;
|
|
110188
110655
|
languages?: number | undefined;
|
|
110189
110656
|
errors?: number | undefined;
|
|
110190
|
-
reviews?:
|
|
110657
|
+
reviews?: AppendixSerpsRatesDataInfo | undefined;
|
|
110191
110658
|
tasks_ready?: number | undefined;
|
|
110192
110659
|
id_list?: number | undefined;
|
|
110193
110660
|
[key: string]: any;
|
|
@@ -110197,9 +110664,9 @@ export declare class AppendixLighthouseOnPageDayStatisticsRatesData implements I
|
|
|
110197
110664
|
tasks_ready?: number | undefined;
|
|
110198
110665
|
task_get?: number | undefined;
|
|
110199
110666
|
live?: number | undefined;
|
|
110667
|
+
languages?: number | undefined;
|
|
110200
110668
|
audits?: number | undefined;
|
|
110201
110669
|
versions?: number | undefined;
|
|
110202
|
-
languages?: number | undefined;
|
|
110203
110670
|
[key: string]: any;
|
|
110204
110671
|
constructor(data?: IAppendixLighthouseOnPageDayStatisticsRatesData);
|
|
110205
110672
|
init(_data?: any): void;
|
|
@@ -110211,9 +110678,9 @@ export interface IAppendixLighthouseOnPageDayStatisticsRatesData {
|
|
|
110211
110678
|
tasks_ready?: number | undefined;
|
|
110212
110679
|
task_get?: number | undefined;
|
|
110213
110680
|
live?: number | undefined;
|
|
110681
|
+
languages?: number | undefined;
|
|
110214
110682
|
audits?: number | undefined;
|
|
110215
110683
|
versions?: number | undefined;
|
|
110216
|
-
languages?: number | undefined;
|
|
110217
110684
|
[key: string]: any;
|
|
110218
110685
|
}
|
|
110219
110686
|
export declare class AppendixOnPageDayStatisticsRatesData implements IAppendixOnPageDayStatisticsRatesData {
|
|
@@ -110238,9 +110705,9 @@ export declare class AppendixOnPageDayStatisticsRatesData implements IAppendixOn
|
|
|
110238
110705
|
content_parsing?: number | undefined;
|
|
110239
110706
|
content_parsing_live?: number | undefined;
|
|
110240
110707
|
microdata?: number | undefined;
|
|
110708
|
+
available_filters?: number | undefined;
|
|
110241
110709
|
id_list?: number | undefined;
|
|
110242
110710
|
force_stop?: number | undefined;
|
|
110243
|
-
available_filters?: number | undefined;
|
|
110244
110711
|
[key: string]: any;
|
|
110245
110712
|
constructor(data?: IAppendixOnPageDayStatisticsRatesData);
|
|
110246
110713
|
init(_data?: any): void;
|
|
@@ -110269,9 +110736,9 @@ export interface IAppendixOnPageDayStatisticsRatesData {
|
|
|
110269
110736
|
content_parsing?: number | undefined;
|
|
110270
110737
|
content_parsing_live?: number | undefined;
|
|
110271
110738
|
microdata?: number | undefined;
|
|
110739
|
+
available_filters?: number | undefined;
|
|
110272
110740
|
id_list?: number | undefined;
|
|
110273
110741
|
force_stop?: number | undefined;
|
|
110274
|
-
available_filters?: number | undefined;
|
|
110275
110742
|
[key: string]: any;
|
|
110276
110743
|
}
|
|
110277
110744
|
export declare class AppendixBusinessDataDayStatisticsRatesData implements IAppendixBusinessDataDayStatisticsRatesData {
|
|
@@ -110285,8 +110752,8 @@ export declare class AppendixBusinessDataDayStatisticsRatesData implements IAppe
|
|
|
110285
110752
|
trustpilot?: AppendixBusinessDataDayLimitsRatesDataInfo | undefined;
|
|
110286
110753
|
business_listings?: AppendixBusinessListingsBusinessDataLimitsRatesDataInfo | undefined;
|
|
110287
110754
|
tasks_ready?: number | undefined;
|
|
110288
|
-
id_list?: number | undefined;
|
|
110289
110755
|
available_filters?: number | undefined;
|
|
110756
|
+
id_list?: number | undefined;
|
|
110290
110757
|
[key: string]: any;
|
|
110291
110758
|
constructor(data?: IAppendixBusinessDataDayStatisticsRatesData);
|
|
110292
110759
|
init(_data?: any): void;
|
|
@@ -110304,8 +110771,8 @@ export interface IAppendixBusinessDataDayStatisticsRatesData {
|
|
|
110304
110771
|
trustpilot?: AppendixBusinessDataDayLimitsRatesDataInfo | undefined;
|
|
110305
110772
|
business_listings?: AppendixBusinessListingsBusinessDataLimitsRatesDataInfo | undefined;
|
|
110306
110773
|
tasks_ready?: number | undefined;
|
|
110307
|
-
id_list?: number | undefined;
|
|
110308
110774
|
available_filters?: number | undefined;
|
|
110775
|
+
id_list?: number | undefined;
|
|
110309
110776
|
[key: string]: any;
|
|
110310
110777
|
}
|
|
110311
110778
|
export declare class AppendixBacklinksDayStatisticsRatesData implements IAppendixBacklinksDayStatisticsRatesData {
|
|
@@ -110331,11 +110798,11 @@ export declare class AppendixBacklinksDayStatisticsRatesData implements IAppendi
|
|
|
110331
110798
|
competitors?: AppendixInfo | undefined;
|
|
110332
110799
|
bulk_spam_score?: AppendixInfo | undefined;
|
|
110333
110800
|
bulk_pages_summary?: AppendixInfo | undefined;
|
|
110334
|
-
historical_new_lost_summary?: AppendixInfo | undefined;
|
|
110335
110801
|
pages_summary_with_page_info?: AppendixInfo | undefined;
|
|
110336
|
-
index?: number | undefined;
|
|
110337
110802
|
id_list?: number | undefined;
|
|
110338
110803
|
available_filters?: number | undefined;
|
|
110804
|
+
historical_new_lost_summary?: AppendixInfo | undefined;
|
|
110805
|
+
index?: number | undefined;
|
|
110339
110806
|
[key: string]: any;
|
|
110340
110807
|
constructor(data?: IAppendixBacklinksDayStatisticsRatesData);
|
|
110341
110808
|
init(_data?: any): void;
|
|
@@ -110365,18 +110832,18 @@ export interface IAppendixBacklinksDayStatisticsRatesData {
|
|
|
110365
110832
|
competitors?: AppendixInfo | undefined;
|
|
110366
110833
|
bulk_spam_score?: AppendixInfo | undefined;
|
|
110367
110834
|
bulk_pages_summary?: AppendixInfo | undefined;
|
|
110368
|
-
historical_new_lost_summary?: AppendixInfo | undefined;
|
|
110369
110835
|
pages_summary_with_page_info?: AppendixInfo | undefined;
|
|
110370
|
-
index?: number | undefined;
|
|
110371
110836
|
id_list?: number | undefined;
|
|
110372
110837
|
available_filters?: number | undefined;
|
|
110838
|
+
historical_new_lost_summary?: AppendixInfo | undefined;
|
|
110839
|
+
index?: number | undefined;
|
|
110373
110840
|
[key: string]: any;
|
|
110374
110841
|
}
|
|
110375
110842
|
export declare class AppendixAppDataDayStatisticsRatesData implements IAppendixAppDataDayStatisticsRatesData {
|
|
110376
|
-
app_info?:
|
|
110377
|
-
app_list?:
|
|
110378
|
-
app_reviews?:
|
|
110379
|
-
app_searches?:
|
|
110843
|
+
app_info?: AppendixSerpsRatesDataInfo | undefined;
|
|
110844
|
+
app_list?: AppendixSerpsRatesDataInfo | undefined;
|
|
110845
|
+
app_reviews?: AppendixSerpsRatesDataInfo | undefined;
|
|
110846
|
+
app_searches?: AppendixSerpsRatesDataInfo | undefined;
|
|
110380
110847
|
errors?: number | undefined;
|
|
110381
110848
|
languages?: number | undefined;
|
|
110382
110849
|
locations?: number | undefined;
|
|
@@ -110391,10 +110858,10 @@ export declare class AppendixAppDataDayStatisticsRatesData implements IAppendixA
|
|
|
110391
110858
|
toJSON(data?: any): any;
|
|
110392
110859
|
}
|
|
110393
110860
|
export interface IAppendixAppDataDayStatisticsRatesData {
|
|
110394
|
-
app_info?:
|
|
110395
|
-
app_list?:
|
|
110396
|
-
app_reviews?:
|
|
110397
|
-
app_searches?:
|
|
110861
|
+
app_info?: AppendixSerpsRatesDataInfo | undefined;
|
|
110862
|
+
app_list?: AppendixSerpsRatesDataInfo | undefined;
|
|
110863
|
+
app_reviews?: AppendixSerpsRatesDataInfo | undefined;
|
|
110864
|
+
app_searches?: AppendixSerpsRatesDataInfo | undefined;
|
|
110398
110865
|
errors?: number | undefined;
|
|
110399
110866
|
languages?: number | undefined;
|
|
110400
110867
|
locations?: number | undefined;
|
|
@@ -110415,8 +110882,8 @@ export declare class AppendixContentAnalysisDayStatisticsRatesData implements IA
|
|
|
110415
110882
|
languages?: number | undefined;
|
|
110416
110883
|
categories?: number | undefined;
|
|
110417
110884
|
errors?: number | undefined;
|
|
110418
|
-
id_list?: number | undefined;
|
|
110419
110885
|
available_filters?: number | undefined;
|
|
110886
|
+
id_list?: number | undefined;
|
|
110420
110887
|
[key: string]: any;
|
|
110421
110888
|
constructor(data?: IAppendixContentAnalysisDayStatisticsRatesData);
|
|
110422
110889
|
init(_data?: any): void;
|
|
@@ -110434,8 +110901,8 @@ export interface IAppendixContentAnalysisDayStatisticsRatesData {
|
|
|
110434
110901
|
languages?: number | undefined;
|
|
110435
110902
|
categories?: number | undefined;
|
|
110436
110903
|
errors?: number | undefined;
|
|
110437
|
-
id_list?: number | undefined;
|
|
110438
110904
|
available_filters?: number | undefined;
|
|
110905
|
+
id_list?: number | undefined;
|
|
110439
110906
|
[key: string]: any;
|
|
110440
110907
|
}
|
|
110441
110908
|
export declare class AppendixContentGenerationDayStatisticsRatesData implements IAppendixContentGenerationDayStatisticsRatesData {
|
|
@@ -110540,8 +111007,8 @@ minute in the yyyy-MM-dd HH:mm format */
|
|
|
110540
111007
|
reviews?: AppendixInfo | undefined;
|
|
110541
111008
|
[key: string]: any;
|
|
110542
111009
|
}
|
|
110543
|
-
export declare class
|
|
110544
|
-
serp?:
|
|
111010
|
+
export declare class AppendixMinuteStatisticsRatesData implements IAppendixMinuteStatisticsRatesData {
|
|
111011
|
+
serp?: AppendixSerpsRatesDataInfo | undefined;
|
|
110545
111012
|
/** total amount of money deposited to your account */
|
|
110546
111013
|
total?: number | undefined;
|
|
110547
111014
|
total_serp?: number | undefined;
|
|
@@ -110549,7 +111016,7 @@ export declare class AppendixMinuteStatisticsDataInfo implements IAppendixMinute
|
|
|
110549
111016
|
total_keywords_data?: number | undefined;
|
|
110550
111017
|
appendix?: AppendixAppendixDaysRatesDataInfo | undefined;
|
|
110551
111018
|
total_appendix?: number | undefined;
|
|
110552
|
-
dataforseo_labs?:
|
|
111019
|
+
dataforseo_labs?: AppendixDataforseoLabsDayStatisticsRatesData | undefined;
|
|
110553
111020
|
total_dataforseo_labs?: number | undefined;
|
|
110554
111021
|
domain_analytics?: AppendixDomainAnalyticsLimitsRatesDataInfo | undefined;
|
|
110555
111022
|
total_domain_analytics?: number | undefined;
|
|
@@ -110572,13 +111039,13 @@ day in the yyyy-MM-dd format
|
|
|
110572
111039
|
minute in the yyyy-MM-dd HH:mm format */
|
|
110573
111040
|
value?: string | undefined;
|
|
110574
111041
|
[key: string]: any;
|
|
110575
|
-
constructor(data?:
|
|
111042
|
+
constructor(data?: IAppendixMinuteStatisticsRatesData);
|
|
110576
111043
|
init(_data?: any): void;
|
|
110577
|
-
static fromJS(data: any):
|
|
111044
|
+
static fromJS(data: any): AppendixMinuteStatisticsRatesData;
|
|
110578
111045
|
toJSON(data?: any): any;
|
|
110579
111046
|
}
|
|
110580
|
-
export interface
|
|
110581
|
-
serp?:
|
|
111047
|
+
export interface IAppendixMinuteStatisticsRatesData {
|
|
111048
|
+
serp?: AppendixSerpsRatesDataInfo | undefined;
|
|
110582
111049
|
/** total amount of money deposited to your account */
|
|
110583
111050
|
total?: number | undefined;
|
|
110584
111051
|
total_serp?: number | undefined;
|
|
@@ -110586,7 +111053,7 @@ export interface IAppendixMinuteStatisticsDataInfo {
|
|
|
110586
111053
|
total_keywords_data?: number | undefined;
|
|
110587
111054
|
appendix?: AppendixAppendixDaysRatesDataInfo | undefined;
|
|
110588
111055
|
total_appendix?: number | undefined;
|
|
110589
|
-
dataforseo_labs?:
|
|
111056
|
+
dataforseo_labs?: AppendixDataforseoLabsDayStatisticsRatesData | undefined;
|
|
110590
111057
|
total_dataforseo_labs?: number | undefined;
|
|
110591
111058
|
domain_analytics?: AppendixDomainAnalyticsLimitsRatesDataInfo | undefined;
|
|
110592
111059
|
total_domain_analytics?: number | undefined;
|
|
@@ -110612,7 +111079,7 @@ minute in the yyyy-MM-dd HH:mm format */
|
|
|
110612
111079
|
}
|
|
110613
111080
|
export declare class AppendixStatisticsRatesData implements IAppendixStatisticsRatesData {
|
|
110614
111081
|
day?: AppendixDayStatisticsRatesData | undefined;
|
|
110615
|
-
minute?:
|
|
111082
|
+
minute?: AppendixMinuteStatisticsRatesData | undefined;
|
|
110616
111083
|
[key: string]: any;
|
|
110617
111084
|
constructor(data?: IAppendixStatisticsRatesData);
|
|
110618
111085
|
init(_data?: any): void;
|
|
@@ -110621,7 +111088,7 @@ export declare class AppendixStatisticsRatesData implements IAppendixStatisticsR
|
|
|
110621
111088
|
}
|
|
110622
111089
|
export interface IAppendixStatisticsRatesData {
|
|
110623
111090
|
day?: AppendixDayStatisticsRatesData | undefined;
|
|
110624
|
-
minute?:
|
|
111091
|
+
minute?: AppendixMinuteStatisticsRatesData | undefined;
|
|
110625
111092
|
[key: string]: any;
|
|
110626
111093
|
}
|
|
110627
111094
|
export declare class AppendixRatesData implements IAppendixRatesData {
|
|
@@ -110675,8 +111142,8 @@ export declare class AppendixKeywordsDataDayStatisticsMoneyData implements IAppe
|
|
|
110675
111142
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
110676
111143
|
audience_estimation?: AppendixInfo | undefined;
|
|
110677
111144
|
keyword_suggestions_for_url?: AppendixInfo | undefined;
|
|
110678
|
-
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
110679
111145
|
search_volume_history?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
111146
|
+
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
110680
111147
|
[key: string]: any;
|
|
110681
111148
|
constructor(data?: IAppendixKeywordsDataDayStatisticsMoneyData);
|
|
110682
111149
|
init(_data?: any): void;
|
|
@@ -110702,8 +111169,22 @@ export interface IAppendixKeywordsDataDayStatisticsMoneyData {
|
|
|
110702
111169
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
110703
111170
|
audience_estimation?: AppendixInfo | undefined;
|
|
110704
111171
|
keyword_suggestions_for_url?: AppendixInfo | undefined;
|
|
110705
|
-
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
110706
111172
|
search_volume_history?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
111173
|
+
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
111174
|
+
[key: string]: any;
|
|
111175
|
+
}
|
|
111176
|
+
export declare class AppendixReviewsDayStatisticsMoneyData implements IAppendixReviewsDayStatisticsMoneyData {
|
|
111177
|
+
task_post?: number | undefined;
|
|
111178
|
+
refund_money?: number | undefined;
|
|
111179
|
+
[key: string]: any;
|
|
111180
|
+
constructor(data?: IAppendixReviewsDayStatisticsMoneyData);
|
|
111181
|
+
init(_data?: any): void;
|
|
111182
|
+
static fromJS(data: any): AppendixReviewsDayStatisticsMoneyData;
|
|
111183
|
+
toJSON(data?: any): any;
|
|
111184
|
+
}
|
|
111185
|
+
export interface IAppendixReviewsDayStatisticsMoneyData {
|
|
111186
|
+
task_post?: number | undefined;
|
|
111187
|
+
refund_money?: number | undefined;
|
|
110707
111188
|
[key: string]: any;
|
|
110708
111189
|
}
|
|
110709
111190
|
export declare class AppendixDayStatisticsMoneyData implements IAppendixDayStatisticsMoneyData {
|
|
@@ -110739,7 +111220,7 @@ minute in the yyyy-MM-dd HH:mm format */
|
|
|
110739
111220
|
value?: string | undefined;
|
|
110740
111221
|
total_traffic_analytics?: number | undefined;
|
|
110741
111222
|
total_reviews?: number | undefined;
|
|
110742
|
-
reviews?:
|
|
111223
|
+
reviews?: AppendixReviewsDayStatisticsMoneyData | undefined;
|
|
110743
111224
|
[key: string]: any;
|
|
110744
111225
|
constructor(data?: IAppendixDayStatisticsMoneyData);
|
|
110745
111226
|
init(_data?: any): void;
|
|
@@ -110779,12 +111260,82 @@ minute in the yyyy-MM-dd HH:mm format */
|
|
|
110779
111260
|
value?: string | undefined;
|
|
110780
111261
|
total_traffic_analytics?: number | undefined;
|
|
110781
111262
|
total_reviews?: number | undefined;
|
|
110782
|
-
reviews?:
|
|
111263
|
+
reviews?: AppendixReviewsDayStatisticsMoneyData | undefined;
|
|
111264
|
+
[key: string]: any;
|
|
111265
|
+
}
|
|
111266
|
+
export declare class AppendixMinuteStatisticsMoneyData implements IAppendixMinuteStatisticsMoneyData {
|
|
111267
|
+
serp?: AppendixSerpDayStatisticsRatesData | undefined;
|
|
111268
|
+
/** total amount of money deposited to your account */
|
|
111269
|
+
total?: number | undefined;
|
|
111270
|
+
total_serp?: number | undefined;
|
|
111271
|
+
keywords_data?: AppendixKeywordsDatasRatesDataInfo | undefined;
|
|
111272
|
+
total_keywords_data?: number | undefined;
|
|
111273
|
+
appendix?: AppendixAppendixDaysRatesDataInfo | undefined;
|
|
111274
|
+
total_appendix?: number | undefined;
|
|
111275
|
+
dataforseo_labs?: AppendixDataforseoLabsDayStatisticsRatesData | undefined;
|
|
111276
|
+
total_dataforseo_labs?: number | undefined;
|
|
111277
|
+
domain_analytics?: AppendixDomainAnalyticsLimitsRatesDataInfo | undefined;
|
|
111278
|
+
total_domain_analytics?: number | undefined;
|
|
111279
|
+
merchant?: AppendixMerchantLimitsRatesDataInfo | undefined;
|
|
111280
|
+
total_merchant?: number | undefined;
|
|
111281
|
+
on_page?: AppendixOnPageLimitsRatesDataInfo | undefined;
|
|
111282
|
+
total_on_page?: number | undefined;
|
|
111283
|
+
business_data?: AppendixBusinessDataLimitsRatesDataInfo | undefined;
|
|
111284
|
+
total_business_data?: number | undefined;
|
|
111285
|
+
backlinks?: AppendixBacklinksLimitsRatesDataInfo | undefined;
|
|
111286
|
+
total_backlinks?: number | undefined;
|
|
111287
|
+
app_data?: AppendixAppDataLimitsRatesDataInfo | undefined;
|
|
111288
|
+
total_app_data?: number | undefined;
|
|
111289
|
+
content_analysis?: AppendixContentAnalysisLimitsRatesDataInfo | undefined;
|
|
111290
|
+
total_content_analysis?: number | undefined;
|
|
111291
|
+
content_generation?: AppendixContentGenerationLimitsRatesDataInfo | undefined;
|
|
111292
|
+
total_content_generation?: number | undefined;
|
|
111293
|
+
/** time period for grouping
|
|
111294
|
+
day in the yyyy-MM-dd format
|
|
111295
|
+
minute in the yyyy-MM-dd HH:mm format */
|
|
111296
|
+
value?: string | undefined;
|
|
111297
|
+
[key: string]: any;
|
|
111298
|
+
constructor(data?: IAppendixMinuteStatisticsMoneyData);
|
|
111299
|
+
init(_data?: any): void;
|
|
111300
|
+
static fromJS(data: any): AppendixMinuteStatisticsMoneyData;
|
|
111301
|
+
toJSON(data?: any): any;
|
|
111302
|
+
}
|
|
111303
|
+
export interface IAppendixMinuteStatisticsMoneyData {
|
|
111304
|
+
serp?: AppendixSerpDayStatisticsRatesData | undefined;
|
|
111305
|
+
/** total amount of money deposited to your account */
|
|
111306
|
+
total?: number | undefined;
|
|
111307
|
+
total_serp?: number | undefined;
|
|
111308
|
+
keywords_data?: AppendixKeywordsDatasRatesDataInfo | undefined;
|
|
111309
|
+
total_keywords_data?: number | undefined;
|
|
111310
|
+
appendix?: AppendixAppendixDaysRatesDataInfo | undefined;
|
|
111311
|
+
total_appendix?: number | undefined;
|
|
111312
|
+
dataforseo_labs?: AppendixDataforseoLabsDayStatisticsRatesData | undefined;
|
|
111313
|
+
total_dataforseo_labs?: number | undefined;
|
|
111314
|
+
domain_analytics?: AppendixDomainAnalyticsLimitsRatesDataInfo | undefined;
|
|
111315
|
+
total_domain_analytics?: number | undefined;
|
|
111316
|
+
merchant?: AppendixMerchantLimitsRatesDataInfo | undefined;
|
|
111317
|
+
total_merchant?: number | undefined;
|
|
111318
|
+
on_page?: AppendixOnPageLimitsRatesDataInfo | undefined;
|
|
111319
|
+
total_on_page?: number | undefined;
|
|
111320
|
+
business_data?: AppendixBusinessDataLimitsRatesDataInfo | undefined;
|
|
111321
|
+
total_business_data?: number | undefined;
|
|
111322
|
+
backlinks?: AppendixBacklinksLimitsRatesDataInfo | undefined;
|
|
111323
|
+
total_backlinks?: number | undefined;
|
|
111324
|
+
app_data?: AppendixAppDataLimitsRatesDataInfo | undefined;
|
|
111325
|
+
total_app_data?: number | undefined;
|
|
111326
|
+
content_analysis?: AppendixContentAnalysisLimitsRatesDataInfo | undefined;
|
|
111327
|
+
total_content_analysis?: number | undefined;
|
|
111328
|
+
content_generation?: AppendixContentGenerationLimitsRatesDataInfo | undefined;
|
|
111329
|
+
total_content_generation?: number | undefined;
|
|
111330
|
+
/** time period for grouping
|
|
111331
|
+
day in the yyyy-MM-dd format
|
|
111332
|
+
minute in the yyyy-MM-dd HH:mm format */
|
|
111333
|
+
value?: string | undefined;
|
|
110783
111334
|
[key: string]: any;
|
|
110784
111335
|
}
|
|
110785
111336
|
export declare class AppendixStatisticsMoneyData implements IAppendixStatisticsMoneyData {
|
|
110786
111337
|
day?: AppendixDayStatisticsMoneyData | undefined;
|
|
110787
|
-
minute?:
|
|
111338
|
+
minute?: AppendixMinuteStatisticsMoneyData | undefined;
|
|
110788
111339
|
[key: string]: any;
|
|
110789
111340
|
constructor(data?: IAppendixStatisticsMoneyData);
|
|
110790
111341
|
init(_data?: any): void;
|
|
@@ -110793,7 +111344,7 @@ export declare class AppendixStatisticsMoneyData implements IAppendixStatisticsM
|
|
|
110793
111344
|
}
|
|
110794
111345
|
export interface IAppendixStatisticsMoneyData {
|
|
110795
111346
|
day?: AppendixDayStatisticsMoneyData | undefined;
|
|
110796
|
-
minute?:
|
|
111347
|
+
minute?: AppendixMinuteStatisticsMoneyData | undefined;
|
|
110797
111348
|
[key: string]: any;
|
|
110798
111349
|
}
|
|
110799
111350
|
export declare class AppendixMoneyData implements IAppendixMoneyData {
|
|
@@ -111163,9 +111714,9 @@ export interface IAppendixMerchantPriceData {
|
|
|
111163
111714
|
[key: string]: any;
|
|
111164
111715
|
}
|
|
111165
111716
|
export declare class AppendixSerpPriceDataInfo implements IAppendixSerpPriceDataInfo {
|
|
111166
|
-
regular?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
111167
|
-
advanced?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
111168
111717
|
html?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
111718
|
+
advanced?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
111719
|
+
regular?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
111169
111720
|
[key: string]: any;
|
|
111170
111721
|
constructor(data?: IAppendixSerpPriceDataInfo);
|
|
111171
111722
|
init(_data?: any): void;
|
|
@@ -111173,9 +111724,9 @@ export declare class AppendixSerpPriceDataInfo implements IAppendixSerpPriceData
|
|
|
111173
111724
|
toJSON(data?: any): any;
|
|
111174
111725
|
}
|
|
111175
111726
|
export interface IAppendixSerpPriceDataInfo {
|
|
111176
|
-
regular?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
111177
|
-
advanced?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
111178
111727
|
html?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
111728
|
+
advanced?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
111729
|
+
regular?: AppendixTaskKeywordsDataPriceDataInfo | undefined;
|
|
111179
111730
|
[key: string]: any;
|
|
111180
111731
|
}
|
|
111181
111732
|
export declare class AppendixSerpPriceData implements IAppendixSerpPriceData {
|