@salesforce/lds-adapters-platform-external-connectivity 1.371.0 → 1.372.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/dist/es/es2018/platform-external-connectivity.js +157 -43
- package/dist/es/es2018/types/src/generated/types/ExternalConnectivityConnectionDetailsRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentation.d.ts +33 -0
- package/dist/es/es2018/types/src/generated/types/ExternalConnectivityConnectionReferencedFlowsDefinitionRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/ExternalConnectivityConnectionReferencedFlowsRepresentation.d.ts +6 -6
- package/dist/es/es2018/types/src/generated/types/ExternalConnectivityConnectionRepresentation.d.ts +7 -1
- package/package.json +3 -3
- package/sfdc/index.js +164 -50
- package/src/raml/api.raml +30 -3
- package/src/raml/luvio.raml +3 -0
|
@@ -93,7 +93,7 @@ function createLink(ref) {
|
|
|
93
93
|
};
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
-
function validate$
|
|
96
|
+
function validate$n(obj, path = 'ConnectorIconMetadataRepresentation') {
|
|
97
97
|
const v_error = (() => {
|
|
98
98
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
99
99
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -119,7 +119,7 @@ function validate$m(obj, path = 'ConnectorIconMetadataRepresentation') {
|
|
|
119
119
|
|
|
120
120
|
const TTL$c = 500;
|
|
121
121
|
const VERSION$d = "3e461ecbd697039c1881e691a2ee7bef";
|
|
122
|
-
function validate$
|
|
122
|
+
function validate$m(obj, path = 'ExternalConnectivityConnectorRepresentation') {
|
|
123
123
|
const v_error = (() => {
|
|
124
124
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
125
125
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -147,7 +147,7 @@ function validate$l(obj, path = 'ExternalConnectivityConnectorRepresentation') {
|
|
|
147
147
|
for (let i = 0; i < obj_iconMetadata.length; i++) {
|
|
148
148
|
const obj_iconMetadata_item = obj_iconMetadata[i];
|
|
149
149
|
const path_iconMetadata_item = path_iconMetadata + '[' + i + ']';
|
|
150
|
-
const referencepath_iconMetadata_itemValidationError = validate$
|
|
150
|
+
const referencepath_iconMetadata_itemValidationError = validate$n(obj_iconMetadata_item, path_iconMetadata_item);
|
|
151
151
|
if (referencepath_iconMetadata_itemValidationError !== null) {
|
|
152
152
|
let message = 'Object doesn\'t match ConnectorIconMetadataRepresentation (at "' + path_iconMetadata_item + '")\n';
|
|
153
153
|
message += referencepath_iconMetadata_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -207,7 +207,7 @@ function equals$d(existing, incoming) {
|
|
|
207
207
|
}
|
|
208
208
|
const ingest$d = function ExternalConnectivityConnectorRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
209
209
|
if (process.env.NODE_ENV !== 'production') {
|
|
210
|
-
const validateError = validate$
|
|
210
|
+
const validateError = validate$m(input);
|
|
211
211
|
if (validateError !== null) {
|
|
212
212
|
throw validateError;
|
|
213
213
|
}
|
|
@@ -227,8 +227,8 @@ function getTypeCacheKeys$d(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
227
227
|
});
|
|
228
228
|
}
|
|
229
229
|
|
|
230
|
-
const VERSION$c = "
|
|
231
|
-
function validate$
|
|
230
|
+
const VERSION$c = "f2e2de246b96fc1a5010041fc74f4401";
|
|
231
|
+
function validate$l(obj, path = 'ExternalConnectivityConnectionRepresentation') {
|
|
232
232
|
const v_error = (() => {
|
|
233
233
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
234
234
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -266,6 +266,11 @@ function validate$k(obj, path = 'ExternalConnectivityConnectionRepresentation')
|
|
|
266
266
|
if (typeof obj_createdBy !== 'string') {
|
|
267
267
|
return new TypeError('Expected "string" but received "' + typeof obj_createdBy + '" (at "' + path_createdBy + '")');
|
|
268
268
|
}
|
|
269
|
+
const obj_createdById = obj.createdById;
|
|
270
|
+
const path_createdById = path + '.createdById';
|
|
271
|
+
if (typeof obj_createdById !== 'string') {
|
|
272
|
+
return new TypeError('Expected "string" but received "' + typeof obj_createdById + '" (at "' + path_createdById + '")');
|
|
273
|
+
}
|
|
269
274
|
const obj_createdDate = obj.createdDate;
|
|
270
275
|
const path_createdDate = path + '.createdDate';
|
|
271
276
|
if (typeof obj_createdDate !== 'string') {
|
|
@@ -317,6 +322,11 @@ function validate$k(obj, path = 'ExternalConnectivityConnectionRepresentation')
|
|
|
317
322
|
if (typeof obj_lastModifiedBy !== 'string') {
|
|
318
323
|
return new TypeError('Expected "string" but received "' + typeof obj_lastModifiedBy + '" (at "' + path_lastModifiedBy + '")');
|
|
319
324
|
}
|
|
325
|
+
const obj_lastModifiedById = obj.lastModifiedById;
|
|
326
|
+
const path_lastModifiedById = path + '.lastModifiedById';
|
|
327
|
+
if (typeof obj_lastModifiedById !== 'string') {
|
|
328
|
+
return new TypeError('Expected "string" but received "' + typeof obj_lastModifiedById + '" (at "' + path_lastModifiedById + '")');
|
|
329
|
+
}
|
|
320
330
|
const obj_lastModifiedDate = obj.lastModifiedDate;
|
|
321
331
|
const path_lastModifiedDate = path + '.lastModifiedDate';
|
|
322
332
|
if (typeof obj_lastModifiedDate !== 'string') {
|
|
@@ -387,6 +397,10 @@ const select$o = function ExternalConnectivityConnectionRepresentationSelect() {
|
|
|
387
397
|
name: 'createdBy',
|
|
388
398
|
kind: 'Scalar'
|
|
389
399
|
},
|
|
400
|
+
{
|
|
401
|
+
name: 'createdById',
|
|
402
|
+
kind: 'Scalar'
|
|
403
|
+
},
|
|
390
404
|
{
|
|
391
405
|
name: 'createdDate',
|
|
392
406
|
kind: 'Scalar'
|
|
@@ -412,6 +426,10 @@ const select$o = function ExternalConnectivityConnectionRepresentationSelect() {
|
|
|
412
426
|
name: 'lastModifiedBy',
|
|
413
427
|
kind: 'Scalar'
|
|
414
428
|
},
|
|
429
|
+
{
|
|
430
|
+
name: 'lastModifiedById',
|
|
431
|
+
kind: 'Scalar'
|
|
432
|
+
},
|
|
415
433
|
{
|
|
416
434
|
name: 'lastModifiedDate',
|
|
417
435
|
kind: 'Scalar'
|
|
@@ -438,6 +456,11 @@ function equals$c(existing, incoming) {
|
|
|
438
456
|
if (!(existing_createdBy === incoming_createdBy)) {
|
|
439
457
|
return false;
|
|
440
458
|
}
|
|
459
|
+
const existing_createdById = existing.createdById;
|
|
460
|
+
const incoming_createdById = incoming.createdById;
|
|
461
|
+
if (!(existing_createdById === incoming_createdById)) {
|
|
462
|
+
return false;
|
|
463
|
+
}
|
|
441
464
|
const existing_createdDate = existing.createdDate;
|
|
442
465
|
const incoming_createdDate = incoming.createdDate;
|
|
443
466
|
if (!(existing_createdDate === incoming_createdDate)) {
|
|
@@ -453,6 +476,11 @@ function equals$c(existing, incoming) {
|
|
|
453
476
|
if (!(existing_lastModifiedBy === incoming_lastModifiedBy)) {
|
|
454
477
|
return false;
|
|
455
478
|
}
|
|
479
|
+
const existing_lastModifiedById = existing.lastModifiedById;
|
|
480
|
+
const incoming_lastModifiedById = incoming.lastModifiedById;
|
|
481
|
+
if (!(existing_lastModifiedById === incoming_lastModifiedById)) {
|
|
482
|
+
return false;
|
|
483
|
+
}
|
|
456
484
|
const existing_lastModifiedDate = existing.lastModifiedDate;
|
|
457
485
|
const incoming_lastModifiedDate = incoming.lastModifiedDate;
|
|
458
486
|
if (!(existing_lastModifiedDate === incoming_lastModifiedDate)) {
|
|
@@ -495,7 +523,7 @@ function equals$c(existing, incoming) {
|
|
|
495
523
|
}
|
|
496
524
|
const ingest$c = function ExternalConnectivityConnectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
497
525
|
if (process.env.NODE_ENV !== 'production') {
|
|
498
|
-
const validateError = validate$
|
|
526
|
+
const validateError = validate$l(input);
|
|
499
527
|
if (validateError !== null) {
|
|
500
528
|
throw validateError;
|
|
501
529
|
}
|
|
@@ -518,7 +546,7 @@ function getTypeCacheKeys$c(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
518
546
|
|
|
519
547
|
const TTL$b = 500;
|
|
520
548
|
const VERSION$b = "b5d13b1fd1ba9a2eccd69af50a915654";
|
|
521
|
-
function validate$
|
|
549
|
+
function validate$k(obj, path = 'ExternalConnectivityConnectionListRepresentation') {
|
|
522
550
|
const v_error = (() => {
|
|
523
551
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
524
552
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -632,7 +660,7 @@ function equals$b(existing, incoming) {
|
|
|
632
660
|
}
|
|
633
661
|
const ingest$b = function ExternalConnectivityConnectionListRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
634
662
|
if (process.env.NODE_ENV !== 'production') {
|
|
635
|
-
const validateError = validate$
|
|
663
|
+
const validateError = validate$k(input);
|
|
636
664
|
if (validateError !== null) {
|
|
637
665
|
throw validateError;
|
|
638
666
|
}
|
|
@@ -810,7 +838,7 @@ const getConnectionsAdapterFactory = (luvio) => function externalConnectivity__g
|
|
|
810
838
|
buildCachedSnapshotCachePolicy$6, buildNetworkSnapshotCachePolicy$6);
|
|
811
839
|
};
|
|
812
840
|
|
|
813
|
-
function validate$
|
|
841
|
+
function validate$j(obj, path = 'AuthenticationTypeInputRepresentation') {
|
|
814
842
|
const v_error = (() => {
|
|
815
843
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
816
844
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -838,7 +866,7 @@ function validate$i(obj, path = 'AuthenticationTypeInputRepresentation') {
|
|
|
838
866
|
|
|
839
867
|
const TTL$a = 500;
|
|
840
868
|
const VERSION$a = "139e6c6cae3db78f5efabb1639252ac2";
|
|
841
|
-
function validate$
|
|
869
|
+
function validate$i(obj, path = 'ExternalConnectivityConnectionCreatedRepresentation') {
|
|
842
870
|
const v_error = (() => {
|
|
843
871
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
844
872
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -887,7 +915,7 @@ function equals$a(existing, incoming) {
|
|
|
887
915
|
}
|
|
888
916
|
const ingest$a = function ExternalConnectivityConnectionCreatedRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
889
917
|
if (process.env.NODE_ENV !== 'production') {
|
|
890
|
-
const validateError = validate$
|
|
918
|
+
const validateError = validate$i(input);
|
|
891
919
|
if (validateError !== null) {
|
|
892
920
|
throw validateError;
|
|
893
921
|
}
|
|
@@ -958,7 +986,7 @@ function typeCheckConfig$a(untrustedConfig) {
|
|
|
958
986
|
const config = {};
|
|
959
987
|
typeCheckConfig$c(untrustedConfig, config, createConnection_ConfigPropertyMetadata);
|
|
960
988
|
const untrustedConfig_authenticationTypeInput = untrustedConfig.authenticationTypeInput;
|
|
961
|
-
const referenceAuthenticationTypeInputRepresentationValidationError = validate$
|
|
989
|
+
const referenceAuthenticationTypeInputRepresentationValidationError = validate$j(untrustedConfig_authenticationTypeInput);
|
|
962
990
|
if (referenceAuthenticationTypeInputRepresentationValidationError === null) {
|
|
963
991
|
config.authenticationTypeInput = untrustedConfig_authenticationTypeInput;
|
|
964
992
|
}
|
|
@@ -1015,7 +1043,7 @@ const createConnectionAdapterFactory = (luvio) => {
|
|
|
1015
1043
|
|
|
1016
1044
|
const TTL$9 = 500;
|
|
1017
1045
|
const VERSION$9 = "2f8128d7e2e433bc604c71441fa6fc50";
|
|
1018
|
-
function validate$
|
|
1046
|
+
function validate$h(obj, path = 'ExternalConnectivityConnectionEditDeleteResultRepresentation') {
|
|
1019
1047
|
const v_error = (() => {
|
|
1020
1048
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1021
1049
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1134,7 +1162,7 @@ function equals$9(existing, incoming) {
|
|
|
1134
1162
|
}
|
|
1135
1163
|
const ingest$9 = function ExternalConnectivityConnectionEditDeleteResultRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
1136
1164
|
if (process.env.NODE_ENV !== 'production') {
|
|
1137
|
-
const validateError = validate$
|
|
1165
|
+
const validateError = validate$h(input);
|
|
1138
1166
|
if (validateError !== null) {
|
|
1139
1167
|
throw validateError;
|
|
1140
1168
|
}
|
|
@@ -1244,7 +1272,7 @@ const deleteConnectionAdapterFactory = (luvio) => {
|
|
|
1244
1272
|
};
|
|
1245
1273
|
};
|
|
1246
1274
|
|
|
1247
|
-
function validate$
|
|
1275
|
+
function validate$g(obj, path = 'AuthenticationParameterDefinitionRepresentation') {
|
|
1248
1276
|
const v_error = (() => {
|
|
1249
1277
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1250
1278
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1314,14 +1342,14 @@ function validate$f(obj, path = 'AuthenticationParameterDefinitionRepresentation
|
|
|
1314
1342
|
return v_error === undefined ? null : v_error;
|
|
1315
1343
|
}
|
|
1316
1344
|
|
|
1317
|
-
function validate$
|
|
1345
|
+
function validate$f(obj, path = 'AuthenticationParameterRepresentation') {
|
|
1318
1346
|
const v_error = (() => {
|
|
1319
1347
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1320
1348
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
1321
1349
|
}
|
|
1322
1350
|
const obj_authenticationParameterDefinition = obj.authenticationParameterDefinition;
|
|
1323
1351
|
const path_authenticationParameterDefinition = path + '.authenticationParameterDefinition';
|
|
1324
|
-
const referencepath_authenticationParameterDefinitionValidationError = validate$
|
|
1352
|
+
const referencepath_authenticationParameterDefinitionValidationError = validate$g(obj_authenticationParameterDefinition, path_authenticationParameterDefinition);
|
|
1325
1353
|
if (referencepath_authenticationParameterDefinitionValidationError !== null) {
|
|
1326
1354
|
let message = 'Object doesn\'t match AuthenticationParameterDefinitionRepresentation (at "' + path_authenticationParameterDefinition + '")\n';
|
|
1327
1355
|
message += referencepath_authenticationParameterDefinitionValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1336,7 +1364,7 @@ function validate$e(obj, path = 'AuthenticationParameterRepresentation') {
|
|
|
1336
1364
|
return v_error === undefined ? null : v_error;
|
|
1337
1365
|
}
|
|
1338
1366
|
|
|
1339
|
-
function validate$
|
|
1367
|
+
function validate$e(obj, path = 'AuthenticationTypeRepresentation') {
|
|
1340
1368
|
const v_error = (() => {
|
|
1341
1369
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1342
1370
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1349,7 +1377,7 @@ function validate$d(obj, path = 'AuthenticationTypeRepresentation') {
|
|
|
1349
1377
|
for (let i = 0; i < obj_authenticationParameters.length; i++) {
|
|
1350
1378
|
const obj_authenticationParameters_item = obj_authenticationParameters[i];
|
|
1351
1379
|
const path_authenticationParameters_item = path_authenticationParameters + '[' + i + ']';
|
|
1352
|
-
const referencepath_authenticationParameters_itemValidationError = validate$
|
|
1380
|
+
const referencepath_authenticationParameters_itemValidationError = validate$f(obj_authenticationParameters_item, path_authenticationParameters_item);
|
|
1353
1381
|
if (referencepath_authenticationParameters_itemValidationError !== null) {
|
|
1354
1382
|
let message = 'Object doesn\'t match AuthenticationParameterRepresentation (at "' + path_authenticationParameters_item + '")\n';
|
|
1355
1383
|
message += referencepath_authenticationParameters_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1366,8 +1394,8 @@ function validate$d(obj, path = 'AuthenticationTypeRepresentation') {
|
|
|
1366
1394
|
}
|
|
1367
1395
|
|
|
1368
1396
|
const TTL$8 = 500;
|
|
1369
|
-
const VERSION$8 = "
|
|
1370
|
-
function validate$
|
|
1397
|
+
const VERSION$8 = "f4779ee578433586f3d374d1dbf4cf6a";
|
|
1398
|
+
function validate$d(obj, path = 'ExternalConnectivityConnectionDetailsRepresentation') {
|
|
1371
1399
|
const v_error = (() => {
|
|
1372
1400
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1373
1401
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1402,7 +1430,7 @@ function validate$c(obj, path = 'ExternalConnectivityConnectionDetailsRepresenta
|
|
|
1402
1430
|
}
|
|
1403
1431
|
const obj_authenticationType = obj.authenticationType;
|
|
1404
1432
|
const path_authenticationType = path + '.authenticationType';
|
|
1405
|
-
const referencepath_authenticationTypeValidationError = validate$
|
|
1433
|
+
const referencepath_authenticationTypeValidationError = validate$e(obj_authenticationType, path_authenticationType);
|
|
1406
1434
|
if (referencepath_authenticationTypeValidationError !== null) {
|
|
1407
1435
|
let message = 'Object doesn\'t match AuthenticationTypeRepresentation (at "' + path_authenticationType + '")\n';
|
|
1408
1436
|
message += referencepath_authenticationTypeValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1413,6 +1441,11 @@ function validate$c(obj, path = 'ExternalConnectivityConnectionDetailsRepresenta
|
|
|
1413
1441
|
if (typeof obj_createdBy !== 'string') {
|
|
1414
1442
|
return new TypeError('Expected "string" but received "' + typeof obj_createdBy + '" (at "' + path_createdBy + '")');
|
|
1415
1443
|
}
|
|
1444
|
+
const obj_createdById = obj.createdById;
|
|
1445
|
+
const path_createdById = path + '.createdById';
|
|
1446
|
+
if (typeof obj_createdById !== 'string') {
|
|
1447
|
+
return new TypeError('Expected "string" but received "' + typeof obj_createdById + '" (at "' + path_createdById + '")');
|
|
1448
|
+
}
|
|
1416
1449
|
const obj_createdDate = obj.createdDate;
|
|
1417
1450
|
const path_createdDate = path + '.createdDate';
|
|
1418
1451
|
if (typeof obj_createdDate !== 'string') {
|
|
@@ -1456,7 +1489,7 @@ function validate$c(obj, path = 'ExternalConnectivityConnectionDetailsRepresenta
|
|
|
1456
1489
|
}
|
|
1457
1490
|
const obj_externalConnectorMetadata = obj.externalConnectorMetadata;
|
|
1458
1491
|
const path_externalConnectorMetadata = path + '.externalConnectorMetadata';
|
|
1459
|
-
const referencepath_externalConnectorMetadataValidationError = validate$
|
|
1492
|
+
const referencepath_externalConnectorMetadataValidationError = validate$m(obj_externalConnectorMetadata, path_externalConnectorMetadata);
|
|
1460
1493
|
if (referencepath_externalConnectorMetadataValidationError !== null) {
|
|
1461
1494
|
let message = 'Object doesn\'t match ExternalConnectivityConnectorRepresentation (at "' + path_externalConnectorMetadata + '")\n';
|
|
1462
1495
|
message += referencepath_externalConnectorMetadataValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1467,6 +1500,11 @@ function validate$c(obj, path = 'ExternalConnectivityConnectionDetailsRepresenta
|
|
|
1467
1500
|
if (typeof obj_lastModifiedBy !== 'string') {
|
|
1468
1501
|
return new TypeError('Expected "string" but received "' + typeof obj_lastModifiedBy + '" (at "' + path_lastModifiedBy + '")');
|
|
1469
1502
|
}
|
|
1503
|
+
const obj_lastModifiedById = obj.lastModifiedById;
|
|
1504
|
+
const path_lastModifiedById = path + '.lastModifiedById';
|
|
1505
|
+
if (typeof obj_lastModifiedById !== 'string') {
|
|
1506
|
+
return new TypeError('Expected "string" but received "' + typeof obj_lastModifiedById + '" (at "' + path_lastModifiedById + '")');
|
|
1507
|
+
}
|
|
1470
1508
|
const obj_lastModifiedDate = obj.lastModifiedDate;
|
|
1471
1509
|
const path_lastModifiedDate = path + '.lastModifiedDate';
|
|
1472
1510
|
if (typeof obj_lastModifiedDate !== 'string') {
|
|
@@ -1526,7 +1564,7 @@ function equals$8(existing, incoming) {
|
|
|
1526
1564
|
}
|
|
1527
1565
|
const ingest$8 = function ExternalConnectivityConnectionDetailsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
1528
1566
|
if (process.env.NODE_ENV !== 'production') {
|
|
1529
|
-
const validateError = validate$
|
|
1567
|
+
const validateError = validate$d(input);
|
|
1530
1568
|
if (validateError !== null) {
|
|
1531
1569
|
throw validateError;
|
|
1532
1570
|
}
|
|
@@ -1736,7 +1774,7 @@ function typeCheckConfig$7(untrustedConfig) {
|
|
|
1736
1774
|
const config = {};
|
|
1737
1775
|
typeCheckConfig$c(untrustedConfig, config, updateConnection_ConfigPropertyMetadata);
|
|
1738
1776
|
const untrustedConfig_authenticationTypeInput = untrustedConfig.authenticationTypeInput;
|
|
1739
|
-
const referenceAuthenticationTypeInputRepresentationValidationError = validate$
|
|
1777
|
+
const referenceAuthenticationTypeInputRepresentationValidationError = validate$j(untrustedConfig_authenticationTypeInput);
|
|
1740
1778
|
if (referenceAuthenticationTypeInputRepresentationValidationError === null) {
|
|
1741
1779
|
config.authenticationTypeInput = untrustedConfig_authenticationTypeInput;
|
|
1742
1780
|
}
|
|
@@ -1791,7 +1829,7 @@ const updateConnectionAdapterFactory = (luvio) => {
|
|
|
1791
1829
|
};
|
|
1792
1830
|
};
|
|
1793
1831
|
|
|
1794
|
-
function validate$
|
|
1832
|
+
function validate$c(obj, path = 'ExternalConnectivityConnectionReferencedFlowsDefinitionRepresentation') {
|
|
1795
1833
|
const v_error = (() => {
|
|
1796
1834
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1797
1835
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1907,6 +1945,32 @@ function validate$b(obj, path = 'ExternalConnectivityConnectionReferencedFlowsDe
|
|
|
1907
1945
|
message += '\n' + obj_flowVersionId_union1.split('\n').map((line) => '\t' + line).join('\n');
|
|
1908
1946
|
return new TypeError(message);
|
|
1909
1947
|
}
|
|
1948
|
+
const obj_flowVersionNumber = obj.flowVersionNumber;
|
|
1949
|
+
const path_flowVersionNumber = path + '.flowVersionNumber';
|
|
1950
|
+
let obj_flowVersionNumber_union0 = null;
|
|
1951
|
+
const obj_flowVersionNumber_union0_error = (() => {
|
|
1952
|
+
if (typeof obj_flowVersionNumber !== 'string') {
|
|
1953
|
+
return new TypeError('Expected "string" but received "' + typeof obj_flowVersionNumber + '" (at "' + path_flowVersionNumber + '")');
|
|
1954
|
+
}
|
|
1955
|
+
})();
|
|
1956
|
+
if (obj_flowVersionNumber_union0_error != null) {
|
|
1957
|
+
obj_flowVersionNumber_union0 = obj_flowVersionNumber_union0_error.message;
|
|
1958
|
+
}
|
|
1959
|
+
let obj_flowVersionNumber_union1 = null;
|
|
1960
|
+
const obj_flowVersionNumber_union1_error = (() => {
|
|
1961
|
+
if (obj_flowVersionNumber !== null) {
|
|
1962
|
+
return new TypeError('Expected "null" but received "' + typeof obj_flowVersionNumber + '" (at "' + path_flowVersionNumber + '")');
|
|
1963
|
+
}
|
|
1964
|
+
})();
|
|
1965
|
+
if (obj_flowVersionNumber_union1_error != null) {
|
|
1966
|
+
obj_flowVersionNumber_union1 = obj_flowVersionNumber_union1_error.message;
|
|
1967
|
+
}
|
|
1968
|
+
if (obj_flowVersionNumber_union0 && obj_flowVersionNumber_union1) {
|
|
1969
|
+
let message = 'Object doesn\'t match union (at "' + path_flowVersionNumber + '")';
|
|
1970
|
+
message += '\n' + obj_flowVersionNumber_union0.split('\n').map((line) => '\t' + line).join('\n');
|
|
1971
|
+
message += '\n' + obj_flowVersionNumber_union1.split('\n').map((line) => '\t' + line).join('\n');
|
|
1972
|
+
return new TypeError(message);
|
|
1973
|
+
}
|
|
1910
1974
|
const obj_ownerName = obj.ownerName;
|
|
1911
1975
|
const path_ownerName = path + '.ownerName';
|
|
1912
1976
|
let obj_ownerName_union0 = null;
|
|
@@ -1937,8 +2001,58 @@ function validate$b(obj, path = 'ExternalConnectivityConnectionReferencedFlowsDe
|
|
|
1937
2001
|
return v_error === undefined ? null : v_error;
|
|
1938
2002
|
}
|
|
1939
2003
|
|
|
2004
|
+
function validate$b(obj, path = 'ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentation') {
|
|
2005
|
+
const v_error = (() => {
|
|
2006
|
+
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2007
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
2008
|
+
}
|
|
2009
|
+
const obj_apiName = obj.apiName;
|
|
2010
|
+
const path_apiName = path + '.apiName';
|
|
2011
|
+
let obj_apiName_union0 = null;
|
|
2012
|
+
const obj_apiName_union0_error = (() => {
|
|
2013
|
+
if (typeof obj_apiName !== 'string') {
|
|
2014
|
+
return new TypeError('Expected "string" but received "' + typeof obj_apiName + '" (at "' + path_apiName + '")');
|
|
2015
|
+
}
|
|
2016
|
+
})();
|
|
2017
|
+
if (obj_apiName_union0_error != null) {
|
|
2018
|
+
obj_apiName_union0 = obj_apiName_union0_error.message;
|
|
2019
|
+
}
|
|
2020
|
+
let obj_apiName_union1 = null;
|
|
2021
|
+
const obj_apiName_union1_error = (() => {
|
|
2022
|
+
if (obj_apiName !== null) {
|
|
2023
|
+
return new TypeError('Expected "null" but received "' + typeof obj_apiName + '" (at "' + path_apiName + '")');
|
|
2024
|
+
}
|
|
2025
|
+
})();
|
|
2026
|
+
if (obj_apiName_union1_error != null) {
|
|
2027
|
+
obj_apiName_union1 = obj_apiName_union1_error.message;
|
|
2028
|
+
}
|
|
2029
|
+
if (obj_apiName_union0 && obj_apiName_union1) {
|
|
2030
|
+
let message = 'Object doesn\'t match union (at "' + path_apiName + '")';
|
|
2031
|
+
message += '\n' + obj_apiName_union0.split('\n').map((line) => '\t' + line).join('\n');
|
|
2032
|
+
message += '\n' + obj_apiName_union1.split('\n').map((line) => '\t' + line).join('\n');
|
|
2033
|
+
return new TypeError(message);
|
|
2034
|
+
}
|
|
2035
|
+
const obj_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation = obj.externalConnectivityConnectionReferencedFlowsDefinitionRepresentation;
|
|
2036
|
+
const path_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation = path + '.externalConnectivityConnectionReferencedFlowsDefinitionRepresentation';
|
|
2037
|
+
if (!ArrayIsArray(obj_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation)) {
|
|
2038
|
+
return new TypeError('Expected "array" but received "' + typeof obj_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation + '" (at "' + path_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation + '")');
|
|
2039
|
+
}
|
|
2040
|
+
for (let i = 0; i < obj_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation.length; i++) {
|
|
2041
|
+
const obj_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation_item = obj_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation[i];
|
|
2042
|
+
const path_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation_item = path_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation + '[' + i + ']';
|
|
2043
|
+
const referencepath_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation_itemValidationError = validate$c(obj_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation_item, path_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation_item);
|
|
2044
|
+
if (referencepath_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation_itemValidationError !== null) {
|
|
2045
|
+
let message = 'Object doesn\'t match ExternalConnectivityConnectionReferencedFlowsDefinitionRepresentation (at "' + path_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation_item + '")\n';
|
|
2046
|
+
message += referencepath_externalConnectivityConnectionReferencedFlowsDefinitionRepresentation_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
2047
|
+
return new TypeError(message);
|
|
2048
|
+
}
|
|
2049
|
+
}
|
|
2050
|
+
})();
|
|
2051
|
+
return v_error === undefined ? null : v_error;
|
|
2052
|
+
}
|
|
2053
|
+
|
|
1940
2054
|
const TTL$7 = 500;
|
|
1941
|
-
const VERSION$7 = "
|
|
2055
|
+
const VERSION$7 = "820abb05d9fdc457563c221e32216e97";
|
|
1942
2056
|
function validate$a(obj, path = 'ExternalConnectivityConnectionReferencedFlowsRepresentation') {
|
|
1943
2057
|
const v_error = (() => {
|
|
1944
2058
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -1970,18 +2084,18 @@ function validate$a(obj, path = 'ExternalConnectivityConnectionReferencedFlowsRe
|
|
|
1970
2084
|
message += '\n' + obj_connectionFullName_union1.split('\n').map((line) => '\t' + line).join('\n');
|
|
1971
2085
|
return new TypeError(message);
|
|
1972
2086
|
}
|
|
1973
|
-
const
|
|
1974
|
-
const
|
|
1975
|
-
if (!ArrayIsArray(
|
|
1976
|
-
return new TypeError('Expected "array" but received "' + typeof
|
|
1977
|
-
}
|
|
1978
|
-
for (let i = 0; i <
|
|
1979
|
-
const
|
|
1980
|
-
const
|
|
1981
|
-
const
|
|
1982
|
-
if (
|
|
1983
|
-
let message = 'Object doesn\'t match
|
|
1984
|
-
message +=
|
|
2087
|
+
const obj_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation = obj.externalConnectivityConnectionFlowsGroupedByApiNameRepresentation;
|
|
2088
|
+
const path_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation = path + '.externalConnectivityConnectionFlowsGroupedByApiNameRepresentation';
|
|
2089
|
+
if (!ArrayIsArray(obj_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation)) {
|
|
2090
|
+
return new TypeError('Expected "array" but received "' + typeof obj_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation + '" (at "' + path_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation + '")');
|
|
2091
|
+
}
|
|
2092
|
+
for (let i = 0; i < obj_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation.length; i++) {
|
|
2093
|
+
const obj_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation_item = obj_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation[i];
|
|
2094
|
+
const path_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation_item = path_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation + '[' + i + ']';
|
|
2095
|
+
const referencepath_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation_itemValidationError = validate$b(obj_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation_item, path_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation_item);
|
|
2096
|
+
if (referencepath_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation_itemValidationError !== null) {
|
|
2097
|
+
let message = 'Object doesn\'t match ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentation (at "' + path_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation_item + '")\n';
|
|
2098
|
+
message += referencepath_externalConnectivityConnectionFlowsGroupedByApiNameRepresentation_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
1985
2099
|
return new TypeError(message);
|
|
1986
2100
|
}
|
|
1987
2101
|
}
|
|
@@ -2648,7 +2762,7 @@ function validate$6(obj, path = 'ExternalConnectivityConnectorListRepresentation
|
|
|
2648
2762
|
for (let i = 0; i < obj_connectors.length; i++) {
|
|
2649
2763
|
const obj_connectors_item = obj_connectors[i];
|
|
2650
2764
|
const path_connectors_item = path_connectors + '[' + i + ']';
|
|
2651
|
-
const referencepath_connectors_itemValidationError = validate$
|
|
2765
|
+
const referencepath_connectors_itemValidationError = validate$m(obj_connectors_item, path_connectors_item);
|
|
2652
2766
|
if (referencepath_connectors_itemValidationError !== null) {
|
|
2653
2767
|
let message = 'Object doesn\'t match ExternalConnectivityConnectorRepresentation (at "' + path_connectors_item + '")\n';
|
|
2654
2768
|
message += referencepath_connectors_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2846,7 +2960,7 @@ function validate$5(obj, path = 'AuthenticationTypeDefinitionRepresentation') {
|
|
|
2846
2960
|
for (let i = 0; i < obj_authenticationParameterDefinitions.length; i++) {
|
|
2847
2961
|
const obj_authenticationParameterDefinitions_item = obj_authenticationParameterDefinitions[i];
|
|
2848
2962
|
const path_authenticationParameterDefinitions_item = path_authenticationParameterDefinitions + '[' + i + ']';
|
|
2849
|
-
const referencepath_authenticationParameterDefinitions_itemValidationError = validate$
|
|
2963
|
+
const referencepath_authenticationParameterDefinitions_itemValidationError = validate$g(obj_authenticationParameterDefinitions_item, path_authenticationParameterDefinitions_item);
|
|
2850
2964
|
if (referencepath_authenticationParameterDefinitions_itemValidationError !== null) {
|
|
2851
2965
|
let message = 'Object doesn\'t match AuthenticationParameterDefinitionRepresentation (at "' + path_authenticationParameterDefinitions_item + '")\n';
|
|
2852
2966
|
message += referencepath_authenticationParameterDefinitions_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2892,7 +3006,7 @@ function validate$4(obj, path = 'ExternalConnectivityConnectorDetailsRepresentat
|
|
|
2892
3006
|
for (let i = 0; i < obj_iconMetadata.length; i++) {
|
|
2893
3007
|
const obj_iconMetadata_item = obj_iconMetadata[i];
|
|
2894
3008
|
const path_iconMetadata_item = path_iconMetadata + '[' + i + ']';
|
|
2895
|
-
const referencepath_iconMetadata_itemValidationError = validate$
|
|
3009
|
+
const referencepath_iconMetadata_itemValidationError = validate$n(obj_iconMetadata_item, path_iconMetadata_item);
|
|
2896
3010
|
if (referencepath_iconMetadata_itemValidationError !== null) {
|
|
2897
3011
|
let message = 'Object doesn\'t match ConnectorIconMetadataRepresentation (at "' + path_iconMetadata_item + '")\n';
|
|
2898
3012
|
message += referencepath_iconMetadata_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2,7 +2,7 @@ import { AuthenticationTypeRepresentation as AuthenticationTypeRepresentation_Au
|
|
|
2
2
|
import { ExternalConnectivityConnectorRepresentation as ExternalConnectivityConnectorRepresentation_ExternalConnectivityConnectorRepresentation } from './ExternalConnectivityConnectorRepresentation';
|
|
3
3
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
4
4
|
export declare const TTL = 500;
|
|
5
|
-
export declare const VERSION = "
|
|
5
|
+
export declare const VERSION = "f4779ee578433586f3d374d1dbf4cf6a";
|
|
6
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
7
|
export declare const RepresentationType: string;
|
|
8
8
|
export declare function normalize(input: ExternalConnectivityConnectionDetailsRepresentation, existing: ExternalConnectivityConnectionDetailsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalConnectivityConnectionDetailsRepresentationNormalized;
|
|
@@ -23,6 +23,8 @@ export interface ExternalConnectivityConnectionDetailsRepresentationNormalized {
|
|
|
23
23
|
authenticationType: AuthenticationTypeRepresentation_AuthenticationTypeRepresentation;
|
|
24
24
|
/** External Connectivity Connection Created By */
|
|
25
25
|
createdBy: string;
|
|
26
|
+
/** External Connectivity Connection Created By Id */
|
|
27
|
+
createdById: string;
|
|
26
28
|
/** External Connectivity Connection Created Date */
|
|
27
29
|
createdDate: string;
|
|
28
30
|
/** External Connectivity Connection Description */
|
|
@@ -34,6 +36,8 @@ export interface ExternalConnectivityConnectionDetailsRepresentationNormalized {
|
|
|
34
36
|
externalConnectorMetadata: $64$luvio_engine_StoreLink;
|
|
35
37
|
/** External Connectivity Connection Last Modified By */
|
|
36
38
|
lastModifiedBy: string;
|
|
39
|
+
/** External Connectivity Connection Last Modified By Id */
|
|
40
|
+
lastModifiedById: string;
|
|
37
41
|
/** External Connectivity Connection Last Modified Date */
|
|
38
42
|
lastModifiedDate: string;
|
|
39
43
|
/** External Connectivity Connection Last Tested Date */
|
|
@@ -51,12 +55,14 @@ export interface ExternalConnectivityConnectionDetailsRepresentation {
|
|
|
51
55
|
agentActionEnabled?: boolean | null;
|
|
52
56
|
authenticationType: AuthenticationTypeRepresentation_AuthenticationTypeRepresentation;
|
|
53
57
|
createdBy: string;
|
|
58
|
+
createdById: string;
|
|
54
59
|
createdDate: string;
|
|
55
60
|
description: string | null;
|
|
56
61
|
developerName: string;
|
|
57
62
|
established: boolean;
|
|
58
63
|
externalConnectorMetadata: ExternalConnectivityConnectorRepresentation_ExternalConnectivityConnectorRepresentation;
|
|
59
64
|
lastModifiedBy: string;
|
|
65
|
+
lastModifiedById: string;
|
|
60
66
|
lastModifiedDate: string;
|
|
61
67
|
lastTestedDate: string | null;
|
|
62
68
|
name: string;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { ExternalConnectivityConnectionReferencedFlowsDefinitionRepresentation as ExternalConnectivityConnectionReferencedFlowsDefinitionRepresentation_ExternalConnectivityConnectionReferencedFlowsDefinitionRepresentation } from './ExternalConnectivityConnectionReferencedFlowsDefinitionRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 500;
|
|
4
|
+
export declare const VERSION = "7a537890e86ae89740257daf12886551";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentation, existing: ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentationNormalized, incoming: ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentationNormalized): boolean;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* Output representation for flows grouped by API name referencing External Connectivity Connection
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentationNormalized {
|
|
19
|
+
/** API name of flow referenced by the connection */
|
|
20
|
+
apiName: string | null;
|
|
21
|
+
/** List of flows referenced by the connection */
|
|
22
|
+
externalConnectivityConnectionReferencedFlowsDefinitionRepresentation: Array<ExternalConnectivityConnectionReferencedFlowsDefinitionRepresentation_ExternalConnectivityConnectionReferencedFlowsDefinitionRepresentation>;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Output representation for flows grouped by API name referencing External Connectivity Connection
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentation {
|
|
31
|
+
apiName: string | null;
|
|
32
|
+
externalConnectivityConnectionReferencedFlowsDefinitionRepresentation: Array<ExternalConnectivityConnectionReferencedFlowsDefinitionRepresentation_ExternalConnectivityConnectionReferencedFlowsDefinitionRepresentation>;
|
|
33
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
2
|
export declare const TTL = 500;
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "0a6d70f4595516fa4626ac604129fc63";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export declare function normalize(input: ExternalConnectivityConnectionReferencedFlowsDefinitionRepresentation, existing: ExternalConnectivityConnectionReferencedFlowsDefinitionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalConnectivityConnectionReferencedFlowsDefinitionRepresentationNormalized;
|
|
@@ -23,6 +23,8 @@ export interface ExternalConnectivityConnectionReferencedFlowsDefinitionRepresen
|
|
|
23
23
|
flowStatus: string | null;
|
|
24
24
|
/** Version Id of flow referenced by the connection */
|
|
25
25
|
flowVersionId: string | null;
|
|
26
|
+
/** Version number of flow referenced by the connection */
|
|
27
|
+
flowVersionNumber: string | null;
|
|
26
28
|
/** Owner of flow referenced by the connection */
|
|
27
29
|
ownerName: string | null;
|
|
28
30
|
}
|
|
@@ -37,5 +39,6 @@ export interface ExternalConnectivityConnectionReferencedFlowsDefinitionRepresen
|
|
|
37
39
|
flowName: string | null;
|
|
38
40
|
flowStatus: string | null;
|
|
39
41
|
flowVersionId: string | null;
|
|
42
|
+
flowVersionNumber: string | null;
|
|
40
43
|
ownerName: string | null;
|
|
41
44
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
1
|
+
import { ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentation as ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentation_ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentation } from './ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
3
|
export declare const TTL = 500;
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "820abb05d9fdc457563c221e32216e97";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
6
|
export declare const RepresentationType: string;
|
|
7
7
|
export declare function normalize(input: ExternalConnectivityConnectionReferencedFlowsRepresentation, existing: ExternalConnectivityConnectionReferencedFlowsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalConnectivityConnectionReferencedFlowsRepresentationNormalized;
|
|
@@ -18,8 +18,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
18
18
|
export interface ExternalConnectivityConnectionReferencedFlowsRepresentationNormalized {
|
|
19
19
|
/** External Connectivity Connection Name */
|
|
20
20
|
connectionFullName: string | null;
|
|
21
|
-
/** List of flows referenced by the connection */
|
|
22
|
-
|
|
21
|
+
/** List of API names along with the flows grouped by the API name referenced by the connection */
|
|
22
|
+
externalConnectivityConnectionFlowsGroupedByApiNameRepresentation: Array<$64$luvio_engine_StoreLink>;
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* Output representation for Flows referenced by the External Connectivity Connection
|
|
@@ -29,5 +29,5 @@ export interface ExternalConnectivityConnectionReferencedFlowsRepresentationNorm
|
|
|
29
29
|
*/
|
|
30
30
|
export interface ExternalConnectivityConnectionReferencedFlowsRepresentation {
|
|
31
31
|
connectionFullName: string | null;
|
|
32
|
-
|
|
32
|
+
externalConnectivityConnectionFlowsGroupedByApiNameRepresentation: Array<ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentation_ExternalConnectivityConnectionFlowsGroupedByApiNameRepresentation>;
|
|
33
33
|
}
|