@epilot/entity-client 4.10.1 → 4.12.0
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/definition.js +1 -1
- package/dist/openapi-runtime.json +743 -0
- package/dist/openapi.d.ts +26 -14
- package/dist/openapi.json +5308 -5272
- package/package.json +4 -4
package/dist/openapi.d.ts
CHANGED
|
@@ -1976,22 +1976,28 @@ declare namespace Components {
|
|
|
1976
1976
|
show_sharing_button?: boolean;
|
|
1977
1977
|
};
|
|
1978
1978
|
};
|
|
1979
|
-
capabilities
|
|
1979
|
+
capabilities: /* Capabilities the Entity has. Turn features on/off for entities. */ EntityCapability[];
|
|
1980
1980
|
/**
|
|
1981
1981
|
* A dictionary of Group Titles and associated settings if present.
|
|
1982
1982
|
* example:
|
|
1983
|
-
*
|
|
1984
|
-
*
|
|
1985
|
-
* "
|
|
1983
|
+
* [
|
|
1984
|
+
* {
|
|
1985
|
+
* "id": "Contact Details",
|
|
1986
|
+
* "label": "Contact Details",
|
|
1987
|
+
* "expanded": true,
|
|
1988
|
+
* "order": 1
|
|
1986
1989
|
* },
|
|
1987
|
-
*
|
|
1990
|
+
* {
|
|
1991
|
+
* "id": "Address Details",
|
|
1992
|
+
* "label": "Address Details",
|
|
1988
1993
|
* "expanded": false,
|
|
1994
|
+
* "order": 2,
|
|
1989
1995
|
* "info_tooltip_title": {
|
|
1990
1996
|
* "key": "partner.partner_information_group_tooltip",
|
|
1991
1997
|
* "default": "These informations are provided by the partner company and cannot be edited."
|
|
1992
1998
|
* }
|
|
1993
1999
|
* }
|
|
1994
|
-
*
|
|
2000
|
+
* ]
|
|
1995
2001
|
*/
|
|
1996
2002
|
group_settings?: {
|
|
1997
2003
|
label: string;
|
|
@@ -2091,7 +2097,7 @@ declare namespace Components {
|
|
|
2091
2097
|
* }
|
|
2092
2098
|
* ]
|
|
2093
2099
|
*/
|
|
2094
|
-
attributes
|
|
2100
|
+
attributes: Attribute[];
|
|
2095
2101
|
explicit_search_mappings?: /**
|
|
2096
2102
|
* Advanced: explicit Elasticsearch index mapping definitions for entity data
|
|
2097
2103
|
*
|
|
@@ -2226,22 +2232,28 @@ declare namespace Components {
|
|
|
2226
2232
|
show_sharing_button?: boolean;
|
|
2227
2233
|
};
|
|
2228
2234
|
};
|
|
2229
|
-
capabilities
|
|
2235
|
+
capabilities: /* Capabilities the Entity has. Turn features on/off for entities. */ EntityCapability[];
|
|
2230
2236
|
/**
|
|
2231
2237
|
* A dictionary of Group Titles and associated settings if present.
|
|
2232
2238
|
* example:
|
|
2233
|
-
*
|
|
2234
|
-
*
|
|
2235
|
-
* "
|
|
2239
|
+
* [
|
|
2240
|
+
* {
|
|
2241
|
+
* "id": "Contact Details",
|
|
2242
|
+
* "label": "Contact Details",
|
|
2243
|
+
* "expanded": true,
|
|
2244
|
+
* "order": 1
|
|
2236
2245
|
* },
|
|
2237
|
-
*
|
|
2246
|
+
* {
|
|
2247
|
+
* "id": "Address Details",
|
|
2248
|
+
* "label": "Address Details",
|
|
2238
2249
|
* "expanded": false,
|
|
2250
|
+
* "order": 2,
|
|
2239
2251
|
* "info_tooltip_title": {
|
|
2240
2252
|
* "key": "partner.partner_information_group_tooltip",
|
|
2241
2253
|
* "default": "These informations are provided by the partner company and cannot be edited."
|
|
2242
2254
|
* }
|
|
2243
2255
|
* }
|
|
2244
|
-
*
|
|
2256
|
+
* ]
|
|
2245
2257
|
*/
|
|
2246
2258
|
group_settings?: {
|
|
2247
2259
|
label: string;
|
|
@@ -2341,7 +2353,7 @@ declare namespace Components {
|
|
|
2341
2353
|
* }
|
|
2342
2354
|
* ]
|
|
2343
2355
|
*/
|
|
2344
|
-
attributes
|
|
2356
|
+
attributes: Attribute[];
|
|
2345
2357
|
explicit_search_mappings?: /**
|
|
2346
2358
|
* Advanced: explicit Elasticsearch index mapping definitions for entity data
|
|
2347
2359
|
*
|