@coveo/platform-client 39.0.0 → 40.0.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/dist/definitions/resources/HostedInterfacesCore/HostedInterfaceCoreConfig.model.d.ts +141 -0
- package/dist/definitions/resources/HostedInterfacesCore/index.d.ts +1 -0
- package/dist/definitions/resources/IPXInterfaces/IPXInterface.model.d.ts +62 -0
- package/dist/definitions/resources/IPXInterfaces/index.d.ts +1 -0
- package/dist/definitions/resources/InsightPanelInterfaces/InsightPanelInterface.d.ts +3 -2
- package/dist/definitions/resources/InsightPanelInterfaces/InsightPanelInterface.model.d.ts +9 -105
- package/dist/definitions/resources/index.d.ts +2 -0
- package/dist/resources/HostedInterfacesCore/HostedInterfaceCoreConfig.model.js +8 -0
- package/dist/resources/HostedInterfacesCore/HostedInterfaceCoreConfig.model.js.map +1 -0
- package/dist/resources/HostedInterfacesCore/index.js +2 -0
- package/dist/resources/HostedInterfacesCore/index.js.map +1 -0
- package/dist/resources/IPXInterfaces/IPXInterface.model.js +6 -0
- package/dist/resources/IPXInterfaces/IPXInterface.model.js.map +1 -0
- package/dist/resources/IPXInterfaces/index.js +2 -0
- package/dist/resources/IPXInterfaces/index.js.map +1 -0
- package/dist/resources/InsightPanelInterfaces/InsightPanelInterface.js.map +1 -1
- package/dist/resources/InsightPanelInterfaces/InsightPanelInterface.model.js +0 -7
- package/dist/resources/InsightPanelInterfaces/InsightPanelInterface.model.js.map +1 -1
- package/dist/resources/index.js +2 -0
- package/dist/resources/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import { Paginated } from '../BaseInterfaces.js';
|
|
2
|
+
export interface HostedInterfaceResultTemplateBadge {
|
|
3
|
+
/**
|
|
4
|
+
* The field who's value should be displayed in the badge.
|
|
5
|
+
*/
|
|
6
|
+
field: string;
|
|
7
|
+
/**
|
|
8
|
+
* The text to display in the badge.
|
|
9
|
+
*/
|
|
10
|
+
label?: string;
|
|
11
|
+
/**
|
|
12
|
+
* The RGB HEX code for the color of the badge.
|
|
13
|
+
*/
|
|
14
|
+
color: string;
|
|
15
|
+
}
|
|
16
|
+
export declare enum HostedInterfaceConditionOperator {
|
|
17
|
+
IsDefined = "isDefined",
|
|
18
|
+
IsNotDefined = "isNotDefined",
|
|
19
|
+
MustMatch = "mustMatch",
|
|
20
|
+
MustNotMatch = "mustNotMatch"
|
|
21
|
+
}
|
|
22
|
+
export interface HostedInterfaceCondition {
|
|
23
|
+
/**
|
|
24
|
+
* The [field](https://docs.coveo.com/en/200) to evaluate.
|
|
25
|
+
*/
|
|
26
|
+
field: string;
|
|
27
|
+
/**
|
|
28
|
+
* The values used as the right side operand when the `operator` is one of:
|
|
29
|
+
* - `'mustMatch'`
|
|
30
|
+
* - `'mustNotMatch'`
|
|
31
|
+
*/
|
|
32
|
+
values?: string[];
|
|
33
|
+
/**
|
|
34
|
+
* The operator used to evaluate the field condition.
|
|
35
|
+
* Possible values are:
|
|
36
|
+
* - `'isDefined'`
|
|
37
|
+
* - `'isNotDefined'`
|
|
38
|
+
* - `'mustMatch'`
|
|
39
|
+
* - `'mustNotMatch'`
|
|
40
|
+
*/
|
|
41
|
+
conditionType: HostedInterfaceConditionOperator;
|
|
42
|
+
}
|
|
43
|
+
export interface HostedInterfaceResultTemplateDetail {
|
|
44
|
+
/**
|
|
45
|
+
* The [field](https://docs.coveo.com/en/200) containing the metadata to display.
|
|
46
|
+
*/
|
|
47
|
+
field: string;
|
|
48
|
+
/**
|
|
49
|
+
* The label to show describing the metadata.
|
|
50
|
+
*/
|
|
51
|
+
label?: string;
|
|
52
|
+
}
|
|
53
|
+
export type DisplayValueType = 'checkbox' | 'link';
|
|
54
|
+
export interface HostedInterfaceFacet {
|
|
55
|
+
/**
|
|
56
|
+
* The [field](https://docs.coveo.com/en/200) on which the facet is based.
|
|
57
|
+
*/
|
|
58
|
+
field: string;
|
|
59
|
+
/**
|
|
60
|
+
* The label of the facet.
|
|
61
|
+
*/
|
|
62
|
+
label: string;
|
|
63
|
+
/**
|
|
64
|
+
* Whether to display the facet values as checkboxes (multiple selection) or links (single selection).
|
|
65
|
+
* Possible values are:
|
|
66
|
+
* - `'checkbox'`
|
|
67
|
+
* - `'link'`
|
|
68
|
+
*/
|
|
69
|
+
displayValuesAs: DisplayValueType;
|
|
70
|
+
}
|
|
71
|
+
export interface HostedInterfaceTab {
|
|
72
|
+
/**
|
|
73
|
+
* The label to be displayed in the tab.
|
|
74
|
+
*/
|
|
75
|
+
label: string;
|
|
76
|
+
/**
|
|
77
|
+
* A constant query expression or filter that the Tab should add to any outgoing query.
|
|
78
|
+
*
|
|
79
|
+
* **Example:**
|
|
80
|
+
*
|
|
81
|
+
* `@objecttype==Message`
|
|
82
|
+
*/
|
|
83
|
+
conditions: HostedInterfaceCondition[];
|
|
84
|
+
}
|
|
85
|
+
export interface ListHostedInterfacesParams extends Paginated {
|
|
86
|
+
/**
|
|
87
|
+
* A substring that must appear in a hosted interface configuration name for this configuration to appear in results.
|
|
88
|
+
*/
|
|
89
|
+
filter?: string;
|
|
90
|
+
/**
|
|
91
|
+
* The sort direction of the results.
|
|
92
|
+
* Possible values:
|
|
93
|
+
* - `'asc'`: ascending order
|
|
94
|
+
* - `'desc'`: descending order.
|
|
95
|
+
*/
|
|
96
|
+
order?: 'desc' | 'asc';
|
|
97
|
+
/**
|
|
98
|
+
* The 0-based number of the page of configurations to list.
|
|
99
|
+
*/
|
|
100
|
+
page?: number;
|
|
101
|
+
/**
|
|
102
|
+
* The maximum number of configurations to include per page.
|
|
103
|
+
*/
|
|
104
|
+
perPage?: number;
|
|
105
|
+
}
|
|
106
|
+
export interface HostedInterfaceResultTemplate {
|
|
107
|
+
/**
|
|
108
|
+
* The name of the result template.
|
|
109
|
+
*/
|
|
110
|
+
name: string;
|
|
111
|
+
/**
|
|
112
|
+
* The conditions a result needs to meet to use the template.
|
|
113
|
+
*/
|
|
114
|
+
conditions: HostedInterfaceCondition[];
|
|
115
|
+
/**
|
|
116
|
+
* The badge to display.
|
|
117
|
+
*/
|
|
118
|
+
badge: HostedInterfaceResultTemplateBadge;
|
|
119
|
+
/**
|
|
120
|
+
* The metadata details to display.
|
|
121
|
+
*/
|
|
122
|
+
details: HostedInterfaceResultTemplateDetail[];
|
|
123
|
+
}
|
|
124
|
+
export interface HostedInterfaceConfiguration {
|
|
125
|
+
/**
|
|
126
|
+
* The configuration identifier.
|
|
127
|
+
*/
|
|
128
|
+
id: string;
|
|
129
|
+
/**
|
|
130
|
+
* The name of the insight panel interface configuration.
|
|
131
|
+
*/
|
|
132
|
+
name: string;
|
|
133
|
+
/**
|
|
134
|
+
* The list of facets to display.
|
|
135
|
+
*/
|
|
136
|
+
facets: HostedInterfaceFacet[];
|
|
137
|
+
/**
|
|
138
|
+
* The list of tabs to display.
|
|
139
|
+
*/
|
|
140
|
+
tabs: HostedInterfaceTab[];
|
|
141
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './HostedInterfaceCoreConfig.model.js';
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { HostedInterfaceCondition, HostedInterfaceConfiguration, HostedInterfaceFacet, HostedInterfaceResultTemplate, HostedInterfaceResultTemplateBadge, HostedInterfaceResultTemplateDetail, HostedInterfaceTab } from '../HostedInterfacesCore/index.js';
|
|
2
|
+
export declare enum IPXResultTemplateLayout {
|
|
3
|
+
Default = "default",
|
|
4
|
+
Thumbnail = "thumbnail"
|
|
5
|
+
}
|
|
6
|
+
export interface IPXFacet extends HostedInterfaceFacet {
|
|
7
|
+
}
|
|
8
|
+
export interface IPXCondition extends HostedInterfaceCondition {
|
|
9
|
+
}
|
|
10
|
+
export interface IPXTab extends HostedInterfaceTab {
|
|
11
|
+
/**
|
|
12
|
+
* A constant query expression or filter that the Tab should add to any outgoing query.
|
|
13
|
+
*
|
|
14
|
+
* **Example:**
|
|
15
|
+
*
|
|
16
|
+
* `@objecttype==Message`
|
|
17
|
+
*/
|
|
18
|
+
conditions: IPXCondition[];
|
|
19
|
+
}
|
|
20
|
+
export interface IPXResultTemplateBadge extends HostedInterfaceResultTemplateBadge {
|
|
21
|
+
}
|
|
22
|
+
export interface IPXResultTemplateDetail extends HostedInterfaceResultTemplateDetail {
|
|
23
|
+
}
|
|
24
|
+
export interface IPXResultTemplate extends HostedInterfaceResultTemplate {
|
|
25
|
+
layout: IPXResultTemplateLayout;
|
|
26
|
+
/**
|
|
27
|
+
* The conditions a result needs to meet to use the template.
|
|
28
|
+
*/
|
|
29
|
+
conditions: IPXCondition[];
|
|
30
|
+
/**
|
|
31
|
+
* The badge to display.
|
|
32
|
+
*/
|
|
33
|
+
badge: IPXResultTemplateBadge;
|
|
34
|
+
/**
|
|
35
|
+
* The metadata details to display.
|
|
36
|
+
*/
|
|
37
|
+
details: IPXResultTemplateDetail[];
|
|
38
|
+
}
|
|
39
|
+
export interface IPXButton {
|
|
40
|
+
label: string;
|
|
41
|
+
}
|
|
42
|
+
export interface IPXInterfaceConfiguration extends HostedInterfaceConfiguration {
|
|
43
|
+
/**
|
|
44
|
+
* The list of facets to display.
|
|
45
|
+
*/
|
|
46
|
+
facets: IPXFacet[];
|
|
47
|
+
/**
|
|
48
|
+
* The list of tabs to display.
|
|
49
|
+
*/
|
|
50
|
+
tabs: IPXTab[];
|
|
51
|
+
/**
|
|
52
|
+
* The list of result templates defined for the ipx.
|
|
53
|
+
*/
|
|
54
|
+
/**
|
|
55
|
+
* The list of result templates defined for the ipx.
|
|
56
|
+
*/
|
|
57
|
+
resultTemplates: IPXResultTemplate[];
|
|
58
|
+
/**
|
|
59
|
+
* The button element of the ipx interface.
|
|
60
|
+
*/
|
|
61
|
+
button: IPXButton;
|
|
62
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './IPXInterface.model.js';
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { New, PageModel } from '../BaseInterfaces.js';
|
|
2
|
+
import { ListHostedInterfacesParams } from '../HostedInterfacesCore/index.js';
|
|
2
3
|
import Resource from '../Resource.js';
|
|
3
|
-
import {
|
|
4
|
+
import { InsightPanelInterfaceConfiguration } from './InsightPanelInterface.model.js';
|
|
4
5
|
export default class InsightPanelInterface extends Resource {
|
|
5
6
|
static baseUrl: string;
|
|
6
|
-
list(options?:
|
|
7
|
+
list(options?: ListHostedInterfacesParams): Promise<PageModel<InsightPanelInterfaceConfiguration, "items">>;
|
|
7
8
|
create(ipInterfaceConfig: New<InsightPanelInterfaceConfiguration>): Promise<InsightPanelInterfaceConfiguration>;
|
|
8
9
|
delete(insightPanelInterfaceId: string): Promise<Record<string, unknown>>;
|
|
9
10
|
get(insightPanelInterfaceId: string): Promise<InsightPanelInterfaceConfiguration>;
|
|
@@ -1,10 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare enum InsightPanelConditionOperator {
|
|
3
|
-
isDefined = "isDefined",
|
|
4
|
-
isNotDefined = "isNotDefined",
|
|
5
|
-
MustMatch = "mustMatch",
|
|
6
|
-
MustNotMatch = "mustNotMatch"
|
|
7
|
-
}
|
|
1
|
+
import { HostedInterfaceCondition, HostedInterfaceConfiguration, HostedInterfaceFacet, HostedInterfaceResultTemplate, HostedInterfaceResultTemplateBadge, HostedInterfaceResultTemplateDetail, HostedInterfaceTab, ListHostedInterfacesParams } from '../HostedInterfacesCore/index.js';
|
|
8
2
|
export declare enum InsightPanelResultTemplateLayout {
|
|
9
3
|
Default = "default",
|
|
10
4
|
Thumbnail = "thumbnail"
|
|
@@ -16,50 +10,11 @@ interface InsightPanelResultTagOptions {
|
|
|
16
10
|
enabled: boolean;
|
|
17
11
|
color: string;
|
|
18
12
|
}
|
|
19
|
-
export interface InsightPanelResultTemplateBadge {
|
|
20
|
-
/**
|
|
21
|
-
* The field who's value should be displayed in the badge.
|
|
22
|
-
*/
|
|
23
|
-
field: string;
|
|
24
|
-
/**
|
|
25
|
-
* The text to display in the badge.
|
|
26
|
-
*/
|
|
27
|
-
label?: string;
|
|
28
|
-
/**
|
|
29
|
-
* The RGB HEX code for the color of the badge.
|
|
30
|
-
*/
|
|
31
|
-
color: string;
|
|
13
|
+
export interface InsightPanelResultTemplateBadge extends HostedInterfaceResultTemplateBadge {
|
|
32
14
|
}
|
|
33
|
-
export interface InsightPanelCondition {
|
|
34
|
-
/**
|
|
35
|
-
* The [field](https://docs.coveo.com/en/200) to evaluate.
|
|
36
|
-
*/
|
|
37
|
-
field: string;
|
|
38
|
-
/**
|
|
39
|
-
* The operator used to evaluate the field condition.
|
|
40
|
-
* Possible values are:
|
|
41
|
-
* - `'isDefined'`
|
|
42
|
-
* - `'isNotDefined'`
|
|
43
|
-
* - `'mustMatch'`
|
|
44
|
-
* - `'mustNotMatch'`
|
|
45
|
-
*/
|
|
46
|
-
conditionType: InsightPanelConditionOperator;
|
|
47
|
-
/**
|
|
48
|
-
* The values used as the right side operand when the `operator` is one of:
|
|
49
|
-
* - `'mustMatch'`
|
|
50
|
-
* - `'mustNotMatch'`
|
|
51
|
-
*/
|
|
52
|
-
values?: string[];
|
|
15
|
+
export interface InsightPanelCondition extends HostedInterfaceCondition {
|
|
53
16
|
}
|
|
54
|
-
export interface InsightPanelResultTemplateDetail {
|
|
55
|
-
/**
|
|
56
|
-
* The [field](https://docs.coveo.com/en/200) containing the metadata to display.
|
|
57
|
-
*/
|
|
58
|
-
field: string;
|
|
59
|
-
/**
|
|
60
|
-
* The label to show describing the metadata.
|
|
61
|
-
*/
|
|
62
|
-
label?: string;
|
|
17
|
+
export interface InsightPanelResultTemplateDetail extends HostedInterfaceResultTemplateDetail {
|
|
63
18
|
}
|
|
64
19
|
export interface InsightPanelResultActions {
|
|
65
20
|
/**
|
|
@@ -93,11 +48,7 @@ export interface InsightPanelResultTags {
|
|
|
93
48
|
*/
|
|
94
49
|
recommended?: InsightPanelResultTagOptions;
|
|
95
50
|
}
|
|
96
|
-
export interface InsightPanelResultTemplate {
|
|
97
|
-
/**
|
|
98
|
-
* The name of the result template.
|
|
99
|
-
*/
|
|
100
|
-
name: string;
|
|
51
|
+
export interface InsightPanelResultTemplate extends HostedInterfaceResultTemplate {
|
|
101
52
|
/**
|
|
102
53
|
* The template layout to use.
|
|
103
54
|
* Possible values are:
|
|
@@ -126,29 +77,9 @@ export interface InsightPanelResultTemplate {
|
|
|
126
77
|
*/
|
|
127
78
|
tags: InsightPanelResultTags;
|
|
128
79
|
}
|
|
129
|
-
export
|
|
130
|
-
export interface InsightPanelFacet {
|
|
131
|
-
/**
|
|
132
|
-
* The [field](https://docs.coveo.com/en/200) on which the facet is based.
|
|
133
|
-
*/
|
|
134
|
-
field: string;
|
|
135
|
-
/**
|
|
136
|
-
* The label of the facet.
|
|
137
|
-
*/
|
|
138
|
-
label: string;
|
|
139
|
-
/**
|
|
140
|
-
* Whether to display the facet values as checkboxes (multiple selection) or links (single selection).
|
|
141
|
-
* Possible values are:
|
|
142
|
-
* - `'checkbox'`
|
|
143
|
-
* - `'link'`
|
|
144
|
-
*/
|
|
145
|
-
displayValuesAs: DisplayValueType;
|
|
80
|
+
export interface InsightPanelFacet extends HostedInterfaceFacet {
|
|
146
81
|
}
|
|
147
|
-
export interface InsightPanelTab {
|
|
148
|
-
/**
|
|
149
|
-
* The label to be displayed in the tab.
|
|
150
|
-
*/
|
|
151
|
-
label: string;
|
|
82
|
+
export interface InsightPanelTab extends HostedInterfaceTab {
|
|
152
83
|
/**
|
|
153
84
|
* A constant query expression or filter that the Tab should add to any outgoing query.
|
|
154
85
|
*
|
|
@@ -190,15 +121,7 @@ export interface InsightPanelSettings {
|
|
|
190
121
|
*/
|
|
191
122
|
userActions: UserActionsOptions;
|
|
192
123
|
}
|
|
193
|
-
export interface InsightPanelInterfaceConfiguration {
|
|
194
|
-
/**
|
|
195
|
-
* The configuration identifier.
|
|
196
|
-
*/
|
|
197
|
-
id: string;
|
|
198
|
-
/**
|
|
199
|
-
* The name of the insight panel interface configuration.
|
|
200
|
-
*/
|
|
201
|
-
name: string;
|
|
124
|
+
export interface InsightPanelInterfaceConfiguration extends HostedInterfaceConfiguration {
|
|
202
125
|
/**
|
|
203
126
|
* The list of result templates defined for the insight panel.
|
|
204
127
|
*/
|
|
@@ -216,25 +139,6 @@ export interface InsightPanelInterfaceConfiguration {
|
|
|
216
139
|
*/
|
|
217
140
|
settings: InsightPanelSettings;
|
|
218
141
|
}
|
|
219
|
-
export interface IListInsightPanelInterfacesParameters extends
|
|
220
|
-
/**
|
|
221
|
-
* A substring that must appear in an insight panel interface configuration name for this configuration to appear in results.
|
|
222
|
-
*/
|
|
223
|
-
filter?: string;
|
|
224
|
-
/**
|
|
225
|
-
* The sort direction of the results.
|
|
226
|
-
* Possible values:
|
|
227
|
-
* - `'asc'`: ascending order
|
|
228
|
-
* - `'desc'`: descending order.
|
|
229
|
-
*/
|
|
230
|
-
order?: 'desc' | 'asc';
|
|
231
|
-
/**
|
|
232
|
-
* The 0-based number of the page of configurations to list.
|
|
233
|
-
*/
|
|
234
|
-
page?: number;
|
|
235
|
-
/**
|
|
236
|
-
* The maximum number of configurations to include per page.
|
|
237
|
-
*/
|
|
238
|
-
perPage?: number;
|
|
142
|
+
export interface IListInsightPanelInterfacesParameters extends ListHostedInterfacesParams {
|
|
239
143
|
}
|
|
240
144
|
export {};
|
|
@@ -14,10 +14,12 @@ export * from './Fields/index.js';
|
|
|
14
14
|
export * from './Global/index.js';
|
|
15
15
|
export * from './GlobalGroups/index.js';
|
|
16
16
|
export * from './Groups/index.js';
|
|
17
|
+
export * from './HostedInterfacesCore/index.js';
|
|
17
18
|
export * from './Indexes/index.js';
|
|
18
19
|
export * from './InProductExperiences/index.js';
|
|
19
20
|
export * from './InsightPanelConfigs/index.js';
|
|
20
21
|
export * from './InsightPanelInterfaces/index.js';
|
|
22
|
+
export * from './IPXInterfaces/index.js';
|
|
21
23
|
export * from './License/index.js';
|
|
22
24
|
export * from './Limits/index.js';
|
|
23
25
|
export * from './Links/index.js';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export var HostedInterfaceConditionOperator;
|
|
2
|
+
(function (HostedInterfaceConditionOperator) {
|
|
3
|
+
HostedInterfaceConditionOperator["IsDefined"] = "isDefined";
|
|
4
|
+
HostedInterfaceConditionOperator["IsNotDefined"] = "isNotDefined";
|
|
5
|
+
HostedInterfaceConditionOperator["MustMatch"] = "mustMatch";
|
|
6
|
+
HostedInterfaceConditionOperator["MustNotMatch"] = "mustNotMatch";
|
|
7
|
+
})(HostedInterfaceConditionOperator = HostedInterfaceConditionOperator || (HostedInterfaceConditionOperator = {}));
|
|
8
|
+
//# sourceMappingURL=HostedInterfaceCoreConfig.model.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HostedInterfaceCoreConfig.model.js","sourceRoot":"","sources":["../../../src/resources/HostedInterfacesCore/HostedInterfaceCoreConfig.model.ts"],"names":[],"mappings":"AAmBA,MAAM,CAAN,IAAY,gCAKX;AALD,WAAY,gCAAgC;IACxC,2DAAuB,CAAA;IACvB,iEAA6B,CAAA;IAC7B,2DAAuB,CAAA;IACvB,iEAA6B,CAAA;AACjC,CAAC,EALW,gCAAgC,GAAhC,gCAAgC,KAAhC,gCAAgC,QAK3C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/resources/HostedInterfacesCore/index.ts"],"names":[],"mappings":"AAAA,cAAc,sCAAsC,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export var IPXResultTemplateLayout;
|
|
2
|
+
(function (IPXResultTemplateLayout) {
|
|
3
|
+
IPXResultTemplateLayout["Default"] = "default";
|
|
4
|
+
IPXResultTemplateLayout["Thumbnail"] = "thumbnail";
|
|
5
|
+
})(IPXResultTemplateLayout = IPXResultTemplateLayout || (IPXResultTemplateLayout = {}));
|
|
6
|
+
//# sourceMappingURL=IPXInterface.model.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IPXInterface.model.js","sourceRoot":"","sources":["../../../src/resources/IPXInterfaces/IPXInterface.model.ts"],"names":[],"mappings":"AAUA,MAAM,CAAN,IAAY,uBAGX;AAHD,WAAY,uBAAuB;IAC/B,8CAAmB,CAAA;IACnB,kDAAuB,CAAA;AAC3B,CAAC,EAHW,uBAAuB,GAAvB,uBAAuB,KAAvB,uBAAuB,QAGlC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/resources/IPXInterfaces/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InsightPanelInterface.js","sourceRoot":"","sources":["../../../src/resources/InsightPanelInterfaces/InsightPanelInterface.ts"],"names":[],"mappings":"AAAA,OAAO,GAAG,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"InsightPanelInterface.js","sourceRoot":"","sources":["../../../src/resources/InsightPanelInterfaces/InsightPanelInterface.ts"],"names":[],"mappings":"AAAA,OAAO,GAAG,MAAM,kBAAkB,CAAC;AAGnC,OAAO,QAAQ,MAAM,gBAAgB,CAAC;AAGtC,MAAM,CAAC,OAAO,OAAO,qBAAsB,SAAQ,QAAQ;IACvD,MAAM,CAAC,OAAO,GAAG,uBAAuB,GAAG,CAAC,cAAc,iCAAiC,CAAC;IAE5F,IAAI,CAAC,OAAoC;QACrC,OAAO,IAAI,CAAC,GAAG,CAAC,GAAG,CACf,IAAI,CAAC,SAAS,CAAC,qBAAqB,CAAC,OAAO,EAAE,OAAO,CAAC,CACzD,CAAC;IACN,CAAC;IAED,MAAM,CAAC,iBAA0D;QAC7D,OAAO,IAAI,CAAC,GAAG,CAAC,IAAI,CAAqC,qBAAqB,CAAC,OAAO,EAAE,iBAAiB,CAAC,CAAC;IAC/G,CAAC;IAED,MAAM,CAAC,uBAA+B;QAClC,OAAO,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,qBAAqB,CAAC,OAAO,IAAI,uBAAuB,EAAE,CAAC,CAAC;IAC1F,CAAC;IAED,GAAG,CAAC,uBAA+B;QAC/B,OAAO,IAAI,CAAC,GAAG,CAAC,GAAG,CACf,GAAG,qBAAqB,CAAC,OAAO,IAAI,uBAAuB,EAAE,CAChE,CAAC;IACN,CAAC;IAED,MAAM,CAAC,iBAAqD;QACxD,MAAM,EAAC,EAAE,EAAE,GAAG,IAAI,EAAC,GAAG,iBAAiB,CAAC;QAExC,OAAO,IAAI,CAAC,GAAG,CAAC,GAAG,CAAqC,GAAG,qBAAqB,CAAC,OAAO,IAAI,EAAE,EAAE,EAAE,IAAI,CAAC,CAAC;IAC5G,CAAC"}
|
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
export var InsightPanelConditionOperator;
|
|
2
|
-
(function (InsightPanelConditionOperator) {
|
|
3
|
-
InsightPanelConditionOperator["isDefined"] = "isDefined";
|
|
4
|
-
InsightPanelConditionOperator["isNotDefined"] = "isNotDefined";
|
|
5
|
-
InsightPanelConditionOperator["MustMatch"] = "mustMatch";
|
|
6
|
-
InsightPanelConditionOperator["MustNotMatch"] = "mustNotMatch";
|
|
7
|
-
})(InsightPanelConditionOperator = InsightPanelConditionOperator || (InsightPanelConditionOperator = {}));
|
|
8
1
|
export var InsightPanelResultTemplateLayout;
|
|
9
2
|
(function (InsightPanelResultTemplateLayout) {
|
|
10
3
|
InsightPanelResultTemplateLayout["Default"] = "default";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InsightPanelInterface.model.js","sourceRoot":"","sources":["../../../src/resources/InsightPanelInterfaces/InsightPanelInterface.model.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"InsightPanelInterface.model.js","sourceRoot":"","sources":["../../../src/resources/InsightPanelInterfaces/InsightPanelInterface.model.ts"],"names":[],"mappings":"AAWA,MAAM,CAAN,IAAY,gCAGX;AAHD,WAAY,gCAAgC;IACxC,uDAAmB,CAAA;IACnB,2DAAuB,CAAA;AAC3B,CAAC,EAHW,gCAAgC,GAAhC,gCAAgC,KAAhC,gCAAgC,QAG3C"}
|
package/dist/resources/index.js
CHANGED
|
@@ -14,10 +14,12 @@ export * from './Fields/index.js';
|
|
|
14
14
|
export * from './Global/index.js';
|
|
15
15
|
export * from './GlobalGroups/index.js';
|
|
16
16
|
export * from './Groups/index.js';
|
|
17
|
+
export * from './HostedInterfacesCore/index.js';
|
|
17
18
|
export * from './Indexes/index.js';
|
|
18
19
|
export * from './InProductExperiences/index.js';
|
|
19
20
|
export * from './InsightPanelConfigs/index.js';
|
|
20
21
|
export * from './InsightPanelInterfaces/index.js';
|
|
22
|
+
export * from './IPXInterfaces/index.js';
|
|
21
23
|
export * from './License/index.js';
|
|
22
24
|
export * from './Limits/index.js';
|
|
23
25
|
export * from './Links/index.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,eAAe,CAAC;AAElD,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,YAAY,CAAC;AAC3B,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iCAAiC,CAAC;AAChD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,mCAAmC,CAAC;AAClD,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iBAAiB,CAAC;AAChC,cAAc,0BAA0B,CAAC;AACzC,cAAc,mBAAmB,CAAC;AAClC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,eAAe,CAAC;AAElD,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,YAAY,CAAC;AAC3B,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iCAAiC,CAAC;AAChD,cAAc,oBAAoB,CAAC;AACnC,cAAc,iCAAiC,CAAC;AAChD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,mCAAmC,CAAC;AAClD,cAAc,0BAA0B,CAAC;AACzC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iBAAiB,CAAC;AAChC,cAAc,0BAA0B,CAAC;AACzC,cAAc,mBAAmB,CAAC;AAClC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC"}
|