@topvisor/ui 1.4.3-projectSelector.0 → 1.4.3-updateGroupSelector.1
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/.chunks/policy.vue_vue_type_style_index_0_lang-8Te7yOxJ.amd.js +2 -0
- package/.chunks/policy.vue_vue_type_style_index_0_lang-8Te7yOxJ.amd.js.map +1 -0
- package/.chunks/policy.vue_vue_type_style_index_0_lang-uPC0N7jl.es.js +496 -0
- package/.chunks/policy.vue_vue_type_style_index_0_lang-uPC0N7jl.es.js.map +1 -0
- package/assets/policy.css +1 -1
- package/assets/project.css +1 -1
- package/formsExt/formsExt.amd.js +1 -1
- package/formsExt/formsExt.js +1 -1
- package/package.json +1 -1
- package/popup/popup.amd.js +1 -1
- package/popup/popup.amd.js.map +1 -1
- package/popup/popup.js +2 -2
- package/popup/popup.js.map +1 -1
- package/project/project.amd.js +1 -1
- package/project/project.amd.js.map +1 -1
- package/project/project.js +531 -859
- package/project/project.js.map +1 -1
- package/src/components/formsExt/selector2/composables/useAPI.d.ts +0 -2
- package/src/components/formsExt/selector2/composables/useMenu.d.ts +1 -3
- package/src/components/formsExt/selector2/selector2.vue.d.ts +0 -2
- package/src/components/formsExt/selector2/types.d.ts +0 -26
- package/src/components/popup/popup/listItem.vue.d.ts +4 -24
- package/src/components/popup/popup/types.d.ts +0 -1
- package/src/components/project/groupSelector/folders/types.d.ts +1 -0
- package/src/components/project/groupSelector/folders/utils.d.ts +417 -38
- package/src/components/project/groupSelector/groupSelector.vue.d.ts +1 -0
- package/src/components/project/groupSelector/groups/groups.vue.d.ts +1 -9
- package/src/components/project/groupSelector/groups/types.d.ts +1 -0
- package/src/components/project/groupSelector/groups/utils.d.ts +791 -57
- package/src/components/project/groupSelector/types.d.ts +6 -0
- package/src/components/project/project.d.ts +0 -1
- package/.chunks/policy.vue_vue_type_style_index_0_lang-AfwHvWs8.amd.js +0 -2
- package/.chunks/policy.vue_vue_type_style_index_0_lang-AfwHvWs8.amd.js.map +0 -1
- package/.chunks/policy.vue_vue_type_style_index_0_lang-BiCaYVJ6.es.js +0 -515
- package/.chunks/policy.vue_vue_type_style_index_0_lang-BiCaYVJ6.es.js.map +0 -1
- package/src/components/project/projectSelector/cache.d.ts +0 -30
- package/src/components/project/projectSelector/projectSelector.vue.d.ts +0 -128
- package/src/components/project/projectSelector/submenu/submenu.vue.d.ts +0 -4
- package/src/components/project/projectSelector/submenu/types.d.ts +0 -17
- package/src/components/project/projectSelector/types.d.ts +0 -52
- package/src/components/project/projectSelector/utils.d.ts +0 -230
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { Props } from './types';
|
|
2
|
-
import { Item } from '../../formsExt/selector2/types';
|
|
3
|
-
import { ShallowRef, Ref } from 'vue';
|
|
4
|
-
/**
|
|
5
|
-
* Кеш списка проектов
|
|
6
|
-
*
|
|
7
|
-
* Используется только при `dataSource` = `static`
|
|
8
|
-
* Данные синхронизируются между всеми экземплярами ProjectSelector
|
|
9
|
-
*/
|
|
10
|
-
export declare const projectsCache: ShallowRef<Item[] | undefined, Item[] | undefined>;
|
|
11
|
-
export declare const resetStateSignal: Ref<number, number>;
|
|
12
|
-
/**
|
|
13
|
-
* Promise текущего выполняющегося запроса на получение проектов.
|
|
14
|
-
*
|
|
15
|
-
* Используется для дедупликации запросов: если запрос уже запущен, повторные вызовы будут ждать один и тот же Promise.
|
|
16
|
-
*/
|
|
17
|
-
export declare const projectsRequest: Ref<{
|
|
18
|
-
then: <TResult1 = Api.ResponseError<any> | Api.ResponseSuccess<any, "get">, TResult2 = never>(onfulfilled?: ((value: Api.ResponseError<any> | Api.ResponseSuccess<any, "get">) => TResult1 | PromiseLike<TResult1>) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null | undefined) => Promise<TResult1 | TResult2>;
|
|
19
|
-
catch: <TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | null | undefined) => Promise<Api.ResponseError<any> | Api.ResponseSuccess<any, "get"> | TResult>;
|
|
20
|
-
finally: (onfinally?: (() => void) | null | undefined) => Promise<Api.ResponseError<any> | Api.ResponseSuccess<any, "get">>;
|
|
21
|
-
readonly [Symbol.toStringTag]: string;
|
|
22
|
-
} | null, Promise<Api.ResponseError<any> | Api.ResponseSuccess<any, "get">> | {
|
|
23
|
-
then: <TResult1 = Api.ResponseError<any> | Api.ResponseSuccess<any, "get">, TResult2 = never>(onfulfilled?: ((value: Api.ResponseError<any> | Api.ResponseSuccess<any, "get">) => TResult1 | PromiseLike<TResult1>) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null | undefined) => Promise<TResult1 | TResult2>;
|
|
24
|
-
catch: <TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | null | undefined) => Promise<Api.ResponseError<any> | Api.ResponseSuccess<any, "get"> | TResult>;
|
|
25
|
-
finally: (onfinally?: (() => void) | null | undefined) => Promise<Api.ResponseError<any> | Api.ResponseSuccess<any, "get">>;
|
|
26
|
-
readonly [Symbol.toStringTag]: string;
|
|
27
|
-
} | null>;
|
|
28
|
-
export declare const setCache: (userId: Props["userId"], projectsTotal: number) => void;
|
|
29
|
-
export declare const getCache: (userId: Props["userId"]) => number | undefined;
|
|
30
|
-
export declare const clearCache: (resetState?: boolean) => void;
|
|
@@ -1,128 +0,0 @@
|
|
|
1
|
-
import { Props } from './types';
|
|
2
|
-
import { Item, Props, Size, Slots } from '../../formsExt/selector2/types';
|
|
3
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ShallowUnwrapRef, Slot, ComponentPublicInstance, ComponentOptionsBase, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ComponentCustomProperties } from 'vue';
|
|
4
|
-
import { Props } from '../../forms/button/types';
|
|
5
|
-
import { TopLibPopup } from '../../popup/lib/popup';
|
|
6
|
-
import { OnCleanup } from '@vue/reactivity';
|
|
7
|
-
type __VLS_Props = Props;
|
|
8
|
-
type __VLS_PublicProps = {
|
|
9
|
-
'project'?: Props['project'];
|
|
10
|
-
} & __VLS_Props;
|
|
11
|
-
declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
12
|
-
"update:project": (value: Item | undefined) => any;
|
|
13
|
-
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
14
|
-
"onUpdate:project"?: ((value: Item | undefined) => any) | undefined;
|
|
15
|
-
}>, {
|
|
16
|
-
modificator: string;
|
|
17
|
-
userId: number;
|
|
18
|
-
addLinksToProjects: boolean;
|
|
19
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
20
|
-
refSelector: ({
|
|
21
|
-
$: ComponentInternalInstance;
|
|
22
|
-
$data: {};
|
|
23
|
-
$props: {
|
|
24
|
-
readonly modelValue: Props["modelValue"];
|
|
25
|
-
readonly items?: Item[] | undefined;
|
|
26
|
-
readonly title?: string | undefined;
|
|
27
|
-
readonly disabled?: boolean | undefined;
|
|
28
|
-
readonly icon?: string | undefined;
|
|
29
|
-
readonly modificator?: string | undefined;
|
|
30
|
-
readonly size?: Size | undefined;
|
|
31
|
-
readonly isError?: boolean | undefined;
|
|
32
|
-
readonly openByFocusInput?: boolean | undefined;
|
|
33
|
-
readonly searchType?: "none" | "inline" | "popup" | undefined;
|
|
34
|
-
readonly placeholder?: string | undefined;
|
|
35
|
-
readonly hasCloserBtn?: boolean | undefined;
|
|
36
|
-
readonly api?: (Api.ClientRequest<any> | Api.ClientRequestCustom<any, any, any>) | undefined;
|
|
37
|
-
readonly apiSetSearchParams?: ((api: NonNullable< Props["api"]>, search: string) => void) | undefined;
|
|
38
|
-
readonly minLength?: number | undefined;
|
|
39
|
-
readonly useCache?: boolean | undefined;
|
|
40
|
-
readonly appendSearchToResult?: boolean | undefined;
|
|
41
|
-
readonly appendSearchToResultCond?: ((search: string) => boolean) | undefined;
|
|
42
|
-
readonly appendWithoutSelect?: boolean | undefined;
|
|
43
|
-
readonly multiselect?: boolean | undefined;
|
|
44
|
-
readonly useAllItem?: boolean | string | undefined;
|
|
45
|
-
readonly addChanger?: boolean | undefined;
|
|
46
|
-
readonly buttonProps?: Props | undefined;
|
|
47
|
-
readonly selectedAsPlaceholder?: boolean | undefined;
|
|
48
|
-
readonly openerShortcut?: string | undefined;
|
|
49
|
-
readonly onOpen?: (() => any) | undefined;
|
|
50
|
-
readonly "onUpdate:modelValue"?: ((value: Item | Item[]) => any) | undefined;
|
|
51
|
-
readonly onAppendItem?: ((item: Item) => any) | undefined;
|
|
52
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
53
|
-
$attrs: {
|
|
54
|
-
[x: string]: unknown;
|
|
55
|
-
};
|
|
56
|
-
$refs: {
|
|
57
|
-
[x: string]: unknown;
|
|
58
|
-
} & {
|
|
59
|
-
popupRef: ShallowUnwrapRef<{
|
|
60
|
-
id: string;
|
|
61
|
-
popup: TopLibPopup<undefined> | undefined;
|
|
62
|
-
}> | null;
|
|
63
|
-
};
|
|
64
|
-
$slots: Readonly<{
|
|
65
|
-
[name: string]: Slot<any> | undefined;
|
|
66
|
-
}>;
|
|
67
|
-
$root: ComponentPublicInstance | null;
|
|
68
|
-
$parent: ComponentPublicInstance | null;
|
|
69
|
-
$host: Element | null;
|
|
70
|
-
$emit: ((event: "open") => void) & ((event: "update:modelValue", value: Item | Item[]) => void) & ((event: "appendItem", item: Item) => void);
|
|
71
|
-
$el: any;
|
|
72
|
-
$options: ComponentOptionsBase<Readonly<{
|
|
73
|
-
modelValue: Props["modelValue"];
|
|
74
|
-
} & Props> & Readonly<{
|
|
75
|
-
onOpen?: (() => any) | undefined;
|
|
76
|
-
"onUpdate:modelValue"?: ((value: Item | Item[]) => any) | undefined;
|
|
77
|
-
onAppendItem?: ((item: Item) => any) | undefined;
|
|
78
|
-
}>, {
|
|
79
|
-
resetCache: (resetAPICache?: boolean) => void;
|
|
80
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
81
|
-
open: () => any;
|
|
82
|
-
"update:modelValue": (value: Item | Item[]) => any;
|
|
83
|
-
appendItem: (item: Item) => any;
|
|
84
|
-
}, string, {
|
|
85
|
-
size: Size;
|
|
86
|
-
openByFocusInput: boolean;
|
|
87
|
-
items: Item[];
|
|
88
|
-
searchType: "none" | "inline" | "popup";
|
|
89
|
-
minLength: number;
|
|
90
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
91
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
92
|
-
created?: (() => void) | (() => void)[];
|
|
93
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
94
|
-
mounted?: (() => void) | (() => void)[];
|
|
95
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
96
|
-
updated?: (() => void) | (() => void)[];
|
|
97
|
-
activated?: (() => void) | (() => void)[];
|
|
98
|
-
deactivated?: (() => void) | (() => void)[];
|
|
99
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
100
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
101
|
-
destroyed?: (() => void) | (() => void)[];
|
|
102
|
-
unmounted?: (() => void) | (() => void)[];
|
|
103
|
-
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
104
|
-
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
105
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
106
|
-
};
|
|
107
|
-
$forceUpdate: () => void;
|
|
108
|
-
$nextTick: nextTick;
|
|
109
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
110
|
-
} & Readonly<{
|
|
111
|
-
size: Size;
|
|
112
|
-
openByFocusInput: boolean;
|
|
113
|
-
items: Item[];
|
|
114
|
-
searchType: "none" | "inline" | "popup";
|
|
115
|
-
minLength: number;
|
|
116
|
-
}> & Omit<Readonly<{
|
|
117
|
-
modelValue: Props["modelValue"];
|
|
118
|
-
} & Props> & Readonly<{
|
|
119
|
-
onOpen?: (() => any) | undefined;
|
|
120
|
-
"onUpdate:modelValue"?: ((value: Item | Item[]) => any) | undefined;
|
|
121
|
-
onAppendItem?: ((item: Item) => any) | undefined;
|
|
122
|
-
}>, "resetCache" | ("size" | "openByFocusInput" | "items" | "searchType" | "minLength")> & ShallowUnwrapRef<{
|
|
123
|
-
resetCache: (resetAPICache?: boolean) => void;
|
|
124
|
-
}> & {} & ComponentCustomProperties & {} & {
|
|
125
|
-
$slots: Readonly< Slots> & Slots;
|
|
126
|
-
}) | null;
|
|
127
|
-
}, any>;
|
|
128
|
-
export default _default;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { Props } from './types';
|
|
2
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
-
declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
4
|
-
export default _default;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export interface Props {
|
|
2
|
-
/**
|
|
3
|
-
* id проекта
|
|
4
|
-
*/
|
|
5
|
-
id: number;
|
|
6
|
-
/**
|
|
7
|
-
* Права пользователя в проекте
|
|
8
|
-
*
|
|
9
|
-
* Записывается в виде строки из нулей и единиц '01011000100000000000'
|
|
10
|
-
* Каждому индексу строки соответствует доступ к определенным действиям с проектом
|
|
11
|
-
*/
|
|
12
|
-
right: string;
|
|
13
|
-
/**
|
|
14
|
-
* url проекта
|
|
15
|
-
*/
|
|
16
|
-
url: string;
|
|
17
|
-
}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import { Props as ButtonProps } from '../../forms/button/types';
|
|
2
|
-
import { Item } from '../../formsExt/selector2/types';
|
|
3
|
-
export interface Props {
|
|
4
|
-
/**
|
|
5
|
-
* id пользователя
|
|
6
|
-
*/
|
|
7
|
-
userId: number;
|
|
8
|
-
/**
|
|
9
|
-
* Настроенный API клиент для выполнения запросов
|
|
10
|
-
*
|
|
11
|
-
* Будет использоваться:
|
|
12
|
-
* - для загрузки групп, если не указан `props.projects`
|
|
13
|
-
* - для добавления нового проекта пользователю
|
|
14
|
-
*
|
|
15
|
-
* @const
|
|
16
|
-
*/
|
|
17
|
-
client: Api.Client<Api.TV.Paths, true>;
|
|
18
|
-
/**
|
|
19
|
-
* Выбранный проект
|
|
20
|
-
*/
|
|
21
|
-
project?: Item;
|
|
22
|
-
/**
|
|
23
|
-
* Нужно ли добавлять ссылки к проектам
|
|
24
|
-
*/
|
|
25
|
-
addLinksToProjects?: boolean;
|
|
26
|
-
/**
|
|
27
|
-
* Не отображать проект с этим id в списке
|
|
28
|
-
*/
|
|
29
|
-
excludeProjectId?: number;
|
|
30
|
-
/**
|
|
31
|
-
* Модификатор элемента, открывающего popup
|
|
32
|
-
*
|
|
33
|
-
* Добавит класс: `top-selector2-{{ modificator }}`
|
|
34
|
-
*/
|
|
35
|
-
modificator?: string;
|
|
36
|
-
/**
|
|
37
|
-
* Текст для placeholder поля поиска
|
|
38
|
-
*/
|
|
39
|
-
placeholder?: string;
|
|
40
|
-
/**
|
|
41
|
-
* Настройки кнопки
|
|
42
|
-
*
|
|
43
|
-
* Если не указан будет использоваться стандартный стиль селектора
|
|
44
|
-
*
|
|
45
|
-
* @subcategory Single select
|
|
46
|
-
*/
|
|
47
|
-
buttonProps?: ButtonProps;
|
|
48
|
-
/**
|
|
49
|
-
* code горячей клавиши для открытия селектора ('KeyA');
|
|
50
|
-
*/
|
|
51
|
-
openerShortcut?: string;
|
|
52
|
-
}
|
|
@@ -1,230 +0,0 @@
|
|
|
1
|
-
import { Item } from '../../formsExt/selector2/types';
|
|
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
|
-
import { components } from 'topvisor-openapi/src/ts/TV/API/Types/UrlShort';
|
|
9
|
-
/**
|
|
10
|
-
* Сгенерировать ссылку на проект
|
|
11
|
-
*/
|
|
12
|
-
export declare const genProjectLink: (projectId: number) => string;
|
|
13
|
-
/**
|
|
14
|
-
* Добавить к данным проектов `listItemProps`
|
|
15
|
-
*
|
|
16
|
-
* @see Item
|
|
17
|
-
*/
|
|
18
|
-
export declare const addListItemProps: (projects?: Item[], addLinksToProjects?: boolean) => Item[] | undefined;
|
|
19
|
-
/**
|
|
20
|
-
* Сгенерировать ссылку на сайт проекта
|
|
21
|
-
*/
|
|
22
|
-
export declare const genProjectExternalLink: (url: string) => string;
|
|
23
|
-
/**
|
|
24
|
-
* Создать API запрос на получение списка проектов
|
|
25
|
-
*
|
|
26
|
-
* Данные после загрузки преобразуются с помощью `prepareProjects()`
|
|
27
|
-
*
|
|
28
|
-
* @see prepareProjects
|
|
29
|
-
*/
|
|
30
|
-
export declare const genApiGetProjects: (client: Api.Client<Api.TV.Paths, true>, userId: number, excludeProjectId?: number, params?: Record<string, number>) => Api.ClientRequest<Api.ClientRequestContext< paths, "/get/projects_2/projects/", true>, ("name" | "id" | "on" | "right" | "url" | "user_id")[], Api.Params<Api.ClientRequestContext< paths, "/get/projects_2/projects/", true>, undefined, {
|
|
31
|
-
"COUNT(*)"?: any;
|
|
32
|
-
"IS_YOUTUBE()"?: any;
|
|
33
|
-
"IS_APP_STORE()"?: any;
|
|
34
|
-
"IS_GOOGLE_PLAY()"?: any;
|
|
35
|
-
"GEN_SEARCH_STRING()"?: any;
|
|
36
|
-
id?: any;
|
|
37
|
-
user_id?: any;
|
|
38
|
-
name?: string | null;
|
|
39
|
-
url?: any;
|
|
40
|
-
date?: any;
|
|
41
|
-
last_view?: any;
|
|
42
|
-
folder_id?: number | null;
|
|
43
|
-
folder_name?: any;
|
|
44
|
-
task_time_delete?: any;
|
|
45
|
-
task_method_name?: any;
|
|
46
|
-
task_method_params_json?: any;
|
|
47
|
-
task_status?: any;
|
|
48
|
-
task_progress?: any;
|
|
49
|
-
site?: any;
|
|
50
|
-
update?: any;
|
|
51
|
-
status_positions?: string | null;
|
|
52
|
-
positions_time?: any;
|
|
53
|
-
positions_date?: any;
|
|
54
|
-
positions_percent?: any;
|
|
55
|
-
status_positions_time?: any;
|
|
56
|
-
status_positions_date?: any;
|
|
57
|
-
status_positions_percent?: any;
|
|
58
|
-
status_positions_by_keywords?: any;
|
|
59
|
-
status_volumes?: any;
|
|
60
|
-
status_claster?: any;
|
|
61
|
-
status_audit?: any;
|
|
62
|
-
status_audit_time?: any;
|
|
63
|
-
status_audit_percent?: any;
|
|
64
|
-
status_watcher?: any;
|
|
65
|
-
status_watcher_percent?: any;
|
|
66
|
-
status_indexing?: any;
|
|
67
|
-
status_indexing_percent?: any;
|
|
68
|
-
status_sitemap?: any;
|
|
69
|
-
status_sitemap_percent?: any;
|
|
70
|
-
status_urlsUpdater?: any;
|
|
71
|
-
status_ai_tracker?: any;
|
|
72
|
-
status_ai_tracker_time?: any;
|
|
73
|
-
status_ai_tracker_date?: any;
|
|
74
|
-
status_ai_tracker_percent?: any;
|
|
75
|
-
on?: any;
|
|
76
|
-
subdomains?: any;
|
|
77
|
-
filter?: any;
|
|
78
|
-
auto_correct?: any;
|
|
79
|
-
with_snippets?: any;
|
|
80
|
-
do_snapshots?: any;
|
|
81
|
-
do_snapshots_with_snippets?: any;
|
|
82
|
-
report_last_time?: any;
|
|
83
|
-
common_traffic?: any;
|
|
84
|
-
guest_link_right?: any;
|
|
85
|
-
is_task?: any;
|
|
86
|
-
count_keywords?: any;
|
|
87
|
-
right?: any;
|
|
88
|
-
ord?: any;
|
|
89
|
-
favorite?: any;
|
|
90
|
-
tags?: any;
|
|
91
|
-
user_email?: any;
|
|
92
|
-
user_currency?: any;
|
|
93
|
-
broker_count_campaigns?: any;
|
|
94
|
-
broker_count_banners?: any;
|
|
95
|
-
broker_count_banners_off?: any;
|
|
96
|
-
domain_expire?: any;
|
|
97
|
-
ssl_expire?: any;
|
|
98
|
-
competitor?: any;
|
|
99
|
-
competitor_ord?: any;
|
|
100
|
-
pos_summary_up?: any;
|
|
101
|
-
pos_summary_stay?: any;
|
|
102
|
-
pos_summary_down?: any;
|
|
103
|
-
pos_summary_avg?: any;
|
|
104
|
-
pos_summary_visibility?: any;
|
|
105
|
-
audit_server_location?: any;
|
|
106
|
-
audit_auto_collect_pages?: number | null;
|
|
107
|
-
audit_auto_collect_pages_limit?: number | null;
|
|
108
|
-
indexing_searchers_keys?: unknown[] | null;
|
|
109
|
-
watcher_types?: unknown[] | null;
|
|
110
|
-
ai_tracker_brand_name?: any;
|
|
111
|
-
ai_tracker_aliases?: unknown[] | null;
|
|
112
|
-
ai_tracker_models?: unknown[] | null;
|
|
113
|
-
ai_tracker_context_lang?: any;
|
|
114
|
-
ai_tracker_context_location?: any;
|
|
115
|
-
}, {
|
|
116
|
-
show_owner_balance?: boolean | null;
|
|
117
|
-
show_site_stat?: boolean | null;
|
|
118
|
-
show_searchers_and_regions?: number;
|
|
119
|
-
include_positions_summary?: boolean | null;
|
|
120
|
-
include_positions_summary_params?: unknown[] | null;
|
|
121
|
-
is_task?: boolean | null;
|
|
122
|
-
fields?: components["schemas"]["TV.API.Params.FieldsTrait"]["fields"];
|
|
123
|
-
orders?: components["schemas"]["TV.API.Params.OrdersTrait"]["orders"];
|
|
124
|
-
filters?: components["schemas"]["TV.API.Params.FiltersTrait"]["filters"];
|
|
125
|
-
id?: components["schemas"]["TV.API.Params.FiltersTrait"]["id"];
|
|
126
|
-
limit?: components["schemas"]["TV.API.Params.LimitTrait"]["limit"];
|
|
127
|
-
offset?: components["schemas"]["TV.API.Params.OffsetTrait"] /**
|
|
128
|
-
* Подготавить данные проектов для отображения:
|
|
129
|
-
* - убрать из результата проект с указанным `excludeProjectId`
|
|
130
|
-
* - сбросить состояние вставки заголовков категорий, если требуется
|
|
131
|
-
* - добавить `listItemProps`
|
|
132
|
-
* - добавить заголовки к категориям
|
|
133
|
-
*/["offset"];
|
|
134
|
-
}>, Api.ModelFields<{
|
|
135
|
-
"COUNT(*)"?: any;
|
|
136
|
-
"IS_YOUTUBE()"?: any;
|
|
137
|
-
"IS_APP_STORE()"?: any;
|
|
138
|
-
"IS_GOOGLE_PLAY()"?: any;
|
|
139
|
-
"GEN_SEARCH_STRING()"?: any;
|
|
140
|
-
id?: any;
|
|
141
|
-
user_id?: any;
|
|
142
|
-
name?: string | null;
|
|
143
|
-
url?: any;
|
|
144
|
-
date?: any;
|
|
145
|
-
last_view?: any;
|
|
146
|
-
folder_id?: number | null;
|
|
147
|
-
folder_name?: any;
|
|
148
|
-
task_time_delete?: any;
|
|
149
|
-
task_method_name?: any;
|
|
150
|
-
task_method_params_json?: any;
|
|
151
|
-
task_status?: any;
|
|
152
|
-
task_progress?: any;
|
|
153
|
-
site?: any;
|
|
154
|
-
update?: any;
|
|
155
|
-
status_positions?: string | null;
|
|
156
|
-
positions_time?: any;
|
|
157
|
-
positions_date?: any;
|
|
158
|
-
positions_percent?: any;
|
|
159
|
-
status_positions_time?: any;
|
|
160
|
-
status_positions_date?: any;
|
|
161
|
-
status_positions_percent?: any;
|
|
162
|
-
status_positions_by_keywords?: any;
|
|
163
|
-
status_volumes?: any;
|
|
164
|
-
status_claster?: any;
|
|
165
|
-
status_audit?: any;
|
|
166
|
-
status_audit_time?: any;
|
|
167
|
-
status_audit_percent?: any;
|
|
168
|
-
status_watcher?: any;
|
|
169
|
-
status_watcher_percent?: any;
|
|
170
|
-
status_indexing?: any;
|
|
171
|
-
status_indexing_percent?: any;
|
|
172
|
-
status_sitemap?: any;
|
|
173
|
-
status_sitemap_percent?: any;
|
|
174
|
-
status_urlsUpdater?: any;
|
|
175
|
-
status_ai_tracker?: any;
|
|
176
|
-
status_ai_tracker_time?: any;
|
|
177
|
-
status_ai_tracker_date?: any;
|
|
178
|
-
status_ai_tracker_percent?: any;
|
|
179
|
-
on?: any;
|
|
180
|
-
subdomains?: any;
|
|
181
|
-
filter?: any;
|
|
182
|
-
auto_correct?: any;
|
|
183
|
-
with_snippets?: any;
|
|
184
|
-
do_snapshots?: any;
|
|
185
|
-
do_snapshots_with_snippets?: any;
|
|
186
|
-
report_last_time?: any;
|
|
187
|
-
common_traffic?: any;
|
|
188
|
-
guest_link_right?: any;
|
|
189
|
-
is_task?: any;
|
|
190
|
-
count_keywords?: any;
|
|
191
|
-
right?: any;
|
|
192
|
-
ord?: any;
|
|
193
|
-
favorite?: any;
|
|
194
|
-
tags?: any;
|
|
195
|
-
user_email?: any;
|
|
196
|
-
user_currency?: any;
|
|
197
|
-
broker_count_campaigns?: any;
|
|
198
|
-
broker_count_banners?: any;
|
|
199
|
-
broker_count_banners_off?: any;
|
|
200
|
-
domain_expire?: any;
|
|
201
|
-
ssl_expire?: any;
|
|
202
|
-
competitor?: any;
|
|
203
|
-
competitor_ord?: any;
|
|
204
|
-
pos_summary_up?: any;
|
|
205
|
-
pos_summary_stay?: any;
|
|
206
|
-
pos_summary_down?: any;
|
|
207
|
-
pos_summary_avg?: any;
|
|
208
|
-
pos_summary_visibility?: any;
|
|
209
|
-
audit_server_location?: any;
|
|
210
|
-
audit_auto_collect_pages?: number | null;
|
|
211
|
-
audit_auto_collect_pages_limit?: number | null;
|
|
212
|
-
indexing_searchers_keys?: unknown[] | null;
|
|
213
|
-
watcher_types?: unknown[] | null;
|
|
214
|
-
ai_tracker_brand_name?: any;
|
|
215
|
-
ai_tracker_aliases?: unknown[] | null;
|
|
216
|
-
ai_tracker_models?: unknown[] | null;
|
|
217
|
-
ai_tracker_context_lang?: any;
|
|
218
|
-
ai_tracker_context_location?: any;
|
|
219
|
-
}> | undefined>;
|
|
220
|
-
/**
|
|
221
|
-
* Создать API запрос для добавления проекта
|
|
222
|
-
*/
|
|
223
|
-
export declare const genApiAddProject: (client: Api.Client<Api.TV.Paths, true>) => Api.ClientRequest<Api.ClientRequestContext< paths, "/add/projects_2/projects/", true>, never, Omit<{
|
|
224
|
-
url: components["schemas"]["TV.API.Types.UrlShort"];
|
|
225
|
-
name?: string | null;
|
|
226
|
-
tags?: unknown[] | null;
|
|
227
|
-
folder_id?: number | null;
|
|
228
|
-
on?: number | null;
|
|
229
|
-
is_task?: boolean | null;
|
|
230
|
-
}, "fields" | "filters" | "orders" | "fetch_style">, never>;
|