@sassoftware/vi-api 1.42.0 → 1.44.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.
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@types/svi-datahub",
3
- "version": "17.26.30",
3
+ "version": "17.32.30",
4
4
  "types": "index.d.ts"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- // Generated using typescript-generator version 2.15.527 on 2024-04-29 09:50:57.
3
+ // Generated using typescript-generator version 2.15.527 on 2024-11-11 10:01:28.
4
4
 
5
5
  export interface ApplicationSetting extends ResponsesErrorResponse {
6
6
  name?: string;
@@ -99,6 +99,29 @@ export interface SankeyNode extends AnalyticsResult {
99
99
  category?: ResultCategory;
100
100
  }
101
101
 
102
+ export interface CentralityMetrics {
103
+ version?: number;
104
+ id?: string;
105
+ degree?: number;
106
+ eigen?: number;
107
+ close?: number;
108
+ between?: number;
109
+ influence1?: number;
110
+ influence2?: number;
111
+ }
112
+
113
+ export interface CentralityEdge {
114
+ version?: number;
115
+ id?: string;
116
+ source?: string;
117
+ target?: string;
118
+ }
119
+
120
+ export interface CentralityNetwork {
121
+ version?: number;
122
+ edges?: CentralityEdge[];
123
+ }
124
+
102
125
  export interface EventConfiguration {
103
126
  root?: string;
104
127
  fields?: Fields;
@@ -772,6 +795,7 @@ export interface ResultSummary {
772
795
 
773
796
  export interface SummaryFieldValue {
774
797
  name?: string;
798
+ fieldName?: string;
775
799
  type?: FieldType;
776
800
  value?: any;
777
801
  masked?: MaskedFieldConfiguration;
@@ -1000,7 +1024,7 @@ export interface RepresentationsErrorResponse extends Serializable {
1000
1024
  httpStatusCode?: number;
1001
1025
  }
1002
1026
 
1003
- export interface Link extends Serializable {
1027
+ export interface Link extends Serializable, Comparable<Link> {
1004
1028
  method?: string;
1005
1029
  rel?: string;
1006
1030
  href?: string;
@@ -1026,6 +1050,9 @@ export interface ResourceCollection<T> extends Serializable {
1026
1050
  version?: number;
1027
1051
  }
1028
1052
 
1053
+ export interface Comparable<T> {
1054
+ }
1055
+
1029
1056
  export type OperationType = "refreshConfiguration" | "makeIndexSearchable" | "refreshSecurityRules";
1030
1057
 
1031
1058
  export type JobState = "pending" | "running" | "completed" | "completedWithErrors" | "cancelled" | "failed";
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@types/svi-sand",
3
- "version": "16.0.8",
3
+ "version": "17.3.7",
4
4
  "types": "index.d.ts"
5
5
  }
@@ -1,89 +0,0 @@
1
- import { PageModel } from "../page-model";
2
- import { Control } from "../control";
3
- /** Page Controls require a valid {@link Control | childNode} and {@link PageModel | pageModel}.</strong> */
4
- export interface PageControlBindings {
5
- childNode: Control;
6
- pageModel: PageModel;
7
- }
8
- /**
9
- * Properties for {@link SVICustomElement.LabelledControl}.
10
- *
11
- * @category CustomElement
12
- *
13
- * @example HTML Example:
14
- * ```html
15
- * <svi-labelled-control
16
- * [childNode]="childNode"
17
- * [pageModel]="pageModel"
18
- * >
19
- * <!-- my control -->
20
- * </svi-labelled-control>
21
- * ```
22
- *
23
- * @example Create the element via document.createElement:
24
- * ```ts
25
- * const labelledControl = document.createElement(SVICustomElement.LabelledControl);
26
- * labelledControl.pageModel = this.pageModel;
27
- * labelledControl.childNode = this.childNode;
28
- * labelledControl.appendChild(myControlElement)
29
- * ```
30
- */
31
- export interface LabelledControlProperties extends PageControlBindings {
32
- /** Set the label as required. */
33
- isRequired?: boolean;
34
- /** Set the label as disabled. */
35
- isDisabled?: boolean;
36
- /** Override the text displayed in the label. */
37
- overrideLabel?: string;
38
- /** Add css classes to the label element. */
39
- labelClass?: string;
40
- /**
41
- * Specify which dataSource the label's mask-toggle-button will toggle.
42
- *
43
- * If no {@link MaskToggleButtonProperties.dataSource | dataSource} is specified,
44
- * the mask-toggle-button will toggle the dataSource(s) defined in the childNode's {@link Control.typeAttributes | typeAttributes}.
45
- */
46
- dataSource?: string;
47
- /** Disable the label's mask toggle button. */
48
- disableMaskToggle?: boolean;
49
- /** Hide the label's mask toggle button. */
50
- hideMaskToggle?: boolean;
51
- /** Set the label's `for` attribute. */
52
- for?: string;
53
- }
54
- /**
55
- * Properties for {@link SVICustomElement.MaskToggleButton}.
56
- *
57
- * @category CustomElement
58
- *
59
- * @example HTML Example
60
- * ```html
61
- * <svi-mask-toggle-button
62
- * [childNode]="childNode"
63
- * [pageModel]="pageModel"
64
- * >
65
- * </svi-mask-toggle-button>
66
- * ```
67
- *
68
- * @example Create element via document.createElement:
69
- * ```ts
70
- * const maskToggleBtn = document.createElement(SVICustomElement.MaskToggleButton);
71
- * maskToggleBtn.pageModel = this.pageModel;
72
- * maskToggleBtn.childNode = this.childNode;
73
- * ```
74
- */
75
- export interface MaskToggleButtonProperties extends PageControlBindings {
76
- /**
77
- * Specify which dataSource will be toggled.
78
- *
79
- * If no {@link MaskToggleButtonProperties.dataSource | dataSource} is specified,
80
- * the mask-toggle-button will toggle the dataSource(s) defined in the childNode's {@link Control.typeAttributes | typeAttributes}.
81
- */
82
- dataSource?: string;
83
- /** Disable the mask toggle button. */
84
- disabled?: boolean;
85
- /** Hide the mask toggle button. */
86
- hidden?: boolean;
87
- /** Override the control name displayed in the authorization dialog. */
88
- controlName?: string;
89
- }
File without changes