@sassoftware/vi-api 1.48.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/alert-reps/index.d.ts +15 -6
- package/alert-reps/package.json +1 -1
- package/api.module.js +7 -0
- package/component/bindings.d.ts +26 -15
- package/component/bindings.js +23 -0
- package/config/config-api.d.ts +2 -2
- package/config/control-attribute-types.d.ts +3 -0
- package/config/standardPropertyTypes.d.ts +2 -0
- package/config/standardPropertyTypes.js +2 -0
- package/control/client-field-properties.d.ts +11 -0
- package/control/client-field-properties.js +1 -0
- package/control/control-api.d.ts +46 -10
- package/control/events.d.ts +1 -0
- package/control/file.d.ts +18 -5
- package/control/index.d.ts +1 -0
- package/control/index.js +1 -0
- package/control/masking-api.d.ts +2 -2
- package/event/event-api.d.ts +2 -1
- package/event/event-api.js +1 -0
- package/file/file-api.d.ts +2 -0
- package/object/object-api.d.ts +3 -3
- package/package.json +1 -1
- package/page-model/page-model-api.d.ts +2 -0
- package/score-reps/index.d.ts +1 -1
- package/score-reps/package.json +1 -1
- package/search/client/client-search-api.d.ts +2 -2
- package/svi-datahub/index.d.ts +68 -21
- package/svi-datahub/package.json +1 -1
- package/svi-sand/index.d.ts +23 -14
- package/svi-sand/package.json +1 -1
package/alert-reps/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-
|
|
3
|
+
// Generated using typescript-generator version 2.15.527 on 2025-09-03 08:54:51.
|
|
4
4
|
|
|
5
5
|
export interface ActionRequestRep {
|
|
6
6
|
version?: number;
|
|
@@ -17,6 +17,15 @@ export interface ActionResponseRep {
|
|
|
17
17
|
alertChanged?: boolean;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
+
export interface ActiveScenarioFiredEventRep extends ExtendedScenarioFiredEventRep {
|
|
21
|
+
queueId?: string;
|
|
22
|
+
assignedUserId?: string;
|
|
23
|
+
strategyId?: string;
|
|
24
|
+
actionableEntityId?: string;
|
|
25
|
+
actionableEntityType?: string;
|
|
26
|
+
actionableEntityLabel?: string;
|
|
27
|
+
}
|
|
28
|
+
|
|
20
29
|
export interface AlertConstants {
|
|
21
30
|
}
|
|
22
31
|
|
|
@@ -115,6 +124,11 @@ export interface AlertRep extends BaseRep {
|
|
|
115
124
|
autoActivateScore?: number;
|
|
116
125
|
strategyRangeLow?: number;
|
|
117
126
|
strategyRangeHigh?: number;
|
|
127
|
+
systemServiceTimestamp?: string;
|
|
128
|
+
autoCloseTimestamp?: string;
|
|
129
|
+
autoActivateTimestamp?: string;
|
|
130
|
+
alertVersionTimestamp?: string;
|
|
131
|
+
statusTimestamp?: string;
|
|
118
132
|
dispositionTimestamp?: string;
|
|
119
133
|
suppressionEndTimestamp?: string;
|
|
120
134
|
holdEndTimestamp?: string;
|
|
@@ -122,11 +136,6 @@ export interface AlertRep extends BaseRep {
|
|
|
122
136
|
assignmentTimestamp?: string;
|
|
123
137
|
checkoutTimestamp?: string;
|
|
124
138
|
userServiceTimestamp?: string;
|
|
125
|
-
systemServiceTimestamp?: string;
|
|
126
|
-
autoCloseTimestamp?: string;
|
|
127
|
-
autoActivateTimestamp?: string;
|
|
128
|
-
alertVersionTimestamp?: string;
|
|
129
|
-
statusTimestamp?: string;
|
|
130
139
|
}
|
|
131
140
|
|
|
132
141
|
export interface AlertVersionSummaryRep {
|
package/alert-reps/package.json
CHANGED
package/api.module.js
CHANGED
|
@@ -28,6 +28,8 @@ import { TabApiService } from "./tab/tab-api.service";
|
|
|
28
28
|
import { ThemeApiService } from "./theme/theme-api.service";
|
|
29
29
|
import { TraversalApiService } from "./traversal/traversal-api.service";
|
|
30
30
|
import { PageTemplateApiService } from "./page-template/page-template-api.service";
|
|
31
|
+
import { PageSharedModule } from "../spb/shared/spb-shared.module";
|
|
32
|
+
import { HubCommonsModule } from "../fdh/hub-commons/hub-commons.module";
|
|
31
33
|
let ApiModule = class ApiModule {
|
|
32
34
|
};
|
|
33
35
|
ApiModule = __decorate([
|
|
@@ -56,6 +58,11 @@ ApiModule = __decorate([
|
|
|
56
58
|
TabApiService,
|
|
57
59
|
ThemeApiService,
|
|
58
60
|
TraversalApiService
|
|
61
|
+
],
|
|
62
|
+
// Import modules which bootstrap used AngularJs injectables
|
|
63
|
+
imports: [
|
|
64
|
+
PageSharedModule,
|
|
65
|
+
HubCommonsModule
|
|
59
66
|
]
|
|
60
67
|
})
|
|
61
68
|
], ApiModule);
|
package/component/bindings.d.ts
CHANGED
|
@@ -44,8 +44,8 @@ export interface CreateObjectPageBindings extends CommonPageViewerBindings {
|
|
|
44
44
|
* Optionally provide a pageModel using window.sas.vi.pageModel.createFromObject.
|
|
45
45
|
* The pageModel type must match docType.
|
|
46
46
|
* The pageModel data will be populated with initialCreateData.
|
|
47
|
-
* The pageModel can be used to inspect current data and validity
|
|
48
|
-
* but the reference to this model will be broken if a new template is
|
|
47
|
+
* The pageModel can be used to inspect current data and validity,
|
|
48
|
+
* but the reference to this model will be broken if a new template is loaded due to a mode transition or other condition.
|
|
49
49
|
* Prefer using setApi and onChange to interact with the page.
|
|
50
50
|
*/
|
|
51
51
|
pageModel?: PageModel;
|
|
@@ -65,11 +65,11 @@ export interface EditObjectPageBindings extends CommonPageViewerBindings {
|
|
|
65
65
|
templateUuid?: string;
|
|
66
66
|
/**
|
|
67
67
|
* Optionally provide a pageModel using window.sas.vi.pageModel.createFromObject.
|
|
68
|
-
* The pageModel type must match docType
|
|
69
|
-
* The
|
|
70
|
-
* The pageModel can be used to inspect current data and validity
|
|
71
|
-
* but the reference to this model will be broken if a new template is
|
|
72
|
-
* Prefer using setApi and onChange to interact with the page.
|
|
68
|
+
* The pageModel type must match `docType`.
|
|
69
|
+
* The `docType` and `docId` are used to fetch the document page, and `pageModel.data` is set using the field values from this response.
|
|
70
|
+
* The pageModel can be used to inspect current data and validity,
|
|
71
|
+
* but the reference to this model will be broken if a new template is loaded due to a mode transition or other condition.
|
|
72
|
+
* Prefer using `setApi` and `onChange` to interact with the page.
|
|
73
73
|
*/
|
|
74
74
|
pageModel?: PageModel;
|
|
75
75
|
}
|
|
@@ -96,32 +96,32 @@ export interface StaticDataPageBindings extends CommonPageViewerBindings {
|
|
|
96
96
|
staticDocumentData: VIObject;
|
|
97
97
|
}
|
|
98
98
|
export interface CommonPageViewerBindings {
|
|
99
|
-
/** Show the page toolbar. This contains the toolbar actions associated with the object's
|
|
99
|
+
/** Show the page toolbar. This contains the toolbar actions associated with the object's entity type. */
|
|
100
100
|
showToolbar?: boolean;
|
|
101
101
|
/**
|
|
102
102
|
* Assign the given CSS classes to the page viewer's container.
|
|
103
|
-
* This
|
|
103
|
+
* This element encompasses the main document view and the toolbar.
|
|
104
104
|
*/
|
|
105
105
|
containerClass?: string;
|
|
106
106
|
/** If true, the page viewer will fill its parent element's height. */
|
|
107
107
|
fitToContainerHeight?: boolean;
|
|
108
108
|
/**
|
|
109
109
|
* Assign the given CSS classes to the page viewer's main section.
|
|
110
|
-
* This
|
|
110
|
+
* This element displays the main document, excluding toolbar.
|
|
111
111
|
*/
|
|
112
112
|
pageClass?: string;
|
|
113
113
|
/**
|
|
114
|
-
* Enable workspace and insight tabs to be rendered.
|
|
114
|
+
* Enable the workspace and insight tabs to be rendered.
|
|
115
115
|
*/
|
|
116
116
|
enableSheets?: boolean;
|
|
117
117
|
/**
|
|
118
|
-
* A callback
|
|
119
|
-
* It provides an API
|
|
118
|
+
* A callback that is called when the page viewer is initialized.
|
|
119
|
+
* It provides an API that can be used to check the page viewer state and save the document.
|
|
120
120
|
*/
|
|
121
121
|
setApi?: (api: PageViewerApi) => void;
|
|
122
|
-
/** A callback
|
|
122
|
+
/** A callback that is called when the page viewer dirty state changes. */
|
|
123
123
|
onDirty?: (isDirty: boolean) => void;
|
|
124
|
-
/** A callback
|
|
124
|
+
/** A callback that is called when the pageModel's mode or data changes. */
|
|
125
125
|
onChange?: (change: PageDataChange | PageModeChange) => void;
|
|
126
126
|
}
|
|
127
127
|
/** @deprecated use {@link PageViewerBindings} */
|
|
@@ -232,6 +232,10 @@ export interface RelationshipDetailsBindings {
|
|
|
232
232
|
* @param previous - The previous relationship values, if available.
|
|
233
233
|
*/
|
|
234
234
|
onRelationshipValuesChange?: (current: Record<string, any>, previous?: Record<string, any>) => void;
|
|
235
|
+
/**
|
|
236
|
+
* Callback invoked when the related page is loading is complete.
|
|
237
|
+
*/
|
|
238
|
+
onRelatedPageLoad?: () => void;
|
|
235
239
|
}
|
|
236
240
|
export interface SearchInputInputBindings {
|
|
237
241
|
entityName: string;
|
|
@@ -306,3 +310,10 @@ export interface TimeSliderBindings extends TimeSliderInputBindings {
|
|
|
306
310
|
close?: () => void;
|
|
307
311
|
}
|
|
308
312
|
export type SviComponentBindings = ControlCollectionBindings | RelationshipDetailsBindings | SearchInputBindings | PageViewerBindings | PagePreviewBindings | SearchAndSelectWithPreviewBindings | TimeSliderBindings;
|
|
313
|
+
/**
|
|
314
|
+
* Merges provided bindings with default bindings. If both are functions, wraps them so both are called.
|
|
315
|
+
* @param provided The provided bindings.
|
|
316
|
+
* @param defaults The default bindings.
|
|
317
|
+
* @returns The merged bindings object.
|
|
318
|
+
*/
|
|
319
|
+
export declare function mergeBindings<T extends object>(provided?: T, defaults?: Partial<T>): T;
|
package/component/bindings.js
CHANGED
|
@@ -5,3 +5,26 @@ export var PageViewerBindingsType;
|
|
|
5
5
|
PageViewerBindingsType["ViewObject"] = "VIEW";
|
|
6
6
|
PageViewerBindingsType["StaticData"] = "STATIC";
|
|
7
7
|
})(PageViewerBindingsType || (PageViewerBindingsType = {}));
|
|
8
|
+
/**
|
|
9
|
+
* Merges provided bindings with default bindings. If both are functions, wraps them so both are called.
|
|
10
|
+
* @param provided The provided bindings.
|
|
11
|
+
* @param defaults The default bindings.
|
|
12
|
+
* @returns The merged bindings object.
|
|
13
|
+
*/
|
|
14
|
+
export function mergeBindings(provided = {}, defaults = {}) {
|
|
15
|
+
const merged = { ...provided };
|
|
16
|
+
Object.entries(defaults || {}).forEach(([name, defaultBinding]) => {
|
|
17
|
+
// Use index signature to avoid 'any' and 'Function' types
|
|
18
|
+
const providedValue = merged[name];
|
|
19
|
+
if (typeof defaultBinding === "function" && typeof providedValue === "function") {
|
|
20
|
+
merged[name] = (...args) => {
|
|
21
|
+
defaultBinding(...args);
|
|
22
|
+
return providedValue(...args);
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
else if (providedValue === undefined) {
|
|
26
|
+
merged[name] = defaultBinding;
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
return merged;
|
|
30
|
+
}
|
package/config/config-api.d.ts
CHANGED
|
@@ -172,7 +172,7 @@ export interface ConfigApi {
|
|
|
172
172
|
* @method
|
|
173
173
|
* @description Register a callback to override the default action when selecting the configuration bundle in the administration application.
|
|
174
174
|
* @param bundleName {string} The name of the configuration bundle.
|
|
175
|
-
* @param callback {function(): void} A function
|
|
175
|
+
* @param callback {function(): void} A function that should open a view to
|
|
176
176
|
* allow the user to modify the given configuration bundle.
|
|
177
177
|
*/
|
|
178
178
|
registerOpenConfigurationCallback(bundleName: string, callback: () => void): void;
|
|
@@ -197,7 +197,7 @@ export interface ConfigApi {
|
|
|
197
197
|
getSharedDialogContainer(): HTMLElement;
|
|
198
198
|
/**
|
|
199
199
|
* @method
|
|
200
|
-
* @description Get the services
|
|
200
|
+
* @description Get the services that are an optional part of the SAS Visual Investigator deployment.
|
|
201
201
|
* @returns A map of service identifiers to their enabled status (true or false).
|
|
202
202
|
*/
|
|
203
203
|
getEnabledOptionalServices(): Record<string, boolean>;
|
|
@@ -28,6 +28,7 @@ export interface IBaseControlAttribute {
|
|
|
28
28
|
displayName: ResourcedString;
|
|
29
29
|
order?: number;
|
|
30
30
|
required?: boolean | string;
|
|
31
|
+
requiredExpression?: string;
|
|
31
32
|
description?: ResourcedString;
|
|
32
33
|
localizable?: boolean | string;
|
|
33
34
|
defaultValue?: any;
|
|
@@ -37,6 +38,7 @@ export interface IBaseControlAttribute {
|
|
|
37
38
|
hideOnDisable?: boolean;
|
|
38
39
|
cssClass?: string;
|
|
39
40
|
triggerResizeOnChange?: boolean;
|
|
41
|
+
featureFlagId?: string;
|
|
40
42
|
}
|
|
41
43
|
type BaseControlAttribute = Omit<IBaseControlAttribute, "type">;
|
|
42
44
|
export interface IGenericControlAttribute extends BaseControlAttribute {
|
|
@@ -142,6 +144,7 @@ export interface IControlAttributeRelationshipSummary extends Omit<BaseControlAt
|
|
|
142
144
|
export interface IControlAttributeTextInput extends BaseControlAttribute {
|
|
143
145
|
type: StandardPropertyTypes.TextInput | `${StandardPropertyTypes.TextInput}`;
|
|
144
146
|
defaultValue?: ResourcedString | string;
|
|
147
|
+
multiLine?: boolean;
|
|
145
148
|
}
|
|
146
149
|
export interface IControlAttributeInterpolatedTextInput extends Omit<IControlAttributeTextInput, "type"> {
|
|
147
150
|
type: StandardPropertyTypes.InterpolatedTextInput | `${StandardPropertyTypes.InterpolatedTextInput}`;
|
|
@@ -44,6 +44,8 @@ export declare enum StandardPropertyTypes {
|
|
|
44
44
|
UserGroupChooser = "UserGroupChooser",
|
|
45
45
|
TileProviderChooser = "TileProviderChooser",
|
|
46
46
|
StatusThresholdPicker = "StatusThresholdPicker",
|
|
47
|
+
NetworkNodeSelector = "NetworkNodeSelector",
|
|
48
|
+
NetworkLinkSelector = "NetworkLinkSelector",
|
|
47
49
|
Hidden = "Hidden",
|
|
48
50
|
Disabled = "Disabled",
|
|
49
51
|
Condition = "Condition"
|
|
@@ -46,6 +46,8 @@ export var StandardPropertyTypes;
|
|
|
46
46
|
StandardPropertyTypes["UserGroupChooser"] = "UserGroupChooser";
|
|
47
47
|
StandardPropertyTypes["TileProviderChooser"] = "TileProviderChooser";
|
|
48
48
|
StandardPropertyTypes["StatusThresholdPicker"] = "StatusThresholdPicker";
|
|
49
|
+
StandardPropertyTypes["NetworkNodeSelector"] = "NetworkNodeSelector";
|
|
50
|
+
StandardPropertyTypes["NetworkLinkSelector"] = "NetworkLinkSelector";
|
|
49
51
|
StandardPropertyTypes["Hidden"] = "Hidden";
|
|
50
52
|
StandardPropertyTypes["Disabled"] = "Disabled";
|
|
51
53
|
StandardPropertyTypes["Condition"] = "Condition";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { FieldType, NumberDataType } from "./data-types";
|
|
2
|
+
interface BaseFieldProperties {
|
|
3
|
+
type: string;
|
|
4
|
+
}
|
|
5
|
+
export interface NumberFieldProperties extends BaseFieldProperties {
|
|
6
|
+
type: "numberField";
|
|
7
|
+
disableThousandsSeparator?: boolean;
|
|
8
|
+
}
|
|
9
|
+
export type ClientFieldProperties = NumberFieldProperties | undefined;
|
|
10
|
+
export type FieldTypeToClientFieldProperties<Type extends FieldType> = Type extends NumberDataType ? NumberFieldProperties : ClientFieldProperties;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/control/control-api.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { PageEventsApiBase, PageMode, PageModel } from "../page-model/page-model
|
|
|
3
3
|
import { FieldType, FieldTypeToValue } from "./data-types";
|
|
4
4
|
import { PageDataChange, PageModeChange, StateChange } from "./events";
|
|
5
5
|
import { Control, RefreshablePageControlOptions, SlidingPanelContent, SlidingPanelProperties, TypeAttributes } from "./page";
|
|
6
|
+
import { FieldTypeToClientFieldProperties } from "./client-field-properties";
|
|
6
7
|
import { FieldTypeToRestrictions, FileRestrictions } from "./restrictions";
|
|
7
8
|
import { AttachmentFormData } from "./file";
|
|
8
9
|
import { MaskingControlApi, MaskingPageApi } from "./masking-api";
|
|
@@ -71,6 +72,20 @@ export interface ControlApiBase<ControlTypeAttributes extends TypeAttributes = T
|
|
|
71
72
|
* @returns The value of the control's field.
|
|
72
73
|
*/
|
|
73
74
|
getFieldValue(): FieldTypeToValue<ControlFieldType>;
|
|
75
|
+
/**
|
|
76
|
+
* Returns the formatted value of the control's field.
|
|
77
|
+
* Field must be configured as dataSource in the control's typeAttributes.
|
|
78
|
+
* @method
|
|
79
|
+
* @returns A promise that resolves to the formatted field value, or undefined if the field is not found.
|
|
80
|
+
*/
|
|
81
|
+
getFormattedDisplayValue(): Promise<string | undefined>;
|
|
82
|
+
/**
|
|
83
|
+
* Returns the client field properties that are associated with the calling control.
|
|
84
|
+
* Field must be configured as dataSource in the control's typeAttributes.
|
|
85
|
+
* @method
|
|
86
|
+
* @returns The field restrictions that should be applied.
|
|
87
|
+
*/
|
|
88
|
+
getClientFieldProperties(): FieldTypeToClientFieldProperties<ControlFieldType> | undefined;
|
|
74
89
|
/**
|
|
75
90
|
* Returns the field restrictions that are associated with the calling control.
|
|
76
91
|
* Field must be configured as dataSource in the control's typeAttributes.
|
|
@@ -218,6 +233,11 @@ export interface ControlStateApi {
|
|
|
218
233
|
* @method
|
|
219
234
|
*/
|
|
220
235
|
update(): void;
|
|
236
|
+
/**
|
|
237
|
+
* Cleans up any resources held by the ControlStateApi instance.
|
|
238
|
+
* @ignore
|
|
239
|
+
*/
|
|
240
|
+
destroy(): void;
|
|
221
241
|
}
|
|
222
242
|
/**
|
|
223
243
|
* API methods related to object fields associated with a page.
|
|
@@ -243,6 +263,22 @@ export interface ControlPageFieldApi {
|
|
|
243
263
|
* @param field {string} Field name.
|
|
244
264
|
*/
|
|
245
265
|
getFieldValue<Type extends FieldType>(field: string): FieldTypeToValue<Type>;
|
|
266
|
+
/**
|
|
267
|
+
* Returns the formatted value of the supplied field.
|
|
268
|
+
* This works only with fields for the current object with which the control is associated.
|
|
269
|
+
* @method
|
|
270
|
+
* @param field {string} Field name.
|
|
271
|
+
* @returns A promise that resolves to the formatted field value, or undefined if the field is not found.
|
|
272
|
+
*/
|
|
273
|
+
getFormattedDisplayValue(field: string): Promise<string | undefined>;
|
|
274
|
+
/**
|
|
275
|
+
* Returns the client field properties that are associated with the calling control.
|
|
276
|
+
* @method
|
|
277
|
+
* @template {FieldType} Field type.
|
|
278
|
+
* @param field {string} Field name to get client field properties for.
|
|
279
|
+
* @returns Configured client field properties.
|
|
280
|
+
*/
|
|
281
|
+
getClientFieldProperties<Type extends FieldType>(field: string): FieldTypeToClientFieldProperties<Type> | undefined;
|
|
246
282
|
/**
|
|
247
283
|
* Returns the field restrictions that are associated with the calling control.
|
|
248
284
|
* @method
|
|
@@ -262,11 +298,11 @@ export interface ControlPageApiBase {
|
|
|
262
298
|
*/
|
|
263
299
|
readonly file: ControlFileApiBase;
|
|
264
300
|
/**
|
|
265
|
-
* The object ID
|
|
301
|
+
* The object ID. Returns an empty string ("") if not applicable.
|
|
266
302
|
*/
|
|
267
303
|
readonly objectId: string;
|
|
268
304
|
/**
|
|
269
|
-
* The object name
|
|
305
|
+
* The object name. Returns an empty string ("") if not applicable.
|
|
270
306
|
*/
|
|
271
307
|
readonly objectName: string;
|
|
272
308
|
/**
|
|
@@ -375,7 +411,7 @@ export interface ControlPageApi extends ControlPageApiBase {
|
|
|
375
411
|
reloadRefreshableControls(categoryToRefresh?: string, controlToRefresh?: Control): void;
|
|
376
412
|
/**
|
|
377
413
|
* @method
|
|
378
|
-
* @returns True if any RefreshableControls have options.requiresIndex present. Otherwise
|
|
414
|
+
* @returns True if any RefreshableControls have options.requiresIndex present. Otherwise false
|
|
379
415
|
*/
|
|
380
416
|
hasAnyRefreshableControlRequiresIndex(): boolean;
|
|
381
417
|
/**
|
|
@@ -404,15 +440,15 @@ export interface ControlPageApi extends ControlPageApiBase {
|
|
|
404
440
|
/**
|
|
405
441
|
* Checks if a page is in edit mode.
|
|
406
442
|
* @method
|
|
407
|
-
* @returns A boolean value that checks
|
|
443
|
+
* @returns A boolean value that checks if a page is in edit mode. Undefined if there is no page model.
|
|
408
444
|
*/
|
|
409
445
|
isInEditMode(): boolean | undefined;
|
|
410
446
|
/**
|
|
411
447
|
* Takes a page out of edit mode. Promise resolves with a boolean value to determine if the user has saved or not.
|
|
412
448
|
* If the user has not saved, the user is prompted to do so.
|
|
413
449
|
* @method
|
|
414
|
-
* @param closeTab {boolean} Checks if the tab should close after edit mode is
|
|
415
|
-
* @returns A Promise that resolves when the edit has been
|
|
450
|
+
* @param closeTab {boolean} Checks if the tab should close after edit mode is canceled.
|
|
451
|
+
* @returns A Promise that resolves when the edit has been canceled.
|
|
416
452
|
*/
|
|
417
453
|
cancelEdit(closeTab: boolean): Promise<{
|
|
418
454
|
userSaved: boolean;
|
|
@@ -439,7 +475,7 @@ export interface ControlPageApi extends ControlPageApiBase {
|
|
|
439
475
|
* @method
|
|
440
476
|
* @param stopEditing {boolean} Checks if the page should leave edit mode after it is saved.
|
|
441
477
|
* @param closeObject {boolean} Checks if the page should be closed after it is saved.
|
|
442
|
-
* @returns A Promise
|
|
478
|
+
* @returns A Promise that resolves when the page has been saved.
|
|
443
479
|
*/
|
|
444
480
|
save(stopEditing: boolean, closeObject: boolean): Promise<void>;
|
|
445
481
|
/**
|
|
@@ -476,7 +512,7 @@ export interface ControlFileApi extends ControlFileApiBase {
|
|
|
476
512
|
*
|
|
477
513
|
* @method
|
|
478
514
|
* @param {IAttachmentFormData} options Additional options to pass to the file upload dialog box.
|
|
479
|
-
* @returns {Promise<SASObjectAttachedFile[]>} Promise
|
|
515
|
+
* @returns {Promise<SASObjectAttachedFile[]>} Promise that resolves to an array of uploaded files.
|
|
480
516
|
*/
|
|
481
517
|
openFileUploadDialog(options: AttachmentFormData): Promise<SASObjectAttachedFile[]>;
|
|
482
518
|
/**
|
|
@@ -485,7 +521,7 @@ export interface ControlFileApi extends ControlFileApiBase {
|
|
|
485
521
|
* @method
|
|
486
522
|
* @param {boolean} allowMultiple Determines if multiple files can be uploaded at once.
|
|
487
523
|
* @param {number} [maxSize=] Maximum size of the image to be uploaded, in bytes.
|
|
488
|
-
* @returns {Promise<SASObjectAttachedFile[]>} A Promise
|
|
524
|
+
* @returns {Promise<SASObjectAttachedFile[]>} A Promise that resolves to an array of uploaded files.
|
|
489
525
|
*/
|
|
490
526
|
openImageUploadDialog(allowMultiple: boolean, maxSize?: number): Promise<SASObjectAttachedFile[]>;
|
|
491
527
|
/**
|
|
@@ -493,7 +529,7 @@ export interface ControlFileApi extends ControlFileApiBase {
|
|
|
493
529
|
*
|
|
494
530
|
* @method
|
|
495
531
|
* @param {string} [category=] An optional file category to filter by.
|
|
496
|
-
* @returns {Promise<SASObjectAttachedFile[]>} A Promise
|
|
532
|
+
* @returns {Promise<SASObjectAttachedFile[]>} A Promise that resolves to an array of files.
|
|
497
533
|
*/
|
|
498
534
|
getFiles(category?: string): Promise<SASObjectAttachedFile[]>;
|
|
499
535
|
/**
|
package/control/events.d.ts
CHANGED
package/control/file.d.ts
CHANGED
|
@@ -1,14 +1,27 @@
|
|
|
1
|
+
import { Control } from ".";
|
|
2
|
+
import { PageModel } from "../page-model/page-model-api";
|
|
1
3
|
export interface AttachmentFormData {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated Use AttachmentDialogOptions.dialogTitle instead.
|
|
6
|
+
*/
|
|
7
|
+
title?: string;
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated Use AttachmentDialogOptions.filesLabel instead.
|
|
10
|
+
*/
|
|
11
|
+
label?: string;
|
|
12
|
+
options?: AttachmentDialogOptions;
|
|
13
|
+
pageModel?: PageModel | {
|
|
14
|
+
id: string;
|
|
7
15
|
type: string;
|
|
8
16
|
};
|
|
17
|
+
childNode?: Control;
|
|
9
18
|
}
|
|
10
19
|
export interface AttachmentDialogOptions {
|
|
11
20
|
maxSize?: number;
|
|
12
21
|
allowMultiple?: boolean;
|
|
22
|
+
allowInput?: boolean;
|
|
13
23
|
fileExtensions?: string;
|
|
24
|
+
filesLabel?: string;
|
|
25
|
+
addFilesLabel?: string;
|
|
26
|
+
dialogTitle?: string;
|
|
14
27
|
}
|
package/control/index.d.ts
CHANGED
package/control/index.js
CHANGED
package/control/masking-api.d.ts
CHANGED
|
@@ -73,7 +73,7 @@ export interface MaskingPageApi {
|
|
|
73
73
|
/**
|
|
74
74
|
* Invokes the callback whenever any field value is masked.
|
|
75
75
|
* When an individual field is masked via a mask call, the callback will be invoked once.
|
|
76
|
-
* When multiple fields are masked via a single mask/mask all call, the callback will
|
|
76
|
+
* When multiple fields are masked via a single mask/mask all call, the callback will be invoked once.
|
|
77
77
|
* @param callback The callback function.
|
|
78
78
|
* @returns A function that removes the callback.
|
|
79
79
|
*/
|
|
@@ -91,7 +91,7 @@ export interface MaskingPageApi {
|
|
|
91
91
|
/**
|
|
92
92
|
* Invokes the callback whenever any field value is unmasked.
|
|
93
93
|
* When an individual field is unmasked via an unmask call, the callback will be invoked once.
|
|
94
|
-
* When multiple fields are unmasked via a single unmask/unmask all call, the callback will
|
|
94
|
+
* When multiple fields are unmasked via a single unmask/unmask all call, the callback will be invoked once.
|
|
95
95
|
* @param callback The callback function.
|
|
96
96
|
* @returns A function that removes the callback.
|
|
97
97
|
*/
|
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/file/file-api.d.ts
CHANGED
package/object/object-api.d.ts
CHANGED
|
@@ -86,7 +86,7 @@ export interface ObjectApi {
|
|
|
86
86
|
* @param objectTypeVersion {number} Object type version.
|
|
87
87
|
* @param fieldValues {FieldValues} Field values of the object.
|
|
88
88
|
* @param [options] {UpdateObjectOptions} Optional extra parameters.
|
|
89
|
-
* @return A Promise that resolves to the updated object when the object
|
|
89
|
+
* @return A Promise that resolves to the updated object when the object been successfully updated.
|
|
90
90
|
*/
|
|
91
91
|
updateObject(objectType: string, objectId: string, objectTypeId: number, objectTypeVersion: number, fieldValues: FieldValues, options?: UpdateObjectOptions): Promise<VIObject>;
|
|
92
92
|
/**
|
|
@@ -100,7 +100,7 @@ export interface ObjectApi {
|
|
|
100
100
|
* @param newFieldValues {FieldValues} Field values after the object was edited
|
|
101
101
|
* @param objectVersion {number} Object Version
|
|
102
102
|
* @param [options] {UpdateObjectOptions} Optional extra parameters.
|
|
103
|
-
* @return A Promise that resolves to the updated object when the object has successfully
|
|
103
|
+
* @return A Promise that resolves to the updated object when the object has been successfully updated.
|
|
104
104
|
*/
|
|
105
105
|
patchObject(objectType: string, objectId: string, objectTypeId: number, objectTypeVersion: number, originalFieldValues: FieldValues, newFieldValues: FieldValues, objectVersion: number, options?: UpdateObjectOptions): Promise<VIObject>;
|
|
106
106
|
/**
|
|
@@ -227,7 +227,7 @@ export interface ObjectApi {
|
|
|
227
227
|
* @description Launches a wizard allowing users to create an object/relationship.
|
|
228
228
|
* The relationship wizard is determined by the relateToParentLabel or relateToParentName defined in the wizardValues parameter.
|
|
229
229
|
* @param wizardValues {CreateDialogModel} Object containing entity and relationship data.
|
|
230
|
-
* @returns A Promise
|
|
230
|
+
* @returns A Promise that resolves when the dialog box is closed.
|
|
231
231
|
*/
|
|
232
232
|
openCreateAndLinkDialog(wizardValues: CreateDialogModel): Promise<CreateDialogModel>;
|
|
233
233
|
}
|
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/score-reps/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-
|
|
3
|
+
// Generated using typescript-generator version 2.15.527 on 2025-09-03 08:54:03.
|
|
4
4
|
|
|
5
5
|
export interface BaseRep extends TrackedResource {
|
|
6
6
|
links?: Link[];
|
package/score-reps/package.json
CHANGED
|
@@ -149,7 +149,7 @@ export interface ClientSearchApi extends SearchApi {
|
|
|
149
149
|
* @description Launches a wizard allowing users to search, before creating an object/relationship.
|
|
150
150
|
* The relationship wizard is determined by the relateToParentLabel or relateToParentName defined in the wizardValues parameter.
|
|
151
151
|
* @param wizardValues {SearchAndCreateDialogModel} Object containing entity and relationship data.
|
|
152
|
-
* @returns A Promise
|
|
152
|
+
* @returns A Promise that resolves when the dialog box is closed.
|
|
153
153
|
*/
|
|
154
154
|
openSearchAndCreateDialog(wizardValues: SearchAndCreateDialogModel): Promise<SearchAndCreateDialogModel>;
|
|
155
155
|
/**
|
|
@@ -157,7 +157,7 @@ export interface ClientSearchApi extends SearchApi {
|
|
|
157
157
|
* @description Launches a wizard allowing users to search, before creating an object/relationship.
|
|
158
158
|
* The relationship wizard is determined by the relateToParentLabel or relateToParentName defined in the wizardValues parameter.
|
|
159
159
|
* @param wizardValues {SearchDialogModel} Object containing entity and relationship data.
|
|
160
|
-
* @returns A Promise
|
|
160
|
+
* @returns A Promise that resolves when the dialog box is closed.
|
|
161
161
|
*/
|
|
162
162
|
openSearchAndCreateDialog(wizardValues: SearchDialogModel): Promise<SearchDialogModel>;
|
|
163
163
|
/**
|
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-
|
|
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;
|
|
@@ -13,10 +13,10 @@ export interface SecuredApiMeta {
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
export interface SecuredBuild {
|
|
16
|
+
buildVersion?: string;
|
|
16
17
|
sourceId?: string;
|
|
17
18
|
sourceTimeStamp?: string;
|
|
18
19
|
applicationVersion?: string;
|
|
19
|
-
buildVersion?: string;
|
|
20
20
|
timeStamp?: string;
|
|
21
21
|
}
|
|
22
22
|
|
|
@@ -49,8 +49,8 @@ export interface ResourceMediaTypes {
|
|
|
49
49
|
export interface Build extends Serializable {
|
|
50
50
|
sourceId?: string;
|
|
51
51
|
sourceTimeStamp?: string;
|
|
52
|
-
buildVersion?: string;
|
|
53
52
|
applicationVersion?: string;
|
|
53
|
+
buildVersion?: string;
|
|
54
54
|
timeStamp?: string;
|
|
55
55
|
}
|
|
56
56
|
|
|
@@ -233,6 +233,7 @@ export interface ActionTableValue {
|
|
|
233
233
|
value?: any;
|
|
234
234
|
type?: ActionTableValueType;
|
|
235
235
|
fieldRestriction?: { [index: string]: any };
|
|
236
|
+
clientFieldProperties?: ClientFieldPropertiesUnion;
|
|
236
237
|
}
|
|
237
238
|
|
|
238
239
|
export interface ActionType {
|
|
@@ -340,6 +341,15 @@ export interface TransactionLink extends CommonsDataRelationship {
|
|
|
340
341
|
"@type": "TransactionLink";
|
|
341
342
|
}
|
|
342
343
|
|
|
344
|
+
export interface ClientFieldProperties extends Serializable {
|
|
345
|
+
type: "numberField";
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
export interface NumberFieldProperties extends ClientFieldProperties {
|
|
349
|
+
type: "numberField";
|
|
350
|
+
disableThousandsSeparator?: boolean;
|
|
351
|
+
}
|
|
352
|
+
|
|
343
353
|
export interface AbstractFileOperation {
|
|
344
354
|
method?: MethodType;
|
|
345
355
|
}
|
|
@@ -450,6 +460,15 @@ export interface DocumentFilterUtil {
|
|
|
450
460
|
export interface DocumentMetadataController {
|
|
451
461
|
}
|
|
452
462
|
|
|
463
|
+
export interface EndpointSummaryController {
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
export interface EndpointRow extends JavaLangRecord {
|
|
467
|
+
handler?: string;
|
|
468
|
+
path?: string;
|
|
469
|
+
method?: string;
|
|
470
|
+
}
|
|
471
|
+
|
|
453
472
|
export interface FileAssociationResponse extends FileAssociation {
|
|
454
473
|
links?: RestRepresentationsLink[];
|
|
455
474
|
}
|
|
@@ -663,6 +682,7 @@ export interface CoreDataField<O> extends LocalizableObject, Versioned, NamedObj
|
|
|
663
682
|
showTimeZone?: boolean;
|
|
664
683
|
redacted?: boolean;
|
|
665
684
|
useObjectAuthorization?: boolean;
|
|
685
|
+
clientFieldProperties?: ClientFieldPropertiesUnion;
|
|
666
686
|
allowedRedactedFieldGroups?: RedactionRuleEntity[];
|
|
667
687
|
masked?: boolean;
|
|
668
688
|
userGroupSelectionField?: boolean;
|
|
@@ -1045,6 +1065,7 @@ export interface QCoreDataField extends EntityPathBase<CoreDataField<CoreDataObj
|
|
|
1045
1065
|
allowMultipleSelections?: BooleanPath;
|
|
1046
1066
|
assignedTimeZone?: StringPath;
|
|
1047
1067
|
autoGenerated?: BooleanPath;
|
|
1068
|
+
clientFieldProperties?: SimplePath<ClientFieldPropertiesUnion>;
|
|
1048
1069
|
columnName?: StringPath;
|
|
1049
1070
|
constrainingListName?: StringPath;
|
|
1050
1071
|
createdAt?: DateTimePath<Date>;
|
|
@@ -1288,6 +1309,7 @@ export interface QCoreRelationshipField extends EntityPathBase<CoreRelationshipF
|
|
|
1288
1309
|
assignedTimeZone?: StringPath;
|
|
1289
1310
|
authorizedToRevealMasked?: ListPath<MaskRevealAuthorizationEntityRelationship, QMaskRevealAuthorizationEntityRelationship>;
|
|
1290
1311
|
autoGenerated?: BooleanPath;
|
|
1312
|
+
clientFieldProperties?: SimplePath<ClientFieldPropertiesUnion>;
|
|
1291
1313
|
columnName?: StringPath;
|
|
1292
1314
|
constrainingListName?: StringPath;
|
|
1293
1315
|
createdAt?: DateTimePath<Date>;
|
|
@@ -1394,6 +1416,7 @@ export interface QCoreStoredObjectField extends EntityPathBase<CoreStoredObjectF
|
|
|
1394
1416
|
cascadingReferenceDataFilterByField?: StringPath;
|
|
1395
1417
|
cascadingReferenceDataFilterByListName?: StringPath;
|
|
1396
1418
|
cascadingReferenceDataName?: StringPath;
|
|
1419
|
+
clientFieldProperties?: SimplePath<ClientFieldPropertiesUnion>;
|
|
1397
1420
|
columnName?: StringPath;
|
|
1398
1421
|
constrainingListName?: StringPath;
|
|
1399
1422
|
createdAt?: DateTimePath<Date>;
|
|
@@ -1477,6 +1500,7 @@ export interface QCoreTransactionField extends EntityPathBase<CoreTransactionFie
|
|
|
1477
1500
|
assignedTimeZone?: StringPath;
|
|
1478
1501
|
authorizedToRevealMasked?: ListPath<MaskRevealAuthorizationEntityTransaction, QMaskRevealAuthorizationEntityTransaction>;
|
|
1479
1502
|
autoGenerated?: BooleanPath;
|
|
1503
|
+
clientFieldProperties?: SimplePath<ClientFieldPropertiesUnion>;
|
|
1480
1504
|
columnName?: StringPath;
|
|
1481
1505
|
constrainingListName?: StringPath;
|
|
1482
1506
|
createdAt?: DateTimePath<Date>;
|
|
@@ -2336,6 +2360,7 @@ export interface TemplateConfigurationDTO extends NamedObject, Comparable<Templa
|
|
|
2336
2360
|
clientApplication?: string;
|
|
2337
2361
|
linkedReferenceLists?: string[];
|
|
2338
2362
|
fileCategories?: TemplateFileCategoryAssociationDTO[];
|
|
2363
|
+
groupRestrictions?: UserGroupChooserSelection[];
|
|
2339
2364
|
conditions?: string[];
|
|
2340
2365
|
publishCode?: PublishCode;
|
|
2341
2366
|
active?: boolean;
|
|
@@ -2718,14 +2743,15 @@ export interface ConditionalRule {
|
|
|
2718
2743
|
}
|
|
2719
2744
|
|
|
2720
2745
|
export interface DataField {
|
|
2746
|
+
clientFieldProperties?: ClientFieldPropertiesUnion;
|
|
2721
2747
|
dataType?: any;
|
|
2722
2748
|
primaryKeyField?: boolean;
|
|
2723
2749
|
displayIndex?: number;
|
|
2724
2750
|
primaryKeySeqNo?: number;
|
|
2725
|
-
allowMultipleSelections?: boolean;
|
|
2726
2751
|
unique?: boolean;
|
|
2727
2752
|
autoGenerated?: boolean;
|
|
2728
2753
|
systemReserved?: boolean;
|
|
2754
|
+
allowMultipleSelections?: boolean;
|
|
2729
2755
|
userSelectionStrategy?: UserSelectionStrategyType;
|
|
2730
2756
|
constrainingListName?: string;
|
|
2731
2757
|
indexedForSearch?: boolean;
|
|
@@ -2741,9 +2767,9 @@ export interface DataField {
|
|
|
2741
2767
|
ownerName?: string;
|
|
2742
2768
|
currentUserIsAuthorizedToReveal?: boolean;
|
|
2743
2769
|
required?: boolean;
|
|
2770
|
+
label?: string;
|
|
2744
2771
|
columnName?: string;
|
|
2745
2772
|
scale?: number;
|
|
2746
|
-
label?: string;
|
|
2747
2773
|
name?: string;
|
|
2748
2774
|
length?: number;
|
|
2749
2775
|
id?: number;
|
|
@@ -2764,8 +2790,8 @@ export interface DataObject extends SolutionAssignedDTO {
|
|
|
2764
2790
|
dataStoreName?: string;
|
|
2765
2791
|
dataStoreDefaultSchemaName?: string;
|
|
2766
2792
|
dataStoreAssignedTimeZone?: string;
|
|
2767
|
-
tableName?: string;
|
|
2768
2793
|
label?: string;
|
|
2794
|
+
tableName?: string;
|
|
2769
2795
|
name?: string;
|
|
2770
2796
|
fields?: DataField[];
|
|
2771
2797
|
id?: number;
|
|
@@ -2811,6 +2837,7 @@ export interface EnrichedDocument {
|
|
|
2811
2837
|
comments?: Comment[];
|
|
2812
2838
|
fileOperations?: AbstractFileOperationUnion[];
|
|
2813
2839
|
fieldRestrictions?: { [index: string]: any };
|
|
2840
|
+
clientFieldProperties?: { [index: string]: any };
|
|
2814
2841
|
attachmentsCount?: number;
|
|
2815
2842
|
}
|
|
2816
2843
|
|
|
@@ -2822,15 +2849,15 @@ export interface Entity extends SolutionAssignedDTO {
|
|
|
2822
2849
|
borderColor?: string;
|
|
2823
2850
|
borderWidth?: number;
|
|
2824
2851
|
useForNetworkBuild?: boolean;
|
|
2825
|
-
compounds?: Compound[];
|
|
2826
2852
|
temporalSplitting?: boolean;
|
|
2853
|
+
compounds?: Compound[];
|
|
2827
2854
|
displayTextElements?: SortableNameReference[];
|
|
2828
2855
|
linkDisplayTextElements?: SortableNameReference[];
|
|
2829
2856
|
requiresMultipleContributors?: boolean;
|
|
2830
2857
|
publishCode?: PublishCode;
|
|
2831
2858
|
defaultMapIcon?: Icon;
|
|
2832
|
-
scale?: number;
|
|
2833
2859
|
label?: string;
|
|
2860
|
+
scale?: number;
|
|
2834
2861
|
name?: string;
|
|
2835
2862
|
id?: number;
|
|
2836
2863
|
}
|
|
@@ -2887,8 +2914,8 @@ export interface ReferenceListSummary {
|
|
|
2887
2914
|
}
|
|
2888
2915
|
|
|
2889
2916
|
export interface Relationship extends DataObject {
|
|
2890
|
-
fromObjectName?: string;
|
|
2891
2917
|
toObjectName?: string;
|
|
2918
|
+
fromObjectName?: string;
|
|
2892
2919
|
cardinality?: RelationshipCardinality;
|
|
2893
2920
|
previousCardinality?: RelationshipCardinality;
|
|
2894
2921
|
symmetric?: boolean;
|
|
@@ -2903,11 +2930,11 @@ export interface Relationship extends DataObject {
|
|
|
2903
2930
|
linkFields?: { [index: string]: string }[];
|
|
2904
2931
|
joinTableName?: string;
|
|
2905
2932
|
required?: boolean;
|
|
2933
|
+
width?: number;
|
|
2906
2934
|
qualifiedName?: string;
|
|
2907
|
-
summaryFields?: SortableNameReference[];
|
|
2908
2935
|
managed?: boolean;
|
|
2936
|
+
summaryFields?: SortableNameReference[];
|
|
2909
2937
|
color?: string;
|
|
2910
|
-
width?: number;
|
|
2911
2938
|
type?: RelationshipType;
|
|
2912
2939
|
}
|
|
2913
2940
|
|
|
@@ -2951,8 +2978,8 @@ export interface StoredDataObject extends DataObject {
|
|
|
2951
2978
|
}
|
|
2952
2979
|
|
|
2953
2980
|
export interface Transaction extends DataObject {
|
|
2954
|
-
fromObjectName?: string;
|
|
2955
2981
|
toObjectName?: string;
|
|
2982
|
+
fromObjectName?: string;
|
|
2956
2983
|
toObjectTypeFieldName?: string;
|
|
2957
2984
|
fromObjectTypeFieldName?: string;
|
|
2958
2985
|
fromObjectRefFieldName?: string;
|
|
@@ -3097,6 +3124,7 @@ export interface TemplateResourceSummary extends ResourceSummary {
|
|
|
3097
3124
|
clientApplication?: string;
|
|
3098
3125
|
templateType?: string;
|
|
3099
3126
|
active?: boolean;
|
|
3127
|
+
groupRestrictions?: UserGroupChooserSelection[];
|
|
3100
3128
|
}
|
|
3101
3129
|
|
|
3102
3130
|
export interface TransactionImpl extends DataObjectImpl, Transaction {
|
|
@@ -3420,6 +3448,11 @@ export interface Actions {
|
|
|
3420
3448
|
items?: PageActionItem[];
|
|
3421
3449
|
}
|
|
3422
3450
|
|
|
3451
|
+
export interface ClientFieldPropertiesTuple {
|
|
3452
|
+
fieldName?: string;
|
|
3453
|
+
clientFieldProperties?: ClientFieldPropertiesUnion;
|
|
3454
|
+
}
|
|
3455
|
+
|
|
3423
3456
|
export interface FieldRestrictionTuple {
|
|
3424
3457
|
fieldName?: string;
|
|
3425
3458
|
restriction?: { [index: string]: any };
|
|
@@ -3444,6 +3477,7 @@ export interface Page {
|
|
|
3444
3477
|
linkedTemplateData?: LinkedTemplate[];
|
|
3445
3478
|
actions?: Actions;
|
|
3446
3479
|
fieldRestrictions?: { [index: string]: any };
|
|
3480
|
+
clientFieldProperties?: { [index: string]: any };
|
|
3447
3481
|
fileRestrictions?: { [index: string]: any };
|
|
3448
3482
|
conditions?: ConditionDTO[];
|
|
3449
3483
|
}
|
|
@@ -3652,6 +3686,7 @@ export interface ActiveHomepage extends ETagAndLastModifiedProvider {
|
|
|
3652
3686
|
id?: number;
|
|
3653
3687
|
clientApplication?: string;
|
|
3654
3688
|
templateUUID?: string;
|
|
3689
|
+
templateName?: string;
|
|
3655
3690
|
createdBy?: string;
|
|
3656
3691
|
createdAt?: Date;
|
|
3657
3692
|
lastUpdatedBy?: string;
|
|
@@ -3683,6 +3718,7 @@ export interface Template extends SolutionAssignedDTO, ETagAndLastModifiedProvid
|
|
|
3683
3718
|
clientApplication?: string;
|
|
3684
3719
|
linkedReferenceLists?: string[];
|
|
3685
3720
|
fileCategories?: TemplateFileCategoryAssociationDTO[];
|
|
3721
|
+
groupRestrictions?: UserGroupChooserSelection[];
|
|
3686
3722
|
conditions?: string[];
|
|
3687
3723
|
publishCode?: PublishCode;
|
|
3688
3724
|
solutionLabel?: string;
|
|
@@ -3933,6 +3969,9 @@ export interface Ordered {
|
|
|
3933
3969
|
order?: number;
|
|
3934
3970
|
}
|
|
3935
3971
|
|
|
3972
|
+
export interface JavaLangRecord {
|
|
3973
|
+
}
|
|
3974
|
+
|
|
3936
3975
|
export interface LocalizedLocale {
|
|
3937
3976
|
localeCd?: string;
|
|
3938
3977
|
label?: string;
|
|
@@ -4035,6 +4074,9 @@ export interface ListPath<E, Q> extends CollectionPathBase<E[], E, Q>, ListExpre
|
|
|
4035
4074
|
export interface BooleanPath extends DslTypesDslBooleanExpression, Path<boolean> {
|
|
4036
4075
|
}
|
|
4037
4076
|
|
|
4077
|
+
export interface SimplePath<T> extends SimpleExpression<T>, Path<T> {
|
|
4078
|
+
}
|
|
4079
|
+
|
|
4038
4080
|
export interface EnumPath<T> extends EnumExpression<T>, Path<T> {
|
|
4039
4081
|
}
|
|
4040
4082
|
|
|
@@ -4247,7 +4289,7 @@ export interface EntityPathBase<T> extends BeanPath<T>, EntityPath<T> {
|
|
|
4247
4289
|
export interface DslTypesDslBooleanExpression extends LiteralExpression<boolean>, Predicate {
|
|
4248
4290
|
}
|
|
4249
4291
|
|
|
4250
|
-
export interface QAbstractStyleEntity extends
|
|
4292
|
+
export interface QAbstractStyleEntity extends EntityPathBase<AbstractStyleEntity> {
|
|
4251
4293
|
condition?: QConditionEntity;
|
|
4252
4294
|
evaluationOrder?: NumberPath<number>;
|
|
4253
4295
|
id?: StringPath;
|
|
@@ -4337,9 +4379,9 @@ export interface AnnotationMap extends Annotations {
|
|
|
4337
4379
|
export interface AnnotatedMember extends Annotated, Serializable {
|
|
4338
4380
|
typeContext?: TypeResolutionContext;
|
|
4339
4381
|
member?: Member;
|
|
4382
|
+
allAnnotations?: AnnotationMap;
|
|
4340
4383
|
declaringClass?: Class<any>;
|
|
4341
4384
|
fullName?: string;
|
|
4342
|
-
allAnnotations?: AnnotationMap;
|
|
4343
4385
|
}
|
|
4344
4386
|
|
|
4345
4387
|
export interface ObjectIdInfo {
|
|
@@ -4419,10 +4461,10 @@ export interface ListExpression<E, Q> extends CollectionExpression<E[], E> {
|
|
|
4419
4461
|
export interface Predicate extends DslTypesExpression<boolean> {
|
|
4420
4462
|
}
|
|
4421
4463
|
|
|
4422
|
-
export interface
|
|
4464
|
+
export interface SimpleExpression<T> extends DslExpression<T> {
|
|
4423
4465
|
}
|
|
4424
4466
|
|
|
4425
|
-
export interface
|
|
4467
|
+
export interface EnumExpression<T> extends LiteralExpression<T> {
|
|
4426
4468
|
}
|
|
4427
4469
|
|
|
4428
4470
|
export interface ArrayExpression<A, T> extends DslTypesExpression<A> {
|
|
@@ -4443,9 +4485,6 @@ export interface QConditionAssociationEntity extends EntityPathBase<ConditionAss
|
|
|
4443
4485
|
ownerName?: StringPath;
|
|
4444
4486
|
}
|
|
4445
4487
|
|
|
4446
|
-
export interface SimplePath<T> extends SimpleExpression<T>, Path<T> {
|
|
4447
|
-
}
|
|
4448
|
-
|
|
4449
4488
|
export interface QConditionReferenceEntity extends BeanPath<ConditionReferenceEntity> {
|
|
4450
4489
|
referencedCondition?: StringPath;
|
|
4451
4490
|
}
|
|
@@ -4477,9 +4516,10 @@ export interface TemplateEntity extends Serializable, StandardEntity, NamedObjec
|
|
|
4477
4516
|
linkedTraversals?: string[];
|
|
4478
4517
|
fileCategories?: TemplateFileCategoryAssociation[];
|
|
4479
4518
|
linkedReferenceLists?: string[];
|
|
4519
|
+
groupRestrictions?: TemplateAuthorization[];
|
|
4480
4520
|
conditions?: ConditionAssociationEntity[];
|
|
4481
4521
|
publishCode?: PublishCode;
|
|
4482
|
-
activeHomepage?: ActiveHomepageEntity
|
|
4522
|
+
activeHomepage?: ActiveHomepageEntity;
|
|
4483
4523
|
active?: boolean;
|
|
4484
4524
|
}
|
|
4485
4525
|
|
|
@@ -4553,6 +4593,11 @@ export interface TemplateFileCategoryAssociation extends Serializable {
|
|
|
4553
4593
|
categoryName?: string;
|
|
4554
4594
|
}
|
|
4555
4595
|
|
|
4596
|
+
export interface TemplateAuthorization extends Serializable {
|
|
4597
|
+
selectionTypeCd?: UserGroupType;
|
|
4598
|
+
selectionNm?: string;
|
|
4599
|
+
}
|
|
4600
|
+
|
|
4556
4601
|
export interface ExpressionVisitor {
|
|
4557
4602
|
}
|
|
4558
4603
|
|
|
@@ -4721,7 +4766,7 @@ export type Status = "pending" | "running" | "stopping" | "cancelled" | "complet
|
|
|
4721
4766
|
|
|
4722
4767
|
export type AccessPattern = "ALWAYS_NULL" | "CONSTANT" | "DYNAMIC";
|
|
4723
4768
|
|
|
4724
|
-
export type ErrorCode = "DH0100" | "DH0101" | "DH0102" | "DH0103" | "DH0120" | "DH0121" | "DH0122" | "DH0300" | "DH0301" | "DH0302" | "DH0303" | "DH0304" | "DH0305" | "DH0306" | "DH0307" | "DH0400" | "DH1062" | "DH1063" | "DH1070" | "DH1090" | "DH1200" | "DH1202" | "DH1203" | "DH1204" | "DH1205" | "DH1206" | "DH1207" | "DH1208" | "DH1210" | "DH1219" | "DH1220" | "DH1221" | "DH1300" | "DH1310" | "DH1311" | "DH1312" | "DH1313" | "differing_datatypes_when_sorting_error" | "DH1320" | "DH1321" | "DH1354" | "DH1355" | "DH1356" | "DH1357" | "could_not_apply_json_patch_to_document" | "could_not_apply_json_patch_to_link" | "json_patch_invalid_operation_required" | "json_patch_operation_not_allowed_at_path" | "DH1402" | "DH1405" | "DH1406" | "DH1408" | "DH1409" | "DH1410" | "DH1412" | "DH1413" | "DH1414" | "DH1415" | "DH1416" | "DH1418" | "DH1419" | "DH1420" | "DH1501" | "DH1502" | "DH1503" | "DH1506" | "DH1507" | "DH1508" | "DH1509" | "DH1510" | "DH1511" | "DH1512" | "DH1513" | "DH1515" | "DH1517" | "DH1518" | "DH1519" | "DH1520" | "unable_to_serialize_json" | "DH1521" | "DH1522" | "DH1523" | "DH1524" | "DH1525" | "DH1526" | "DH1528" | "DH1529" | "DH1530" | "DH1531" | "DH1532" | "DH1533" | "DH1534" | "DH1535" | "DH1536" | "DH1537" | "DH1538" | "DH1539" | "DH1540" | "DH1541" | "DH1544" | "DH1545" | "DH1560" | "DH1561" | "DH1562" | "job_already_running" | "import_config_job_already_running" | "DH1563" | "DH1564" | "DH1565" | "DH1566" | "DH2300" | "DH2301" | "DH2302" | "DH2303" | "DH2304" | "DH2305" | "DH2312" | "DH2313" | "DH2320" | "DH2321" | "DH2322" | "DH2323" | "DH2324" | "DH3000" | "DH3003" | "DH3004" | "DH3005" | "DH3006" | "DH3007" | "DH3010" | "DH3011" | "DH3012" | "DH3013" | "DH3014" | "DH3015" | "DH3016" | "DH3017" | "DH3018" | "DH3019" | "DH3020" | "DH3021" | "DH3022" | "DH3023" | "DH3024" | "DH3025" | "DH3026" | "DH3027" | "DH3029" | "DH3030" | "DH3031" | "DH3032" | "DH3033" | "DH3035" | "DH3065" | "DH3066" | "DH3067" | "DH3068" | "DH3070" | "DH3071" | "DH3072" | "DH3073" | "DH3076" | "DH3077" | "DH3078" | "DH3079" | "data_store_credential_create_op_failed" | "data_store_credential_read_op_failed" | "data_store_credential_update_op_failed" | "data_store_credential_delete_op_failed" | "data_store_credential_delete_op_unauthorized" | "data_store_internal_property_not_found" | "data_store_internal_resolved_property_not_found" | "DH3080" | "DH3081" | "DH3082" | "DH3083" | "DH3084" | "DH3085" | "DH3086" | "DH3087" | "DH3088" | "DH3089" | "DH3090" | "DH3100" | "DH3101" | "DH3102" | "DH3103" | "DH3105" | "DH3106" | "DH3107" | "DH3108" | "DH3109" | "DH3110" | "DH3112" | "DH3113" | "DH3114" | "DH3115" | "DH3116" | "DH3118" | "DH3119" | "DH3120" | "DH3122" | "DH3123" | "DH3124" | "DH3125" | "DH3126" | "DH3127" | "DH3129" | "DH3130" | "DH3132" | "DH3133" | "DH3135" | "DH3137" | "DH3138" | "DH3139" | "DH3140" | "DH3141" | "DH3142" | "DH3145" | "DH3146" | "DH3147" | "DH3148" | "DH3150" | "DH3151" | "DH3152" | "DH3153" | "DH3154" | "DH3155" | "DH3156" | "DH3157" | "DH3158" | "missing_primary_key_field_for_transaction" | "DH3160" | "DH3161" | "DH3162" | "DH3163" | "DH3164" | "DH3165" | "DH3166" | "DH3167" | "DH3168" | "DH3169" | "DH3170" | "DH3171" | "DH3172" | "DH3175" | "DH3176" | "DH3177" | "DH3178" | "DH3179" | "DH3180" | "DH3181" | "DH3182" | "DH3183" | "DH3184" | "DH3185" | "DH3186" | "DH3187" | "DH3188" | "DH3189" | "DH3190" | "DH3191" | "DH3192" | "DH3193" | "DH3194" | "DH3195" | "DH3196" | "DH3197" | "DH3198" | "DH3199" | "DH3200" | "DH3201" | "DH3202" | "DH3203" | "DH3205" | "DH3206" | "DH3207" | "DH3208" | "DH3209" | "DH3210" | "DH3211" | "DH3212" | "DH3213" | "DH3214" | "DH3215" | "DH3216" | "DH3217" | "DH3218" | "DH3219" | "DH3220" | "DH3221" | "DH3222" | "DH3223" | "DH3224" | "DH3225" | "DH3226" | "DH3227" | "DH3228" | "DH3229" | "DH3230" | "DH3231" | "DH3232" | "DH3238" | "DH3240" | "DH3261" | "DH3264" | "DH3266" | "DH3267" | "DH3268" | "DH3269" | "DH3272" | "DH3273" | "DH3274" | "DH3275" | "DH3276" | "DH3278" | "DH3279" | "DH3280" | "DH3281" | "DH3282" | "DH3283" | "DH3284" | "DH3285" | "DH3286" | "DH3287" | "DH3288" | "DH3289" | "DH3290" | "DH3291" | "DH3294" | "DH3295" | "DH3296" | "DH3298" | "DH3299" | "DH3300" | "DH3302" | "DH3303" | "DH3304" | "incompatibleColumnDataTypeForConstrainedExternalField" | "DH3310" | "DH3311" | "DH3312" | "DH3313" | "DH3320" | "DH3321" | "DH3324" | "DH3330" | "DH3338" | "DH3339" | "DH3340" | "DH3341" | "DH3342" | "DH3343" | "DH3344" | "DH3345" | "DH3346" | "DH3347" | "DH3348" | "DH3349" | "DH3351" | "DH3352" | "DH3353" | "DH3354" | "DH3355" | "DH3356" | "DH3357" | "DH3358" | "DH3359" | "DH3360" | "DH3361" | "DH3362" | "DH3363" | "DH3364" | "DH3365" | "DH3380" | "DH3381" | "DH3382" | "DH3400" | "DH3401" | "DH3402" | "DH3404" | "DH3405" | "DH3414" | "DH3419" | "DH3420" | "DH3422" | "DH3424" | "DH3425" | "DH3426" | "DH3427" | "DH3428" | "DH3429" | "DH3430" | "DH3431" | "DH3432" | "DH3433" | "DH3440" | "DH3441" | "DH3442" | "DH3443" | "DH3444" | "DH3445" | "DH3446" | "DH3447" | "DH3448" | "DH3450" | "DH3451" | "DH3452" | "DH3453" | "DH3454" | "DH3455" | "DH3456" | "DH3466" | "DH3470" | "DH3471" | "DH3472" | "DH3473" | "DH3474" | "DH3475" | "DH3476" | "DH3477" | "DH3478" | "DH3479" | "DH3480" | "DH3481" | "DH3482" | "DH3483" | "DH3484" | "DH3486" | "DH3487" | "DH3488" | "DH3489" | "DH3490" | "DH3491" | "DH3492" | "DH3493" | "DH3494" | "DH3495" | "DH3497" | "DH3498" | "DH3500" | "DH3501" | "DH3502" | "DH3503" | "DH3504" | "DH3505" | "DH3506" | "DH3507" | "DH3508" | "DH3509" | "DH3510" | "publishCodeCannotBeModifiedForContextMapping" | "invalid_client_application" | "DH3511" | "DH3512" | "DH3513" | "DH3514" | "DH3515" | "DH3516" | "DH3517" | "userGroupMembershipOperatorCanOnlyBeUsedForUserGroupChooserFields" | "userGroupMembershipOperatorMustReferenceFieldOrValueButNotBoth" | "DH3520" | "DH3600" | "DH3601" | "DH3602" | "DH3620" | "DH3621" | "DH3650" | "DH3651" | "DH3652" | "DH3653" | "DH3654" | "DH3655" | "DH3700" | "DH3701" | "DH3702" | "DH3703" | "DH3704" | "DH3705" | "DH3706" | "DH3708" | "DH3709" | "DH3710" | "DH3711" | "DH3712" | "DH3713" | "DH3714" | "DH3715" | "DH3716" | "DH3717" | "DH3718" | "DH3719" | "DH3720" | "DH3721" | "DH3723" | "DH3724" | "DH3725" | "DH3726" | "DH3727" | "DH3728" | "DH3729" | "DH3730" | "DH3731" | "DH3732" | "DH3733" | "DH3734" | "DH3735" | "DH3736" | "DH3737" | "DH3738" | "DH3739" | "DH3740" | "DH3741" | "DH3742" | "DH3743" | "DH3744" | "DH4100" | "DH4101" | "DH4102" | "DH4103" | "DH4114" | "DH4116" | "DH4120" | "DH4129" | "DH4130" | "DH4131" | "DH4132" | "DH4133" | "DH4134" | "DH4135" | "DH4136" | "DH4137" | "DH4138" | "DH4139" | "DH4140" | "DH4141" | "DH4142" | "DH4143" | "DH4144" | "DH4145" | "DH4150" | "DH4151" | "DH4152" | "DH4153" | "DH4154" | "DH4155" | "DH4156" | "DH4157" | "DH4158" | "DH4159" | "DH4160" | "DH4162" | "DH4163" | "column_not_found_for_heterogeneous_link_field" | "DH4167" | "DH4168" | "rel_child_must_ref_parent_by_pk" | "DH4170" | "DH4173" | "DH4174" | "DH4175" | "DH4179" | "DH4180" | "DH4181" | "DH4182" | "DH4183" | "DH4184" | "DH4185" | "DH4186" | "DH4187" | "DH4188" | "DH4189" | "DH4190" | "DH4191" | "DH4192" | "DH4193" | "DH4194" | "DH4200" | "DH4201" | "DH4202" | "DH4203" | "DH4207" | "DH4208" | "DH4211" | "DH4220" | "DH4226" | "DH4227" | "DH4228" | "DH4229" | "DH4302" | "DH4332" | "DH4304" | "DH4305" | "DH4310" | "DH4331" | "DH4316" | "DH4317" | "DH4319" | "DH4320" | "DH4321" | "DH4322" | "DH4328" | "DH4330" | "DH4338" | "DH4343" | "DH4346" | "DH4347" | "DH4350" | "DH4351" | "DH4400" | "DH4401" | "DH4402" | "DH4403" | "DH4404" | "DH5100" | "DH5101" | "DH5102" | "DH5103" | "DH5104" | "DH5105" | "DH5107" | "DH5108" | "DH5109" | "DH5111" | "DH5112" | "DH5114" | "DH5115" | "DH5116" | "DH5118" | "DH5119" | "DH5120" | "DH5121" | "write_only_at_create_for_relationship_requires_read_only" | "DH5122" | "DH5123" | "DH5125" | "DH5126" | "DH5127" | "DH5128" | "DH5129" | "DH5130" | "DH5131" | "DH5133" | "DH5134" | "DH5135" | "DH5200" | "DH5201" | "DH5202" | "DH5203" | "DH5204" | "DH5205" | "DH5206" | "DH5207" | "DH5210" | "DH5211" | "DH5212" | "DH5213" | "DH5500" | "DH5501" | "DH5502" | "DH5503" | "DH5504" | "DH5505" | "DH5506" | "DH5507" | "import_database_error" | "import_database_error_for_type" | "export_failed" | "DH5600" | "DH5601" | "DH5602" | "DH5603" | "DH6099" | "DH6100" | "DH6101" | "DH6102" | "DH6103" | "DH6104" | "DH6105" | "stored_objects_with_names_not_found" | "DH6106" | "DH6107" | "DH6108" | "DH6109" | "entity_does_not_have_relationship" | "DH6110" | "DH6112" | "DH6113" | "DH6114" | "DH6116" | "DH6118" | "DH6119" | "DH6120" | "icon_svg_invalid" | "icon_invalid_image_type" | "DH6122" | "DH6123" | "DH6124" | "DH6125" | "DH6126" | "DH6127" | "DH6128" | "DH6129" | "DH6131" | "DH6132" | "DH6133" | "DH6134" | "DH6135" | "DH6136" | "DH6137" | "DH6138" | "DH6139" | "DH6140" | "DH6141" | "DH6142" | "DH6143" | "DH6144" | "DH6145" | "DH6146" | "DH6147" | "DH6148" | "DH6149" | "DH6150" | "DH6151" | "DH6152" | "DH6153" | "DH6154" | "DH6155" | "DH6156" | "DH6157" | "DH6158" | "DH6159" | "DH6160" | "DH6161" | "DH6162" | "DH6163" | "DH6164" | "DH6165" | "DH6166" | "DH6167" | "DH6168" | "DH6169" | "DH6170" | "DH6171" | "DH6172" | "DH6173" | "DH6174" | "DH6175" | "DH6176" | "DH6177" | "DH6178" | "DH6179" | "DH6180" | "DH6181" | "DH6182" | "DH6183" | "DH6184" | "DH6185" | "DH6186" | "DH6187" | "DH6188" | "DH6189" | "DH6191" | "DH6198" | "DH6199" | "DH6200" | "DH6201" | "DH6202" | "DH6203" | "DH6205" | "DH6206" | "DH6207" | "DH6208" | "DH6209" | "DH6210" | "DH6211" | "DH6212" | "DH6213" | "DH6214" | "DH6215" | "DH6216" | "DH6217" | "DH6218" | "DH6219" | "DH6220" | "DH6221" | "DH6222" | "DH6223" | "media_type_mismatch" | "DH6224" | "DH6225" | "DH6226" | "tuning_global_parameters_must_be_supplied" | "tuning_parameters_property_cannot_be_empty" | "tuning_object_type_and_name_must_match_when_global_type" | "tuning_maximum_parameters_exceeded" | "tuning_no_parameters_supplied" | "value_must_be_supplied_for_tuning_parameter" | "invalid_tuning_parameter_name_supplied" | "tuning_parameter_values_must_be_greater_than_zero" | "tuning_parameter_values_must_not_exceed_max_int_value" | "tuning_parameter_cannot_have_decimal_value" | "tuning_non_global_values_cannot_have_default_values" | "global_default_values_cannot_be_updated" | "DH6300" | "DH6301" | "DH6302" | "DH6303" | "DH6304" | "DH6310" | "DH6311" | "condition_id_required" | "DH6350" | "DH6351" | "DH6352" | "DH6353" | "DH6354" | "DH6356" | "DH6357" | "DH6358" | "DH6360" | "DH6361" | "DH6362" | "DH6363" | "DH6364" | "DH6365" | "DH6366" | "DH6380" | "DH6381" | "DH6382" | "DH6383" | "DH6900" | "DH6901" | "DH6902" | "DH6903" | "DH6904" | "DH6905" | "DH6907" | "DH6910" | "DH6911" | "DH6912" | "DH6913" | "DH6914" | "DH6915" | "DH6916" | "DH6917" | "DH6918" | "not_a_valid_entity_date_field_w_id" | "not_a_valid_entity_timestamp_w_id" | "not_a_valid_entity_date_field_without_id" | "not_a_valid_entity_timestamp_without_id" | "not_a_valid_relationship_entity_date_field_w_id" | "not_a_valid_relationship_entity_timestamp_w_id" | "not_a_valid_relationship_entity_date_field_without_id" | "not_a_valid_relationship_entity_timestamp_without_id" | "DH6919" | "DH6920" | "DH6921" | "DH6922" | "DH6923" | "DH6998" | "DH6999" | "DH7000" | "DH7001" | "DH7002" | "DH7003" | "DH7004" | "DH7005" | "DH7006" | "DH7008" | "DH7009" | "DH7010" | "DH7011" | "DH7012" | "DH7013" | "DH7014" | "DH7100" | "DH7101" | "DH7102" | "DH7103" | "DH7104" | "DH7105" | "DH7106" | "DH7107" | "DH7108" | "DH7109" | "DH7110" | "DH9000" | "DH9001" | "DH9003" | "DH9004" | "DH9005" | "DH9006" | "DH9010" | "DH9011" | "DH9012" | "DH9013" | "DH9014" | "DH9016" | "DH9017" | "DH9032" | "DH9034" | "DH9035" | "DH9036" | "DH9037" | "DH9040" | "DH9041" | "DH9042" | "DH9043" | "DH9044" | "solutionMustHaveUniqueName" | "solutionWithNameNotFound" | "solutionNameCannotBeChanged" | "solutionMustHaveUniqueNameArchivedClash" | "solutionCannotBeCreatedAsArchived" | "solutionArchivedCannotBeUpdated" | "solutionResourceVersionMustBeNullOr0OnCreate" | "solutionCannotBeArchivedThroughUpdate" | "solutionImportDuplicateLabel" | "solutionNameMustBeSet" | "solutionArchivedCannotBeAssigned" | "solutionArchivedCannotBePublished" | "solutionChildObjectMustBeAssignedToSameSolutionAsParentObject" | "solutionCannotBeArchivedAsAtLeastOneSolutionMustBeUnarchived" | "activeHomepageClientApplicationDoesNotExist" | "activeHomepageTemplateDoesNotExist" | "activeHomepageClientApplicationMismatch" | "activeHomepageWrongTemplateType" | "activeHomepageAlreadySetForClientApplication" | "activeHomepageNotFound" | "activeHomepageCannotDelete" | "activeHomepageUpdateIdMismatch" | "activeHomepageUpdateRequestIdMismatch" | "activeHomepageAlreadyExistsForClientApplication" | "activeHomepageDoesNotExistForClientApplication" | "activeHomepageCanOnlyBeChangedThroughTemplateUpsertWhenImport" | "noMatchingRulesForKey" | "contextMappingUuidMismatch" | "contextMappingInvalidUuid" | "contextMappingEntityOrClientMismatch" | "dataHubClientError" | "DH15000" | "DH15001" | "DH15002" | "DH15003" | "DH15004" | "DH17000" | "DH17001" | "invalid_job_json" | "authorized_to_reveal_masked_length" | "authorized_to_reveal_masked_should_be_null" | "authorized_to_reveal_masked_should_have_contents" | "authorized_to_reveal_masked_cannot_be_primary_key_field" | "user_group_not_authorized_to_reveal_masked_field" | "system_field_cannot_be_masked" | "field_used_in_join_condition_cannot_be_masked" | "field_used_in_txn_join_condition_cannot_be_masked" | "txn_field_used_in_txn_join_condition_cannot_be_masked" | "heterogeneous_external_join_key_field_cannot_be_masked" | "txn_field_used_in_ref_join_cannot_be_masked" | "file_is_quarantined" | "invalid_rest_api_parameter" | "invalid_rest_api_body" | "entity_type_not_found" | "condition_owner_not_found" | "template_type_not_found" | "field_value_contains_invalid_characters" | "size_constraint_violation_parameter" | "size_constraint_violation_body" | "character_constraint_violation_parameter" | "character_constraint_violation_body" | "character_constraint_violation_with_allow_list_parameter" | "character_constraint_violation_with_allow_list_body" | "time_zone_constraint_violation_parameter" | "time_zone_constraint_violation_body" | "uuid_constraint_violation_parameter" | "uuid_constraint_violation_body" | "sort_by_constraint_violation_parameter" | "sort_by_constraint_violation_body" | "locale_constraint_violation_parameter" | "locale_constraint_violation_body" | "expression_constraint_violation_parameter" | "expression_constraint_violation_body" | "entity.type.mismatch" | "empty.rules" | "missing.types" | "invalid.access.combination" | "rules.do.not.exist" | "version.mismatch" | "rules.already.exist" | "version.should.be.null" | "error.removing.rule.group" | "error.adding.group" | "invalid_control_solution_id";
|
|
4769
|
+
export type ErrorCode = "DH0100" | "DH0101" | "DH0102" | "DH0103" | "DH0120" | "DH0121" | "DH0122" | "DH0300" | "DH0301" | "DH0302" | "DH0303" | "DH0304" | "DH0305" | "DH0306" | "DH0307" | "DH0400" | "DH1062" | "DH1063" | "DH1070" | "DH1090" | "DH1200" | "DH1202" | "DH1203" | "DH1204" | "DH1205" | "DH1206" | "DH1207" | "DH1208" | "DH1210" | "DH1219" | "DH1220" | "DH1221" | "DH1300" | "DH1310" | "DH1311" | "DH1312" | "DH1313" | "differing_datatypes_when_sorting_error" | "DH1320" | "DH1321" | "DH1354" | "DH1355" | "DH1356" | "DH1357" | "could_not_apply_json_patch_to_document" | "could_not_apply_json_patch_to_link" | "json_patch_invalid_operation_required" | "json_patch_operation_not_allowed_at_path" | "DH1402" | "DH1405" | "DH1406" | "DH1408" | "DH1409" | "DH1410" | "DH1412" | "DH1413" | "DH1414" | "DH1415" | "DH1416" | "DH1418" | "DH1419" | "DH1420" | "DH1501" | "DH1502" | "DH1503" | "DH1506" | "DH1507" | "DH1508" | "DH1509" | "DH1510" | "DH1511" | "DH1512" | "DH1513" | "DH1515" | "DH1517" | "DH1518" | "DH1519" | "DH1520" | "unable_to_serialize_json" | "DH1521" | "DH1522" | "DH1523" | "DH1524" | "DH1525" | "DH1526" | "DH1528" | "DH1529" | "DH1530" | "DH1531" | "DH1532" | "DH1533" | "DH1534" | "DH1535" | "DH1536" | "DH1537" | "DH1538" | "DH1539" | "DH1540" | "DH1541" | "DH1544" | "DH1545" | "DH1560" | "DH1561" | "DH1562" | "job_already_running" | "import_config_job_already_running" | "DH1563" | "DH1564" | "DH1565" | "DH1566" | "DH2300" | "DH2301" | "DH2302" | "DH2303" | "DH2304" | "DH2305" | "DH2312" | "DH2313" | "DH2320" | "DH2321" | "DH2322" | "DH2323" | "DH2324" | "DH3000" | "DH3003" | "DH3004" | "DH3005" | "DH3006" | "DH3007" | "DH3010" | "DH3011" | "DH3012" | "DH3013" | "DH3014" | "DH3015" | "DH3016" | "DH3017" | "DH3018" | "DH3019" | "DH3020" | "DH3021" | "DH3022" | "DH3023" | "DH3024" | "DH3025" | "DH3026" | "DH3027" | "DH3029" | "DH3030" | "DH3031" | "DH3032" | "DH3033" | "DH3035" | "DH3065" | "DH3066" | "DH3067" | "DH3068" | "DH3070" | "DH3071" | "DH3072" | "DH3073" | "DH3076" | "DH3077" | "DH3078" | "DH3079" | "data_store_credential_create_op_failed" | "data_store_credential_read_op_failed" | "data_store_credential_update_op_failed" | "data_store_credential_delete_op_failed" | "data_store_credential_delete_op_unauthorized" | "data_store_internal_property_not_found" | "data_store_internal_resolved_property_not_found" | "DH3080" | "DH3081" | "DH3082" | "DH3083" | "DH3084" | "DH3085" | "DH3086" | "DH3087" | "DH3088" | "DH3089" | "DH3090" | "DH3100" | "DH3101" | "DH3102" | "DH3103" | "DH3105" | "DH3106" | "DH3107" | "DH3108" | "DH3109" | "DH3110" | "DH3112" | "DH3113" | "DH3114" | "DH3115" | "DH3116" | "DH3118" | "DH3119" | "DH3120" | "DH3122" | "DH3123" | "DH3124" | "DH3125" | "DH3126" | "DH3127" | "DH3129" | "DH3130" | "DH3132" | "DH3133" | "DH3135" | "DH3137" | "DH3138" | "DH3139" | "DH3140" | "DH3141" | "DH3142" | "DH3145" | "DH3146" | "DH3147" | "DH3148" | "DH3150" | "DH3151" | "DH3152" | "DH3153" | "DH3154" | "DH3155" | "DH3156" | "DH3157" | "DH3158" | "missing_primary_key_field_for_transaction" | "DH3160" | "DH3161" | "DH3162" | "DH3163" | "DH3164" | "DH3165" | "DH3166" | "DH3167" | "DH3168" | "DH3169" | "DH3170" | "DH3171" | "DH3172" | "DH3175" | "DH3176" | "DH3177" | "DH3178" | "DH3179" | "DH3180" | "DH3181" | "DH3182" | "DH3183" | "DH3184" | "DH3185" | "DH3186" | "DH3187" | "DH3188" | "DH3189" | "DH3190" | "DH3191" | "DH3192" | "DH3193" | "DH3194" | "DH3195" | "DH3196" | "DH3197" | "DH3198" | "DH3199" | "DH3200" | "DH3201" | "DH3202" | "DH3203" | "DH3205" | "DH3206" | "DH3207" | "DH3208" | "DH3209" | "DH3210" | "DH3211" | "DH3212" | "DH3213" | "DH3214" | "DH3215" | "DH3216" | "DH3217" | "DH3218" | "DH3219" | "DH3220" | "DH3221" | "DH3222" | "DH3223" | "DH3224" | "DH3225" | "DH3226" | "DH3227" | "DH3228" | "DH3229" | "DH3230" | "DH3231" | "DH3232" | "DH3238" | "DH3240" | "DH3261" | "DH3264" | "DH3266" | "DH3267" | "DH3268" | "DH3269" | "DH3272" | "DH3273" | "DH3274" | "DH3275" | "DH3276" | "DH3278" | "DH3279" | "DH3280" | "DH3281" | "DH3282" | "DH3283" | "DH3284" | "DH3285" | "DH3286" | "DH3287" | "DH3288" | "DH3289" | "DH3290" | "DH3291" | "DH3294" | "DH3295" | "DH3296" | "DH3298" | "DH3299" | "DH3300" | "DH3302" | "DH3303" | "DH3304" | "incompatibleColumnDataTypeForConstrainedExternalField" | "DH3310" | "DH3311" | "DH3312" | "DH3313" | "DH3320" | "DH3321" | "DH3324" | "DH3330" | "DH3338" | "DH3339" | "DH3340" | "DH3341" | "DH3342" | "DH3343" | "DH3344" | "DH3345" | "DH3346" | "DH3347" | "DH3348" | "DH3349" | "DH3351" | "DH3352" | "DH3353" | "DH3354" | "DH3355" | "DH3356" | "DH3357" | "DH3358" | "DH3359" | "DH3360" | "DH3361" | "DH3362" | "DH3363" | "DH3364" | "DH3365" | "DH3380" | "DH3381" | "DH3382" | "DH3400" | "DH3401" | "DH3402" | "DH3404" | "DH3405" | "DH3414" | "DH3419" | "DH3420" | "DH3422" | "DH3424" | "DH3425" | "DH3426" | "DH3427" | "DH3428" | "DH3429" | "DH3430" | "DH3431" | "DH3432" | "DH3433" | "DH3440" | "DH3441" | "DH3442" | "DH3443" | "DH3444" | "DH3445" | "DH3446" | "DH3447" | "DH3448" | "DH3450" | "DH3451" | "DH3452" | "DH3453" | "DH3454" | "DH3455" | "DH3456" | "DH3466" | "DH3470" | "DH3471" | "DH3472" | "DH3473" | "DH3474" | "DH3475" | "DH3476" | "DH3477" | "DH3478" | "DH3479" | "DH3480" | "DH3481" | "DH3482" | "DH3483" | "DH3484" | "DH3486" | "DH3487" | "DH3488" | "DH3489" | "DH3490" | "DH3491" | "DH3492" | "DH3493" | "DH3494" | "DH3495" | "DH3497" | "DH3498" | "DH3500" | "DH3501" | "DH3502" | "DH3503" | "DH3504" | "DH3505" | "DH3506" | "DH3507" | "DH3508" | "DH3509" | "DH3510" | "publishCodeCannotBeModifiedForContextMapping" | "invalid_client_application" | "DH3511" | "DH3512" | "DH3513" | "DH3514" | "DH3515" | "DH3516" | "DH3517" | "userGroupMembershipOperatorCanOnlyBeUsedForUserGroupChooserFields" | "userGroupMembershipOperatorMustReferenceFieldOrValueButNotBoth" | "DH3520" | "DH3600" | "DH3601" | "DH3602" | "DH3620" | "DH3621" | "DH3650" | "DH3651" | "DH3652" | "DH3653" | "DH3654" | "DH3655" | "importingUnrecognizedControlCategory" | "DH3700" | "DH3701" | "DH3702" | "DH3703" | "DH3704" | "DH3705" | "DH3706" | "DH3708" | "DH3709" | "DH3710" | "DH3711" | "DH3712" | "DH3713" | "DH3714" | "DH3715" | "DH3716" | "DH3717" | "DH3718" | "DH3719" | "DH3720" | "DH3721" | "DH3723" | "DH3724" | "DH3725" | "DH3726" | "DH3727" | "DH3728" | "DH3729" | "DH3730" | "DH3731" | "DH3732" | "DH3733" | "DH3734" | "DH3735" | "DH3736" | "DH3737" | "DH3738" | "DH3739" | "DH3740" | "DH3741" | "DH3742" | "DH3743" | "DH3744" | "DH4100" | "DH4101" | "DH4102" | "DH4103" | "DH4114" | "DH4116" | "DH4120" | "DH4129" | "DH4130" | "DH4131" | "DH4132" | "DH4133" | "DH4134" | "DH4135" | "DH4136" | "DH4137" | "DH4138" | "DH4139" | "DH4140" | "DH4141" | "DH4142" | "DH4143" | "DH4144" | "DH4145" | "DH4150" | "DH4151" | "DH4152" | "DH4153" | "DH4154" | "DH4155" | "DH4156" | "DH4157" | "DH4158" | "DH4159" | "DH4160" | "DH4162" | "DH4163" | "column_not_found_for_heterogeneous_link_field" | "DH4167" | "DH4168" | "rel_child_must_ref_parent_by_pk" | "DH4170" | "DH4173" | "DH4174" | "DH4175" | "DH4179" | "DH4180" | "DH4181" | "DH4182" | "DH4183" | "DH4184" | "DH4185" | "DH4186" | "DH4187" | "DH4188" | "DH4189" | "DH4190" | "DH4191" | "DH4192" | "DH4193" | "DH4194" | "DH4200" | "DH4201" | "DH4202" | "DH4203" | "DH4207" | "DH4208" | "DH4211" | "DH4220" | "DH4226" | "DH4227" | "DH4228" | "DH4229" | "DH4302" | "DH4332" | "DH4304" | "DH4305" | "DH4310" | "DH4331" | "DH4316" | "DH4317" | "DH4319" | "DH4320" | "DH4321" | "DH4322" | "DH4328" | "DH4330" | "DH4338" | "DH4343" | "DH4346" | "DH4347" | "DH4350" | "DH4351" | "DH4400" | "DH4401" | "DH4402" | "DH4403" | "DH4404" | "DH5100" | "DH5101" | "DH5102" | "DH5103" | "DH5104" | "DH5105" | "DH5107" | "DH5108" | "DH5109" | "DH5111" | "DH5112" | "DH5114" | "DH5115" | "DH5116" | "DH5118" | "DH5119" | "DH5120" | "DH5121" | "write_only_at_create_for_relationship_requires_read_only" | "DH5122" | "DH5123" | "DH5125" | "DH5126" | "DH5127" | "DH5128" | "DH5129" | "DH5130" | "DH5131" | "DH5133" | "DH5134" | "DH5135" | "DH5200" | "DH5201" | "DH5202" | "DH5203" | "DH5204" | "DH5205" | "DH5206" | "DH5207" | "DH5210" | "DH5211" | "DH5212" | "DH5213" | "DH5500" | "DH5501" | "DH5502" | "DH5503" | "DH5504" | "DH5505" | "DH5506" | "DH5507" | "import_database_error" | "import_database_error_for_type" | "export_failed" | "DH5600" | "DH5601" | "DH5602" | "DH5603" | "DH6099" | "DH6100" | "DH6101" | "DH6102" | "DH6103" | "DH6104" | "DH6105" | "stored_objects_with_names_not_found" | "DH6106" | "DH6107" | "DH6108" | "DH6109" | "entity_does_not_have_relationship" | "DH6110" | "DH6112" | "DH6113" | "DH6114" | "DH6116" | "DH6118" | "DH6119" | "DH6120" | "icon_svg_invalid" | "icon_invalid_image_type" | "DH6122" | "DH6123" | "DH6124" | "DH6125" | "DH6126" | "DH6127" | "DH6128" | "DH6129" | "DH6131" | "DH6132" | "DH6133" | "DH6134" | "DH6135" | "DH6136" | "DH6137" | "DH6138" | "DH6139" | "DH6140" | "DH6141" | "DH6142" | "DH6143" | "DH6144" | "DH6145" | "DH6146" | "DH6147" | "DH6148" | "DH6149" | "DH6150" | "DH6151" | "DH6152" | "DH6153" | "DH6154" | "DH6155" | "DH6156" | "DH6157" | "DH6158" | "DH6159" | "DH6160" | "DH6161" | "DH6162" | "DH6163" | "DH6164" | "DH6165" | "DH6166" | "DH6167" | "DH6168" | "DH6169" | "DH6170" | "DH6171" | "DH6172" | "DH6173" | "DH6174" | "DH6175" | "DH6176" | "DH6177" | "DH6178" | "DH6179" | "DH6180" | "DH6181" | "DH6182" | "DH6183" | "DH6184" | "DH6185" | "DH6186" | "DH6187" | "DH6188" | "DH6189" | "DH6191" | "DH6198" | "DH6199" | "DH6200" | "DH6201" | "DH6202" | "DH6203" | "DH6205" | "DH6206" | "DH6207" | "DH6208" | "DH6209" | "DH6210" | "DH6211" | "DH6212" | "DH6213" | "DH6214" | "DH6215" | "DH6216" | "DH6217" | "DH6218" | "DH6219" | "DH6220" | "DH6221" | "DH6222" | "DH6223" | "media_type_mismatch" | "DH6224" | "DH6225" | "DH6226" | "tuning_global_parameters_must_be_supplied" | "tuning_parameters_property_cannot_be_empty" | "tuning_object_type_and_name_must_match_when_global_type" | "tuning_maximum_parameters_exceeded" | "tuning_no_parameters_supplied" | "value_must_be_supplied_for_tuning_parameter" | "invalid_tuning_parameter_name_supplied" | "tuning_parameter_values_must_be_greater_than_zero" | "tuning_parameter_values_must_not_exceed_max_int_value" | "tuning_parameter_cannot_have_decimal_value" | "tuning_non_global_values_cannot_have_default_values" | "global_default_values_cannot_be_updated" | "DH6300" | "DH6301" | "DH6302" | "DH6303" | "DH6304" | "DH6310" | "DH6311" | "condition_id_required" | "DH6350" | "DH6351" | "DH6352" | "DH6353" | "DH6354" | "DH6356" | "DH6357" | "DH6358" | "DH6360" | "DH6361" | "DH6362" | "DH6363" | "DH6364" | "DH6365" | "DH6366" | "DH6380" | "DH6381" | "DH6382" | "DH6383" | "DH6900" | "DH6901" | "DH6902" | "DH6903" | "DH6904" | "DH6905" | "DH6907" | "DH6910" | "DH6911" | "DH6912" | "DH6913" | "DH6914" | "DH6915" | "DH6916" | "DH6917" | "DH6918" | "not_a_valid_entity_date_field_w_id" | "not_a_valid_entity_timestamp_w_id" | "not_a_valid_entity_date_field_without_id" | "not_a_valid_entity_timestamp_without_id" | "not_a_valid_relationship_entity_date_field_w_id" | "not_a_valid_relationship_entity_timestamp_w_id" | "not_a_valid_relationship_entity_date_field_without_id" | "not_a_valid_relationship_entity_timestamp_without_id" | "DH6919" | "DH6920" | "DH6921" | "DH6922" | "DH6923" | "DH6998" | "DH6999" | "DH7000" | "DH7001" | "DH7002" | "DH7003" | "DH7004" | "DH7005" | "DH7006" | "DH7008" | "DH7009" | "DH7010" | "DH7011" | "DH7012" | "DH7013" | "DH7014" | "DH7100" | "DH7101" | "DH7102" | "DH7103" | "DH7104" | "DH7105" | "DH7106" | "DH7107" | "DH7108" | "DH7109" | "DH7110" | "DH9000" | "DH9001" | "DH9003" | "DH9004" | "DH9005" | "DH9006" | "DH9010" | "DH9011" | "DH9012" | "DH9013" | "DH9014" | "DH9016" | "DH9017" | "DH9032" | "DH9034" | "DH9035" | "DH9036" | "DH9037" | "DH9040" | "DH9041" | "DH9042" | "DH9043" | "DH9044" | "solutionMustHaveUniqueName" | "solutionWithNameNotFound" | "solutionNameCannotBeChanged" | "solutionMustHaveUniqueNameArchivedClash" | "solutionCannotBeCreatedAsArchived" | "solutionArchivedCannotBeUpdated" | "solutionResourceVersionMustBeNullOr0OnCreate" | "solutionCannotBeArchivedThroughUpdate" | "solutionImportDuplicateLabel" | "solutionNameMustBeSet" | "solutionArchivedCannotBeAssigned" | "solutionArchivedCannotBePublished" | "solutionChildObjectMustBeAssignedToSameSolutionAsParentObject" | "solutionCannotBeArchivedAsAtLeastOneSolutionMustBeUnarchived" | "activeHomepageClientApplicationDoesNotExist" | "activeHomepageTemplateDoesNotExist" | "activeHomepageClientApplicationMismatch" | "activeHomepageWrongTemplateType" | "activeHomepageAlreadySetForClientApplication" | "activeHomepageNotFound" | "activeHomepageCannotDelete" | "activeHomepageUpdateIdMismatch" | "activeHomepageUpdateRequestIdMismatch" | "activeHomepageAlreadyExistsWithTemplateUUID" | "activeHomepageAlreadyExistsForClientApplication" | "activeHomepageDoesNotExistForClientApplication" | "activeHomepageCanOnlyBeChangedThroughTemplateUpsertWhenImport" | "noMatchingRulesForKey" | "contextMappingUuidMismatch" | "contextMappingInvalidUuid" | "contextMappingEntityOrClientMismatch" | "dataHubClientError" | "DH15000" | "DH15001" | "DH15002" | "DH15003" | "DH15004" | "DH17000" | "DH17001" | "invalid_job_json" | "authorized_to_reveal_masked_length" | "authorized_to_reveal_masked_should_be_null" | "authorized_to_reveal_masked_should_have_contents" | "authorized_to_reveal_masked_cannot_be_primary_key_field" | "user_group_not_authorized_to_reveal_masked_field" | "system_field_cannot_be_masked" | "field_used_in_join_condition_cannot_be_masked" | "field_used_in_txn_join_condition_cannot_be_masked" | "txn_field_used_in_txn_join_condition_cannot_be_masked" | "heterogeneous_external_join_key_field_cannot_be_masked" | "txn_field_used_in_ref_join_cannot_be_masked" | "file_is_quarantined" | "invalid_rest_api_parameter" | "invalid_rest_api_body" | "entity_type_not_found" | "condition_owner_not_found" | "template_type_not_found" | "field_value_contains_invalid_characters" | "size_constraint_violation_parameter" | "size_constraint_violation_body" | "character_constraint_violation_parameter" | "character_constraint_violation_body" | "character_constraint_violation_with_allow_list_parameter" | "character_constraint_violation_with_allow_list_body" | "time_zone_constraint_violation_parameter" | "time_zone_constraint_violation_body" | "uuid_constraint_violation_parameter" | "uuid_constraint_violation_body" | "sort_by_constraint_violation_parameter" | "sort_by_constraint_violation_body" | "locale_constraint_violation_parameter" | "locale_constraint_violation_body" | "expression_constraint_violation_parameter" | "expression_constraint_violation_body" | "map_constraint_violation_body" | "entity.type.mismatch" | "empty.rules" | "missing.types" | "invalid.access.combination" | "rules.do.not.exist" | "version.mismatch" | "rules.already.exist" | "version.should.be.null" | "error.removing.rule.group" | "error.adding.group" | "invalid_control_solution_id";
|
|
4725
4770
|
|
|
4726
4771
|
export type DataStoreType = "RELATIONAL";
|
|
4727
4772
|
|
|
@@ -4743,6 +4788,8 @@ export type Id = "NONE" | "CLASS" | "MINIMAL_CLASS" | "NAME" | "DEDUCTION" | "CU
|
|
|
4743
4788
|
|
|
4744
4789
|
export type DataContentUnion = DocumentIdentifier | Document | DocumentLink | DataResolvedEntity;
|
|
4745
4790
|
|
|
4791
|
+
export type ClientFieldPropertiesUnion = NumberFieldProperties;
|
|
4792
|
+
|
|
4746
4793
|
export type AbstractFileOperationUnion = CreateFileOperation | UpdateFileOperation | DeleteFileOperation;
|
|
4747
4794
|
|
|
4748
4795
|
export type JobFilterUnion = IncrementalLoadJobFilter;
|
package/svi-datahub/package.json
CHANGED
package/svi-sand/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-
|
|
3
|
+
// Generated using typescript-generator version 2.15.527 on 2025-09-03 08:53:35.
|
|
4
4
|
|
|
5
5
|
export interface ApplicationSetting extends ResponsesErrorResponse {
|
|
6
6
|
name?: string;
|
|
@@ -44,19 +44,6 @@ export interface Analyzer {
|
|
|
44
44
|
links?: Link[];
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
export interface AnalyzerConfiguration extends Serializable {
|
|
48
|
-
search?: string;
|
|
49
|
-
facet?: string;
|
|
50
|
-
sort?: string;
|
|
51
|
-
languageTags?: string[];
|
|
52
|
-
icuFilter?: string;
|
|
53
|
-
minShingleSize?: number;
|
|
54
|
-
maxShingleSize?: number;
|
|
55
|
-
phoneticEncoder?: string;
|
|
56
|
-
synonymsPath?: string;
|
|
57
|
-
synonyms?: string[];
|
|
58
|
-
}
|
|
59
|
-
|
|
60
47
|
export interface Synonym {
|
|
61
48
|
terms?: string;
|
|
62
49
|
}
|
|
@@ -589,6 +576,15 @@ export interface AnalyticsSankeyRepresentation extends AnalyticsExploreRepresent
|
|
|
589
576
|
maxLinks?: number;
|
|
590
577
|
}
|
|
591
578
|
|
|
579
|
+
export interface AssistedSearchRepresentation extends AssistedSearchVisualizationTypeRepresentation {
|
|
580
|
+
visualizationType?: AssistedSearchVisualizationType;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
export interface AssistedSearchVisualizationTypeRepresentation {
|
|
584
|
+
types?: string[];
|
|
585
|
+
query?: string;
|
|
586
|
+
}
|
|
587
|
+
|
|
592
588
|
export interface GraphRepresentation {
|
|
593
589
|
vertexTypes?: string[];
|
|
594
590
|
edgeTypes?: string[];
|
|
@@ -709,6 +705,17 @@ export interface AnalyticsSankeyResponse {
|
|
|
709
705
|
links?: Link[];
|
|
710
706
|
}
|
|
711
707
|
|
|
708
|
+
export interface AssistedSearchResponse extends AssistedSearchVisualizationTypeResponse {
|
|
709
|
+
objectSearchRequest?: SearchRepresentation;
|
|
710
|
+
relationshipSearchRequest?: PathsRepresentation;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
export interface AssistedSearchVisualizationTypeResponse extends ResponsesErrorResponse {
|
|
714
|
+
types?: string[];
|
|
715
|
+
query?: string;
|
|
716
|
+
visualizationType?: AssistedSearchVisualizationType;
|
|
717
|
+
}
|
|
718
|
+
|
|
712
719
|
export interface ResponsesErrorResponse {
|
|
713
720
|
errors?: RepresentationsErrorResponse[];
|
|
714
721
|
}
|
|
@@ -1092,6 +1099,8 @@ export type OrderDirection = "ascending" | "descending";
|
|
|
1092
1099
|
|
|
1093
1100
|
export type QueryMode = "standard" | "phonetic" | "synonym";
|
|
1094
1101
|
|
|
1102
|
+
export type AssistedSearchVisualizationType = "summary" | "table" | "map" | "relationship";
|
|
1103
|
+
|
|
1095
1104
|
export type FacetMode = "filter" | "selection";
|
|
1096
1105
|
|
|
1097
1106
|
export type FacetConfigUnion = TermsFacetConfig | NumericalRangeFacetConfig | DateRangeFacetConfig | TypeFacetConfig;
|
package/svi-sand/package.json
CHANGED