@sassoftware/vi-api 1.51.0 → 1.51.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/control/control-api.d.ts
CHANGED
|
@@ -233,6 +233,11 @@ export interface ControlStateApi {
|
|
|
233
233
|
* @method
|
|
234
234
|
*/
|
|
235
235
|
update(): void;
|
|
236
|
+
/**
|
|
237
|
+
* Cleans up any resources held by the ControlStateApi instance.
|
|
238
|
+
* @ignore
|
|
239
|
+
*/
|
|
240
|
+
destroy(): void;
|
|
236
241
|
}
|
|
237
242
|
/**
|
|
238
243
|
* API methods related to object fields associated with a page.
|
package/event/event-api.d.ts
CHANGED
|
@@ -20,7 +20,8 @@ export declare enum PageEvents {
|
|
|
20
20
|
MaskEvent = "spb::mask",
|
|
21
21
|
UnmaskEvent = "spb::unmask",
|
|
22
22
|
MaskResetEvent = "spb::mask-reset",
|
|
23
|
-
ClearDateFieldEvent = "spb::clear-date-field"
|
|
23
|
+
ClearDateFieldEvent = "spb::clear-date-field",
|
|
24
|
+
BroadcastControlEvent = "spb::broadcast-control-change"
|
|
24
25
|
}
|
|
25
26
|
export declare enum DocumentGeneratorEvents {
|
|
26
27
|
AfterDocumentGenerated = "docgen::after-document-generated"
|
package/event/event-api.js
CHANGED
|
@@ -22,6 +22,7 @@ export var PageEvents;
|
|
|
22
22
|
PageEvents["UnmaskEvent"] = "spb::unmask";
|
|
23
23
|
PageEvents["MaskResetEvent"] = "spb::mask-reset";
|
|
24
24
|
PageEvents["ClearDateFieldEvent"] = "spb::clear-date-field";
|
|
25
|
+
PageEvents["BroadcastControlEvent"] = "spb::broadcast-control-change";
|
|
25
26
|
})(PageEvents || (PageEvents = {}));
|
|
26
27
|
export var DocumentGeneratorEvents;
|
|
27
28
|
(function (DocumentGeneratorEvents) {
|
package/package.json
CHANGED
|
@@ -4,6 +4,7 @@ import { FileOperation, SASObjectAttachedFile } from "../file/file-api";
|
|
|
4
4
|
import { ObjectFieldRestrictions } from "../object/object-api";
|
|
5
5
|
import { PathsRepresentation } from "../svi-sand";
|
|
6
6
|
import { TemplateFileCategoryAssociationDTO } from "../svi-datahub";
|
|
7
|
+
import { ClientFieldProperties } from "../control/client-field-properties";
|
|
7
8
|
export declare enum PageMode {
|
|
8
9
|
Create = "create",
|
|
9
10
|
Edit = "edit",
|
|
@@ -47,6 +48,7 @@ export interface PageModelObjectData {
|
|
|
47
48
|
displayLabel?: string;
|
|
48
49
|
fieldRestrictions?: ObjectFieldRestrictions;
|
|
49
50
|
fileRestrictions?: Record<string, Record<string, FileRestrictions>>;
|
|
51
|
+
clientFieldProperties?: Record<string, Record<string, ClientFieldProperties>>;
|
|
50
52
|
id?: string;
|
|
51
53
|
linkedPages?: LinkedPage[];
|
|
52
54
|
mode?: PageMode;
|
package/svi-datahub/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
// Generated using typescript-generator version 2.15.527 on 2025-09-
|
|
3
|
+
// Generated using typescript-generator version 2.15.527 on 2025-09-05 16:55:06.
|
|
4
4
|
|
|
5
5
|
export interface SecuredApiMeta {
|
|
6
6
|
experimental?: boolean;
|
|
@@ -14,9 +14,9 @@ export interface SecuredApiMeta {
|
|
|
14
14
|
|
|
15
15
|
export interface SecuredBuild {
|
|
16
16
|
buildVersion?: string;
|
|
17
|
-
applicationVersion?: string;
|
|
18
17
|
sourceId?: string;
|
|
19
18
|
sourceTimeStamp?: string;
|
|
19
|
+
applicationVersion?: string;
|
|
20
20
|
timeStamp?: string;
|
|
21
21
|
}
|
|
22
22
|
|
|
@@ -47,10 +47,10 @@ export interface ResourceMediaTypes {
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
export interface Build extends Serializable {
|
|
50
|
-
buildVersion?: string;
|
|
51
|
-
applicationVersion?: string;
|
|
52
50
|
sourceId?: string;
|
|
53
51
|
sourceTimeStamp?: string;
|
|
52
|
+
applicationVersion?: string;
|
|
53
|
+
buildVersion?: string;
|
|
54
54
|
timeStamp?: string;
|
|
55
55
|
}
|
|
56
56
|
|
|
@@ -2767,9 +2767,9 @@ export interface DataField {
|
|
|
2767
2767
|
ownerName?: string;
|
|
2768
2768
|
currentUserIsAuthorizedToReveal?: boolean;
|
|
2769
2769
|
required?: boolean;
|
|
2770
|
+
label?: string;
|
|
2770
2771
|
columnName?: string;
|
|
2771
2772
|
scale?: number;
|
|
2772
|
-
label?: string;
|
|
2773
2773
|
name?: string;
|
|
2774
2774
|
length?: number;
|
|
2775
2775
|
id?: number;
|
|
@@ -2790,8 +2790,8 @@ export interface DataObject extends SolutionAssignedDTO {
|
|
|
2790
2790
|
dataStoreName?: string;
|
|
2791
2791
|
dataStoreDefaultSchemaName?: string;
|
|
2792
2792
|
dataStoreAssignedTimeZone?: string;
|
|
2793
|
-
tableName?: string;
|
|
2794
2793
|
label?: string;
|
|
2794
|
+
tableName?: string;
|
|
2795
2795
|
name?: string;
|
|
2796
2796
|
fields?: DataField[];
|
|
2797
2797
|
id?: number;
|
|
@@ -2849,15 +2849,15 @@ export interface Entity extends SolutionAssignedDTO {
|
|
|
2849
2849
|
borderColor?: string;
|
|
2850
2850
|
borderWidth?: number;
|
|
2851
2851
|
useForNetworkBuild?: boolean;
|
|
2852
|
-
compounds?: Compound[];
|
|
2853
2852
|
temporalSplitting?: boolean;
|
|
2853
|
+
compounds?: Compound[];
|
|
2854
2854
|
displayTextElements?: SortableNameReference[];
|
|
2855
2855
|
linkDisplayTextElements?: SortableNameReference[];
|
|
2856
2856
|
requiresMultipleContributors?: boolean;
|
|
2857
2857
|
publishCode?: PublishCode;
|
|
2858
2858
|
defaultMapIcon?: Icon;
|
|
2859
|
-
scale?: number;
|
|
2860
2859
|
label?: string;
|
|
2860
|
+
scale?: number;
|
|
2861
2861
|
name?: string;
|
|
2862
2862
|
id?: number;
|
|
2863
2863
|
}
|
|
@@ -2914,8 +2914,8 @@ export interface ReferenceListSummary {
|
|
|
2914
2914
|
}
|
|
2915
2915
|
|
|
2916
2916
|
export interface Relationship extends DataObject {
|
|
2917
|
-
fromObjectName?: string;
|
|
2918
2917
|
toObjectName?: string;
|
|
2918
|
+
fromObjectName?: string;
|
|
2919
2919
|
cardinality?: RelationshipCardinality;
|
|
2920
2920
|
previousCardinality?: RelationshipCardinality;
|
|
2921
2921
|
symmetric?: boolean;
|
|
@@ -2930,11 +2930,11 @@ export interface Relationship extends DataObject {
|
|
|
2930
2930
|
linkFields?: { [index: string]: string }[];
|
|
2931
2931
|
joinTableName?: string;
|
|
2932
2932
|
required?: boolean;
|
|
2933
|
+
width?: number;
|
|
2933
2934
|
qualifiedName?: string;
|
|
2934
2935
|
managed?: boolean;
|
|
2935
2936
|
summaryFields?: SortableNameReference[];
|
|
2936
2937
|
color?: string;
|
|
2937
|
-
width?: number;
|
|
2938
2938
|
type?: RelationshipType;
|
|
2939
2939
|
}
|
|
2940
2940
|
|
|
@@ -2978,8 +2978,8 @@ export interface StoredDataObject extends DataObject {
|
|
|
2978
2978
|
}
|
|
2979
2979
|
|
|
2980
2980
|
export interface Transaction extends DataObject {
|
|
2981
|
-
fromObjectName?: string;
|
|
2982
2981
|
toObjectName?: string;
|
|
2982
|
+
fromObjectName?: string;
|
|
2983
2983
|
toObjectTypeFieldName?: string;
|
|
2984
2984
|
fromObjectTypeFieldName?: string;
|
|
2985
2985
|
fromObjectRefFieldName?: string;
|
|
@@ -3925,8 +3925,8 @@ export interface JavaType extends ResolvedType, Serializable, Type {
|
|
|
3925
3925
|
keyType?: JavaType;
|
|
3926
3926
|
interfaces?: JavaType[];
|
|
3927
3927
|
genericSignature?: string;
|
|
3928
|
-
bindings?: TypeBindings;
|
|
3929
3928
|
contentType?: JavaType;
|
|
3929
|
+
bindings?: TypeBindings;
|
|
3930
3930
|
}
|
|
3931
3931
|
|
|
3932
3932
|
export interface JsonDeserializer<T> extends NullValueProvider {
|
|
@@ -4363,9 +4363,6 @@ export interface OfField<F> extends TypeDescriptor {
|
|
|
4363
4363
|
primitive?: boolean;
|
|
4364
4364
|
}
|
|
4365
4365
|
|
|
4366
|
-
export interface AnnotationMap extends Annotations {
|
|
4367
|
-
}
|
|
4368
|
-
|
|
4369
4366
|
export interface TypeResolutionContext {
|
|
4370
4367
|
}
|
|
4371
4368
|
|
|
@@ -4376,10 +4373,13 @@ export interface Member {
|
|
|
4376
4373
|
declaringClass?: Class<any>;
|
|
4377
4374
|
}
|
|
4378
4375
|
|
|
4376
|
+
export interface AnnotationMap extends Annotations {
|
|
4377
|
+
}
|
|
4378
|
+
|
|
4379
4379
|
export interface AnnotatedMember extends Annotated, Serializable {
|
|
4380
|
-
allAnnotations?: AnnotationMap;
|
|
4381
4380
|
typeContext?: TypeResolutionContext;
|
|
4382
4381
|
member?: Member;
|
|
4382
|
+
allAnnotations?: AnnotationMap;
|
|
4383
4383
|
declaringClass?: Class<any>;
|
|
4384
4384
|
fullName?: string;
|
|
4385
4385
|
}
|
|
@@ -4388,8 +4388,8 @@ export interface ObjectIdInfo {
|
|
|
4388
4388
|
generatorType?: Class<ObjectIdGenerator<any>>;
|
|
4389
4389
|
resolverType?: Class<ObjectIdResolver>;
|
|
4390
4390
|
alwaysAsId?: boolean;
|
|
4391
|
-
propertyName?: PropertyName;
|
|
4392
4391
|
scope?: Class<any>;
|
|
4392
|
+
propertyName?: PropertyName;
|
|
4393
4393
|
}
|
|
4394
4394
|
|
|
4395
4395
|
export interface TypeDeserializer {
|
package/svi-datahub/package.json
CHANGED