@finos/legend-application-studio 23.0.1 → 23.0.3
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/lib/components/editor/edit-panel/connection-editor/RelationalDatabaseConnectionEditor.d.ts.map +1 -1
- package/lib/components/editor/edit-panel/connection-editor/RelationalDatabaseConnectionEditor.js +20 -2
- package/lib/components/editor/edit-panel/connection-editor/RelationalDatabaseConnectionEditor.js.map +1 -1
- package/lib/components/editor/edit-panel/uml-editor/ClassEditor.js +1 -1
- package/lib/components/editor/edit-panel/uml-editor/ClassEditor.js.map +1 -1
- package/lib/index.css +2 -2
- package/lib/index.css.map +1 -1
- package/lib/package.json +1 -1
- package/lib/stores/editor/EditorGraphState.d.ts.map +1 -1
- package/lib/stores/editor/EditorGraphState.js +4 -1
- package/lib/stores/editor/EditorGraphState.js.map +1 -1
- package/lib/stores/editor/NewElementState.js +1 -1
- package/lib/stores/editor/editor-state/GrammarTextEditorState.d.ts.map +1 -1
- package/lib/stores/editor/editor-state/GrammarTextEditorState.js +4 -1
- package/lib/stores/editor/editor-state/GrammarTextEditorState.js.map +1 -1
- package/lib/stores/editor/editor-state/element-editor-state/connection/ConnectionEditorState.d.ts +4 -2
- package/lib/stores/editor/editor-state/element-editor-state/connection/ConnectionEditorState.d.ts.map +1 -1
- package/lib/stores/editor/editor-state/element-editor-state/connection/ConnectionEditorState.js +17 -1
- package/lib/stores/editor/editor-state/element-editor-state/connection/ConnectionEditorState.js.map +1 -1
- package/lib/stores/editor/shared/DnDUtils.d.ts +1 -0
- package/lib/stores/editor/shared/DnDUtils.d.ts.map +1 -1
- package/lib/stores/editor/shared/DnDUtils.js +1 -0
- package/lib/stores/editor/shared/DnDUtils.js.map +1 -1
- package/lib/stores/editor/shared/ModelClassifierUtils.d.ts +1 -0
- package/lib/stores/editor/shared/ModelClassifierUtils.d.ts.map +1 -1
- package/lib/stores/editor/shared/ModelClassifierUtils.js +1 -0
- package/lib/stores/editor/shared/ModelClassifierUtils.js.map +1 -1
- package/lib/stores/editor/shared/modifier/STO_Relational_GraphModifierHelper.d.ts +11 -1
- package/lib/stores/editor/shared/modifier/STO_Relational_GraphModifierHelper.d.ts.map +1 -1
- package/lib/stores/editor/shared/modifier/STO_Relational_GraphModifierHelper.js +30 -0
- package/lib/stores/editor/shared/modifier/STO_Relational_GraphModifierHelper.js.map +1 -1
- package/package.json +9 -9
- package/src/components/editor/edit-panel/connection-editor/RelationalDatabaseConnectionEditor.tsx +155 -0
- package/src/components/editor/edit-panel/uml-editor/ClassEditor.tsx +1 -1
- package/src/stores/editor/EditorGraphState.ts +3 -0
- package/src/stores/editor/NewElementState.ts +1 -1
- package/src/stores/editor/editor-state/GrammarTextEditorState.ts +3 -0
- package/src/stores/editor/editor-state/element-editor-state/connection/ConnectionEditorState.ts +24 -0
- package/src/stores/editor/shared/DnDUtils.ts +1 -0
- package/src/stores/editor/shared/ModelClassifierUtils.ts +1 -0
- package/src/stores/editor/shared/modifier/STO_Relational_GraphModifierHelper.ts +66 -0
|
@@ -29,6 +29,7 @@ import {
|
|
|
29
29
|
type OAuthAuthenticationStrategy,
|
|
30
30
|
type PropertyMapping,
|
|
31
31
|
type RedshiftDatasourceSpecification,
|
|
32
|
+
type TrinoDatasourceSpecification,
|
|
32
33
|
type RelationalDatabaseConnection,
|
|
33
34
|
type RelationalInputData,
|
|
34
35
|
type RelationalPropertyMapping,
|
|
@@ -39,6 +40,7 @@ import {
|
|
|
39
40
|
type UsernamePasswordAuthenticationStrategy,
|
|
40
41
|
type GCPWorkloadIdentityFederationAuthenticationStrategy,
|
|
41
42
|
type MiddleTierUsernamePasswordAuthenticationStrategy,
|
|
43
|
+
type TrinoDelegatedKerberosAuthenticationStrategy,
|
|
42
44
|
type ObserverContext,
|
|
43
45
|
type EnumerationMappingReference,
|
|
44
46
|
type TableAlias,
|
|
@@ -153,6 +155,20 @@ export const usernamePasswordAuthenticationStrategy_setPasswordVaultReference =
|
|
|
153
155
|
v.passwordVaultReference = val;
|
|
154
156
|
});
|
|
155
157
|
|
|
158
|
+
export const trinoDelegatedKerberosAuthenticationStrategy_setKerberosRemoteServiceName =
|
|
159
|
+
action(
|
|
160
|
+
(v: TrinoDelegatedKerberosAuthenticationStrategy, val: string): void => {
|
|
161
|
+
v.kerberosRemoteServiceName = val;
|
|
162
|
+
},
|
|
163
|
+
);
|
|
164
|
+
|
|
165
|
+
export const trinoDelegatedKerberosAuthenticationStrategy_setKerberosUseCanonicalHostname =
|
|
166
|
+
action(
|
|
167
|
+
(v: TrinoDelegatedKerberosAuthenticationStrategy, val: boolean): void => {
|
|
168
|
+
v.kerberosUseCanonicalHostname = val;
|
|
169
|
+
},
|
|
170
|
+
);
|
|
171
|
+
|
|
156
172
|
export const gcpWorkloadIdentityFederationAuthenticationStrategy_setServiceAccountEmail =
|
|
157
173
|
action(
|
|
158
174
|
(
|
|
@@ -404,6 +420,56 @@ export const spannerDatasourceSpecification_setProxyPort = action(
|
|
|
404
420
|
},
|
|
405
421
|
);
|
|
406
422
|
|
|
423
|
+
export const trinoDatasourceSpecification_setHost = action(
|
|
424
|
+
(spec: TrinoDatasourceSpecification, val: string): void => {
|
|
425
|
+
spec.host = val;
|
|
426
|
+
},
|
|
427
|
+
);
|
|
428
|
+
|
|
429
|
+
export const trinoDatasourceSpecification_setPort = action(
|
|
430
|
+
(spec: TrinoDatasourceSpecification, val: number): void => {
|
|
431
|
+
spec.port = val;
|
|
432
|
+
},
|
|
433
|
+
);
|
|
434
|
+
|
|
435
|
+
export const trinoDatasourceSpecification_setCatalog = action(
|
|
436
|
+
(spec: TrinoDatasourceSpecification, val: string | undefined): void => {
|
|
437
|
+
spec.catalog = val;
|
|
438
|
+
},
|
|
439
|
+
);
|
|
440
|
+
|
|
441
|
+
export const trinoDatasourceSpecification_setSchema = action(
|
|
442
|
+
(spec: TrinoDatasourceSpecification, val: string | undefined): void => {
|
|
443
|
+
spec.schema = val;
|
|
444
|
+
},
|
|
445
|
+
);
|
|
446
|
+
|
|
447
|
+
export const trinoDatasourceSpecification_setClientTags = action(
|
|
448
|
+
(spec: TrinoDatasourceSpecification, val: string | undefined): void => {
|
|
449
|
+
spec.clientTags = val;
|
|
450
|
+
},
|
|
451
|
+
);
|
|
452
|
+
|
|
453
|
+
export const trinoDatasourceSpecification_setSsl = action(
|
|
454
|
+
(spec: TrinoDatasourceSpecification, val: boolean): void => {
|
|
455
|
+
spec.sslSpecification.ssl = val;
|
|
456
|
+
},
|
|
457
|
+
);
|
|
458
|
+
|
|
459
|
+
export const trinoDatasourceSpecification_setTrustStorePathVaultReference =
|
|
460
|
+
action(
|
|
461
|
+
(spec: TrinoDatasourceSpecification, val: string | undefined): void => {
|
|
462
|
+
spec.sslSpecification.trustStorePathVaultReference = val;
|
|
463
|
+
},
|
|
464
|
+
);
|
|
465
|
+
|
|
466
|
+
export const trinoDatasourceSpecification_setTrustStorePasswordVaultReference =
|
|
467
|
+
action(
|
|
468
|
+
(spec: TrinoDatasourceSpecification, val: string | undefined): void => {
|
|
469
|
+
spec.sslSpecification.trustStorePasswordVaultReference = val;
|
|
470
|
+
},
|
|
471
|
+
);
|
|
472
|
+
|
|
407
473
|
export const relationalInputData_setData = action(
|
|
408
474
|
(input: RelationalInputData, value: string): void => {
|
|
409
475
|
input.data = value;
|