@vertigis/viewer-spec 56.7.0 → 56.8.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.
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { ServiceModelProperties } from "../common/ServiceModelProperties";
|
|
2
|
+
/**
|
|
3
|
+
* Configuration for the search service.
|
|
4
|
+
*/
|
|
5
|
+
export interface SearchServiceProperties extends ServiceModelProperties {
|
|
6
|
+
/**
|
|
7
|
+
* Design-time property to store a Portal Item ID of a newly created Search
|
|
8
|
+
* app configuration. This property is required by Studio Search backend to
|
|
9
|
+
* register an app configuration.
|
|
10
|
+
*/
|
|
11
|
+
studioSearchAppPortalId?: string;
|
|
12
|
+
/**
|
|
13
|
+
* Both design- & runtime property to store a unique ID of a newly created
|
|
14
|
+
* Search app configuration.
|
|
15
|
+
*/
|
|
16
|
+
studioSearchAppId?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Runtime property to store a Studio Search app configuration token.
|
|
19
|
+
*/
|
|
20
|
+
studioSearchAppToken?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Runtime property to store an URL of Studio Search.
|
|
23
|
+
*/
|
|
24
|
+
studioSearchUrl?: string;
|
|
25
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{};
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED