@sassoftware/vi-api 1.5.0 → 1.7.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.
Files changed (70) hide show
  1. package/alert-reps/package.json +5 -0
  2. package/component/bindings.d.ts +10 -4
  3. package/component/index.d.ts +11 -10
  4. package/component/index.js +1 -1
  5. package/component/package.json +9 -0
  6. package/config/config-api.d.ts +20 -2
  7. package/config/package.json +9 -0
  8. package/control/control-api.d.ts +25 -15
  9. package/control/package.json +9 -0
  10. package/current-user/package.json +9 -0
  11. package/event/package.json +9 -0
  12. package/file/package.json +9 -0
  13. package/http/package.json +9 -0
  14. package/index.d.ts +2 -2
  15. package/localization/package.json +9 -0
  16. package/metadata/metadata-api.d.ts +12 -12
  17. package/metadata/package.json +9 -0
  18. package/object/object-api.d.ts +20 -20
  19. package/object/package.json +9 -0
  20. package/package.json +2 -1
  21. package/page-admin/package.json +9 -0
  22. package/page-admin/page-admin-api.d.ts +2 -2
  23. package/page-model/package.json +9 -0
  24. package/page-model/page-model-api.d.ts +92 -1
  25. package/page-state/package.json +9 -0
  26. package/page-state/page-state-api.d.ts +1 -1
  27. package/property/package.json +9 -0
  28. package/property/property-api.d.ts +6 -6
  29. package/property/property-api.js +2 -2
  30. package/reference-data/package.json +9 -0
  31. package/resource/package.json +9 -0
  32. package/score-reps/package.json +5 -0
  33. package/search/client/client-search-api.d.ts +8 -8
  34. package/search/package.json +9 -0
  35. package/search/search-api.d.ts +1 -1
  36. package/sheet/package.json +9 -0
  37. package/sheet/sheet-api.d.ts +6 -6
  38. package/svi-datahub/index.d.ts +37 -24
  39. package/svi-datahub/package.json +5 -0
  40. package/svi-sand/index.d.ts +31 -24
  41. package/svi-sand/package.json +5 -0
  42. package/tab/package.json +9 -0
  43. package/tab/tab-api.d.ts +1 -1
  44. package/theme/package.json +9 -0
  45. package/time-slider/index.d.ts +9 -0
  46. package/traversal/package.json +9 -0
  47. package/api-init.service.js +0 -86
  48. package/component/component-api.service.js +0 -161
  49. package/config/config-api.service.js +0 -54
  50. package/current-user/currentUser-api.service.js +0 -49
  51. package/event/event-api.service.js +0 -32
  52. package/file/file-api.service.js +0 -24
  53. package/http/http-api.service.js +0 -64
  54. package/localization/localization-api.service.js +0 -38
  55. package/metadata/admin/admin-metadata-api.service.js +0 -30
  56. package/metadata/metadata-api.service.js +0 -85
  57. package/object/object-api.service.js +0 -207
  58. package/page-admin/page-admin-api.service.js +0 -25
  59. package/page-model/page-model-api.service.js +0 -25
  60. package/page-state/page-state-api.service.js +0 -70
  61. package/property/property-api.service.js +0 -34
  62. package/reference-data/refData.service.js +0 -40
  63. package/resource/resource-api.service.js +0 -24
  64. package/search/client/client-search-api.service.js +0 -111
  65. package/search/search-api.service.js +0 -28
  66. package/sheet/network-menu-handler.service.js +0 -39
  67. package/sheet/sheet-api.service.js +0 -140
  68. package/tab/tab-api.service.js +0 -35
  69. package/theme/theme-api.service.js +0 -35
  70. package/traversal/traversal-api.service.js +0 -77
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "@sassoftware/vi-api/page-admin",
3
+ "files": [
4
+ "**/*.d.ts",
5
+ "**/*.js"
6
+ ],
7
+ "main": "public-api.js",
8
+ "types": "public-api.d.ts"
9
+ }
@@ -17,8 +17,8 @@ export interface PageAdminApi {
17
17
  * @method
18
18
  * @description Registers a page designer configuration.
19
19
  * @param name {string} A unique name for the configuration.
20
- * @param applicationType {ApplicationType} The name of the app type used for this page. Must be a valid datahub client application (for example, desktop | mobile).
21
- * @param templateType {TemplateType} The name of the template type used for this page. Must be a valid datahub template type (for example, home | page).
20
+ * @param applicationType {ApplicationType} The name of the app type used for this page. Must be a valid datahub client application (for example, "desktop" or "mobile").
21
+ * @param templateType {TemplateType} The name of the template type used for this page. Must be a valid datahub template type (for example, "home" or "page").
22
22
  * @param controlGroups {Control[]} The control categories that are displayed in the designer's left hand side toolbox. Must be valid control categories.
23
23
  * @param canvasCssClass {string} A CSS class that is applied to the canvas in the designer.
24
24
  * @param previewCssClass {string} A CSS class that is applied to the preview (for example, template list).
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "@sassoftware/vi-api/page-model",
3
+ "files": [
4
+ "**/*.d.ts",
5
+ "**/*.js"
6
+ ],
7
+ "main": "public-api.js",
8
+ "types": "public-api.d.ts"
9
+ }
@@ -111,11 +111,102 @@ export interface LinkedPage {
111
111
  traversalUuid?: string;
112
112
  traversal?: PathsRepresentation;
113
113
  }
114
+ export interface IPageEventHook<T extends IPageEventData, R extends IPageEventHookResponse> {
115
+ exec: (pageData: T) => Promise<R | void>;
116
+ /**
117
+ * Run onFail instead of exec if the preceding event action has failed.
118
+ * If not provided, nothing will be executed for this hook in the event of failure.
119
+ */
120
+ onFail?: (pageData: T) => Promise<R | void>;
121
+ /**
122
+ * Hooks are executed in ascending order.
123
+ */
124
+ order?: number;
125
+ }
126
+ export declare type IPrePageEventHook<T extends IPageEventData> = Omit<IPageEventHook<T, IPrePageEventHookResponse>, "onFail">;
127
+ export declare type IPostPageEventHook<T extends IPageEventData> = IPageEventHook<T, IPostPageEventHookResponse>;
128
+ export interface IPageEventHookResponse {
129
+ message: string;
130
+ messages?: string[];
131
+ }
132
+ export interface IPrePageEventHookResponse extends IPageEventHookResponse {
133
+ abort: boolean;
134
+ }
135
+ export declare type IPostPageEventHookResponse = IPageEventHookResponse;
136
+ /**
137
+ * A callback to unregister a page event hook.
138
+ * @returns true if the hook was removed, false if it was already removed.
139
+ */
140
+ export declare type PageEventHookRemove = () => boolean;
141
+ export interface IPageEventData {
142
+ pageModel: PageModel;
143
+ }
114
144
  /**
115
- * This API is used for creating a PageModel object from source data.
145
+ * Page model events which can have pre-event or post-event hooks.
146
+ */
147
+ export declare const enum HookablePageEvents {
148
+ /**
149
+ * A pagemodel is being saved as an object.
150
+ */
151
+ SaveObject = "svi:hookable:pagemodel:saveObject"
152
+ }
153
+ export interface IPageEvent<T extends IPageEventData> {
154
+ /**
155
+ * @method
156
+ * @description Adds a hook to be executed before a hookable event is triggered.
157
+ * @param event {string} the event to hook onto.
158
+ * @param hook {IPrePageEventHook} the hook which defines the callback to run pre-event.
159
+ */
160
+ addPreHook(hook: IPrePageEventHook<T>): PageEventHookRemove;
161
+ /**
162
+ * @method
163
+ * @description Adds a hook to be executed after a hookable event is triggered.
164
+ * @param event {string} the event to hook onto.
165
+ * @param hook {IPostPageEventHook} the hook which defines the callback to run post-event.
166
+ */
167
+ addPostHook(hook: IPostPageEventHook<T>): PageEventHookRemove;
168
+ /**
169
+ * @method
170
+ * @description run pre-hooks, execute the action, run post hooks.
171
+ * @param payload is passed as input for any event hooks.
172
+ * @param action the action to perform.
173
+ */
174
+ trigger<R>(payload: T, action: () => Promise<R>): Promise<R>;
175
+ }
176
+ /**
177
+ * Methods related to page events.
178
+ */
179
+ export interface PageEventsApiBase {
180
+ /**
181
+ * @method
182
+ * @description Get a reference to a hookable page event if it is defined.
183
+ * @param eventName The name of the event.
184
+ * @returns The reference to the hookable page event.
185
+ */
186
+ getPageEvent(eventName: HookablePageEvents.SaveObject): IPageEvent<IPageEventData> | undefined;
187
+ getPageEvent<T extends IPageEventData>(eventName: string): IPageEvent<T> | undefined;
188
+ }
189
+ /**
190
+ * {@link PageEventsApiBase} extension that provides more functionality.
191
+ * @extends PageEventsApiBase
192
+ */
193
+ export interface PageEventsApi extends PageEventsApiBase {
194
+ /**
195
+ * @method
196
+ * @description Add a hookable page event. An error is thrown if the event is already registered.
197
+ * @param eventName The name of the event, this should be unique.
198
+ */
199
+ addPageEvent(eventName: string): void | never;
200
+ }
201
+ /**
202
+ * This API is used for PageModel utilities.
116
203
  * Accessed from the window at window.sas.vi.pageModel.
117
204
  */
118
205
  export interface PageModelApi {
206
+ /**
207
+ * Methods related to page event hooks.
208
+ */
209
+ readonly events: PageEventsApi;
119
210
  /**
120
211
  * @method
121
212
  * @description Creates a new instance of a PageModel when given the object source.
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "@sassoftware/vi-api/page-state",
3
+ "files": [
4
+ "**/*.d.ts",
5
+ "**/*.js"
6
+ ],
7
+ "main": "public-api.js",
8
+ "types": "public-api.d.ts"
9
+ }
@@ -70,7 +70,7 @@ export interface PageStateApi {
70
70
  */
71
71
  remove(id: string | number): void;
72
72
  /**
73
- * Gives the currently active homepages state, or undefined if a homepage
73
+ * Gives the currently active Home page's state, or undefined if a Home page
74
74
  * designer tab is not active.
75
75
  */
76
76
  getCurrentHomepageDesigner(): HomepageDesignerState | undefined;
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "@sassoftware/vi-api/property",
3
+ "files": [
4
+ "**/*.d.ts",
5
+ "**/*.js"
6
+ ],
7
+ "main": "public-api.js",
8
+ "types": "public-api.d.ts"
9
+ }
@@ -49,9 +49,9 @@ export interface PropertyApi {
49
49
  * @method
50
50
  * @description Registers a custom element to be rendered as the property editor.
51
51
  * The element is rendered as a custom web component.
52
- * The element is passed selectedNode, property, propertyKey and categoryKey as attributes.
52
+ * The element is passed selectedNode, property, propertyKey, and categoryKey as attributes.
53
53
  * Throws a console error if the type is already used by another registered editor.
54
- * @param elementName {string} Element to be rendered. For example "custom-editor" renders an element with the tag name "custom-editor".
54
+ * @param elementName {string} Element to be rendered. For example, "custom-editor" renders an element with the tag name "custom-editor".
55
55
  * @param type {string} A custom type that is expected to be unique among registered editors.
56
56
  * @param [validatorFn] {PropertyApi~isPropertyEditorValid} Function to provide custom logic for determining if the editor is valid.
57
57
  * @param [metadataFn] {PropertyApi~getPropertyEditorMetadata} Function to provide custom metadata.
@@ -61,7 +61,7 @@ export interface PropertyApi {
61
61
  * @method
62
62
  * @description Determines whether or not the child object data source property editor is valid.
63
63
  * Typically passed as a function reference to registerCustomEditor() instead of being called directly.
64
- * @param {PropertyConfig} propertyConfig Configuration details relating to the property type. For example, required, type and so on.
64
+ * @param {PropertyConfig} propertyConfig Configuration details relating to the property type. For example, required, type, and so on.
65
65
  * @param {string} propertyKey Key where this property's value is stored.
66
66
  * @param {Control | ToolbarPropertyControl} control The control.
67
67
  * @example
@@ -76,7 +76,7 @@ export interface PropertyApi {
76
76
  * @method
77
77
  * @description Get metadata for the child object data source property editor.
78
78
  * Typically passed as a function reference to registerCustomEditor() instead of being called directly.
79
- * @param {PropertyConfig} propertyConfig Configuration details relating to the property type. For example, required, type and so on.
79
+ * @param {PropertyConfig} propertyConfig Configuration details relating to the property type. For example, required, type, and so on.
80
80
  * @param {string} propertyKey Key where this property's value is stored.
81
81
  * @param {Control | ToolbarPropertyControl} control The control.
82
82
  * @example
@@ -91,7 +91,7 @@ export interface PropertyApi {
91
91
  /**
92
92
  * Determines whether or not the property editor is valid.
93
93
  * @callback PropertyApi~isPropertyEditorValid
94
- * @param {PropertyConfig} propertyConfig Configuration details relating to the custom property type. For example, required, type and so on.
94
+ * @param {PropertyConfig} propertyConfig Configuration details relating to the custom property type. For example, required, type, and so on.
95
95
  * @param {string} propertyKey Key where this property's value is stored.
96
96
  * @param {Control | ToolbarPropertyControl} control The control.
97
97
  * @returns {boolean} true if valid, false if not.
@@ -99,7 +99,7 @@ export interface PropertyApi {
99
99
  /**
100
100
  * Get metadata for the property editor.
101
101
  * @callback PropertyApi~getPropertyEditorMetadata
102
- * @param {PropertyConfig} propertyConfig Configuration details relating to the custom property type. For example, required, type and so on.
102
+ * @param {PropertyConfig} propertyConfig Configuration details relating to the custom property type. For example, required, type, and so on.
103
103
  * @param {string} propertyKey Key where this property's value is stored.
104
104
  * @param {Control | ToolbarPropertyControl} control The control.
105
105
  * @returns {PageTemplateMetadata}
@@ -2,7 +2,7 @@ export {};
2
2
  /**
3
3
  * Determines whether or not the property editor is valid.
4
4
  * @callback PropertyApi~isPropertyEditorValid
5
- * @param {PropertyConfig} propertyConfig Configuration details relating to the custom property type. For example, required, type and so on.
5
+ * @param {PropertyConfig} propertyConfig Configuration details relating to the custom property type. For example, required, type, and so on.
6
6
  * @param {string} propertyKey Key where this property's value is stored.
7
7
  * @param {Control | ToolbarPropertyControl} control The control.
8
8
  * @returns {boolean} true if valid, false if not.
@@ -10,7 +10,7 @@ export {};
10
10
  /**
11
11
  * Get metadata for the property editor.
12
12
  * @callback PropertyApi~getPropertyEditorMetadata
13
- * @param {PropertyConfig} propertyConfig Configuration details relating to the custom property type. For example, required, type and so on.
13
+ * @param {PropertyConfig} propertyConfig Configuration details relating to the custom property type. For example, required, type, and so on.
14
14
  * @param {string} propertyKey Key where this property's value is stored.
15
15
  * @param {Control | ToolbarPropertyControl} control The control.
16
16
  * @returns {PageTemplateMetadata}
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "@sassoftware/vi-api/reference-data",
3
+ "files": [
4
+ "**/*.d.ts",
5
+ "**/*.js"
6
+ ],
7
+ "main": "public-api.js",
8
+ "types": "public-api.d.ts"
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "@sassoftware/vi-api/resource",
3
+ "files": [
4
+ "**/*.d.ts",
5
+ "**/*.js"
6
+ ],
7
+ "main": "public-api.js",
8
+ "types": "public-api.d.ts"
9
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "@types/score-reps",
3
+ "version": "3.3.20",
4
+ "types": "index.d.ts"
5
+ }
@@ -73,7 +73,7 @@ export interface SearchAndCreateResponse {
73
73
  relateToModel?: SearchAndCreateRelateToModel;
74
74
  }
75
75
  /**
76
- * {@link SearchApi} extension pertains to functionality related to SAS Visual Investigators search capabilities.
76
+ * {@link SearchApi} extension pertains to functionality related to SAS Visual Investigator's search capabilities.
77
77
  * These additional methods are available only in the SAS Visual Investigator Client Application.
78
78
  * Accessed from the window at window.sas.vi.search.
79
79
  * @extends SearchApi
@@ -83,7 +83,7 @@ export interface ClientSearchApi extends SearchApi {
83
83
  * @method
84
84
  * @description Performs a search against the svi-sand service.
85
85
  * @param query {SearchRepresentation} Query to send to the service.
86
- * @returns A promise containing the search response.
86
+ * @returns A Promise containing the search response.
87
87
  */
88
88
  performSearch(query: SearchRepresentation): Promise<SearchResponse>;
89
89
  /**
@@ -104,7 +104,7 @@ export interface ClientSearchApi extends SearchApi {
104
104
  * @method
105
105
  * @description Converts a query model generated by the query builder to a string.
106
106
  * @param queryModel {QueryBuilderModel} Query builder model.
107
- * @returns A promise containing the string representation of the query.
107
+ * @returns A Promise containing the string representation of the query.
108
108
  */
109
109
  createQueryStringFromModel(queryModel: QueryBuilderModel): Promise<string>;
110
110
  /**
@@ -117,15 +117,15 @@ export interface ClientSearchApi extends SearchApi {
117
117
  /**
118
118
  * @method
119
119
  * @description Sets the query builder model for the given ID. If no ID is given, it sets the query model for SEARCH.
120
- * Once stored, the query model is used to initially populate a Query Builder opened with the given ID.
120
+ * When stored, the query model is used to initially populate a Query Builder opened with the given ID.
121
121
  * @param queryModel {QueryBuilderModel} A query builder model.
122
122
  * @param [id] {string} ID of the model to set. Defaults to SEARCH.
123
123
  */
124
124
  setQueryBuilderModel(queryModel: QueryBuilderModel, id?: string): void;
125
125
  /**
126
126
  * @method
127
- * @description Opens up the "Add Objects to Workspace" dialog box and then performs the action once a document and workspace have been selected.
128
- * @param visualizationName {Visualization} Visualization to initially display once the objects have been added.
127
+ * @description Opens the "Add Objects to Workspace" dialog box and then performs the action after a document and workspace have been selected.
128
+ * @param visualizationName {Visualization} Visualization to initially display after the objects have been added.
129
129
  * @param objects {Array<ObjectIdentifier | ResolvedObjectIdentifier>} Objects to add to the workspace.
130
130
  * @param [currentObject] {ObjectIdentifier} The document the user is currently viewing. This is used as a visual aid in the dialog box.
131
131
  * @param [networkData] {NetworkData} Network visualization data to be copied to the workspace.
@@ -147,7 +147,7 @@ export interface ClientSearchApi extends SearchApi {
147
147
  * @param objectsToAdd {Array<ObjectIdentifier | ResolvedObjectIdentifier>} Objects to add to the workspace.
148
148
  * @param targetObjectType {string} Object type where the workspace is created.
149
149
  * @param [targetObjectId] {string} Object to add to the workspace. If undefined, a new object is created.
150
- * @param [visualization] {"summary" | "map" | "table" | "timeline" | "network"} Visualization to initially display in the new workspace.
150
+ * @param [visualization] {"summary" | "map" | "table" | "timeline" | "networkDiagram"} Visualization to initially display in the new workspace.
151
151
  * @param [workspaceName] {string} Name of the new workspace.
152
152
  * @param [networkData] {NetworkData} Network visualization data to be copied to the new workspace.
153
153
  */
@@ -157,7 +157,7 @@ export interface ClientSearchApi extends SearchApi {
157
157
  * @description Launches a wizard allowing users to search first, before creating an object/relationship.
158
158
  * Relationship wizard is determined by relateToParentLabel or relateToParentName being defined within the wizardValues parameter.
159
159
  * @param wizardValues {SearchAndCreateDialogModel} Object containing entity and relationship data.
160
- * @returns {Promise<SearchAndCreateDialogModel>} A promise resolving
160
+ * @returns A Promise which resolves when the dialog is closed.
161
161
  */
162
162
  openSearchAndCreateDialog(wizardValues: SearchAndCreateDialogModel): Promise<SearchAndCreateDialogModel>;
163
163
  }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "@sassoftware/vi-api/search",
3
+ "files": [
4
+ "**/*.d.ts",
5
+ "**/*.js"
6
+ ],
7
+ "main": "public-api.js",
8
+ "types": "public-api.d.ts"
9
+ }
@@ -57,7 +57,7 @@ export interface SearchApi {
57
57
  * @param [queryModel] {QueryBuilderModel} An existing query model that can be used to initially populate the query builder.
58
58
  * @param [enforceObjectType] {string} If enforceObjectType is set, the user cannot choose which entity to query. It is pre-set to the specified entity.
59
59
  * @param [restrictObjectTypes] {Array<string>} If restrictObjectTypes is set, then the entity dropdown is filtered to show only the entities in this list.
60
- * @returns A promise containing the result of the dialog box.
60
+ * @returns A Promise containing the result of the dialog box.
61
61
  * @example
62
62
  * const searchApi: SearchApi = window.sas.vi.search;
63
63
  * const dialogTitle = 'Intelligence Search'
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "@sassoftware/vi-api/sheet",
3
+ "files": [
4
+ "**/*.d.ts",
5
+ "**/*.js"
6
+ ],
7
+ "main": "public-api.js",
8
+ "types": "public-api.d.ts"
9
+ }
@@ -1,7 +1,7 @@
1
1
  import { ObjectIdentifier, ObjectSheetSettings, VIObject } from "../object/object-api";
2
2
  import { NetworkData, ResolvedObjectIdentifier, Visualization } from "../search/client/client-search-api";
3
3
  /**
4
- * This API pertains to functionality related to SAS Visual Investigators sheet capabilities.
4
+ * This API pertains to functionality related to SAS Visual Investigator's sheet capabilities.
5
5
  * Accessed from the window at window.sas.vi.sheet.
6
6
  */
7
7
  export interface SheetApi {
@@ -35,7 +35,7 @@ export interface SheetApi {
35
35
  * Creates and returns the list containing all Context Menu Items for a right-click on a network diagram node.
36
36
  * The menu is not rendered on the network diagram.
37
37
  * @param workspace {ClientSheet} Workspace containing the network. The workspace should not be manually constructed.
38
- * @param handleAddToWorkspaceFn {function} A callback to handle adding the selected nodes to a Workspace.
38
+ * @param handleAddToWorkspaceFn {function} A callback to handle adding the selected nodes to a workspace.
39
39
  * @param handleAddToInsightsFn {function} A callback to handle adding the NLD to an Insight.
40
40
  * @returns Promise resolving to the list containing all Context Menu Items.
41
41
  */
@@ -88,22 +88,22 @@ export interface SheetApi {
88
88
  * @param targetObject {VIObject} Object containing the existing workspace.
89
89
  * @param workspaceClientId {string} Client ID of the workspace to add to.
90
90
  * @param objectsToAdd {Array<ObjectIdentifier | ResolvedObjectIdentifier>} Objects to add. It is safe to pass objects that are already in the workspace.
91
- * @param [networkData] {NetworkData} If provided, network data that shall be merged into any existing network data on the workspace.
91
+ * @param [networkData] {NetworkData} If provided, network data that will be merged into any existing network data on the workspace.
92
92
  * @param [isUndoRedo] {boolean} Specifies if the function was called as part of an undo/redo operation.
93
93
  */
94
94
  addToExistingWorkspace(targetObject: VIObject, workspaceClientId: string, objectsToAdd: Array<ObjectIdentifier | ResolvedObjectIdentifier>, networkData?: NetworkData, isUndoRedo?: boolean): Promise<void>;
95
95
  }
96
96
  export interface AddAllObjectsToWorkspaceDialogOptions {
97
97
  /**
98
- * The visualization to initially display once the objects have been added
98
+ * The visualization to initially display after the objects have been added.
99
99
  */
100
100
  visualizationName?: Visualization;
101
101
  /**
102
- * The object the user is currently viewing. This is used as a visual aid in the dialog
102
+ * The object the user is currently viewing. This is used as a visual aid in the dialog.
103
103
  */
104
104
  currentObject?: ObjectIdentifier;
105
105
  /**
106
- * Network visualization data to be copied to the workspace
106
+ * Network visualization data to be copied to the workspace.
107
107
  */
108
108
  networkData?: NetworkData;
109
109
  }