@seekora-ai/admin-api 1.1.68 → 1.1.69
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/README.md +3 -2
- package/api.ts +67 -0
- package/dist/api.d.ts +67 -0
- package/dist/esm/api.d.ts +67 -0
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.69.tgz +0 -0
- package/seekora-ai-admin-api-1.1.68.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @seekora-ai/admin-api@1.1.
|
|
1
|
+
## @seekora-ai/admin-api@1.1.69
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @seekora-ai/admin-api@1.1.
|
|
39
|
+
npm install @seekora-ai/admin-api@1.1.69 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -631,6 +631,7 @@ Class | Method | HTTP request | Description
|
|
|
631
631
|
- [AnalyticsQueryPopularResultsSection](docs/AnalyticsQueryPopularResultsSection.md)
|
|
632
632
|
- [AnalyticsQueryResponse](docs/AnalyticsQueryResponse.md)
|
|
633
633
|
- [AnalyticsQuerySuggestionsAnalytic](docs/AnalyticsQuerySuggestionsAnalytic.md)
|
|
634
|
+
- [AnalyticsQuerySuggestionsGeoAnalytic](docs/AnalyticsQuerySuggestionsGeoAnalytic.md)
|
|
634
635
|
- [AnalyticsQuerySuggestionsInsight](docs/AnalyticsQuerySuggestionsInsight.md)
|
|
635
636
|
- [AnalyticsQuerySuggestionsResponse](docs/AnalyticsQuerySuggestionsResponse.md)
|
|
636
637
|
- [AnalyticsSearchCount](docs/AnalyticsSearchCount.md)
|
package/api.ts
CHANGED
|
@@ -6016,6 +6016,67 @@ export interface AnalyticsQuerySuggestionsAnalytic {
|
|
|
6016
6016
|
*/
|
|
6017
6017
|
'unique_users'?: number;
|
|
6018
6018
|
}
|
|
6019
|
+
/**
|
|
6020
|
+
*
|
|
6021
|
+
* @export
|
|
6022
|
+
* @interface AnalyticsQuerySuggestionsGeoAnalytic
|
|
6023
|
+
*/
|
|
6024
|
+
export interface AnalyticsQuerySuggestionsGeoAnalytic {
|
|
6025
|
+
/**
|
|
6026
|
+
* Average processing time
|
|
6027
|
+
* @type {number}
|
|
6028
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6029
|
+
*/
|
|
6030
|
+
'avg_processing_time_ms'?: number;
|
|
6031
|
+
/**
|
|
6032
|
+
* Average suggestions per request
|
|
6033
|
+
* @type {number}
|
|
6034
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6035
|
+
*/
|
|
6036
|
+
'avg_suggestions_per_request'?: number;
|
|
6037
|
+
/**
|
|
6038
|
+
*
|
|
6039
|
+
* @type {string}
|
|
6040
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6041
|
+
*/
|
|
6042
|
+
'city'?: string;
|
|
6043
|
+
/**
|
|
6044
|
+
*
|
|
6045
|
+
* @type {string}
|
|
6046
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6047
|
+
*/
|
|
6048
|
+
'country'?: string;
|
|
6049
|
+
/**
|
|
6050
|
+
*
|
|
6051
|
+
* @type {string}
|
|
6052
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6053
|
+
*/
|
|
6054
|
+
'country_code'?: string;
|
|
6055
|
+
/**
|
|
6056
|
+
*
|
|
6057
|
+
* @type {string}
|
|
6058
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6059
|
+
*/
|
|
6060
|
+
'region'?: string;
|
|
6061
|
+
/**
|
|
6062
|
+
* Number of suggestion requests
|
|
6063
|
+
* @type {number}
|
|
6064
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6065
|
+
*/
|
|
6066
|
+
'requests'?: number;
|
|
6067
|
+
/**
|
|
6068
|
+
* Total suggestions shown
|
|
6069
|
+
* @type {number}
|
|
6070
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6071
|
+
*/
|
|
6072
|
+
'total_suggestions_returned'?: number;
|
|
6073
|
+
/**
|
|
6074
|
+
* Unique users
|
|
6075
|
+
* @type {number}
|
|
6076
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6077
|
+
*/
|
|
6078
|
+
'unique_users'?: number;
|
|
6079
|
+
}
|
|
6019
6080
|
/**
|
|
6020
6081
|
*
|
|
6021
6082
|
* @export
|
|
@@ -6040,6 +6101,12 @@ export interface AnalyticsQuerySuggestionsInsight {
|
|
|
6040
6101
|
* @memberof AnalyticsQuerySuggestionsInsight
|
|
6041
6102
|
*/
|
|
6042
6103
|
'end_time'?: string;
|
|
6104
|
+
/**
|
|
6105
|
+
* Optional geo breakdown
|
|
6106
|
+
* @type {Array<AnalyticsQuerySuggestionsGeoAnalytic>}
|
|
6107
|
+
* @memberof AnalyticsQuerySuggestionsInsight
|
|
6108
|
+
*/
|
|
6109
|
+
'geo_breakdown'?: Array<AnalyticsQuerySuggestionsGeoAnalytic>;
|
|
6043
6110
|
/**
|
|
6044
6111
|
*
|
|
6045
6112
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -6028,6 +6028,67 @@ export interface AnalyticsQuerySuggestionsAnalytic {
|
|
|
6028
6028
|
*/
|
|
6029
6029
|
'unique_users'?: number;
|
|
6030
6030
|
}
|
|
6031
|
+
/**
|
|
6032
|
+
*
|
|
6033
|
+
* @export
|
|
6034
|
+
* @interface AnalyticsQuerySuggestionsGeoAnalytic
|
|
6035
|
+
*/
|
|
6036
|
+
export interface AnalyticsQuerySuggestionsGeoAnalytic {
|
|
6037
|
+
/**
|
|
6038
|
+
* Average processing time
|
|
6039
|
+
* @type {number}
|
|
6040
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6041
|
+
*/
|
|
6042
|
+
'avg_processing_time_ms'?: number;
|
|
6043
|
+
/**
|
|
6044
|
+
* Average suggestions per request
|
|
6045
|
+
* @type {number}
|
|
6046
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6047
|
+
*/
|
|
6048
|
+
'avg_suggestions_per_request'?: number;
|
|
6049
|
+
/**
|
|
6050
|
+
*
|
|
6051
|
+
* @type {string}
|
|
6052
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6053
|
+
*/
|
|
6054
|
+
'city'?: string;
|
|
6055
|
+
/**
|
|
6056
|
+
*
|
|
6057
|
+
* @type {string}
|
|
6058
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6059
|
+
*/
|
|
6060
|
+
'country'?: string;
|
|
6061
|
+
/**
|
|
6062
|
+
*
|
|
6063
|
+
* @type {string}
|
|
6064
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6065
|
+
*/
|
|
6066
|
+
'country_code'?: string;
|
|
6067
|
+
/**
|
|
6068
|
+
*
|
|
6069
|
+
* @type {string}
|
|
6070
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6071
|
+
*/
|
|
6072
|
+
'region'?: string;
|
|
6073
|
+
/**
|
|
6074
|
+
* Number of suggestion requests
|
|
6075
|
+
* @type {number}
|
|
6076
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6077
|
+
*/
|
|
6078
|
+
'requests'?: number;
|
|
6079
|
+
/**
|
|
6080
|
+
* Total suggestions shown
|
|
6081
|
+
* @type {number}
|
|
6082
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6083
|
+
*/
|
|
6084
|
+
'total_suggestions_returned'?: number;
|
|
6085
|
+
/**
|
|
6086
|
+
* Unique users
|
|
6087
|
+
* @type {number}
|
|
6088
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6089
|
+
*/
|
|
6090
|
+
'unique_users'?: number;
|
|
6091
|
+
}
|
|
6031
6092
|
/**
|
|
6032
6093
|
*
|
|
6033
6094
|
* @export
|
|
@@ -6052,6 +6113,12 @@ export interface AnalyticsQuerySuggestionsInsight {
|
|
|
6052
6113
|
* @memberof AnalyticsQuerySuggestionsInsight
|
|
6053
6114
|
*/
|
|
6054
6115
|
'end_time'?: string;
|
|
6116
|
+
/**
|
|
6117
|
+
* Optional geo breakdown
|
|
6118
|
+
* @type {Array<AnalyticsQuerySuggestionsGeoAnalytic>}
|
|
6119
|
+
* @memberof AnalyticsQuerySuggestionsInsight
|
|
6120
|
+
*/
|
|
6121
|
+
'geo_breakdown'?: Array<AnalyticsQuerySuggestionsGeoAnalytic>;
|
|
6055
6122
|
/**
|
|
6056
6123
|
*
|
|
6057
6124
|
* @type {number}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -6028,6 +6028,67 @@ export interface AnalyticsQuerySuggestionsAnalytic {
|
|
|
6028
6028
|
*/
|
|
6029
6029
|
'unique_users'?: number;
|
|
6030
6030
|
}
|
|
6031
|
+
/**
|
|
6032
|
+
*
|
|
6033
|
+
* @export
|
|
6034
|
+
* @interface AnalyticsQuerySuggestionsGeoAnalytic
|
|
6035
|
+
*/
|
|
6036
|
+
export interface AnalyticsQuerySuggestionsGeoAnalytic {
|
|
6037
|
+
/**
|
|
6038
|
+
* Average processing time
|
|
6039
|
+
* @type {number}
|
|
6040
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6041
|
+
*/
|
|
6042
|
+
'avg_processing_time_ms'?: number;
|
|
6043
|
+
/**
|
|
6044
|
+
* Average suggestions per request
|
|
6045
|
+
* @type {number}
|
|
6046
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6047
|
+
*/
|
|
6048
|
+
'avg_suggestions_per_request'?: number;
|
|
6049
|
+
/**
|
|
6050
|
+
*
|
|
6051
|
+
* @type {string}
|
|
6052
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6053
|
+
*/
|
|
6054
|
+
'city'?: string;
|
|
6055
|
+
/**
|
|
6056
|
+
*
|
|
6057
|
+
* @type {string}
|
|
6058
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6059
|
+
*/
|
|
6060
|
+
'country'?: string;
|
|
6061
|
+
/**
|
|
6062
|
+
*
|
|
6063
|
+
* @type {string}
|
|
6064
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6065
|
+
*/
|
|
6066
|
+
'country_code'?: string;
|
|
6067
|
+
/**
|
|
6068
|
+
*
|
|
6069
|
+
* @type {string}
|
|
6070
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6071
|
+
*/
|
|
6072
|
+
'region'?: string;
|
|
6073
|
+
/**
|
|
6074
|
+
* Number of suggestion requests
|
|
6075
|
+
* @type {number}
|
|
6076
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6077
|
+
*/
|
|
6078
|
+
'requests'?: number;
|
|
6079
|
+
/**
|
|
6080
|
+
* Total suggestions shown
|
|
6081
|
+
* @type {number}
|
|
6082
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6083
|
+
*/
|
|
6084
|
+
'total_suggestions_returned'?: number;
|
|
6085
|
+
/**
|
|
6086
|
+
* Unique users
|
|
6087
|
+
* @type {number}
|
|
6088
|
+
* @memberof AnalyticsQuerySuggestionsGeoAnalytic
|
|
6089
|
+
*/
|
|
6090
|
+
'unique_users'?: number;
|
|
6091
|
+
}
|
|
6031
6092
|
/**
|
|
6032
6093
|
*
|
|
6033
6094
|
* @export
|
|
@@ -6052,6 +6113,12 @@ export interface AnalyticsQuerySuggestionsInsight {
|
|
|
6052
6113
|
* @memberof AnalyticsQuerySuggestionsInsight
|
|
6053
6114
|
*/
|
|
6054
6115
|
'end_time'?: string;
|
|
6116
|
+
/**
|
|
6117
|
+
* Optional geo breakdown
|
|
6118
|
+
* @type {Array<AnalyticsQuerySuggestionsGeoAnalytic>}
|
|
6119
|
+
* @memberof AnalyticsQuerySuggestionsInsight
|
|
6120
|
+
*/
|
|
6121
|
+
'geo_breakdown'?: Array<AnalyticsQuerySuggestionsGeoAnalytic>;
|
|
6055
6122
|
/**
|
|
6056
6123
|
*
|
|
6057
6124
|
* @type {number}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|