@seekora-ai/admin-api 1.0.53 → 1.0.54
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 +2 -2
- package/api.ts +54 -0
- package/dist/api.d.ts +54 -0
- package/dist/esm/api.d.ts +54 -0
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.54.tgz +0 -0
- package/seekora-ai-admin-api-1.0.53.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @seekora-ai/admin-api@1.0.
|
|
1
|
+
## @seekora-ai/admin-api@1.0.54
|
|
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.0.
|
|
39
|
+
npm install @seekora-ai/admin-api@1.0.54 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -2738,6 +2738,12 @@ export interface AnalyticsGeoTopResult {
|
|
|
2738
2738
|
* @memberof AnalyticsGeoTopResult
|
|
2739
2739
|
*/
|
|
2740
2740
|
'share'?: number;
|
|
2741
|
+
/**
|
|
2742
|
+
* Widget display fields for UI presentation
|
|
2743
|
+
* @type {AnalyticsWidgetData}
|
|
2744
|
+
* @memberof AnalyticsGeoTopResult
|
|
2745
|
+
*/
|
|
2746
|
+
'widget'?: AnalyticsWidgetData;
|
|
2741
2747
|
}
|
|
2742
2748
|
/**
|
|
2743
2749
|
*
|
|
@@ -4028,42 +4034,90 @@ export interface AnalyticsKPIMetrics {
|
|
|
4028
4034
|
* @memberof AnalyticsKPIMetrics
|
|
4029
4035
|
*/
|
|
4030
4036
|
'add_to_cart_rate'?: number;
|
|
4037
|
+
/**
|
|
4038
|
+
* True if there are searches to calculate add to cart rate
|
|
4039
|
+
* @type {boolean}
|
|
4040
|
+
* @memberof AnalyticsKPIMetrics
|
|
4041
|
+
*/
|
|
4042
|
+
'add_to_cart_rate_has_data'?: boolean;
|
|
4031
4043
|
/**
|
|
4032
4044
|
*
|
|
4033
4045
|
* @type {number}
|
|
4034
4046
|
* @memberof AnalyticsKPIMetrics
|
|
4035
4047
|
*/
|
|
4036
4048
|
'avg_order_value'?: number;
|
|
4049
|
+
/**
|
|
4050
|
+
* True if there are purchases to calculate AOV
|
|
4051
|
+
* @type {boolean}
|
|
4052
|
+
* @memberof AnalyticsKPIMetrics
|
|
4053
|
+
*/
|
|
4054
|
+
'avg_order_value_has_data'?: boolean;
|
|
4037
4055
|
/**
|
|
4038
4056
|
*
|
|
4039
4057
|
* @type {number}
|
|
4040
4058
|
* @memberof AnalyticsKPIMetrics
|
|
4041
4059
|
*/
|
|
4042
4060
|
'click_through_rate'?: number;
|
|
4061
|
+
/**
|
|
4062
|
+
* True if there are searches to calculate CTR
|
|
4063
|
+
* @type {boolean}
|
|
4064
|
+
* @memberof AnalyticsKPIMetrics
|
|
4065
|
+
*/
|
|
4066
|
+
'click_through_rate_has_data'?: boolean;
|
|
4043
4067
|
/**
|
|
4044
4068
|
*
|
|
4045
4069
|
* @type {number}
|
|
4046
4070
|
* @memberof AnalyticsKPIMetrics
|
|
4047
4071
|
*/
|
|
4048
4072
|
'conversion_rate'?: number;
|
|
4073
|
+
/**
|
|
4074
|
+
* True if there are searches to calculate conversion rate
|
|
4075
|
+
* @type {boolean}
|
|
4076
|
+
* @memberof AnalyticsKPIMetrics
|
|
4077
|
+
*/
|
|
4078
|
+
'conversion_rate_has_data'?: boolean;
|
|
4079
|
+
/**
|
|
4080
|
+
* Indicates if there\'s enough data for rates calculation
|
|
4081
|
+
* @type {boolean}
|
|
4082
|
+
* @memberof AnalyticsKPIMetrics
|
|
4083
|
+
*/
|
|
4084
|
+
'has_data'?: boolean;
|
|
4049
4085
|
/**
|
|
4050
4086
|
*
|
|
4051
4087
|
* @type {number}
|
|
4052
4088
|
* @memberof AnalyticsKPIMetrics
|
|
4053
4089
|
*/
|
|
4054
4090
|
'no_clicks_rate'?: number;
|
|
4091
|
+
/**
|
|
4092
|
+
* True if there are searches to calculate no clicks rate
|
|
4093
|
+
* @type {boolean}
|
|
4094
|
+
* @memberof AnalyticsKPIMetrics
|
|
4095
|
+
*/
|
|
4096
|
+
'no_clicks_rate_has_data'?: boolean;
|
|
4055
4097
|
/**
|
|
4056
4098
|
*
|
|
4057
4099
|
* @type {number}
|
|
4058
4100
|
* @memberof AnalyticsKPIMetrics
|
|
4059
4101
|
*/
|
|
4060
4102
|
'no_results_rate'?: number;
|
|
4103
|
+
/**
|
|
4104
|
+
* Individual has_data flags for each rate
|
|
4105
|
+
* @type {boolean}
|
|
4106
|
+
* @memberof AnalyticsKPIMetrics
|
|
4107
|
+
*/
|
|
4108
|
+
'no_results_rate_has_data'?: boolean;
|
|
4061
4109
|
/**
|
|
4062
4110
|
*
|
|
4063
4111
|
* @type {number}
|
|
4064
4112
|
* @memberof AnalyticsKPIMetrics
|
|
4065
4113
|
*/
|
|
4066
4114
|
'purchase_rate'?: number;
|
|
4115
|
+
/**
|
|
4116
|
+
* True if there are searches to calculate purchase rate
|
|
4117
|
+
* @type {boolean}
|
|
4118
|
+
* @memberof AnalyticsKPIMetrics
|
|
4119
|
+
*/
|
|
4120
|
+
'purchase_rate_has_data'?: boolean;
|
|
4067
4121
|
/**
|
|
4068
4122
|
*
|
|
4069
4123
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -2734,6 +2734,12 @@ export interface AnalyticsGeoTopResult {
|
|
|
2734
2734
|
* @memberof AnalyticsGeoTopResult
|
|
2735
2735
|
*/
|
|
2736
2736
|
'share'?: number;
|
|
2737
|
+
/**
|
|
2738
|
+
* Widget display fields for UI presentation
|
|
2739
|
+
* @type {AnalyticsWidgetData}
|
|
2740
|
+
* @memberof AnalyticsGeoTopResult
|
|
2741
|
+
*/
|
|
2742
|
+
'widget'?: AnalyticsWidgetData;
|
|
2737
2743
|
}
|
|
2738
2744
|
/**
|
|
2739
2745
|
*
|
|
@@ -4026,42 +4032,90 @@ export interface AnalyticsKPIMetrics {
|
|
|
4026
4032
|
* @memberof AnalyticsKPIMetrics
|
|
4027
4033
|
*/
|
|
4028
4034
|
'add_to_cart_rate'?: number;
|
|
4035
|
+
/**
|
|
4036
|
+
* True if there are searches to calculate add to cart rate
|
|
4037
|
+
* @type {boolean}
|
|
4038
|
+
* @memberof AnalyticsKPIMetrics
|
|
4039
|
+
*/
|
|
4040
|
+
'add_to_cart_rate_has_data'?: boolean;
|
|
4029
4041
|
/**
|
|
4030
4042
|
*
|
|
4031
4043
|
* @type {number}
|
|
4032
4044
|
* @memberof AnalyticsKPIMetrics
|
|
4033
4045
|
*/
|
|
4034
4046
|
'avg_order_value'?: number;
|
|
4047
|
+
/**
|
|
4048
|
+
* True if there are purchases to calculate AOV
|
|
4049
|
+
* @type {boolean}
|
|
4050
|
+
* @memberof AnalyticsKPIMetrics
|
|
4051
|
+
*/
|
|
4052
|
+
'avg_order_value_has_data'?: boolean;
|
|
4035
4053
|
/**
|
|
4036
4054
|
*
|
|
4037
4055
|
* @type {number}
|
|
4038
4056
|
* @memberof AnalyticsKPIMetrics
|
|
4039
4057
|
*/
|
|
4040
4058
|
'click_through_rate'?: number;
|
|
4059
|
+
/**
|
|
4060
|
+
* True if there are searches to calculate CTR
|
|
4061
|
+
* @type {boolean}
|
|
4062
|
+
* @memberof AnalyticsKPIMetrics
|
|
4063
|
+
*/
|
|
4064
|
+
'click_through_rate_has_data'?: boolean;
|
|
4041
4065
|
/**
|
|
4042
4066
|
*
|
|
4043
4067
|
* @type {number}
|
|
4044
4068
|
* @memberof AnalyticsKPIMetrics
|
|
4045
4069
|
*/
|
|
4046
4070
|
'conversion_rate'?: number;
|
|
4071
|
+
/**
|
|
4072
|
+
* True if there are searches to calculate conversion rate
|
|
4073
|
+
* @type {boolean}
|
|
4074
|
+
* @memberof AnalyticsKPIMetrics
|
|
4075
|
+
*/
|
|
4076
|
+
'conversion_rate_has_data'?: boolean;
|
|
4077
|
+
/**
|
|
4078
|
+
* Indicates if there\'s enough data for rates calculation
|
|
4079
|
+
* @type {boolean}
|
|
4080
|
+
* @memberof AnalyticsKPIMetrics
|
|
4081
|
+
*/
|
|
4082
|
+
'has_data'?: boolean;
|
|
4047
4083
|
/**
|
|
4048
4084
|
*
|
|
4049
4085
|
* @type {number}
|
|
4050
4086
|
* @memberof AnalyticsKPIMetrics
|
|
4051
4087
|
*/
|
|
4052
4088
|
'no_clicks_rate'?: number;
|
|
4089
|
+
/**
|
|
4090
|
+
* True if there are searches to calculate no clicks rate
|
|
4091
|
+
* @type {boolean}
|
|
4092
|
+
* @memberof AnalyticsKPIMetrics
|
|
4093
|
+
*/
|
|
4094
|
+
'no_clicks_rate_has_data'?: boolean;
|
|
4053
4095
|
/**
|
|
4054
4096
|
*
|
|
4055
4097
|
* @type {number}
|
|
4056
4098
|
* @memberof AnalyticsKPIMetrics
|
|
4057
4099
|
*/
|
|
4058
4100
|
'no_results_rate'?: number;
|
|
4101
|
+
/**
|
|
4102
|
+
* Individual has_data flags for each rate
|
|
4103
|
+
* @type {boolean}
|
|
4104
|
+
* @memberof AnalyticsKPIMetrics
|
|
4105
|
+
*/
|
|
4106
|
+
'no_results_rate_has_data'?: boolean;
|
|
4059
4107
|
/**
|
|
4060
4108
|
*
|
|
4061
4109
|
* @type {number}
|
|
4062
4110
|
* @memberof AnalyticsKPIMetrics
|
|
4063
4111
|
*/
|
|
4064
4112
|
'purchase_rate'?: number;
|
|
4113
|
+
/**
|
|
4114
|
+
* True if there are searches to calculate purchase rate
|
|
4115
|
+
* @type {boolean}
|
|
4116
|
+
* @memberof AnalyticsKPIMetrics
|
|
4117
|
+
*/
|
|
4118
|
+
'purchase_rate_has_data'?: boolean;
|
|
4065
4119
|
/**
|
|
4066
4120
|
*
|
|
4067
4121
|
* @type {number}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2734,6 +2734,12 @@ export interface AnalyticsGeoTopResult {
|
|
|
2734
2734
|
* @memberof AnalyticsGeoTopResult
|
|
2735
2735
|
*/
|
|
2736
2736
|
'share'?: number;
|
|
2737
|
+
/**
|
|
2738
|
+
* Widget display fields for UI presentation
|
|
2739
|
+
* @type {AnalyticsWidgetData}
|
|
2740
|
+
* @memberof AnalyticsGeoTopResult
|
|
2741
|
+
*/
|
|
2742
|
+
'widget'?: AnalyticsWidgetData;
|
|
2737
2743
|
}
|
|
2738
2744
|
/**
|
|
2739
2745
|
*
|
|
@@ -4026,42 +4032,90 @@ export interface AnalyticsKPIMetrics {
|
|
|
4026
4032
|
* @memberof AnalyticsKPIMetrics
|
|
4027
4033
|
*/
|
|
4028
4034
|
'add_to_cart_rate'?: number;
|
|
4035
|
+
/**
|
|
4036
|
+
* True if there are searches to calculate add to cart rate
|
|
4037
|
+
* @type {boolean}
|
|
4038
|
+
* @memberof AnalyticsKPIMetrics
|
|
4039
|
+
*/
|
|
4040
|
+
'add_to_cart_rate_has_data'?: boolean;
|
|
4029
4041
|
/**
|
|
4030
4042
|
*
|
|
4031
4043
|
* @type {number}
|
|
4032
4044
|
* @memberof AnalyticsKPIMetrics
|
|
4033
4045
|
*/
|
|
4034
4046
|
'avg_order_value'?: number;
|
|
4047
|
+
/**
|
|
4048
|
+
* True if there are purchases to calculate AOV
|
|
4049
|
+
* @type {boolean}
|
|
4050
|
+
* @memberof AnalyticsKPIMetrics
|
|
4051
|
+
*/
|
|
4052
|
+
'avg_order_value_has_data'?: boolean;
|
|
4035
4053
|
/**
|
|
4036
4054
|
*
|
|
4037
4055
|
* @type {number}
|
|
4038
4056
|
* @memberof AnalyticsKPIMetrics
|
|
4039
4057
|
*/
|
|
4040
4058
|
'click_through_rate'?: number;
|
|
4059
|
+
/**
|
|
4060
|
+
* True if there are searches to calculate CTR
|
|
4061
|
+
* @type {boolean}
|
|
4062
|
+
* @memberof AnalyticsKPIMetrics
|
|
4063
|
+
*/
|
|
4064
|
+
'click_through_rate_has_data'?: boolean;
|
|
4041
4065
|
/**
|
|
4042
4066
|
*
|
|
4043
4067
|
* @type {number}
|
|
4044
4068
|
* @memberof AnalyticsKPIMetrics
|
|
4045
4069
|
*/
|
|
4046
4070
|
'conversion_rate'?: number;
|
|
4071
|
+
/**
|
|
4072
|
+
* True if there are searches to calculate conversion rate
|
|
4073
|
+
* @type {boolean}
|
|
4074
|
+
* @memberof AnalyticsKPIMetrics
|
|
4075
|
+
*/
|
|
4076
|
+
'conversion_rate_has_data'?: boolean;
|
|
4077
|
+
/**
|
|
4078
|
+
* Indicates if there\'s enough data for rates calculation
|
|
4079
|
+
* @type {boolean}
|
|
4080
|
+
* @memberof AnalyticsKPIMetrics
|
|
4081
|
+
*/
|
|
4082
|
+
'has_data'?: boolean;
|
|
4047
4083
|
/**
|
|
4048
4084
|
*
|
|
4049
4085
|
* @type {number}
|
|
4050
4086
|
* @memberof AnalyticsKPIMetrics
|
|
4051
4087
|
*/
|
|
4052
4088
|
'no_clicks_rate'?: number;
|
|
4089
|
+
/**
|
|
4090
|
+
* True if there are searches to calculate no clicks rate
|
|
4091
|
+
* @type {boolean}
|
|
4092
|
+
* @memberof AnalyticsKPIMetrics
|
|
4093
|
+
*/
|
|
4094
|
+
'no_clicks_rate_has_data'?: boolean;
|
|
4053
4095
|
/**
|
|
4054
4096
|
*
|
|
4055
4097
|
* @type {number}
|
|
4056
4098
|
* @memberof AnalyticsKPIMetrics
|
|
4057
4099
|
*/
|
|
4058
4100
|
'no_results_rate'?: number;
|
|
4101
|
+
/**
|
|
4102
|
+
* Individual has_data flags for each rate
|
|
4103
|
+
* @type {boolean}
|
|
4104
|
+
* @memberof AnalyticsKPIMetrics
|
|
4105
|
+
*/
|
|
4106
|
+
'no_results_rate_has_data'?: boolean;
|
|
4059
4107
|
/**
|
|
4060
4108
|
*
|
|
4061
4109
|
* @type {number}
|
|
4062
4110
|
* @memberof AnalyticsKPIMetrics
|
|
4063
4111
|
*/
|
|
4064
4112
|
'purchase_rate'?: number;
|
|
4113
|
+
/**
|
|
4114
|
+
* True if there are searches to calculate purchase rate
|
|
4115
|
+
* @type {boolean}
|
|
4116
|
+
* @memberof AnalyticsKPIMetrics
|
|
4117
|
+
*/
|
|
4118
|
+
'purchase_rate_has_data'?: boolean;
|
|
4065
4119
|
/**
|
|
4066
4120
|
*
|
|
4067
4121
|
* @type {number}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|