@topvisor/ui 1.5.0-updates.1 → 1.5.0-updates.5
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/package.json +1 -1
- package/project/project.amd.js +1 -1
- package/project/project.amd.js.map +1 -1
- package/project/project.js +166 -185
- package/project/project.js.map +1 -1
- package/src/src/components/project/groupSelector/folders/types.d.ts +1 -1
- package/src/src/components/project/groupSelector/folders/utils.d.ts +35 -400
- package/src/src/components/project/groupSelector/groupSelector.vue.d.ts +1 -1
- package/src/src/components/project/groupSelector/groups/types.d.ts +1 -1
- package/src/src/components/project/groupSelector/groups/utils.d.ts +44 -757
- package/src/src/components/project/projectSelector/utils.d.ts +40 -39
- package/src/src/components/project/groupSelector/utils.d.ts +0 -37
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
import { Props } from '../../../../components/formsExt/selector2/types';
|
|
2
2
|
import { paths } from 'topvisor-openapi/src/ts/Topvisor';
|
|
3
|
-
import { components } from 'topvisor-openapi/src/ts/TV/API/Params/FieldsTrait';
|
|
4
|
-
import { components } from 'topvisor-openapi/src/ts/TV/API/Params/OrdersTrait';
|
|
5
|
-
import { components } from 'topvisor-openapi/src/ts/TV/API/Params/FiltersTrait';
|
|
6
|
-
import { components } from 'topvisor-openapi/src/ts/TV/API/Params/LimitTrait';
|
|
7
|
-
import { components } from 'topvisor-openapi/src/ts/TV/API/Params/OffsetTrait';
|
|
8
3
|
import { components } from 'topvisor-openapi/src/ts/TV/API/Types/UrlShort';
|
|
9
4
|
/**
|
|
10
5
|
* Закрыть попап и выполнить переход на страницу проекта
|
|
@@ -70,24 +65,24 @@ export declare const genApiGetProjects: (client: Api.Client<Api.TV.Paths, true>,
|
|
|
70
65
|
status_positions_time?: any;
|
|
71
66
|
status_positions_date?: any;
|
|
72
67
|
status_positions_percent?: any;
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
68
|
+
status_relevants?: string | null;
|
|
69
|
+
status_relevants_time?: any;
|
|
70
|
+
status_relevants_date?: any;
|
|
71
|
+
status_relevants_percent?: any;
|
|
77
72
|
status_positions_by_keywords?: any;
|
|
78
|
-
status_volumes?:
|
|
79
|
-
status_claster?:
|
|
80
|
-
status_audit?:
|
|
73
|
+
status_volumes?: string | null;
|
|
74
|
+
status_claster?: string | null;
|
|
75
|
+
status_audit?: string | null;
|
|
81
76
|
status_audit_time?: any;
|
|
82
77
|
status_audit_percent?: any;
|
|
83
|
-
status_watcher?:
|
|
78
|
+
status_watcher?: string | null;
|
|
84
79
|
status_watcher_percent?: any;
|
|
85
|
-
status_indexing?:
|
|
80
|
+
status_indexing?: string | null;
|
|
86
81
|
status_indexing_percent?: any;
|
|
87
|
-
status_sitemap?:
|
|
82
|
+
status_sitemap?: string | null;
|
|
88
83
|
status_sitemap_percent?: any;
|
|
89
|
-
status_urlsUpdater?:
|
|
90
|
-
status_ai_tracker?:
|
|
84
|
+
status_urlsUpdater?: string | null;
|
|
85
|
+
status_ai_tracker?: string | null;
|
|
91
86
|
status_ai_tracker_time?: any;
|
|
92
87
|
status_ai_tracker_date?: any;
|
|
93
88
|
status_ai_tracker_percent?: any;
|
|
@@ -98,6 +93,7 @@ export declare const genApiGetProjects: (client: Api.Client<Api.TV.Paths, true>,
|
|
|
98
93
|
with_snippets?: any;
|
|
99
94
|
do_snapshots?: any;
|
|
100
95
|
do_snapshots_with_snippets?: any;
|
|
96
|
+
with_ai_overview_full?: any;
|
|
101
97
|
report_last_time?: any;
|
|
102
98
|
common_traffic?: any;
|
|
103
99
|
guest_link_right?: any;
|
|
@@ -127,23 +123,26 @@ export declare const genApiGetProjects: (client: Api.Client<Api.TV.Paths, true>,
|
|
|
127
123
|
indexing_searchers_keys?: unknown[] | null;
|
|
128
124
|
watcher_types?: unknown[] | null;
|
|
129
125
|
ai_tracker_brand_name?: any;
|
|
130
|
-
|
|
131
|
-
|
|
126
|
+
ai_tracker_brand_description?: unknown[] | null;
|
|
127
|
+
ai_tracker_models_keys?: unknown[] | null;
|
|
132
128
|
ai_tracker_context_lang?: any;
|
|
133
129
|
ai_tracker_context_location?: any;
|
|
130
|
+
ai_tracker_summary_count_mentioned?: any;
|
|
134
131
|
}, {
|
|
135
132
|
show_owner_balance?: boolean | null;
|
|
136
133
|
show_site_stat?: boolean | null;
|
|
137
134
|
show_searchers_and_regions?: number;
|
|
135
|
+
show_models?: boolean;
|
|
138
136
|
include_positions_summary?: boolean | null;
|
|
137
|
+
include_ai_tracker_summary?: boolean;
|
|
139
138
|
include_positions_summary_params?: unknown[] | null;
|
|
140
139
|
is_task?: boolean | null;
|
|
141
|
-
fields?:
|
|
142
|
-
orders?:
|
|
143
|
-
filters?:
|
|
144
|
-
id?:
|
|
145
|
-
limit?:
|
|
146
|
-
offset?:
|
|
140
|
+
fields?: unknown[];
|
|
141
|
+
orders?: unknown[];
|
|
142
|
+
filters?: unknown[];
|
|
143
|
+
id?: number | null;
|
|
144
|
+
limit?: number | null;
|
|
145
|
+
offset?: number;
|
|
147
146
|
}>, Api.ModelFields<{
|
|
148
147
|
"COUNT(*)"?: any;
|
|
149
148
|
"IS_YOUTUBE()"?: any;
|
|
@@ -173,24 +172,24 @@ export declare const genApiGetProjects: (client: Api.Client<Api.TV.Paths, true>,
|
|
|
173
172
|
status_positions_time?: any;
|
|
174
173
|
status_positions_date?: any;
|
|
175
174
|
status_positions_percent?: any;
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
175
|
+
status_relevants?: string | null;
|
|
176
|
+
status_relevants_time?: any;
|
|
177
|
+
status_relevants_date?: any;
|
|
178
|
+
status_relevants_percent?: any;
|
|
180
179
|
status_positions_by_keywords?: any;
|
|
181
|
-
status_volumes?:
|
|
182
|
-
status_claster?:
|
|
183
|
-
status_audit?:
|
|
180
|
+
status_volumes?: string | null;
|
|
181
|
+
status_claster?: string | null;
|
|
182
|
+
status_audit?: string | null;
|
|
184
183
|
status_audit_time?: any;
|
|
185
184
|
status_audit_percent?: any;
|
|
186
|
-
status_watcher?:
|
|
185
|
+
status_watcher?: string | null;
|
|
187
186
|
status_watcher_percent?: any;
|
|
188
|
-
status_indexing?:
|
|
187
|
+
status_indexing?: string | null;
|
|
189
188
|
status_indexing_percent?: any;
|
|
190
|
-
status_sitemap?:
|
|
189
|
+
status_sitemap?: string | null;
|
|
191
190
|
status_sitemap_percent?: any;
|
|
192
|
-
status_urlsUpdater?:
|
|
193
|
-
status_ai_tracker?:
|
|
191
|
+
status_urlsUpdater?: string | null;
|
|
192
|
+
status_ai_tracker?: string | null;
|
|
194
193
|
status_ai_tracker_time?: any;
|
|
195
194
|
status_ai_tracker_date?: any;
|
|
196
195
|
status_ai_tracker_percent?: any;
|
|
@@ -201,6 +200,7 @@ export declare const genApiGetProjects: (client: Api.Client<Api.TV.Paths, true>,
|
|
|
201
200
|
with_snippets?: any;
|
|
202
201
|
do_snapshots?: any;
|
|
203
202
|
do_snapshots_with_snippets?: any;
|
|
203
|
+
with_ai_overview_full?: any;
|
|
204
204
|
report_last_time?: any;
|
|
205
205
|
common_traffic?: any;
|
|
206
206
|
guest_link_right?: any;
|
|
@@ -230,10 +230,11 @@ export declare const genApiGetProjects: (client: Api.Client<Api.TV.Paths, true>,
|
|
|
230
230
|
indexing_searchers_keys?: unknown[] | null;
|
|
231
231
|
watcher_types?: unknown[] | null;
|
|
232
232
|
ai_tracker_brand_name?: any;
|
|
233
|
-
|
|
234
|
-
|
|
233
|
+
ai_tracker_brand_description?: unknown[] | null;
|
|
234
|
+
ai_tracker_models_keys?: unknown[] | null;
|
|
235
235
|
ai_tracker_context_lang?: any;
|
|
236
236
|
ai_tracker_context_location?: any;
|
|
237
|
+
ai_tracker_summary_count_mentioned?: any;
|
|
237
238
|
}> | undefined>;
|
|
238
239
|
/**
|
|
239
240
|
* Создать API запрос для добавления проекта
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { Props } from '../../../../components/project/groupSelector/groups/types';
|
|
2
|
-
import { Folder } from '../../../../components/project/groupSelector/folders/types';
|
|
3
|
-
import { ListItemProps } from '../../popup/popup/types';
|
|
4
|
-
import { ITEM_ID_ALL, ITEM_ID_NEW } from '../../formsExt/formsExt';
|
|
5
|
-
/**
|
|
6
|
-
* Генерировать отформатированную папку
|
|
7
|
-
*/
|
|
8
|
-
export declare const genFormatedFolder: (folder: Folder) => {
|
|
9
|
-
name: string;
|
|
10
|
-
path: string;
|
|
11
|
-
id: number;
|
|
12
|
-
childsIds?: number[];
|
|
13
|
-
countAllGroupsActive?: number;
|
|
14
|
-
count_folders?: number;
|
|
15
|
-
count_groups?: number;
|
|
16
|
-
count_groups_active?: number;
|
|
17
|
-
parent_id?: number;
|
|
18
|
-
listItemProps?: ListItemProps;
|
|
19
|
-
};
|
|
20
|
-
/**
|
|
21
|
-
* Генерировать отформатированную группу
|
|
22
|
-
*/
|
|
23
|
-
export declare const genFormatedGroup: (group: Props["group"]) => {
|
|
24
|
-
name: string;
|
|
25
|
-
id: ITEM_ID_ALL;
|
|
26
|
-
} | {
|
|
27
|
-
name: string;
|
|
28
|
-
id: ITEM_ID_NEW;
|
|
29
|
-
} | {
|
|
30
|
-
name: string;
|
|
31
|
-
folder_id: number;
|
|
32
|
-
folder_path: string;
|
|
33
|
-
on?: 0 | 1;
|
|
34
|
-
status?: 0 | 1;
|
|
35
|
-
id: number | ITEM_ID_NEW;
|
|
36
|
-
listItemProps?: ListItemProps;
|
|
37
|
-
};
|