@webitel/ui-datalist 1.1.81 → 1.1.82
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/src/modules/filter-presets/api/PresetQuery.ts +18 -22
- package/src/modules/filters/modules/filterConfig/components/_custom/filterConfig.ts +1 -1
- package/src/modules/filters/modules/filterConfig/components/agent/config.js +1 -1
- package/src/modules/filters/modules/filterConfig/components/case-assignee/filterConfig.ts +1 -1
- package/src/modules/filters/modules/filterConfig/components/case-author/config.js +1 -1
- package/src/modules/filters/modules/filterConfig/components/case-close-reason-groups/config.js +4 -2
- package/src/modules/filters/modules/filterConfig/components/case-impacted/config.js +1 -1
- package/src/modules/filters/modules/filterConfig/components/case-priority/config.js +1 -1
- package/src/modules/filters/modules/filterConfig/components/case-reporter/config.js +1 -1
- package/src/modules/filters/modules/filterConfig/components/case-service/config.js +1 -2
- package/src/modules/filters/modules/filterConfig/components/case-sla/config.js +1 -1
- package/src/modules/filters/modules/filterConfig/components/case-sla-condition/config.js +1 -2
- package/src/modules/filters/modules/filterConfig/components/case-source/config.js +1 -1
- package/src/modules/filters/modules/filterConfig/components/case-status/config.js +4 -2
- package/src/modules/filters/modules/filterConfig/components/contact/config.js +1 -1
- package/src/modules/filters/modules/filterConfig/components/contact-group/index.ts +1 -1
- package/src/modules/filters/modules/filterConfig/components/contact-label/index.ts +1 -1
- package/src/modules/filters/modules/filterConfig/components/contact-owner/index.ts +1 -1
- package/src/modules/filters/modules/filterConfig/components/gateway/config.js +1 -1
- package/src/modules/filters/modules/filterConfig/components/queue/index.ts +1 -1
- package/src/modules/filters/modules/filterConfig/components/rated-by/config.js +1 -1
- package/src/modules/filters/modules/filterConfig/components/team/index.ts +1 -1
- package/src/modules/filters/modules/filterConfig/components/user/config.js +1 -1
- package/types/.tsbuildinfo +1 -1
- package/types/modules/filter-presets/api/PresetQuery.d.ts +1 -1
- package/types/modules/filters/modules/filterConfig/components/agent/config.d.ts +7 -2
- package/types/modules/filters/modules/filterConfig/components/case-author/config.d.ts +4 -1
- package/types/modules/filters/modules/filterConfig/components/case-close-reason-groups/config.d.ts +16 -4
- package/types/modules/filters/modules/filterConfig/components/case-impacted/config.d.ts +7 -2
- package/types/modules/filters/modules/filterConfig/components/case-priority/config.d.ts +7 -2
- package/types/modules/filters/modules/filterConfig/components/case-reporter/config.d.ts +7 -2
- package/types/modules/filters/modules/filterConfig/components/case-service/config.d.ts +14 -4
- package/types/modules/filters/modules/filterConfig/components/case-sla/config.d.ts +7 -2
- package/types/modules/filters/modules/filterConfig/components/case-sla-condition/config.d.ts +16 -4
- package/types/modules/filters/modules/filterConfig/components/case-source/config.d.ts +7 -1
- package/types/modules/filters/modules/filterConfig/components/case-status/config.d.ts +17 -4
- package/types/modules/filters/modules/filterConfig/components/contact/config.d.ts +7 -2
- package/types/modules/filters/modules/filterConfig/components/gateway/config.d.ts +7 -2
- package/types/modules/filters/modules/filterConfig/components/rated-by/config.d.ts +4 -1
- package/types/modules/filters/modules/filterConfig/components/user/config.d.ts +4 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import type { EngineCreatePresetQueryRequest, EnginePresetQuery } from '@webitel/api-services/gen/models';
|
|
1
2
|
import type { Id } from '@webitel/ui-sdk/api/types/ApiModule';
|
|
2
|
-
import { type EngineCreatePresetQueryRequest, type EnginePresetQuery } from 'webitel-sdk';
|
|
3
3
|
type GetPresetListRequestConfig = {
|
|
4
4
|
transformers: {
|
|
5
5
|
useStarToSearch?: boolean;
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
export const searchMethod:
|
|
2
|
-
|
|
1
|
+
export const searchMethod: (params: Parameters<(params: import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
2
|
+
items: any;
|
|
3
|
+
next: any;
|
|
4
|
+
}>>[0]) => Promise<{
|
|
5
|
+
items: any;
|
|
6
|
+
next: any;
|
|
7
|
+
}>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
export const searchMethod: (params:
|
|
1
|
+
export const searchMethod: (params: Parameters<(params: import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
2
|
+
items: any;
|
|
3
|
+
next: any;
|
|
4
|
+
}>>[0]) => Promise<{
|
|
2
5
|
items: any;
|
|
3
6
|
next: any;
|
|
4
7
|
}>;
|
package/types/modules/filters/modules/filterConfig/components/case-close-reason-groups/config.d.ts
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
|
-
export const caseCloseReasonsGroupsSearchMethod:
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
export const caseCloseReasonsGroupsSearchMethod: (params: Parameters<(params: import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
2
|
+
items: any;
|
|
3
|
+
next: any;
|
|
4
|
+
}>>[0]) => Promise<{
|
|
5
|
+
items: any;
|
|
6
|
+
next: any;
|
|
7
|
+
}>;
|
|
8
|
+
export const caseCloseReasonsSearchMethod: (params: Parameters<({ parentId, ...rest }: {
|
|
9
|
+
parentId: import("@webitel/api-services/api/clients/_shared/types").ApiId;
|
|
10
|
+
} & import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
11
|
+
items: any;
|
|
12
|
+
next: any;
|
|
13
|
+
}>>[0]) => Promise<{
|
|
14
|
+
items: any;
|
|
15
|
+
next: any;
|
|
16
|
+
}>;
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
export const searchMethod:
|
|
2
|
-
|
|
1
|
+
export const searchMethod: (params: Parameters<(params: import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
2
|
+
items: any;
|
|
3
|
+
next: any;
|
|
4
|
+
}>>[0]) => Promise<{
|
|
5
|
+
items: any;
|
|
6
|
+
next: any;
|
|
7
|
+
}>;
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
export const searchMethod:
|
|
2
|
-
|
|
1
|
+
export const searchMethod: (params: Parameters<(params: import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
2
|
+
items: any;
|
|
3
|
+
next: any;
|
|
4
|
+
}>>[0]) => Promise<{
|
|
5
|
+
items: any;
|
|
6
|
+
next: any;
|
|
7
|
+
}>;
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
export const searchMethod:
|
|
2
|
-
|
|
1
|
+
export const searchMethod: (params: Parameters<(params: import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
2
|
+
items: any;
|
|
3
|
+
next: any;
|
|
4
|
+
}>>[0]) => Promise<{
|
|
5
|
+
items: any;
|
|
6
|
+
next: any;
|
|
7
|
+
}>;
|
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
export const searchMethod:
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
export const searchMethod: (params: import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
2
|
+
items: any;
|
|
3
|
+
next: any;
|
|
4
|
+
}>;
|
|
5
|
+
export const servicesSearchMethod: (params: Parameters<({ parentId, rootId, ...rest }: {
|
|
6
|
+
parentId?: import("@webitel/api-services/api/clients/_shared/types").ApiId;
|
|
7
|
+
rootId: import("@webitel/api-services/api/clients/_shared/types").ApiId;
|
|
8
|
+
} & import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
9
|
+
items: any;
|
|
10
|
+
next: any;
|
|
11
|
+
}>>[0]) => Promise<{
|
|
12
|
+
items: any;
|
|
13
|
+
next: any;
|
|
14
|
+
}>;
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
export const searchMethod:
|
|
2
|
-
|
|
1
|
+
export const searchMethod: (params: Parameters<(params: import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
2
|
+
items: any;
|
|
3
|
+
next: any;
|
|
4
|
+
}>>[0]) => Promise<{
|
|
5
|
+
items: any;
|
|
6
|
+
next: any;
|
|
7
|
+
}>;
|
package/types/modules/filters/modules/filterConfig/components/case-sla-condition/config.d.ts
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
|
-
export const slasConditionsSearchMethod:
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
export const slasConditionsSearchMethod: (params: Parameters<({ parentId, ...rest }: {
|
|
2
|
+
parentId: import("@webitel/api-services/api/clients/_shared/types").ApiId;
|
|
3
|
+
} & import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
4
|
+
items: any;
|
|
5
|
+
next: any;
|
|
6
|
+
}>>[0]) => Promise<{
|
|
7
|
+
items: any;
|
|
8
|
+
next: any;
|
|
9
|
+
}>;
|
|
10
|
+
export const slasSearchMethod: (params: Parameters<(params: import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
11
|
+
items: any;
|
|
12
|
+
next: any;
|
|
13
|
+
}>>[0]) => Promise<{
|
|
14
|
+
items: any;
|
|
15
|
+
next: any;
|
|
16
|
+
}>;
|
|
@@ -1,4 +1,17 @@
|
|
|
1
|
-
export const caseStatusesSearchMethod:
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
export const caseStatusesSearchMethod: (params: Parameters<(params: import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
2
|
+
items: any;
|
|
3
|
+
next: any;
|
|
4
|
+
}>>[0]) => Promise<{
|
|
5
|
+
items: any;
|
|
6
|
+
next: any;
|
|
7
|
+
}>;
|
|
8
|
+
export const caseStatusConditionsSearchMethod: (params: Parameters<({ statusId, parentId, ...rest }: {
|
|
9
|
+
statusId?: import("@webitel/api-services/api/clients/_shared/types").ApiId;
|
|
10
|
+
parentId?: import("@webitel/api-services/api/clients/_shared/types").ApiId;
|
|
11
|
+
} & import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
12
|
+
items: any;
|
|
13
|
+
next: any;
|
|
14
|
+
}>>[0]) => Promise<{
|
|
15
|
+
items: any;
|
|
16
|
+
next: any;
|
|
17
|
+
}>;
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
export const searchMethod:
|
|
2
|
-
|
|
1
|
+
export const searchMethod: (params: Parameters<(params: import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
2
|
+
items: any;
|
|
3
|
+
next: any;
|
|
4
|
+
}>>[0]) => Promise<{
|
|
5
|
+
items: any;
|
|
6
|
+
next: any;
|
|
7
|
+
}>;
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
export const searchMethod:
|
|
2
|
-
|
|
1
|
+
export const searchMethod: (params: Parameters<(params: import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
2
|
+
items: any;
|
|
3
|
+
next: any;
|
|
4
|
+
}>>[0]) => Promise<{
|
|
5
|
+
items: any;
|
|
6
|
+
next: any;
|
|
7
|
+
}>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
export const searchMethod: (params:
|
|
1
|
+
export const searchMethod: (params: Parameters<(params: import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
2
|
+
items: any;
|
|
3
|
+
next: any;
|
|
4
|
+
}>>[0]) => Promise<{
|
|
2
5
|
items: any;
|
|
3
6
|
next: any;
|
|
4
7
|
}>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
export const searchMethod: (params:
|
|
1
|
+
export const searchMethod: (params: Parameters<(params: import("@webitel/api-services/api/clients/_shared/types").ApiParams) => Promise<{
|
|
2
|
+
items: any;
|
|
3
|
+
next: any;
|
|
4
|
+
}>>[0]) => Promise<{
|
|
2
5
|
items: any;
|
|
3
6
|
next: any;
|
|
4
7
|
}>;
|