wildberries-sdk 0.1.39 → 0.1.41
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 -0
- package/dist/orders_fbs/models/Order.d.ts +1 -1
- package/dist/orders_fbs/models/V3OrderMetaAPI.js +3 -2
- package/dist/promotion/apis/DefaultApi.d.ts +37 -3
- package/dist/promotion/apis/DefaultApi.js +148 -2
- package/dist/promotion/models/V0GetNormQueryListRequest.d.ts +33 -0
- package/dist/promotion/models/V0GetNormQueryListRequest.js +52 -0
- package/dist/promotion/models/V0GetNormQueryListRequestItem.d.ts +38 -0
- package/dist/promotion/models/V0GetNormQueryListRequestItem.js +55 -0
- package/dist/promotion/models/V0GetNormQueryListResponse.d.ts +33 -0
- package/dist/promotion/models/V0GetNormQueryListResponse.js +52 -0
- package/dist/promotion/models/V0GetNormQueryListResponseItem.d.ts +45 -0
- package/dist/promotion/models/V0GetNormQueryListResponseItem.js +54 -0
- package/dist/promotion/models/V0GetNormQueryListResponseItemNormQueries.d.ts +38 -0
- package/dist/promotion/models/V0GetNormQueryListResponseItemNormQueries.js +51 -0
- package/dist/promotion/models/V0GetNormQueryStatsItemStat.d.ts +13 -0
- package/dist/promotion/models/V0GetNormQueryStatsItemStat.js +4 -0
- package/dist/promotion/models/V1GetNormQueryStatsRequest.d.ts +45 -0
- package/dist/promotion/models/V1GetNormQueryStatsRequest.js +60 -0
- package/dist/promotion/models/V1GetNormQueryStatsRequestItemsInner.d.ts +38 -0
- package/dist/promotion/models/V1GetNormQueryStatsRequestItemsInner.js +55 -0
- package/dist/promotion/models/V1GetNormQueryStatsResponse.d.ts +33 -0
- package/dist/promotion/models/V1GetNormQueryStatsResponse.js +52 -0
- package/dist/promotion/models/V1GetNormQueryStatsResponseItem.d.ts +45 -0
- package/dist/promotion/models/V1GetNormQueryStatsResponseItem.js +58 -0
- package/dist/promotion/models/V1GetNormQueryStatsResponseItemDailyStat.d.ts +39 -0
- package/dist/promotion/models/V1GetNormQueryStatsResponseItemDailyStat.js +54 -0
- package/dist/promotion/models/V1GetNormQueryStatsResponseItemStat.d.ts +93 -0
- package/dist/promotion/models/V1GetNormQueryStatsResponseItemStat.js +69 -0
- package/dist/promotion/models/index.d.ts +11 -0
- package/dist/promotion/models/index.js +11 -0
- package/package.json +1 -1
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Маркетинг и продвижение
|
|
3
|
+
* <div class=\"description_important\"> Узнать больше о маркетинге и продвижении можно в <a href=\"https://seller.wildberries.ru/instructions/category/59d92bd3-6ea0-40f2-b762-ca8835d7d42e?goBackOption=prevRoute&categoryId=479385c6-de01-4b4d-ad4e-ed941e65582e\">справочном центре</a> </div> Методы маркетинга и продвижения позволяют: 1. Получать информацию о кампаниях [продвижения](/openapi/promotion#tag/Kampanii) и [медиакампаниях](/openapi/promotion#tag/Media). 2. [Создавать](/openapi/promotion#tag/Sozdanie-kampanij) и [управлять](/openapi/promotion#tag/Upravlenie-kampaniyami) кампаниями. 3. Управлять [финансами](/openapi/promotion#tag/Finansy) кампаний. 4. Выгружать [статистику](/openapi/promotion#tag/Statistika) кампаний продвижения и медиакампаний. 5. Работать с [календарём акций](/openapi/promotion#tag/Kalendar-akcij). Данные синхронизируются с базой раз в 3 минуты. Статусы кампаний меняются раз в минуту. Ставки кампаний меняются раз в 30 секунд.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: promotion
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { V1GetNormQueryStatsResponseItemStat } from './V1GetNormQueryStatsResponseItemStat';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface V1GetNormQueryStatsResponseItemDailyStat
|
|
17
|
+
*/
|
|
18
|
+
export interface V1GetNormQueryStatsResponseItemDailyStat {
|
|
19
|
+
/**
|
|
20
|
+
* Дата
|
|
21
|
+
* @type {Date}
|
|
22
|
+
* @memberof V1GetNormQueryStatsResponseItemDailyStat
|
|
23
|
+
*/
|
|
24
|
+
date: Date;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {V1GetNormQueryStatsResponseItemStat}
|
|
28
|
+
* @memberof V1GetNormQueryStatsResponseItemDailyStat
|
|
29
|
+
*/
|
|
30
|
+
stat?: V1GetNormQueryStatsResponseItemStat;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Check if a given object implements the V1GetNormQueryStatsResponseItemDailyStat interface.
|
|
34
|
+
*/
|
|
35
|
+
export declare function instanceOfV1GetNormQueryStatsResponseItemDailyStat(value: object): value is V1GetNormQueryStatsResponseItemDailyStat;
|
|
36
|
+
export declare function V1GetNormQueryStatsResponseItemDailyStatFromJSON(json: any): V1GetNormQueryStatsResponseItemDailyStat;
|
|
37
|
+
export declare function V1GetNormQueryStatsResponseItemDailyStatFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1GetNormQueryStatsResponseItemDailyStat;
|
|
38
|
+
export declare function V1GetNormQueryStatsResponseItemDailyStatToJSON(json: any): V1GetNormQueryStatsResponseItemDailyStat;
|
|
39
|
+
export declare function V1GetNormQueryStatsResponseItemDailyStatToJSONTyped(value?: V1GetNormQueryStatsResponseItemDailyStat | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Маркетинг и продвижение
|
|
6
|
+
* <div class=\"description_important\"> Узнать больше о маркетинге и продвижении можно в <a href=\"https://seller.wildberries.ru/instructions/category/59d92bd3-6ea0-40f2-b762-ca8835d7d42e?goBackOption=prevRoute&categoryId=479385c6-de01-4b4d-ad4e-ed941e65582e\">справочном центре</a> </div> Методы маркетинга и продвижения позволяют: 1. Получать информацию о кампаниях [продвижения](/openapi/promotion#tag/Kampanii) и [медиакампаниях](/openapi/promotion#tag/Media). 2. [Создавать](/openapi/promotion#tag/Sozdanie-kampanij) и [управлять](/openapi/promotion#tag/Upravlenie-kampaniyami) кампаниями. 3. Управлять [финансами](/openapi/promotion#tag/Finansy) кампаний. 4. Выгружать [статистику](/openapi/promotion#tag/Statistika) кампаний продвижения и медиакампаний. 5. Работать с [календарём акций](/openapi/promotion#tag/Kalendar-akcij). Данные синхронизируются с базой раз в 3 минуты. Статусы кампаний меняются раз в минуту. Ставки кампаний меняются раз в 30 секунд.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: promotion
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfV1GetNormQueryStatsResponseItemDailyStat = instanceOfV1GetNormQueryStatsResponseItemDailyStat;
|
|
17
|
+
exports.V1GetNormQueryStatsResponseItemDailyStatFromJSON = V1GetNormQueryStatsResponseItemDailyStatFromJSON;
|
|
18
|
+
exports.V1GetNormQueryStatsResponseItemDailyStatFromJSONTyped = V1GetNormQueryStatsResponseItemDailyStatFromJSONTyped;
|
|
19
|
+
exports.V1GetNormQueryStatsResponseItemDailyStatToJSON = V1GetNormQueryStatsResponseItemDailyStatToJSON;
|
|
20
|
+
exports.V1GetNormQueryStatsResponseItemDailyStatToJSONTyped = V1GetNormQueryStatsResponseItemDailyStatToJSONTyped;
|
|
21
|
+
var V1GetNormQueryStatsResponseItemStat_1 = require("./V1GetNormQueryStatsResponseItemStat");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the V1GetNormQueryStatsResponseItemDailyStat interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfV1GetNormQueryStatsResponseItemDailyStat(value) {
|
|
26
|
+
if (!('date' in value) || value['date'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
return true;
|
|
29
|
+
}
|
|
30
|
+
function V1GetNormQueryStatsResponseItemDailyStatFromJSON(json) {
|
|
31
|
+
return V1GetNormQueryStatsResponseItemDailyStatFromJSONTyped(json, false);
|
|
32
|
+
}
|
|
33
|
+
function V1GetNormQueryStatsResponseItemDailyStatFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
+
if (json == null) {
|
|
35
|
+
return json;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'date': (new Date(json['date'])),
|
|
39
|
+
'stat': json['stat'] == null ? undefined : (0, V1GetNormQueryStatsResponseItemStat_1.V1GetNormQueryStatsResponseItemStatFromJSON)(json['stat']),
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
function V1GetNormQueryStatsResponseItemDailyStatToJSON(json) {
|
|
43
|
+
return V1GetNormQueryStatsResponseItemDailyStatToJSONTyped(json, false);
|
|
44
|
+
}
|
|
45
|
+
function V1GetNormQueryStatsResponseItemDailyStatToJSONTyped(value, ignoreDiscriminator) {
|
|
46
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
47
|
+
if (value == null) {
|
|
48
|
+
return value;
|
|
49
|
+
}
|
|
50
|
+
return {
|
|
51
|
+
'date': value['date'].toISOString().substring(0, 10),
|
|
52
|
+
'stat': (0, V1GetNormQueryStatsResponseItemStat_1.V1GetNormQueryStatsResponseItemStatToJSON)(value['stat']),
|
|
53
|
+
};
|
|
54
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Маркетинг и продвижение
|
|
3
|
+
* <div class=\"description_important\"> Узнать больше о маркетинге и продвижении можно в <a href=\"https://seller.wildberries.ru/instructions/category/59d92bd3-6ea0-40f2-b762-ca8835d7d42e?goBackOption=prevRoute&categoryId=479385c6-de01-4b4d-ad4e-ed941e65582e\">справочном центре</a> </div> Методы маркетинга и продвижения позволяют: 1. Получать информацию о кампаниях [продвижения](/openapi/promotion#tag/Kampanii) и [медиакампаниях](/openapi/promotion#tag/Media). 2. [Создавать](/openapi/promotion#tag/Sozdanie-kampanij) и [управлять](/openapi/promotion#tag/Upravlenie-kampaniyami) кампаниями. 3. Управлять [финансами](/openapi/promotion#tag/Finansy) кампаний. 4. Выгружать [статистику](/openapi/promotion#tag/Statistika) кампаний продвижения и медиакампаний. 5. Работать с [календарём акций](/openapi/promotion#tag/Kalendar-akcij). Данные синхронизируются с базой раз в 3 минуты. Статусы кампаний меняются раз в минуту. Ставки кампаний меняются раз в 30 секунд.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: promotion
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface V1GetNormQueryStatsResponseItemStat
|
|
16
|
+
*/
|
|
17
|
+
export interface V1GetNormQueryStatsResponseItemStat {
|
|
18
|
+
/**
|
|
19
|
+
* Поисковый кластер
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof V1GetNormQueryStatsResponseItemStat
|
|
22
|
+
*/
|
|
23
|
+
normQuery?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Количество просмотров
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof V1GetNormQueryStatsResponseItemStat
|
|
28
|
+
*/
|
|
29
|
+
views?: number;
|
|
30
|
+
/**
|
|
31
|
+
* Количество кликов
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof V1GetNormQueryStatsResponseItemStat
|
|
34
|
+
*/
|
|
35
|
+
clicks?: number;
|
|
36
|
+
/**
|
|
37
|
+
* Количество добавлений товаров в корзину
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof V1GetNormQueryStatsResponseItemStat
|
|
40
|
+
*/
|
|
41
|
+
atbs?: number;
|
|
42
|
+
/**
|
|
43
|
+
* Количество заказов
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof V1GetNormQueryStatsResponseItemStat
|
|
46
|
+
*/
|
|
47
|
+
orders?: number;
|
|
48
|
+
/**
|
|
49
|
+
* CTR (click-through rate) — отношение числа кликов к количеству показов в процентах
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof V1GetNormQueryStatsResponseItemStat
|
|
52
|
+
*/
|
|
53
|
+
ctr?: number;
|
|
54
|
+
/**
|
|
55
|
+
* Средняя стоимость клика, ₽
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof V1GetNormQueryStatsResponseItemStat
|
|
58
|
+
*/
|
|
59
|
+
cpc?: number;
|
|
60
|
+
/**
|
|
61
|
+
* Средняя стоимость за тысячу показов, ₽
|
|
62
|
+
* @type {number}
|
|
63
|
+
* @memberof V1GetNormQueryStatsResponseItemStat
|
|
64
|
+
*/
|
|
65
|
+
cpm?: number;
|
|
66
|
+
/**
|
|
67
|
+
* Средняя позиция товара на страницах поисковой выдачи
|
|
68
|
+
* @type {number}
|
|
69
|
+
* @memberof V1GetNormQueryStatsResponseItemStat
|
|
70
|
+
*/
|
|
71
|
+
avgPos?: number;
|
|
72
|
+
/**
|
|
73
|
+
* Количество заказанных товаров, шт.
|
|
74
|
+
* @type {number}
|
|
75
|
+
* @memberof V1GetNormQueryStatsResponseItemStat
|
|
76
|
+
*/
|
|
77
|
+
shks?: number;
|
|
78
|
+
/**
|
|
79
|
+
* Затраты на продвижение товаров в конкретном поисковом кластере кампании
|
|
80
|
+
*
|
|
81
|
+
* @type {number}
|
|
82
|
+
* @memberof V1GetNormQueryStatsResponseItemStat
|
|
83
|
+
*/
|
|
84
|
+
spend?: number;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Check if a given object implements the V1GetNormQueryStatsResponseItemStat interface.
|
|
88
|
+
*/
|
|
89
|
+
export declare function instanceOfV1GetNormQueryStatsResponseItemStat(value: object): value is V1GetNormQueryStatsResponseItemStat;
|
|
90
|
+
export declare function V1GetNormQueryStatsResponseItemStatFromJSON(json: any): V1GetNormQueryStatsResponseItemStat;
|
|
91
|
+
export declare function V1GetNormQueryStatsResponseItemStatFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1GetNormQueryStatsResponseItemStat;
|
|
92
|
+
export declare function V1GetNormQueryStatsResponseItemStatToJSON(json: any): V1GetNormQueryStatsResponseItemStat;
|
|
93
|
+
export declare function V1GetNormQueryStatsResponseItemStatToJSONTyped(value?: V1GetNormQueryStatsResponseItemStat | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Маркетинг и продвижение
|
|
6
|
+
* <div class=\"description_important\"> Узнать больше о маркетинге и продвижении можно в <a href=\"https://seller.wildberries.ru/instructions/category/59d92bd3-6ea0-40f2-b762-ca8835d7d42e?goBackOption=prevRoute&categoryId=479385c6-de01-4b4d-ad4e-ed941e65582e\">справочном центре</a> </div> Методы маркетинга и продвижения позволяют: 1. Получать информацию о кампаниях [продвижения](/openapi/promotion#tag/Kampanii) и [медиакампаниях](/openapi/promotion#tag/Media). 2. [Создавать](/openapi/promotion#tag/Sozdanie-kampanij) и [управлять](/openapi/promotion#tag/Upravlenie-kampaniyami) кампаниями. 3. Управлять [финансами](/openapi/promotion#tag/Finansy) кампаний. 4. Выгружать [статистику](/openapi/promotion#tag/Statistika) кампаний продвижения и медиакампаний. 5. Работать с [календарём акций](/openapi/promotion#tag/Kalendar-akcij). Данные синхронизируются с базой раз в 3 минуты. Статусы кампаний меняются раз в минуту. Ставки кампаний меняются раз в 30 секунд.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: promotion
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfV1GetNormQueryStatsResponseItemStat = instanceOfV1GetNormQueryStatsResponseItemStat;
|
|
17
|
+
exports.V1GetNormQueryStatsResponseItemStatFromJSON = V1GetNormQueryStatsResponseItemStatFromJSON;
|
|
18
|
+
exports.V1GetNormQueryStatsResponseItemStatFromJSONTyped = V1GetNormQueryStatsResponseItemStatFromJSONTyped;
|
|
19
|
+
exports.V1GetNormQueryStatsResponseItemStatToJSON = V1GetNormQueryStatsResponseItemStatToJSON;
|
|
20
|
+
exports.V1GetNormQueryStatsResponseItemStatToJSONTyped = V1GetNormQueryStatsResponseItemStatToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the V1GetNormQueryStatsResponseItemStat interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfV1GetNormQueryStatsResponseItemStat(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function V1GetNormQueryStatsResponseItemStatFromJSON(json) {
|
|
28
|
+
return V1GetNormQueryStatsResponseItemStatFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function V1GetNormQueryStatsResponseItemStatFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'normQuery': json['normQuery'] == null ? undefined : json['normQuery'],
|
|
36
|
+
'views': json['views'] == null ? undefined : json['views'],
|
|
37
|
+
'clicks': json['clicks'] == null ? undefined : json['clicks'],
|
|
38
|
+
'atbs': json['atbs'] == null ? undefined : json['atbs'],
|
|
39
|
+
'orders': json['orders'] == null ? undefined : json['orders'],
|
|
40
|
+
'ctr': json['ctr'] == null ? undefined : json['ctr'],
|
|
41
|
+
'cpc': json['cpc'] == null ? undefined : json['cpc'],
|
|
42
|
+
'cpm': json['cpm'] == null ? undefined : json['cpm'],
|
|
43
|
+
'avgPos': json['avgPos'] == null ? undefined : json['avgPos'],
|
|
44
|
+
'shks': json['shks'] == null ? undefined : json['shks'],
|
|
45
|
+
'spend': json['spend'] == null ? undefined : json['spend'],
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
function V1GetNormQueryStatsResponseItemStatToJSON(json) {
|
|
49
|
+
return V1GetNormQueryStatsResponseItemStatToJSONTyped(json, false);
|
|
50
|
+
}
|
|
51
|
+
function V1GetNormQueryStatsResponseItemStatToJSONTyped(value, ignoreDiscriminator) {
|
|
52
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
53
|
+
if (value == null) {
|
|
54
|
+
return value;
|
|
55
|
+
}
|
|
56
|
+
return {
|
|
57
|
+
'normQuery': value['normQuery'],
|
|
58
|
+
'views': value['views'],
|
|
59
|
+
'clicks': value['clicks'],
|
|
60
|
+
'atbs': value['atbs'],
|
|
61
|
+
'orders': value['orders'],
|
|
62
|
+
'ctr': value['ctr'],
|
|
63
|
+
'cpc': value['cpc'],
|
|
64
|
+
'cpm': value['cpm'],
|
|
65
|
+
'avgPos': value['avgPos'],
|
|
66
|
+
'shks': value['shks'],
|
|
67
|
+
'spend': value['spend'],
|
|
68
|
+
};
|
|
69
|
+
}
|
|
@@ -98,6 +98,11 @@ export * from './V0GetNormQueryBidsItem';
|
|
|
98
98
|
export * from './V0GetNormQueryBidsRequest';
|
|
99
99
|
export * from './V0GetNormQueryBidsRequestItem';
|
|
100
100
|
export * from './V0GetNormQueryBidsResponse';
|
|
101
|
+
export * from './V0GetNormQueryListRequest';
|
|
102
|
+
export * from './V0GetNormQueryListRequestItem';
|
|
103
|
+
export * from './V0GetNormQueryListResponse';
|
|
104
|
+
export * from './V0GetNormQueryListResponseItem';
|
|
105
|
+
export * from './V0GetNormQueryListResponseItemNormQueries';
|
|
101
106
|
export * from './V0GetNormQueryMinusRequest';
|
|
102
107
|
export * from './V0GetNormQueryMinusRequestItem';
|
|
103
108
|
export * from './V0GetNormQueryMinusResponse';
|
|
@@ -110,3 +115,9 @@ export * from './V0GetNormQueryStatsResponse';
|
|
|
110
115
|
export * from './V0SetMinusNormQueryRequest';
|
|
111
116
|
export * from './V0SetNormQueryBidsRequest';
|
|
112
117
|
export * from './V0SetNormQueryBidsRequestItem';
|
|
118
|
+
export * from './V1GetNormQueryStatsRequest';
|
|
119
|
+
export * from './V1GetNormQueryStatsRequestItemsInner';
|
|
120
|
+
export * from './V1GetNormQueryStatsResponse';
|
|
121
|
+
export * from './V1GetNormQueryStatsResponseItem';
|
|
122
|
+
export * from './V1GetNormQueryStatsResponseItemDailyStat';
|
|
123
|
+
export * from './V1GetNormQueryStatsResponseItemStat';
|
|
@@ -116,6 +116,11 @@ __exportStar(require("./V0GetNormQueryBidsItem"), exports);
|
|
|
116
116
|
__exportStar(require("./V0GetNormQueryBidsRequest"), exports);
|
|
117
117
|
__exportStar(require("./V0GetNormQueryBidsRequestItem"), exports);
|
|
118
118
|
__exportStar(require("./V0GetNormQueryBidsResponse"), exports);
|
|
119
|
+
__exportStar(require("./V0GetNormQueryListRequest"), exports);
|
|
120
|
+
__exportStar(require("./V0GetNormQueryListRequestItem"), exports);
|
|
121
|
+
__exportStar(require("./V0GetNormQueryListResponse"), exports);
|
|
122
|
+
__exportStar(require("./V0GetNormQueryListResponseItem"), exports);
|
|
123
|
+
__exportStar(require("./V0GetNormQueryListResponseItemNormQueries"), exports);
|
|
119
124
|
__exportStar(require("./V0GetNormQueryMinusRequest"), exports);
|
|
120
125
|
__exportStar(require("./V0GetNormQueryMinusRequestItem"), exports);
|
|
121
126
|
__exportStar(require("./V0GetNormQueryMinusResponse"), exports);
|
|
@@ -128,3 +133,9 @@ __exportStar(require("./V0GetNormQueryStatsResponse"), exports);
|
|
|
128
133
|
__exportStar(require("./V0SetMinusNormQueryRequest"), exports);
|
|
129
134
|
__exportStar(require("./V0SetNormQueryBidsRequest"), exports);
|
|
130
135
|
__exportStar(require("./V0SetNormQueryBidsRequestItem"), exports);
|
|
136
|
+
__exportStar(require("./V1GetNormQueryStatsRequest"), exports);
|
|
137
|
+
__exportStar(require("./V1GetNormQueryStatsRequestItemsInner"), exports);
|
|
138
|
+
__exportStar(require("./V1GetNormQueryStatsResponse"), exports);
|
|
139
|
+
__exportStar(require("./V1GetNormQueryStatsResponseItem"), exports);
|
|
140
|
+
__exportStar(require("./V1GetNormQueryStatsResponseItemDailyStat"), exports);
|
|
141
|
+
__exportStar(require("./V1GetNormQueryStatsResponseItemStat"), exports);
|