@salesforce/lds-adapters-analytics-unifiedanalytics 1.447.1 → 1.449.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/es2018/analytics-unifiedanalytics.js +194 -131
- package/dist/es/es2018/types/src/generated/adapters/createDataAlert.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/updateDataAlert.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauDataAlerts.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/putTableauDataAlertsByDataAlertId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertBriefContentInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAlertBriefContentRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAlertInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAlertRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestDebugInfo.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +5 -1
- package/package.json +3 -3
- package/sfdc/index.js +175 -112
- package/src/raml/api.raml +36 -0
|
@@ -95,7 +95,7 @@ function createLink(ref) {
|
|
|
95
95
|
|
|
96
96
|
const TTL$u = 1000;
|
|
97
97
|
const VERSION$I = "3c943f1d2e5251ceef13b3e2fdb5f916";
|
|
98
|
-
function validate$
|
|
98
|
+
function validate$1x(obj, path = 'TableauExternalMonitoringEventItemRepresentation') {
|
|
99
99
|
const v_error = (() => {
|
|
100
100
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
101
101
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -147,7 +147,7 @@ function equals$I(existing, incoming) {
|
|
|
147
147
|
}
|
|
148
148
|
const ingest$I = function TableauExternalMonitoringEventItemRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
149
149
|
if (process.env.NODE_ENV !== 'production') {
|
|
150
|
-
const validateError = validate$
|
|
150
|
+
const validateError = validate$1x(input);
|
|
151
151
|
if (validateError !== null) {
|
|
152
152
|
throw validateError;
|
|
153
153
|
}
|
|
@@ -265,7 +265,7 @@ const publishAdapterFactory = (luvio) => {
|
|
|
265
265
|
};
|
|
266
266
|
};
|
|
267
267
|
|
|
268
|
-
function validate$
|
|
268
|
+
function validate$1w(obj, path = 'DashboardAnnotationAnchorRepresentation') {
|
|
269
269
|
const v_error = (() => {
|
|
270
270
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
271
271
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -279,7 +279,7 @@ function validate$1v(obj, path = 'DashboardAnnotationAnchorRepresentation') {
|
|
|
279
279
|
return v_error === undefined ? null : v_error;
|
|
280
280
|
}
|
|
281
281
|
|
|
282
|
-
function validate$
|
|
282
|
+
function validate$1v(obj, path = 'AnnotationAssetRepresentation') {
|
|
283
283
|
const v_error = (() => {
|
|
284
284
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
285
285
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -298,7 +298,7 @@ function validate$1u(obj, path = 'AnnotationAssetRepresentation') {
|
|
|
298
298
|
return v_error === undefined ? null : v_error;
|
|
299
299
|
}
|
|
300
300
|
|
|
301
|
-
function validate$
|
|
301
|
+
function validate$1u(obj, path = 'FileTypeOutputRepresentation') {
|
|
302
302
|
const v_error = (() => {
|
|
303
303
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
304
304
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -317,7 +317,7 @@ function validate$1t(obj, path = 'FileTypeOutputRepresentation') {
|
|
|
317
317
|
return v_error === undefined ? null : v_error;
|
|
318
318
|
}
|
|
319
319
|
|
|
320
|
-
function validate$
|
|
320
|
+
function validate$1t(obj, path = 'ContentVersionOutputRepresentation') {
|
|
321
321
|
const v_error = (() => {
|
|
322
322
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
323
323
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -331,7 +331,7 @@ function validate$1s(obj, path = 'ContentVersionOutputRepresentation') {
|
|
|
331
331
|
const path_filetype = path + '.filetype';
|
|
332
332
|
let obj_filetype_union0 = null;
|
|
333
333
|
const obj_filetype_union0_error = (() => {
|
|
334
|
-
const referencepath_filetypeValidationError = validate$
|
|
334
|
+
const referencepath_filetypeValidationError = validate$1u(obj_filetype, path_filetype);
|
|
335
335
|
if (referencepath_filetypeValidationError !== null) {
|
|
336
336
|
let message = 'Object doesn\'t match FileTypeOutputRepresentation (at "' + path_filetype + '")\n';
|
|
337
337
|
message += referencepath_filetypeValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -401,14 +401,14 @@ function validate$1s(obj, path = 'ContentVersionOutputRepresentation') {
|
|
|
401
401
|
return v_error === undefined ? null : v_error;
|
|
402
402
|
}
|
|
403
403
|
|
|
404
|
-
function validate$
|
|
404
|
+
function validate$1s(obj, path = 'ContentDocumentOutputRepresentation') {
|
|
405
405
|
const v_error = (() => {
|
|
406
406
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
407
407
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
408
408
|
}
|
|
409
409
|
const obj_filetype = obj.filetype;
|
|
410
410
|
const path_filetype = path + '.filetype';
|
|
411
|
-
const referencepath_filetypeValidationError = validate$
|
|
411
|
+
const referencepath_filetypeValidationError = validate$1u(obj_filetype, path_filetype);
|
|
412
412
|
if (referencepath_filetypeValidationError !== null) {
|
|
413
413
|
let message = 'Object doesn\'t match FileTypeOutputRepresentation (at "' + path_filetype + '")\n';
|
|
414
414
|
message += referencepath_filetypeValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -421,7 +421,7 @@ function validate$1r(obj, path = 'ContentDocumentOutputRepresentation') {
|
|
|
421
421
|
}
|
|
422
422
|
const obj_latestPublishedVersion = obj.latestPublishedVersion;
|
|
423
423
|
const path_latestPublishedVersion = path + '.latestPublishedVersion';
|
|
424
|
-
const referencepath_latestPublishedVersionValidationError = validate$
|
|
424
|
+
const referencepath_latestPublishedVersionValidationError = validate$1t(obj_latestPublishedVersion, path_latestPublishedVersion);
|
|
425
425
|
if (referencepath_latestPublishedVersionValidationError !== null) {
|
|
426
426
|
let message = 'Object doesn\'t match ContentVersionOutputRepresentation (at "' + path_latestPublishedVersion + '")\n';
|
|
427
427
|
message += referencepath_latestPublishedVersionValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -441,7 +441,7 @@ function validate$1r(obj, path = 'ContentDocumentOutputRepresentation') {
|
|
|
441
441
|
return v_error === undefined ? null : v_error;
|
|
442
442
|
}
|
|
443
443
|
|
|
444
|
-
function validate$
|
|
444
|
+
function validate$1r(obj, path = 'SlackFileOutputRepresentation') {
|
|
445
445
|
const v_error = (() => {
|
|
446
446
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
447
447
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -450,7 +450,7 @@ function validate$1q(obj, path = 'SlackFileOutputRepresentation') {
|
|
|
450
450
|
const path_contentDocument = path + '.contentDocument';
|
|
451
451
|
let obj_contentDocument_union0 = null;
|
|
452
452
|
const obj_contentDocument_union0_error = (() => {
|
|
453
|
-
const referencepath_contentDocumentValidationError = validate$
|
|
453
|
+
const referencepath_contentDocumentValidationError = validate$1s(obj_contentDocument, path_contentDocument);
|
|
454
454
|
if (referencepath_contentDocumentValidationError !== null) {
|
|
455
455
|
let message = 'Object doesn\'t match ContentDocumentOutputRepresentation (at "' + path_contentDocument + '")\n';
|
|
456
456
|
message += referencepath_contentDocumentValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -550,7 +550,7 @@ function validate$1q(obj, path = 'SlackFileOutputRepresentation') {
|
|
|
550
550
|
return v_error === undefined ? null : v_error;
|
|
551
551
|
}
|
|
552
552
|
|
|
553
|
-
function validate$
|
|
553
|
+
function validate$1q(obj, path = 'SlackEmojiOutputRepresentation') {
|
|
554
554
|
const v_error = (() => {
|
|
555
555
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
556
556
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -674,7 +674,7 @@ function validate$1p(obj, path = 'SlackEmojiOutputRepresentation') {
|
|
|
674
674
|
return v_error === undefined ? null : v_error;
|
|
675
675
|
}
|
|
676
676
|
|
|
677
|
-
function validate$
|
|
677
|
+
function validate$1p(obj, path = 'SlackUserInfoOutputRepresentation') {
|
|
678
678
|
const v_error = (() => {
|
|
679
679
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
680
680
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1001,7 +1001,7 @@ function validate$1o(obj, path = 'SlackUserInfoOutputRepresentation') {
|
|
|
1001
1001
|
const path_statusEmoji = path + '.statusEmoji';
|
|
1002
1002
|
let obj_statusEmoji_union0 = null;
|
|
1003
1003
|
const obj_statusEmoji_union0_error = (() => {
|
|
1004
|
-
const referencepath_statusEmojiValidationError = validate$
|
|
1004
|
+
const referencepath_statusEmojiValidationError = validate$1q(obj_statusEmoji, path_statusEmoji);
|
|
1005
1005
|
if (referencepath_statusEmojiValidationError !== null) {
|
|
1006
1006
|
let message = 'Object doesn\'t match SlackEmojiOutputRepresentation (at "' + path_statusEmoji + '")\n';
|
|
1007
1007
|
message += referencepath_statusEmojiValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1064,7 +1064,7 @@ function validate$1o(obj, path = 'SlackUserInfoOutputRepresentation') {
|
|
|
1064
1064
|
return v_error === undefined ? null : v_error;
|
|
1065
1065
|
}
|
|
1066
1066
|
|
|
1067
|
-
function validate$
|
|
1067
|
+
function validate$1o(obj, path = 'SlackReactionOutputRepresentation') {
|
|
1068
1068
|
const v_error = (() => {
|
|
1069
1069
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1070
1070
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1144,7 +1144,7 @@ function validate$1n(obj, path = 'SlackReactionOutputRepresentation') {
|
|
|
1144
1144
|
for (let i = 0; i < obj_reactedUsers.length; i++) {
|
|
1145
1145
|
const obj_reactedUsers_item = obj_reactedUsers[i];
|
|
1146
1146
|
const path_reactedUsers_item = path_reactedUsers + '[' + i + ']';
|
|
1147
|
-
const referencepath_reactedUsers_itemValidationError = validate$
|
|
1147
|
+
const referencepath_reactedUsers_itemValidationError = validate$1p(obj_reactedUsers_item, path_reactedUsers_item);
|
|
1148
1148
|
if (referencepath_reactedUsers_itemValidationError !== null) {
|
|
1149
1149
|
let message = 'Object doesn\'t match SlackUserInfoOutputRepresentation (at "' + path_reactedUsers_item + '")\n';
|
|
1150
1150
|
message += referencepath_reactedUsers_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1233,7 +1233,7 @@ function validate$1n(obj, path = 'SlackReactionOutputRepresentation') {
|
|
|
1233
1233
|
return v_error === undefined ? null : v_error;
|
|
1234
1234
|
}
|
|
1235
1235
|
|
|
1236
|
-
function validate$
|
|
1236
|
+
function validate$1n(obj, path = 'SlackMessageOutputRepresentation') {
|
|
1237
1237
|
const v_error = (() => {
|
|
1238
1238
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1239
1239
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1282,7 +1282,7 @@ function validate$1m(obj, path = 'SlackMessageOutputRepresentation') {
|
|
|
1282
1282
|
for (let i = 0; i < obj_files.length; i++) {
|
|
1283
1283
|
const obj_files_item = obj_files[i];
|
|
1284
1284
|
const path_files_item = path_files + '[' + i + ']';
|
|
1285
|
-
const referencepath_files_itemValidationError = validate$
|
|
1285
|
+
const referencepath_files_itemValidationError = validate$1r(obj_files_item, path_files_item);
|
|
1286
1286
|
if (referencepath_files_itemValidationError !== null) {
|
|
1287
1287
|
let message = 'Object doesn\'t match SlackFileOutputRepresentation (at "' + path_files_item + '")\n';
|
|
1288
1288
|
message += referencepath_files_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1443,7 +1443,7 @@ function validate$1m(obj, path = 'SlackMessageOutputRepresentation') {
|
|
|
1443
1443
|
for (let i = 0; i < obj_reactions.length; i++) {
|
|
1444
1444
|
const obj_reactions_item = obj_reactions[i];
|
|
1445
1445
|
const path_reactions_item = path_reactions + '[' + i + ']';
|
|
1446
|
-
const referencepath_reactions_itemValidationError = validate$
|
|
1446
|
+
const referencepath_reactions_itemValidationError = validate$1o(obj_reactions_item, path_reactions_item);
|
|
1447
1447
|
if (referencepath_reactions_itemValidationError !== null) {
|
|
1448
1448
|
let message = 'Object doesn\'t match SlackReactionOutputRepresentation (at "' + path_reactions_item + '")\n';
|
|
1449
1449
|
message += referencepath_reactions_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1484,7 +1484,7 @@ function validate$1m(obj, path = 'SlackMessageOutputRepresentation') {
|
|
|
1484
1484
|
for (let i = 0; i < obj_replyUsers.length; i++) {
|
|
1485
1485
|
const obj_replyUsers_item = obj_replyUsers[i];
|
|
1486
1486
|
const path_replyUsers_item = path_replyUsers + '[' + i + ']';
|
|
1487
|
-
const referencepath_replyUsers_itemValidationError = validate$
|
|
1487
|
+
const referencepath_replyUsers_itemValidationError = validate$1p(obj_replyUsers_item, path_replyUsers_item);
|
|
1488
1488
|
if (referencepath_replyUsers_itemValidationError !== null) {
|
|
1489
1489
|
let message = 'Object doesn\'t match SlackUserInfoOutputRepresentation (at "' + path_replyUsers_item + '")\n';
|
|
1490
1490
|
message += referencepath_replyUsers_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1617,7 +1617,7 @@ function validate$1m(obj, path = 'SlackMessageOutputRepresentation') {
|
|
|
1617
1617
|
}
|
|
1618
1618
|
const obj_userInfo = obj.userInfo;
|
|
1619
1619
|
const path_userInfo = path + '.userInfo';
|
|
1620
|
-
const referencepath_userInfoValidationError = validate$
|
|
1620
|
+
const referencepath_userInfoValidationError = validate$1p(obj_userInfo, path_userInfo);
|
|
1621
1621
|
if (referencepath_userInfoValidationError !== null) {
|
|
1622
1622
|
let message = 'Object doesn\'t match SlackUserInfoOutputRepresentation (at "' + path_userInfo + '")\n';
|
|
1623
1623
|
message += referencepath_userInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1627,7 +1627,7 @@ function validate$1m(obj, path = 'SlackMessageOutputRepresentation') {
|
|
|
1627
1627
|
return v_error === undefined ? null : v_error;
|
|
1628
1628
|
}
|
|
1629
1629
|
|
|
1630
|
-
function validate$
|
|
1630
|
+
function validate$1m(obj, path = 'AnnotationConversationRepresentation') {
|
|
1631
1631
|
const v_error = (() => {
|
|
1632
1632
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1633
1633
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1652,7 +1652,7 @@ function validate$1l(obj, path = 'AnnotationConversationRepresentation') {
|
|
|
1652
1652
|
const path_message = path + '.message';
|
|
1653
1653
|
let obj_message_union0 = null;
|
|
1654
1654
|
const obj_message_union0_error = (() => {
|
|
1655
|
-
const referencepath_messageValidationError = validate$
|
|
1655
|
+
const referencepath_messageValidationError = validate$1n(obj_message, path_message);
|
|
1656
1656
|
if (referencepath_messageValidationError !== null) {
|
|
1657
1657
|
let message = 'Object doesn\'t match SlackMessageOutputRepresentation (at "' + path_message + '")\n';
|
|
1658
1658
|
message += referencepath_messageValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1689,7 +1689,7 @@ function validate$1l(obj, path = 'AnnotationConversationRepresentation') {
|
|
|
1689
1689
|
|
|
1690
1690
|
const TTL$t = 1000;
|
|
1691
1691
|
const VERSION$H = "bacc25da56cffff8126d9bdafc471a37";
|
|
1692
|
-
function validate$
|
|
1692
|
+
function validate$1l(obj, path = 'AnnotationRepresentation') {
|
|
1693
1693
|
const v_error = (() => {
|
|
1694
1694
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1695
1695
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1697,7 +1697,7 @@ function validate$1k(obj, path = 'AnnotationRepresentation') {
|
|
|
1697
1697
|
if (obj.anchor !== undefined) {
|
|
1698
1698
|
const obj_anchor = obj.anchor;
|
|
1699
1699
|
const path_anchor = path + '.anchor';
|
|
1700
|
-
const referencepath_anchorValidationError = validate$
|
|
1700
|
+
const referencepath_anchorValidationError = validate$1w(obj_anchor, path_anchor);
|
|
1701
1701
|
if (referencepath_anchorValidationError !== null) {
|
|
1702
1702
|
let message = 'Object doesn\'t match DashboardAnnotationAnchorRepresentation (at "' + path_anchor + '")\n';
|
|
1703
1703
|
message += referencepath_anchorValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1711,7 +1711,7 @@ function validate$1k(obj, path = 'AnnotationRepresentation') {
|
|
|
1711
1711
|
}
|
|
1712
1712
|
const obj_asset = obj.asset;
|
|
1713
1713
|
const path_asset = path + '.asset';
|
|
1714
|
-
const referencepath_assetValidationError = validate$
|
|
1714
|
+
const referencepath_assetValidationError = validate$1v(obj_asset, path_asset);
|
|
1715
1715
|
if (referencepath_assetValidationError !== null) {
|
|
1716
1716
|
let message = 'Object doesn\'t match AnnotationAssetRepresentation (at "' + path_asset + '")\n';
|
|
1717
1717
|
message += referencepath_assetValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1719,7 +1719,7 @@ function validate$1k(obj, path = 'AnnotationRepresentation') {
|
|
|
1719
1719
|
}
|
|
1720
1720
|
const obj_collaborationObject = obj.collaborationObject;
|
|
1721
1721
|
const path_collaborationObject = path + '.collaborationObject';
|
|
1722
|
-
const referencepath_collaborationObjectValidationError = validate$
|
|
1722
|
+
const referencepath_collaborationObjectValidationError = validate$1m(obj_collaborationObject, path_collaborationObject);
|
|
1723
1723
|
if (referencepath_collaborationObjectValidationError !== null) {
|
|
1724
1724
|
let message = 'Object doesn\'t match AnnotationConversationRepresentation (at "' + path_collaborationObject + '")\n';
|
|
1725
1725
|
message += referencepath_collaborationObjectValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1767,7 +1767,7 @@ function equals$H(existing, incoming) {
|
|
|
1767
1767
|
}
|
|
1768
1768
|
const ingest$H = function AnnotationRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
1769
1769
|
if (process.env.NODE_ENV !== 'production') {
|
|
1770
|
-
const validateError = validate$
|
|
1770
|
+
const validateError = validate$1l(input);
|
|
1771
1771
|
if (validateError !== null) {
|
|
1772
1772
|
throw validateError;
|
|
1773
1773
|
}
|
|
@@ -1789,7 +1789,7 @@ function getTypeCacheKeys$H(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
1789
1789
|
|
|
1790
1790
|
const TTL$s = 1000;
|
|
1791
1791
|
const VERSION$G = "a80c8e970184cc7789e13f69392d6203";
|
|
1792
|
-
function validate$
|
|
1792
|
+
function validate$1k(obj, path = 'AnnotationCollectionRepresentation') {
|
|
1793
1793
|
const v_error = (() => {
|
|
1794
1794
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1795
1795
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1873,7 +1873,7 @@ function equals$G(existing, incoming) {
|
|
|
1873
1873
|
}
|
|
1874
1874
|
const ingest$G = function AnnotationCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
1875
1875
|
if (process.env.NODE_ENV !== 'production') {
|
|
1876
|
-
const validateError = validate$
|
|
1876
|
+
const validateError = validate$1k(input);
|
|
1877
1877
|
if (validateError !== null) {
|
|
1878
1878
|
throw validateError;
|
|
1879
1879
|
}
|
|
@@ -2140,7 +2140,7 @@ const createAnnotationAdapterFactory = (luvio) => {
|
|
|
2140
2140
|
|
|
2141
2141
|
const TTL$r = 5000;
|
|
2142
2142
|
const VERSION$F = "505a83d97fefa7ce68ec6512264b0543";
|
|
2143
|
-
function validate$
|
|
2143
|
+
function validate$1j(obj, path = 'SlackAppInfoRepresentation') {
|
|
2144
2144
|
const v_error = (() => {
|
|
2145
2145
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2146
2146
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2249,7 +2249,7 @@ function equals$F(existing, incoming) {
|
|
|
2249
2249
|
}
|
|
2250
2250
|
const ingest$F = function SlackAppInfoRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
2251
2251
|
if (process.env.NODE_ENV !== 'production') {
|
|
2252
|
-
const validateError = validate$
|
|
2252
|
+
const validateError = validate$1j(input);
|
|
2253
2253
|
if (validateError !== null) {
|
|
2254
2254
|
throw validateError;
|
|
2255
2255
|
}
|
|
@@ -2404,7 +2404,7 @@ const getSlackAppInfoAdapterFactory = (luvio) => function UnifiedAnalytics__getS
|
|
|
2404
2404
|
buildCachedSnapshotCachePolicy$q, buildNetworkSnapshotCachePolicy$q);
|
|
2405
2405
|
};
|
|
2406
2406
|
|
|
2407
|
-
function validate$
|
|
2407
|
+
function validate$1i(obj, path = 'BaseAnalyticsRepresentation') {
|
|
2408
2408
|
const v_error = (() => {
|
|
2409
2409
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2410
2410
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2439,8 +2439,8 @@ function validate$1h(obj, path = 'BaseAnalyticsRepresentation') {
|
|
|
2439
2439
|
return v_error === undefined ? null : v_error;
|
|
2440
2440
|
}
|
|
2441
2441
|
|
|
2442
|
-
function validate$
|
|
2443
|
-
const validateBaseAnalyticsRepresentation_validateError = validate$
|
|
2442
|
+
function validate$1h(obj, path = 'AnalyticsAssetsQueryResultsWorkspaceRepresentation') {
|
|
2443
|
+
const validateBaseAnalyticsRepresentation_validateError = validate$1i(obj, path);
|
|
2444
2444
|
if (validateBaseAnalyticsRepresentation_validateError !== null) {
|
|
2445
2445
|
return validateBaseAnalyticsRepresentation_validateError;
|
|
2446
2446
|
}
|
|
@@ -2452,8 +2452,8 @@ function validate$1g(obj, path = 'AnalyticsAssetsQueryResultsWorkspaceRepresenta
|
|
|
2452
2452
|
return v_error === undefined ? null : v_error;
|
|
2453
2453
|
}
|
|
2454
2454
|
|
|
2455
|
-
function validate$
|
|
2456
|
-
const validateBaseAnalyticsRepresentation_validateError = validate$
|
|
2455
|
+
function validate$1g(obj, path = 'AnalyticsAssetsQueryResultsItemRepresentation') {
|
|
2456
|
+
const validateBaseAnalyticsRepresentation_validateError = validate$1i(obj, path);
|
|
2457
2457
|
if (validateBaseAnalyticsRepresentation_validateError !== null) {
|
|
2458
2458
|
return validateBaseAnalyticsRepresentation_validateError;
|
|
2459
2459
|
}
|
|
@@ -2522,7 +2522,7 @@ function validate$1f(obj, path = 'AnalyticsAssetsQueryResultsItemRepresentation'
|
|
|
2522
2522
|
const path_workspace = path + '.workspace';
|
|
2523
2523
|
let obj_workspace_union0 = null;
|
|
2524
2524
|
const obj_workspace_union0_error = (() => {
|
|
2525
|
-
const referencepath_workspaceValidationError = validate$
|
|
2525
|
+
const referencepath_workspaceValidationError = validate$1h(obj_workspace, path_workspace);
|
|
2526
2526
|
if (referencepath_workspaceValidationError !== null) {
|
|
2527
2527
|
let message = 'Object doesn\'t match AnalyticsAssetsQueryResultsWorkspaceRepresentation (at "' + path_workspace + '")\n';
|
|
2528
2528
|
message += referencepath_workspaceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2554,7 +2554,7 @@ function validate$1f(obj, path = 'AnalyticsAssetsQueryResultsItemRepresentation'
|
|
|
2554
2554
|
|
|
2555
2555
|
const TTL$q = 500;
|
|
2556
2556
|
const VERSION$E = "ed60d9cca169a3e5ed897c67d11a23db";
|
|
2557
|
-
function validate$
|
|
2557
|
+
function validate$1f(obj, path = 'AnalyticsAssetsQueryResultsRepresentation') {
|
|
2558
2558
|
const v_error = (() => {
|
|
2559
2559
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2560
2560
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2567,7 +2567,7 @@ function validate$1e(obj, path = 'AnalyticsAssetsQueryResultsRepresentation') {
|
|
|
2567
2567
|
for (let i = 0; i < obj_items.length; i++) {
|
|
2568
2568
|
const obj_items_item = obj_items[i];
|
|
2569
2569
|
const path_items_item = path_items + '[' + i + ']';
|
|
2570
|
-
const referencepath_items_itemValidationError = validate$
|
|
2570
|
+
const referencepath_items_itemValidationError = validate$1g(obj_items_item, path_items_item);
|
|
2571
2571
|
if (referencepath_items_itemValidationError !== null) {
|
|
2572
2572
|
let message = 'Object doesn\'t match AnalyticsAssetsQueryResultsItemRepresentation (at "' + path_items_item + '")\n';
|
|
2573
2573
|
message += referencepath_items_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2621,7 +2621,7 @@ function equals$E(existing, incoming) {
|
|
|
2621
2621
|
}
|
|
2622
2622
|
const ingest$E = function AnalyticsAssetsQueryResultsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
2623
2623
|
if (process.env.NODE_ENV !== 'production') {
|
|
2624
|
-
const validateError = validate$
|
|
2624
|
+
const validateError = validate$1f(input);
|
|
2625
2625
|
if (validateError !== null) {
|
|
2626
2626
|
throw validateError;
|
|
2627
2627
|
}
|
|
@@ -2752,7 +2752,7 @@ const queryAssetsAdapterFactory = (luvio) => {
|
|
|
2752
2752
|
};
|
|
2753
2753
|
|
|
2754
2754
|
const VERSION$D = "581903d233184a85957cb2aa527b0d33";
|
|
2755
|
-
function validate$
|
|
2755
|
+
function validate$1e(obj, path = 'DashboardRepresentation') {
|
|
2756
2756
|
const v_error = (() => {
|
|
2757
2757
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2758
2758
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2921,7 +2921,7 @@ function equals$D(existing, incoming) {
|
|
|
2921
2921
|
}
|
|
2922
2922
|
const ingest$D = function DashboardRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
2923
2923
|
if (process.env.NODE_ENV !== 'production') {
|
|
2924
|
-
const validateError = validate$
|
|
2924
|
+
const validateError = validate$1e(input);
|
|
2925
2925
|
if (validateError !== null) {
|
|
2926
2926
|
throw validateError;
|
|
2927
2927
|
}
|
|
@@ -2942,7 +2942,7 @@ function getTypeCacheKeys$D(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
2942
2942
|
}
|
|
2943
2943
|
|
|
2944
2944
|
const VERSION$C = "962823130e6a9315240ef0e0f0c5f757";
|
|
2945
|
-
function validate$
|
|
2945
|
+
function validate$1d(obj, path = 'DashboardCollectionRepresentation') {
|
|
2946
2946
|
const v_error = (() => {
|
|
2947
2947
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2948
2948
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -3012,7 +3012,7 @@ function equals$C(existing, incoming) {
|
|
|
3012
3012
|
}
|
|
3013
3013
|
const ingest$C = function DashboardCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
3014
3014
|
if (process.env.NODE_ENV !== 'production') {
|
|
3015
|
-
const validateError = validate$
|
|
3015
|
+
const validateError = validate$1d(input);
|
|
3016
3016
|
if (validateError !== null) {
|
|
3017
3017
|
throw validateError;
|
|
3018
3018
|
}
|
|
@@ -3736,7 +3736,7 @@ const updateDashboardAdapterFactory = (luvio) => {
|
|
|
3736
3736
|
};
|
|
3737
3737
|
};
|
|
3738
3738
|
|
|
3739
|
-
function validate$
|
|
3739
|
+
function validate$1c(obj, path = 'DataAlertContentRepresentation') {
|
|
3740
3740
|
const v_error = (() => {
|
|
3741
3741
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3742
3742
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -3750,7 +3750,7 @@ function validate$1b(obj, path = 'DataAlertContentRepresentation') {
|
|
|
3750
3750
|
return v_error === undefined ? null : v_error;
|
|
3751
3751
|
}
|
|
3752
3752
|
|
|
3753
|
-
function validate$
|
|
3753
|
+
function validate$1b(obj, path = 'DataAlertReceiversRepresentation') {
|
|
3754
3754
|
const v_error = (() => {
|
|
3755
3755
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3756
3756
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -3764,7 +3764,7 @@ function validate$1a(obj, path = 'DataAlertReceiversRepresentation') {
|
|
|
3764
3764
|
return v_error === undefined ? null : v_error;
|
|
3765
3765
|
}
|
|
3766
3766
|
|
|
3767
|
-
function validate$
|
|
3767
|
+
function validate$1a(obj, path = 'DataAlertDeliveryConfigurationRepresentation') {
|
|
3768
3768
|
const v_error = (() => {
|
|
3769
3769
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3770
3770
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -3777,7 +3777,7 @@ function validate$19(obj, path = 'DataAlertDeliveryConfigurationRepresentation')
|
|
|
3777
3777
|
for (let i = 0; i < obj_receivers.length; i++) {
|
|
3778
3778
|
const obj_receivers_item = obj_receivers[i];
|
|
3779
3779
|
const path_receivers_item = path_receivers + '[' + i + ']';
|
|
3780
|
-
const referencepath_receivers_itemValidationError = validate$
|
|
3780
|
+
const referencepath_receivers_itemValidationError = validate$1b(obj_receivers_item, path_receivers_item);
|
|
3781
3781
|
if (referencepath_receivers_itemValidationError !== null) {
|
|
3782
3782
|
let message = 'Object doesn\'t match DataAlertReceiversRepresentation (at "' + path_receivers_item + '")\n';
|
|
3783
3783
|
message += referencepath_receivers_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -3788,7 +3788,7 @@ function validate$19(obj, path = 'DataAlertDeliveryConfigurationRepresentation')
|
|
|
3788
3788
|
return v_error === undefined ? null : v_error;
|
|
3789
3789
|
}
|
|
3790
3790
|
|
|
3791
|
-
function validate$
|
|
3791
|
+
function validate$19(obj, path = 'DataAlertPropertyFilterOutputRepresentation') {
|
|
3792
3792
|
const v_error = (() => {
|
|
3793
3793
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3794
3794
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -3802,7 +3802,7 @@ function validate$18(obj, path = 'DataAlertPropertyFilterOutputRepresentation')
|
|
|
3802
3802
|
return v_error === undefined ? null : v_error;
|
|
3803
3803
|
}
|
|
3804
3804
|
|
|
3805
|
-
function validate$
|
|
3805
|
+
function validate$18(obj, path = 'DataAlertScheduleRepresentation') {
|
|
3806
3806
|
const v_error = (() => {
|
|
3807
3807
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3808
3808
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -3830,7 +3830,7 @@ function validate$17(obj, path = 'DataAlertScheduleRepresentation') {
|
|
|
3830
3830
|
return v_error === undefined ? null : v_error;
|
|
3831
3831
|
}
|
|
3832
3832
|
|
|
3833
|
-
function validate$
|
|
3833
|
+
function validate$17(obj, path = 'DataAlertValueRepresentation') {
|
|
3834
3834
|
const v_error = (() => {
|
|
3835
3835
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3836
3836
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -3844,14 +3844,14 @@ function validate$16(obj, path = 'DataAlertValueRepresentation') {
|
|
|
3844
3844
|
return v_error === undefined ? null : v_error;
|
|
3845
3845
|
}
|
|
3846
3846
|
|
|
3847
|
-
function validate$
|
|
3847
|
+
function validate$16(obj, path = 'DataAlertConditionRepresentation') {
|
|
3848
3848
|
const v_error = (() => {
|
|
3849
3849
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3850
3850
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
3851
3851
|
}
|
|
3852
3852
|
const obj_leftOperand = obj.leftOperand;
|
|
3853
3853
|
const path_leftOperand = path + '.leftOperand';
|
|
3854
|
-
const referencepath_leftOperandValidationError = validate$
|
|
3854
|
+
const referencepath_leftOperandValidationError = validate$17(obj_leftOperand, path_leftOperand);
|
|
3855
3855
|
if (referencepath_leftOperandValidationError !== null) {
|
|
3856
3856
|
let message = 'Object doesn\'t match DataAlertValueRepresentation (at "' + path_leftOperand + '")\n';
|
|
3857
3857
|
message += referencepath_leftOperandValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -3864,7 +3864,7 @@ function validate$15(obj, path = 'DataAlertConditionRepresentation') {
|
|
|
3864
3864
|
}
|
|
3865
3865
|
const obj_rightOperand = obj.rightOperand;
|
|
3866
3866
|
const path_rightOperand = path + '.rightOperand';
|
|
3867
|
-
const referencepath_rightOperandValidationError = validate$
|
|
3867
|
+
const referencepath_rightOperandValidationError = validate$17(obj_rightOperand, path_rightOperand);
|
|
3868
3868
|
if (referencepath_rightOperandValidationError !== null) {
|
|
3869
3869
|
let message = 'Object doesn\'t match DataAlertValueRepresentation (at "' + path_rightOperand + '")\n';
|
|
3870
3870
|
message += referencepath_rightOperandValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -3874,7 +3874,7 @@ function validate$15(obj, path = 'DataAlertConditionRepresentation') {
|
|
|
3874
3874
|
return v_error === undefined ? null : v_error;
|
|
3875
3875
|
}
|
|
3876
3876
|
|
|
3877
|
-
function validate$
|
|
3877
|
+
function validate$15(obj, path = 'DataAlertThresholdsRepresentation') {
|
|
3878
3878
|
const v_error = (() => {
|
|
3879
3879
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3880
3880
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -3887,7 +3887,7 @@ function validate$14(obj, path = 'DataAlertThresholdsRepresentation') {
|
|
|
3887
3887
|
for (let i = 0; i < obj_conditions.length; i++) {
|
|
3888
3888
|
const obj_conditions_item = obj_conditions[i];
|
|
3889
3889
|
const path_conditions_item = path_conditions + '[' + i + ']';
|
|
3890
|
-
const referencepath_conditions_itemValidationError = validate$
|
|
3890
|
+
const referencepath_conditions_itemValidationError = validate$16(obj_conditions_item, path_conditions_item);
|
|
3891
3891
|
if (referencepath_conditions_itemValidationError !== null) {
|
|
3892
3892
|
let message = 'Object doesn\'t match DataAlertConditionRepresentation (at "' + path_conditions_item + '")\n';
|
|
3893
3893
|
message += referencepath_conditions_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -3904,8 +3904,8 @@ function validate$14(obj, path = 'DataAlertThresholdsRepresentation') {
|
|
|
3904
3904
|
}
|
|
3905
3905
|
|
|
3906
3906
|
const TTL$p = 500;
|
|
3907
|
-
const VERSION$B = "
|
|
3908
|
-
function validate$
|
|
3907
|
+
const VERSION$B = "eca891667fbed2132d5c2a32709976c2";
|
|
3908
|
+
function validate$14(obj, path = 'DataAlertRepresentation') {
|
|
3909
3909
|
const v_error = (() => {
|
|
3910
3910
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3911
3911
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -3945,7 +3945,7 @@ function validate$13(obj, path = 'DataAlertRepresentation') {
|
|
|
3945
3945
|
}
|
|
3946
3946
|
const obj_content = obj.content;
|
|
3947
3947
|
const path_content = path + '.content';
|
|
3948
|
-
const referencepath_contentValidationError = validate$
|
|
3948
|
+
const referencepath_contentValidationError = validate$1c(obj_content, path_content);
|
|
3949
3949
|
if (referencepath_contentValidationError !== null) {
|
|
3950
3950
|
let message = 'Object doesn\'t match DataAlertContentRepresentation (at "' + path_content + '")\n';
|
|
3951
3951
|
message += referencepath_contentValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -3963,7 +3963,7 @@ function validate$13(obj, path = 'DataAlertRepresentation') {
|
|
|
3963
3963
|
}
|
|
3964
3964
|
const obj_deliveryConfigurations = obj.deliveryConfigurations;
|
|
3965
3965
|
const path_deliveryConfigurations = path + '.deliveryConfigurations';
|
|
3966
|
-
const referencepath_deliveryConfigurationsValidationError = validate$
|
|
3966
|
+
const referencepath_deliveryConfigurationsValidationError = validate$1a(obj_deliveryConfigurations, path_deliveryConfigurations);
|
|
3967
3967
|
if (referencepath_deliveryConfigurationsValidationError !== null) {
|
|
3968
3968
|
let message = 'Object doesn\'t match DataAlertDeliveryConfigurationRepresentation (at "' + path_deliveryConfigurations + '")\n';
|
|
3969
3969
|
message += referencepath_deliveryConfigurationsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -3974,6 +3974,13 @@ function validate$13(obj, path = 'DataAlertRepresentation') {
|
|
|
3974
3974
|
if (typeof obj_id !== 'string') {
|
|
3975
3975
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
3976
3976
|
}
|
|
3977
|
+
if (obj.isEnabled !== undefined) {
|
|
3978
|
+
const obj_isEnabled = obj.isEnabled;
|
|
3979
|
+
const path_isEnabled = path + '.isEnabled';
|
|
3980
|
+
if (typeof obj_isEnabled !== 'boolean') {
|
|
3981
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isEnabled + '" (at "' + path_isEnabled + '")');
|
|
3982
|
+
}
|
|
3983
|
+
}
|
|
3977
3984
|
const obj_lastModifiedDate = obj.lastModifiedDate;
|
|
3978
3985
|
const path_lastModifiedDate = path + '.lastModifiedDate';
|
|
3979
3986
|
if (typeof obj_lastModifiedDate !== 'string') {
|
|
@@ -3982,7 +3989,7 @@ function validate$13(obj, path = 'DataAlertRepresentation') {
|
|
|
3982
3989
|
if (obj.properties !== undefined) {
|
|
3983
3990
|
const obj_properties = obj.properties;
|
|
3984
3991
|
const path_properties = path + '.properties';
|
|
3985
|
-
const referencepath_propertiesValidationError = validate$
|
|
3992
|
+
const referencepath_propertiesValidationError = validate$19(obj_properties, path_properties);
|
|
3986
3993
|
if (referencepath_propertiesValidationError !== null) {
|
|
3987
3994
|
let message = 'Object doesn\'t match DataAlertPropertyFilterOutputRepresentation (at "' + path_properties + '")\n';
|
|
3988
3995
|
message += referencepath_propertiesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -3991,7 +3998,7 @@ function validate$13(obj, path = 'DataAlertRepresentation') {
|
|
|
3991
3998
|
}
|
|
3992
3999
|
const obj_schedule = obj.schedule;
|
|
3993
4000
|
const path_schedule = path + '.schedule';
|
|
3994
|
-
const referencepath_scheduleValidationError = validate$
|
|
4001
|
+
const referencepath_scheduleValidationError = validate$18(obj_schedule, path_schedule);
|
|
3995
4002
|
if (referencepath_scheduleValidationError !== null) {
|
|
3996
4003
|
let message = 'Object doesn\'t match DataAlertScheduleRepresentation (at "' + path_schedule + '")\n';
|
|
3997
4004
|
message += referencepath_scheduleValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -4000,7 +4007,7 @@ function validate$13(obj, path = 'DataAlertRepresentation') {
|
|
|
4000
4007
|
if (obj.thresholds !== undefined) {
|
|
4001
4008
|
const obj_thresholds = obj.thresholds;
|
|
4002
4009
|
const path_thresholds = path + '.thresholds';
|
|
4003
|
-
const referencepath_thresholdsValidationError = validate$
|
|
4010
|
+
const referencepath_thresholdsValidationError = validate$15(obj_thresholds, path_thresholds);
|
|
4004
4011
|
if (referencepath_thresholdsValidationError !== null) {
|
|
4005
4012
|
let message = 'Object doesn\'t match DataAlertThresholdsRepresentation (at "' + path_thresholds + '")\n';
|
|
4006
4013
|
message += referencepath_thresholdsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -4039,7 +4046,7 @@ function equals$B(existing, incoming) {
|
|
|
4039
4046
|
}
|
|
4040
4047
|
const ingest$B = function DataAlertRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
4041
4048
|
if (process.env.NODE_ENV !== 'production') {
|
|
4042
|
-
const validateError = validate$
|
|
4049
|
+
const validateError = validate$14(input);
|
|
4043
4050
|
if (validateError !== null) {
|
|
4044
4051
|
throw validateError;
|
|
4045
4052
|
}
|
|
@@ -4061,7 +4068,7 @@ function getTypeCacheKeys$B(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
4061
4068
|
|
|
4062
4069
|
const TTL$o = 500;
|
|
4063
4070
|
const VERSION$A = "d3e9e0efe02f7fa88865b7e72fe25f25";
|
|
4064
|
-
function validate$
|
|
4071
|
+
function validate$13(obj, path = 'DataAlertCollectionRepresentation') {
|
|
4065
4072
|
const v_error = (() => {
|
|
4066
4073
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4067
4074
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4074,7 +4081,7 @@ function validate$12(obj, path = 'DataAlertCollectionRepresentation') {
|
|
|
4074
4081
|
for (let i = 0; i < obj_dataAlerts.length; i++) {
|
|
4075
4082
|
const obj_dataAlerts_item = obj_dataAlerts[i];
|
|
4076
4083
|
const path_dataAlerts_item = path_dataAlerts + '[' + i + ']';
|
|
4077
|
-
const referencepath_dataAlerts_itemValidationError = validate$
|
|
4084
|
+
const referencepath_dataAlerts_itemValidationError = validate$14(obj_dataAlerts_item, path_dataAlerts_item);
|
|
4078
4085
|
if (referencepath_dataAlerts_itemValidationError !== null) {
|
|
4079
4086
|
let message = 'Object doesn\'t match DataAlertRepresentation (at "' + path_dataAlerts_item + '")\n';
|
|
4080
4087
|
message += referencepath_dataAlerts_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -4135,7 +4142,7 @@ function equals$A(existing, incoming) {
|
|
|
4135
4142
|
}
|
|
4136
4143
|
const ingest$A = function DataAlertCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
4137
4144
|
if (process.env.NODE_ENV !== 'production') {
|
|
4138
|
-
const validateError = validate$
|
|
4145
|
+
const validateError = validate$13(input);
|
|
4139
4146
|
if (validateError !== null) {
|
|
4140
4147
|
throw validateError;
|
|
4141
4148
|
}
|
|
@@ -4300,7 +4307,7 @@ var DiscriminatorValues$3;
|
|
|
4300
4307
|
DiscriminatorValues["MsTeams"] = "MsTeams";
|
|
4301
4308
|
DiscriminatorValues["Notification"] = "Notification";
|
|
4302
4309
|
})(DiscriminatorValues$3 || (DiscriminatorValues$3 = {}));
|
|
4303
|
-
function validate$
|
|
4310
|
+
function validate$12(obj, path = 'DataAlertReceiversInputRepresentation') {
|
|
4304
4311
|
const v_error = (() => {
|
|
4305
4312
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4306
4313
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4314,7 +4321,7 @@ function validate$11(obj, path = 'DataAlertReceiversInputRepresentation') {
|
|
|
4314
4321
|
return v_error === undefined ? null : v_error;
|
|
4315
4322
|
}
|
|
4316
4323
|
|
|
4317
|
-
function validate$
|
|
4324
|
+
function validate$11(obj, path = 'DataAlertDeliveryConfigurationInputRepresentation') {
|
|
4318
4325
|
const v_error = (() => {
|
|
4319
4326
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4320
4327
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4327,7 +4334,7 @@ function validate$10(obj, path = 'DataAlertDeliveryConfigurationInputRepresentat
|
|
|
4327
4334
|
for (let i = 0; i < obj_receivers.length; i++) {
|
|
4328
4335
|
const obj_receivers_item = obj_receivers[i];
|
|
4329
4336
|
const path_receivers_item = path_receivers + '[' + i + ']';
|
|
4330
|
-
const referencepath_receivers_itemValidationError = validate$
|
|
4337
|
+
const referencepath_receivers_itemValidationError = validate$12(obj_receivers_item, path_receivers_item);
|
|
4331
4338
|
if (referencepath_receivers_itemValidationError !== null) {
|
|
4332
4339
|
let message = 'Object doesn\'t match DataAlertReceiversInputRepresentation (at "' + path_receivers_item + '")\n';
|
|
4333
4340
|
message += referencepath_receivers_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -4338,7 +4345,7 @@ function validate$10(obj, path = 'DataAlertDeliveryConfigurationInputRepresentat
|
|
|
4338
4345
|
return v_error === undefined ? null : v_error;
|
|
4339
4346
|
}
|
|
4340
4347
|
|
|
4341
|
-
function validate
|
|
4348
|
+
function validate$10(obj, path = 'UnifiedFilterInputRepresentation') {
|
|
4342
4349
|
const v_error = (() => {
|
|
4343
4350
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4344
4351
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4380,7 +4387,7 @@ var DiscriminatorValues$2;
|
|
|
4380
4387
|
DiscriminatorValues["RawValue"] = "RawValue";
|
|
4381
4388
|
DiscriminatorValues["Insights"] = "Insights";
|
|
4382
4389
|
})(DiscriminatorValues$2 || (DiscriminatorValues$2 = {}));
|
|
4383
|
-
function validate
|
|
4390
|
+
function validate$$(obj, path = 'DataAlertValueInputRepresentation') {
|
|
4384
4391
|
const v_error = (() => {
|
|
4385
4392
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4386
4393
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4394,7 +4401,7 @@ function validate$_(obj, path = 'DataAlertValueInputRepresentation') {
|
|
|
4394
4401
|
return v_error === undefined ? null : v_error;
|
|
4395
4402
|
}
|
|
4396
4403
|
|
|
4397
|
-
function validate$
|
|
4404
|
+
function validate$_(obj, path = 'DataAlertValueRightOperandInputRepresentation') {
|
|
4398
4405
|
const v_error = (() => {
|
|
4399
4406
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4400
4407
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4408,14 +4415,14 @@ function validate$Z(obj, path = 'DataAlertValueRightOperandInputRepresentation')
|
|
|
4408
4415
|
return v_error === undefined ? null : v_error;
|
|
4409
4416
|
}
|
|
4410
4417
|
|
|
4411
|
-
function validate$
|
|
4418
|
+
function validate$Z(obj, path = 'DataAlertConditionInputRepresentation') {
|
|
4412
4419
|
const v_error = (() => {
|
|
4413
4420
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4414
4421
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
4415
4422
|
}
|
|
4416
4423
|
const obj_leftOperand = obj.leftOperand;
|
|
4417
4424
|
const path_leftOperand = path + '.leftOperand';
|
|
4418
|
-
const referencepath_leftOperandValidationError = validate
|
|
4425
|
+
const referencepath_leftOperandValidationError = validate$$(obj_leftOperand, path_leftOperand);
|
|
4419
4426
|
if (referencepath_leftOperandValidationError !== null) {
|
|
4420
4427
|
let message = 'Object doesn\'t match DataAlertValueInputRepresentation (at "' + path_leftOperand + '")\n';
|
|
4421
4428
|
message += referencepath_leftOperandValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -4428,7 +4435,7 @@ function validate$Y(obj, path = 'DataAlertConditionInputRepresentation') {
|
|
|
4428
4435
|
}
|
|
4429
4436
|
const obj_rightOperand = obj.rightOperand;
|
|
4430
4437
|
const path_rightOperand = path + '.rightOperand';
|
|
4431
|
-
const referencepath_rightOperandValidationError = validate$
|
|
4438
|
+
const referencepath_rightOperandValidationError = validate$_(obj_rightOperand, path_rightOperand);
|
|
4432
4439
|
if (referencepath_rightOperandValidationError !== null) {
|
|
4433
4440
|
let message = 'Object doesn\'t match DataAlertValueRightOperandInputRepresentation (at "' + path_rightOperand + '")\n';
|
|
4434
4441
|
message += referencepath_rightOperandValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -4438,7 +4445,7 @@ function validate$Y(obj, path = 'DataAlertConditionInputRepresentation') {
|
|
|
4438
4445
|
return v_error === undefined ? null : v_error;
|
|
4439
4446
|
}
|
|
4440
4447
|
|
|
4441
|
-
function validate$
|
|
4448
|
+
function validate$Y(obj, path = 'DataAlertThresholdsInputRepresentation') {
|
|
4442
4449
|
const v_error = (() => {
|
|
4443
4450
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4444
4451
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4451,7 +4458,7 @@ function validate$X(obj, path = 'DataAlertThresholdsInputRepresentation') {
|
|
|
4451
4458
|
for (let i = 0; i < obj_conditions.length; i++) {
|
|
4452
4459
|
const obj_conditions_item = obj_conditions[i];
|
|
4453
4460
|
const path_conditions_item = path_conditions + '[' + i + ']';
|
|
4454
|
-
const referencepath_conditions_itemValidationError = validate$
|
|
4461
|
+
const referencepath_conditions_itemValidationError = validate$Z(obj_conditions_item, path_conditions_item);
|
|
4455
4462
|
if (referencepath_conditions_itemValidationError !== null) {
|
|
4456
4463
|
let message = 'Object doesn\'t match DataAlertConditionInputRepresentation (at "' + path_conditions_item + '")\n';
|
|
4457
4464
|
message += referencepath_conditions_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -4509,7 +4516,7 @@ var DiscriminatorValues$1;
|
|
|
4509
4516
|
DiscriminatorValues["Brief"] = "Brief";
|
|
4510
4517
|
DiscriminatorValues["Metric"] = "Metric";
|
|
4511
4518
|
})(DiscriminatorValues$1 || (DiscriminatorValues$1 = {}));
|
|
4512
|
-
function validate$
|
|
4519
|
+
function validate$X(obj, path = 'DataAlertContentInputRepresentation') {
|
|
4513
4520
|
const v_error = (() => {
|
|
4514
4521
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4515
4522
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4529,7 +4536,7 @@ var DiscriminatorValues;
|
|
|
4529
4536
|
DiscriminatorValues["Weekly"] = "Weekly";
|
|
4530
4537
|
DiscriminatorValues["EveryNMinutes"] = "EveryNMinutes";
|
|
4531
4538
|
})(DiscriminatorValues || (DiscriminatorValues = {}));
|
|
4532
|
-
function validate$
|
|
4539
|
+
function validate$W(obj, path = 'DataAlertScheduleInputRepresentation') {
|
|
4533
4540
|
const v_error = (() => {
|
|
4534
4541
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4535
4542
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4567,6 +4574,7 @@ const createDataAlert_ConfigPropertyMetadata = [
|
|
|
4567
4574
|
generateParamConfigMetadata('thresholds', false, 2 /* Body */, 4 /* Unsupported */),
|
|
4568
4575
|
generateParamConfigMetadata('utterance', true, 2 /* Body */, 0 /* String */),
|
|
4569
4576
|
generateParamConfigMetadata('agent', false, 2 /* Body */, 4 /* Unsupported */),
|
|
4577
|
+
generateParamConfigMetadata('isEnabled', false, 2 /* Body */, 1 /* Boolean */),
|
|
4570
4578
|
];
|
|
4571
4579
|
const createDataAlert_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$Q, createDataAlert_ConfigPropertyMetadata);
|
|
4572
4580
|
const createResourceParams$Q = /*#__PURE__*/ createResourceParams$10(createDataAlert_ConfigPropertyMetadata);
|
|
@@ -4574,22 +4582,22 @@ function typeCheckConfig$Q(untrustedConfig) {
|
|
|
4574
4582
|
const config = {};
|
|
4575
4583
|
typeCheckConfig$10(untrustedConfig, config, createDataAlert_ConfigPropertyMetadata);
|
|
4576
4584
|
const untrustedConfig_content = untrustedConfig.content;
|
|
4577
|
-
const referenceDataAlertContentInputRepresentationValidationError = validate$
|
|
4585
|
+
const referenceDataAlertContentInputRepresentationValidationError = validate$X(untrustedConfig_content);
|
|
4578
4586
|
if (referenceDataAlertContentInputRepresentationValidationError === null) {
|
|
4579
4587
|
config.content = untrustedConfig_content;
|
|
4580
4588
|
}
|
|
4581
4589
|
const untrustedConfig_deliveryConfigurations = untrustedConfig.deliveryConfigurations;
|
|
4582
|
-
const referenceDataAlertDeliveryConfigurationInputRepresentationValidationError = validate$
|
|
4590
|
+
const referenceDataAlertDeliveryConfigurationInputRepresentationValidationError = validate$11(untrustedConfig_deliveryConfigurations);
|
|
4583
4591
|
if (referenceDataAlertDeliveryConfigurationInputRepresentationValidationError === null) {
|
|
4584
4592
|
config.deliveryConfigurations = untrustedConfig_deliveryConfigurations;
|
|
4585
4593
|
}
|
|
4586
4594
|
const untrustedConfig_schedule = untrustedConfig.schedule;
|
|
4587
|
-
const referenceDataAlertScheduleInputRepresentationValidationError = validate$
|
|
4595
|
+
const referenceDataAlertScheduleInputRepresentationValidationError = validate$W(untrustedConfig_schedule);
|
|
4588
4596
|
if (referenceDataAlertScheduleInputRepresentationValidationError === null) {
|
|
4589
4597
|
config.schedule = untrustedConfig_schedule;
|
|
4590
4598
|
}
|
|
4591
4599
|
const untrustedConfig_thresholds = untrustedConfig.thresholds;
|
|
4592
|
-
const referenceDataAlertThresholdsInputRepresentationValidationError = validate$
|
|
4600
|
+
const referenceDataAlertThresholdsInputRepresentationValidationError = validate$Y(untrustedConfig_thresholds);
|
|
4593
4601
|
if (referenceDataAlertThresholdsInputRepresentationValidationError === null) {
|
|
4594
4602
|
config.thresholds = untrustedConfig_thresholds;
|
|
4595
4603
|
}
|
|
@@ -4644,7 +4652,7 @@ const createDataAlertAdapterFactory = (luvio) => {
|
|
|
4644
4652
|
};
|
|
4645
4653
|
};
|
|
4646
4654
|
|
|
4647
|
-
function validate$
|
|
4655
|
+
function validate$V(obj, path = 'DataAlertPropertyFilterInputRepresentation') {
|
|
4648
4656
|
const v_error = (() => {
|
|
4649
4657
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4650
4658
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4672,7 +4680,7 @@ function validate$U(obj, path = 'DataAlertPropertyFilterInputRepresentation') {
|
|
|
4672
4680
|
|
|
4673
4681
|
const TTL$n = 500;
|
|
4674
4682
|
const VERSION$z = "8ee49a59b88eeef0e19aa1298280a0a7";
|
|
4675
|
-
function validate$
|
|
4683
|
+
function validate$U(obj, path = 'DataAlertQueryCollectionRepresentation') {
|
|
4676
4684
|
const v_error = (() => {
|
|
4677
4685
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
4678
4686
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -4685,7 +4693,7 @@ function validate$T(obj, path = 'DataAlertQueryCollectionRepresentation') {
|
|
|
4685
4693
|
for (let i = 0; i < obj_dataAlerts.length; i++) {
|
|
4686
4694
|
const obj_dataAlerts_item = obj_dataAlerts[i];
|
|
4687
4695
|
const path_dataAlerts_item = path_dataAlerts + '[' + i + ']';
|
|
4688
|
-
const referencepath_dataAlerts_itemValidationError = validate$
|
|
4696
|
+
const referencepath_dataAlerts_itemValidationError = validate$14(obj_dataAlerts_item, path_dataAlerts_item);
|
|
4689
4697
|
if (referencepath_dataAlerts_itemValidationError !== null) {
|
|
4690
4698
|
let message = 'Object doesn\'t match DataAlertRepresentation (at "' + path_dataAlerts_item + '")\n';
|
|
4691
4699
|
message += referencepath_dataAlerts_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -4715,7 +4723,7 @@ function equals$z(existing, incoming) {
|
|
|
4715
4723
|
}
|
|
4716
4724
|
const ingest$z = function DataAlertQueryCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
4717
4725
|
if (process.env.NODE_ENV !== 'production') {
|
|
4718
|
-
const validateError = validate$
|
|
4726
|
+
const validateError = validate$U(input);
|
|
4719
4727
|
if (validateError !== null) {
|
|
4720
4728
|
throw validateError;
|
|
4721
4729
|
}
|
|
@@ -4807,7 +4815,7 @@ function typeCheckConfig$P(untrustedConfig) {
|
|
|
4807
4815
|
const config = {};
|
|
4808
4816
|
typeCheckConfig$10(untrustedConfig, config, postDataAlertQuery_ConfigPropertyMetadata);
|
|
4809
4817
|
const untrustedConfig_timeRange = untrustedConfig.timeRange;
|
|
4810
|
-
const referenceUnifiedFilterInputRepresentationValidationError = validate
|
|
4818
|
+
const referenceUnifiedFilterInputRepresentationValidationError = validate$10(untrustedConfig_timeRange);
|
|
4811
4819
|
if (referenceUnifiedFilterInputRepresentationValidationError === null) {
|
|
4812
4820
|
config.timeRange = untrustedConfig_timeRange;
|
|
4813
4821
|
}
|
|
@@ -4816,7 +4824,7 @@ function typeCheckConfig$P(untrustedConfig) {
|
|
|
4816
4824
|
const untrustedConfig_propertyFilters_array = [];
|
|
4817
4825
|
for (let i = 0, arrayLength = untrustedConfig_propertyFilters.length; i < arrayLength; i++) {
|
|
4818
4826
|
const untrustedConfig_propertyFilters_item = untrustedConfig_propertyFilters[i];
|
|
4819
|
-
const referenceDataAlertPropertyFilterInputRepresentationValidationError = validate$
|
|
4827
|
+
const referenceDataAlertPropertyFilterInputRepresentationValidationError = validate$V(untrustedConfig_propertyFilters_item);
|
|
4820
4828
|
if (referenceDataAlertPropertyFilterInputRepresentationValidationError === null) {
|
|
4821
4829
|
untrustedConfig_propertyFilters_array.push(untrustedConfig_propertyFilters_item);
|
|
4822
4830
|
}
|
|
@@ -5168,6 +5176,7 @@ const updateDataAlert_ConfigPropertyMetadata = [
|
|
|
5168
5176
|
generateParamConfigMetadata('thresholds', false, 2 /* Body */, 4 /* Unsupported */),
|
|
5169
5177
|
generateParamConfigMetadata('utterance', true, 2 /* Body */, 0 /* String */),
|
|
5170
5178
|
generateParamConfigMetadata('agent', false, 2 /* Body */, 4 /* Unsupported */),
|
|
5179
|
+
generateParamConfigMetadata('isEnabled', false, 2 /* Body */, 1 /* Boolean */),
|
|
5171
5180
|
];
|
|
5172
5181
|
const updateDataAlert_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$M, updateDataAlert_ConfigPropertyMetadata);
|
|
5173
5182
|
const createResourceParams$M = /*#__PURE__*/ createResourceParams$10(updateDataAlert_ConfigPropertyMetadata);
|
|
@@ -5175,22 +5184,22 @@ function typeCheckConfig$M(untrustedConfig) {
|
|
|
5175
5184
|
const config = {};
|
|
5176
5185
|
typeCheckConfig$10(untrustedConfig, config, updateDataAlert_ConfigPropertyMetadata);
|
|
5177
5186
|
const untrustedConfig_content = untrustedConfig.content;
|
|
5178
|
-
const referenceDataAlertContentInputRepresentationValidationError = validate$
|
|
5187
|
+
const referenceDataAlertContentInputRepresentationValidationError = validate$X(untrustedConfig_content);
|
|
5179
5188
|
if (referenceDataAlertContentInputRepresentationValidationError === null) {
|
|
5180
5189
|
config.content = untrustedConfig_content;
|
|
5181
5190
|
}
|
|
5182
5191
|
const untrustedConfig_deliveryConfigurations = untrustedConfig.deliveryConfigurations;
|
|
5183
|
-
const referenceDataAlertDeliveryConfigurationInputRepresentationValidationError = validate$
|
|
5192
|
+
const referenceDataAlertDeliveryConfigurationInputRepresentationValidationError = validate$11(untrustedConfig_deliveryConfigurations);
|
|
5184
5193
|
if (referenceDataAlertDeliveryConfigurationInputRepresentationValidationError === null) {
|
|
5185
5194
|
config.deliveryConfigurations = untrustedConfig_deliveryConfigurations;
|
|
5186
5195
|
}
|
|
5187
5196
|
const untrustedConfig_schedule = untrustedConfig.schedule;
|
|
5188
|
-
const referenceDataAlertScheduleInputRepresentationValidationError = validate$
|
|
5197
|
+
const referenceDataAlertScheduleInputRepresentationValidationError = validate$W(untrustedConfig_schedule);
|
|
5189
5198
|
if (referenceDataAlertScheduleInputRepresentationValidationError === null) {
|
|
5190
5199
|
config.schedule = untrustedConfig_schedule;
|
|
5191
5200
|
}
|
|
5192
5201
|
const untrustedConfig_thresholds = untrustedConfig.thresholds;
|
|
5193
|
-
const referenceDataAlertThresholdsInputRepresentationValidationError = validate$
|
|
5202
|
+
const referenceDataAlertThresholdsInputRepresentationValidationError = validate$Y(untrustedConfig_thresholds);
|
|
5194
5203
|
if (referenceDataAlertThresholdsInputRepresentationValidationError === null) {
|
|
5195
5204
|
config.thresholds = untrustedConfig_thresholds;
|
|
5196
5205
|
}
|
|
@@ -5247,7 +5256,7 @@ const updateDataAlertAdapterFactory = (luvio) => {
|
|
|
5247
5256
|
|
|
5248
5257
|
const TTL$m = 100;
|
|
5249
5258
|
const VERSION$y = "26cdd644d03794763d0bbd771321ec42";
|
|
5250
|
-
function validate$
|
|
5259
|
+
function validate$T(obj, path = 'DataAlertRunOutputRepresentation') {
|
|
5251
5260
|
const v_error = (() => {
|
|
5252
5261
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
5253
5262
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -5324,7 +5333,7 @@ function equals$y(existing, incoming) {
|
|
|
5324
5333
|
}
|
|
5325
5334
|
const ingest$y = function DataAlertRunOutputRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
5326
5335
|
if (process.env.NODE_ENV !== 'production') {
|
|
5327
|
-
const validateError = validate$
|
|
5336
|
+
const validateError = validate$T(input);
|
|
5328
5337
|
if (validateError !== null) {
|
|
5329
5338
|
throw validateError;
|
|
5330
5339
|
}
|
|
@@ -5434,8 +5443,8 @@ const postDataAlertRunAdapterFactory = (luvio) => {
|
|
|
5434
5443
|
};
|
|
5435
5444
|
};
|
|
5436
5445
|
|
|
5437
|
-
function validate$
|
|
5438
|
-
const validateBaseAnalyticsRepresentation_validateError = validate$
|
|
5446
|
+
function validate$S(obj, path = 'AnalyticsUserRepresentation') {
|
|
5447
|
+
const validateBaseAnalyticsRepresentation_validateError = validate$1i(obj, path);
|
|
5439
5448
|
if (validateBaseAnalyticsRepresentation_validateError !== null) {
|
|
5440
5449
|
return validateBaseAnalyticsRepresentation_validateError;
|
|
5441
5450
|
}
|
|
@@ -5475,7 +5484,7 @@ function validate$R(obj, path = 'AnalyticsUserRepresentation') {
|
|
|
5475
5484
|
return v_error === undefined ? null : v_error;
|
|
5476
5485
|
}
|
|
5477
5486
|
|
|
5478
|
-
function validate$
|
|
5487
|
+
function validate$R(obj, path = 'AdditionalInfoDataspacesRepresentation') {
|
|
5479
5488
|
const v_error = (() => {
|
|
5480
5489
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
5481
5490
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -5512,7 +5521,7 @@ function validate$Q(obj, path = 'AdditionalInfoDataspacesRepresentation') {
|
|
|
5512
5521
|
return v_error === undefined ? null : v_error;
|
|
5513
5522
|
}
|
|
5514
5523
|
|
|
5515
|
-
function validate$
|
|
5524
|
+
function validate$Q(obj, path = 'AdditionalInfoAssetWarningsRepresentation') {
|
|
5516
5525
|
const v_error = (() => {
|
|
5517
5526
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
5518
5527
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -5535,7 +5544,7 @@ function validate$P(obj, path = 'AdditionalInfoAssetWarningsRepresentation') {
|
|
|
5535
5544
|
return v_error === undefined ? null : v_error;
|
|
5536
5545
|
}
|
|
5537
5546
|
|
|
5538
|
-
function validate$
|
|
5547
|
+
function validate$P(obj, path = 'AdditionalInfoAssetRepresentation') {
|
|
5539
5548
|
const v_error = (() => {
|
|
5540
5549
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
5541
5550
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -5574,7 +5583,7 @@ function validate$O(obj, path = 'AdditionalInfoAssetRepresentation') {
|
|
|
5574
5583
|
const path_warnings = path + '.warnings';
|
|
5575
5584
|
let obj_warnings_union0 = null;
|
|
5576
5585
|
const obj_warnings_union0_error = (() => {
|
|
5577
|
-
const referencepath_warningsValidationError = validate$
|
|
5586
|
+
const referencepath_warningsValidationError = validate$Q(obj_warnings, path_warnings);
|
|
5578
5587
|
if (referencepath_warningsValidationError !== null) {
|
|
5579
5588
|
let message = 'Object doesn\'t match AdditionalInfoAssetWarningsRepresentation (at "' + path_warnings + '")\n';
|
|
5580
5589
|
message += referencepath_warningsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -5604,7 +5613,7 @@ function validate$O(obj, path = 'AdditionalInfoAssetRepresentation') {
|
|
|
5604
5613
|
return v_error === undefined ? null : v_error;
|
|
5605
5614
|
}
|
|
5606
5615
|
|
|
5607
|
-
function validate$
|
|
5616
|
+
function validate$O(obj, path = 'DataAssetRequestAdditionalInfoRepresentation') {
|
|
5608
5617
|
const v_error = (() => {
|
|
5609
5618
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
5610
5619
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -5612,7 +5621,7 @@ function validate$N(obj, path = 'DataAssetRequestAdditionalInfoRepresentation')
|
|
|
5612
5621
|
if (obj.dataspaces !== undefined) {
|
|
5613
5622
|
const obj_dataspaces = obj.dataspaces;
|
|
5614
5623
|
const path_dataspaces = path + '.dataspaces';
|
|
5615
|
-
const referencepath_dataspacesValidationError = validate$
|
|
5624
|
+
const referencepath_dataspacesValidationError = validate$R(obj_dataspaces, path_dataspaces);
|
|
5616
5625
|
if (referencepath_dataspacesValidationError !== null) {
|
|
5617
5626
|
let message = 'Object doesn\'t match AdditionalInfoDataspacesRepresentation (at "' + path_dataspaces + '")\n';
|
|
5618
5627
|
message += referencepath_dataspacesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -5628,7 +5637,7 @@ function validate$N(obj, path = 'DataAssetRequestAdditionalInfoRepresentation')
|
|
|
5628
5637
|
for (let i = 0; i < obj_deployedAssets.length; i++) {
|
|
5629
5638
|
const obj_deployedAssets_item = obj_deployedAssets[i];
|
|
5630
5639
|
const path_deployedAssets_item = path_deployedAssets + '[' + i + ']';
|
|
5631
|
-
const referencepath_deployedAssets_itemValidationError = validate$
|
|
5640
|
+
const referencepath_deployedAssets_itemValidationError = validate$P(obj_deployedAssets_item, path_deployedAssets_item);
|
|
5632
5641
|
if (referencepath_deployedAssets_itemValidationError !== null) {
|
|
5633
5642
|
let message = 'Object doesn\'t match AdditionalInfoAssetRepresentation (at "' + path_deployedAssets_item + '")\n';
|
|
5634
5643
|
message += referencepath_deployedAssets_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -5645,7 +5654,7 @@ function validate$N(obj, path = 'DataAssetRequestAdditionalInfoRepresentation')
|
|
|
5645
5654
|
for (let i = 0; i < obj_failedAssets.length; i++) {
|
|
5646
5655
|
const obj_failedAssets_item = obj_failedAssets[i];
|
|
5647
5656
|
const path_failedAssets_item = path_failedAssets + '[' + i + ']';
|
|
5648
|
-
const referencepath_failedAssets_itemValidationError = validate$
|
|
5657
|
+
const referencepath_failedAssets_itemValidationError = validate$P(obj_failedAssets_item, path_failedAssets_item);
|
|
5649
5658
|
if (referencepath_failedAssets_itemValidationError !== null) {
|
|
5650
5659
|
let message = 'Object doesn\'t match AdditionalInfoAssetRepresentation (at "' + path_failedAssets_item + '")\n';
|
|
5651
5660
|
message += referencepath_failedAssets_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -5662,7 +5671,7 @@ function validate$N(obj, path = 'DataAssetRequestAdditionalInfoRepresentation')
|
|
|
5662
5671
|
for (let i = 0; i < obj_inProgressAssets.length; i++) {
|
|
5663
5672
|
const obj_inProgressAssets_item = obj_inProgressAssets[i];
|
|
5664
5673
|
const path_inProgressAssets_item = path_inProgressAssets + '[' + i + ']';
|
|
5665
|
-
const referencepath_inProgressAssets_itemValidationError = validate$
|
|
5674
|
+
const referencepath_inProgressAssets_itemValidationError = validate$P(obj_inProgressAssets_item, path_inProgressAssets_item);
|
|
5666
5675
|
if (referencepath_inProgressAssets_itemValidationError !== null) {
|
|
5667
5676
|
let message = 'Object doesn\'t match AdditionalInfoAssetRepresentation (at "' + path_inProgressAssets_item + '")\n';
|
|
5668
5677
|
message += referencepath_inProgressAssets_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -5679,7 +5688,7 @@ function validate$N(obj, path = 'DataAssetRequestAdditionalInfoRepresentation')
|
|
|
5679
5688
|
for (let i = 0; i < obj_notStartedAssets.length; i++) {
|
|
5680
5689
|
const obj_notStartedAssets_item = obj_notStartedAssets[i];
|
|
5681
5690
|
const path_notStartedAssets_item = path_notStartedAssets + '[' + i + ']';
|
|
5682
|
-
const referencepath_notStartedAssets_itemValidationError = validate$
|
|
5691
|
+
const referencepath_notStartedAssets_itemValidationError = validate$P(obj_notStartedAssets_item, path_notStartedAssets_item);
|
|
5683
5692
|
if (referencepath_notStartedAssets_itemValidationError !== null) {
|
|
5684
5693
|
let message = 'Object doesn\'t match AdditionalInfoAssetRepresentation (at "' + path_notStartedAssets_item + '")\n';
|
|
5685
5694
|
message += referencepath_notStartedAssets_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -5691,6 +5700,29 @@ function validate$N(obj, path = 'DataAssetRequestAdditionalInfoRepresentation')
|
|
|
5691
5700
|
return v_error === undefined ? null : v_error;
|
|
5692
5701
|
}
|
|
5693
5702
|
|
|
5703
|
+
function validate$N(obj, path = 'DataAssetRequestDebugInfo') {
|
|
5704
|
+
const v_error = (() => {
|
|
5705
|
+
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
5706
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
5707
|
+
}
|
|
5708
|
+
if (obj.errorCode !== undefined) {
|
|
5709
|
+
const obj_errorCode = obj.errorCode;
|
|
5710
|
+
const path_errorCode = path + '.errorCode';
|
|
5711
|
+
if (typeof obj_errorCode !== 'string') {
|
|
5712
|
+
return new TypeError('Expected "string" but received "' + typeof obj_errorCode + '" (at "' + path_errorCode + '")');
|
|
5713
|
+
}
|
|
5714
|
+
}
|
|
5715
|
+
if (obj.errorMessage !== undefined) {
|
|
5716
|
+
const obj_errorMessage = obj.errorMessage;
|
|
5717
|
+
const path_errorMessage = path + '.errorMessage';
|
|
5718
|
+
if (typeof obj_errorMessage !== 'string') {
|
|
5719
|
+
return new TypeError('Expected "string" but received "' + typeof obj_errorMessage + '" (at "' + path_errorMessage + '")');
|
|
5720
|
+
}
|
|
5721
|
+
}
|
|
5722
|
+
})();
|
|
5723
|
+
return v_error === undefined ? null : v_error;
|
|
5724
|
+
}
|
|
5725
|
+
|
|
5694
5726
|
function validate$M(obj, path = 'PromotionContentAssetRepresentation') {
|
|
5695
5727
|
const v_error = (() => {
|
|
5696
5728
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -5810,7 +5842,7 @@ function validate$M(obj, path = 'PromotionContentAssetRepresentation') {
|
|
|
5810
5842
|
}
|
|
5811
5843
|
|
|
5812
5844
|
const TTL$l = 500;
|
|
5813
|
-
const VERSION$x = "
|
|
5845
|
+
const VERSION$x = "48af14fd2235b0d2cee575868ca6fb88";
|
|
5814
5846
|
function validate$L(obj, path = 'DataAssetRequestRepresentation') {
|
|
5815
5847
|
const v_error = (() => {
|
|
5816
5848
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -5820,7 +5852,7 @@ function validate$L(obj, path = 'DataAssetRequestRepresentation') {
|
|
|
5820
5852
|
const path_acknowledgedBy = path + '.acknowledgedBy';
|
|
5821
5853
|
let obj_acknowledgedBy_union0 = null;
|
|
5822
5854
|
const obj_acknowledgedBy_union0_error = (() => {
|
|
5823
|
-
const referencepath_acknowledgedByValidationError = validate$
|
|
5855
|
+
const referencepath_acknowledgedByValidationError = validate$S(obj_acknowledgedBy, path_acknowledgedBy);
|
|
5824
5856
|
if (referencepath_acknowledgedByValidationError !== null) {
|
|
5825
5857
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_acknowledgedBy + '")\n';
|
|
5826
5858
|
message += referencepath_acknowledgedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -5876,7 +5908,7 @@ function validate$L(obj, path = 'DataAssetRequestRepresentation') {
|
|
|
5876
5908
|
const path_additionalInfo = path + '.additionalInfo';
|
|
5877
5909
|
let obj_additionalInfo_union0 = null;
|
|
5878
5910
|
const obj_additionalInfo_union0_error = (() => {
|
|
5879
|
-
const referencepath_additionalInfoValidationError = validate$
|
|
5911
|
+
const referencepath_additionalInfoValidationError = validate$O(obj_additionalInfo, path_additionalInfo);
|
|
5880
5912
|
if (referencepath_additionalInfoValidationError !== null) {
|
|
5881
5913
|
let message = 'Object doesn\'t match DataAssetRequestAdditionalInfoRepresentation (at "' + path_additionalInfo + '")\n';
|
|
5882
5914
|
message += referencepath_additionalInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -5937,7 +5969,7 @@ function validate$L(obj, path = 'DataAssetRequestRepresentation') {
|
|
|
5937
5969
|
const path_cancelledBy = path + '.cancelledBy';
|
|
5938
5970
|
let obj_cancelledBy_union0 = null;
|
|
5939
5971
|
const obj_cancelledBy_union0_error = (() => {
|
|
5940
|
-
const referencepath_cancelledByValidationError = validate$
|
|
5972
|
+
const referencepath_cancelledByValidationError = validate$S(obj_cancelledBy, path_cancelledBy);
|
|
5941
5973
|
if (referencepath_cancelledByValidationError !== null) {
|
|
5942
5974
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_cancelledBy + '")\n';
|
|
5943
5975
|
message += referencepath_cancelledByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -5992,7 +6024,7 @@ function validate$L(obj, path = 'DataAssetRequestRepresentation') {
|
|
|
5992
6024
|
const path_completedBy = path + '.completedBy';
|
|
5993
6025
|
let obj_completedBy_union0 = null;
|
|
5994
6026
|
const obj_completedBy_union0_error = (() => {
|
|
5995
|
-
const referencepath_completedByValidationError = validate$
|
|
6027
|
+
const referencepath_completedByValidationError = validate$S(obj_completedBy, path_completedBy);
|
|
5996
6028
|
if (referencepath_completedByValidationError !== null) {
|
|
5997
6029
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_completedBy + '")\n';
|
|
5998
6030
|
message += referencepath_completedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -6043,6 +6075,37 @@ function validate$L(obj, path = 'DataAssetRequestRepresentation') {
|
|
|
6043
6075
|
message += '\n' + obj_completedDate_union1.split('\n').map((line) => '\t' + line).join('\n');
|
|
6044
6076
|
return new TypeError(message);
|
|
6045
6077
|
}
|
|
6078
|
+
if (obj.debugInfo !== undefined) {
|
|
6079
|
+
const obj_debugInfo = obj.debugInfo;
|
|
6080
|
+
const path_debugInfo = path + '.debugInfo';
|
|
6081
|
+
let obj_debugInfo_union0 = null;
|
|
6082
|
+
const obj_debugInfo_union0_error = (() => {
|
|
6083
|
+
const referencepath_debugInfoValidationError = validate$N(obj_debugInfo, path_debugInfo);
|
|
6084
|
+
if (referencepath_debugInfoValidationError !== null) {
|
|
6085
|
+
let message = 'Object doesn\'t match DataAssetRequestDebugInfo (at "' + path_debugInfo + '")\n';
|
|
6086
|
+
message += referencepath_debugInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
6087
|
+
return new TypeError(message);
|
|
6088
|
+
}
|
|
6089
|
+
})();
|
|
6090
|
+
if (obj_debugInfo_union0_error != null) {
|
|
6091
|
+
obj_debugInfo_union0 = obj_debugInfo_union0_error.message;
|
|
6092
|
+
}
|
|
6093
|
+
let obj_debugInfo_union1 = null;
|
|
6094
|
+
const obj_debugInfo_union1_error = (() => {
|
|
6095
|
+
if (obj_debugInfo !== null) {
|
|
6096
|
+
return new TypeError('Expected "null" but received "' + typeof obj_debugInfo + '" (at "' + path_debugInfo + '")');
|
|
6097
|
+
}
|
|
6098
|
+
})();
|
|
6099
|
+
if (obj_debugInfo_union1_error != null) {
|
|
6100
|
+
obj_debugInfo_union1 = obj_debugInfo_union1_error.message;
|
|
6101
|
+
}
|
|
6102
|
+
if (obj_debugInfo_union0 && obj_debugInfo_union1) {
|
|
6103
|
+
let message = 'Object doesn\'t match union (at "' + path_debugInfo + '")';
|
|
6104
|
+
message += '\n' + obj_debugInfo_union0.split('\n').map((line) => '\t' + line).join('\n');
|
|
6105
|
+
message += '\n' + obj_debugInfo_union1.split('\n').map((line) => '\t' + line).join('\n');
|
|
6106
|
+
return new TypeError(message);
|
|
6107
|
+
}
|
|
6108
|
+
}
|
|
6046
6109
|
if (obj.errorCode !== undefined) {
|
|
6047
6110
|
const obj_errorCode = obj.errorCode;
|
|
6048
6111
|
const path_errorCode = path + '.errorCode';
|
|
@@ -6163,7 +6226,7 @@ function validate$L(obj, path = 'DataAssetRequestRepresentation') {
|
|
|
6163
6226
|
}
|
|
6164
6227
|
const obj_lastModifiedBy = obj.lastModifiedBy;
|
|
6165
6228
|
const path_lastModifiedBy = path + '.lastModifiedBy';
|
|
6166
|
-
const referencepath_lastModifiedByValidationError = validate$
|
|
6229
|
+
const referencepath_lastModifiedByValidationError = validate$S(obj_lastModifiedBy, path_lastModifiedBy);
|
|
6167
6230
|
if (referencepath_lastModifiedByValidationError !== null) {
|
|
6168
6231
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_lastModifiedBy + '")\n';
|
|
6169
6232
|
message += referencepath_lastModifiedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -6256,7 +6319,7 @@ function validate$L(obj, path = 'DataAssetRequestRepresentation') {
|
|
|
6256
6319
|
const path_packageExportedBy = path + '.packageExportedBy';
|
|
6257
6320
|
let obj_packageExportedBy_union0 = null;
|
|
6258
6321
|
const obj_packageExportedBy_union0_error = (() => {
|
|
6259
|
-
const referencepath_packageExportedByValidationError = validate$
|
|
6322
|
+
const referencepath_packageExportedByValidationError = validate$S(obj_packageExportedBy, path_packageExportedBy);
|
|
6260
6323
|
if (referencepath_packageExportedByValidationError !== null) {
|
|
6261
6324
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_packageExportedBy + '")\n';
|
|
6262
6325
|
message += referencepath_packageExportedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -6487,7 +6550,7 @@ function validate$L(obj, path = 'DataAssetRequestRepresentation') {
|
|
|
6487
6550
|
}
|
|
6488
6551
|
const obj_requestedBy = obj.requestedBy;
|
|
6489
6552
|
const path_requestedBy = path + '.requestedBy';
|
|
6490
|
-
const referencepath_requestedByValidationError = validate$
|
|
6553
|
+
const referencepath_requestedByValidationError = validate$S(obj_requestedBy, path_requestedBy);
|
|
6491
6554
|
if (referencepath_requestedByValidationError !== null) {
|
|
6492
6555
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_requestedBy + '")\n';
|
|
6493
6556
|
message += referencepath_requestedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -7448,7 +7511,7 @@ function validate$H(obj, path = 'DataAssetRepresentation') {
|
|
|
7448
7511
|
}
|
|
7449
7512
|
const obj_createdBy = obj.createdBy;
|
|
7450
7513
|
const path_createdBy = path + '.createdBy';
|
|
7451
|
-
const referencepath_createdByValidationError = validate$
|
|
7514
|
+
const referencepath_createdByValidationError = validate$S(obj_createdBy, path_createdBy);
|
|
7452
7515
|
if (referencepath_createdByValidationError !== null) {
|
|
7453
7516
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_createdBy + '")\n';
|
|
7454
7517
|
message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -7513,7 +7576,7 @@ function validate$H(obj, path = 'DataAssetRepresentation') {
|
|
|
7513
7576
|
}
|
|
7514
7577
|
const obj_lastModifiedBy = obj.lastModifiedBy;
|
|
7515
7578
|
const path_lastModifiedBy = path + '.lastModifiedBy';
|
|
7516
|
-
const referencepath_lastModifiedByValidationError = validate$
|
|
7579
|
+
const referencepath_lastModifiedByValidationError = validate$S(obj_lastModifiedBy, path_lastModifiedBy);
|
|
7517
7580
|
if (referencepath_lastModifiedByValidationError !== null) {
|
|
7518
7581
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_lastModifiedBy + '")\n';
|
|
7519
7582
|
message += referencepath_lastModifiedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -8100,7 +8163,7 @@ function validate$C(obj, path = 'FollowerAssetRepresentation') {
|
|
|
8100
8163
|
}
|
|
8101
8164
|
const obj_createdBy = obj.createdBy;
|
|
8102
8165
|
const path_createdBy = path + '.createdBy';
|
|
8103
|
-
const referencepath_createdByValidationError = validate$
|
|
8166
|
+
const referencepath_createdByValidationError = validate$S(obj_createdBy, path_createdBy);
|
|
8104
8167
|
if (referencepath_createdByValidationError !== null) {
|
|
8105
8168
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_createdBy + '")\n';
|
|
8106
8169
|
message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -8688,7 +8751,7 @@ function validate$z(obj, path = 'FollowerCollectionRepresentation') {
|
|
|
8688
8751
|
for (let i = 0; i < obj_followers.length; i++) {
|
|
8689
8752
|
const obj_followers_item = obj_followers[i];
|
|
8690
8753
|
const path_followers_item = path_followers + '[' + i + ']';
|
|
8691
|
-
const referencepath_followers_itemValidationError = validate$
|
|
8754
|
+
const referencepath_followers_itemValidationError = validate$S(obj_followers_item, path_followers_item);
|
|
8692
8755
|
if (referencepath_followers_itemValidationError !== null) {
|
|
8693
8756
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_followers_item + '")\n';
|
|
8694
8757
|
message += referencepath_followers_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -10229,7 +10292,7 @@ function validate$p(obj, path = 'SetupRecordShareRepresentation') {
|
|
|
10229
10292
|
}
|
|
10230
10293
|
const obj_createdBy = obj.createdBy;
|
|
10231
10294
|
const path_createdBy = path + '.createdBy';
|
|
10232
|
-
const referencepath_createdByValidationError = validate$
|
|
10295
|
+
const referencepath_createdByValidationError = validate$S(obj_createdBy, path_createdBy);
|
|
10233
10296
|
if (referencepath_createdByValidationError !== null) {
|
|
10234
10297
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_createdBy + '")\n';
|
|
10235
10298
|
message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -10242,7 +10305,7 @@ function validate$p(obj, path = 'SetupRecordShareRepresentation') {
|
|
|
10242
10305
|
}
|
|
10243
10306
|
const obj_lastModifiedBy = obj.lastModifiedBy;
|
|
10244
10307
|
const path_lastModifiedBy = path + '.lastModifiedBy';
|
|
10245
|
-
const referencepath_lastModifiedByValidationError = validate$
|
|
10308
|
+
const referencepath_lastModifiedByValidationError = validate$S(obj_lastModifiedBy, path_lastModifiedBy);
|
|
10246
10309
|
if (referencepath_lastModifiedByValidationError !== null) {
|
|
10247
10310
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_lastModifiedBy + '")\n';
|
|
10248
10311
|
message += referencepath_lastModifiedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11116,7 +11179,7 @@ function validate$l(obj, path = 'AnalyticsUsersQueryResultsRepresentation') {
|
|
|
11116
11179
|
for (let i = 0; i < obj_items.length; i++) {
|
|
11117
11180
|
const obj_items_item = obj_items[i];
|
|
11118
11181
|
const path_items_item = path_items + '[' + i + ']';
|
|
11119
|
-
const referencepath_items_itemValidationError = validate$
|
|
11182
|
+
const referencepath_items_itemValidationError = validate$S(obj_items_item, path_items_item);
|
|
11120
11183
|
if (referencepath_items_itemValidationError !== null) {
|
|
11121
11184
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_items_item + '")\n';
|
|
11122
11185
|
message += referencepath_items_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11311,7 +11374,7 @@ function validate$j(obj, path = 'VisualizationShallowRepresentation') {
|
|
|
11311
11374
|
}
|
|
11312
11375
|
const obj_createdBy = obj.createdBy;
|
|
11313
11376
|
const path_createdBy = path + '.createdBy';
|
|
11314
|
-
const referencepath_createdByValidationError = validate$
|
|
11377
|
+
const referencepath_createdByValidationError = validate$S(obj_createdBy, path_createdBy);
|
|
11315
11378
|
if (referencepath_createdByValidationError !== null) {
|
|
11316
11379
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_createdBy + '")\n';
|
|
11317
11380
|
message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11356,7 +11419,7 @@ function validate$j(obj, path = 'VisualizationShallowRepresentation') {
|
|
|
11356
11419
|
if (obj.lastModifiedBy !== undefined) {
|
|
11357
11420
|
const obj_lastModifiedBy = obj.lastModifiedBy;
|
|
11358
11421
|
const path_lastModifiedBy = path + '.lastModifiedBy';
|
|
11359
|
-
const referencepath_lastModifiedByValidationError = validate$
|
|
11422
|
+
const referencepath_lastModifiedByValidationError = validate$S(obj_lastModifiedBy, path_lastModifiedBy);
|
|
11360
11423
|
if (referencepath_lastModifiedByValidationError !== null) {
|
|
11361
11424
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_lastModifiedBy + '")\n';
|
|
11362
11425
|
message += referencepath_lastModifiedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11686,7 +11749,7 @@ function validate$h(obj, path = 'VisualizationRepresentation') {
|
|
|
11686
11749
|
}
|
|
11687
11750
|
const obj_createdBy = obj.createdBy;
|
|
11688
11751
|
const path_createdBy = path + '.createdBy';
|
|
11689
|
-
const referencepath_createdByValidationError = validate$
|
|
11752
|
+
const referencepath_createdByValidationError = validate$S(obj_createdBy, path_createdBy);
|
|
11690
11753
|
if (referencepath_createdByValidationError !== null) {
|
|
11691
11754
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_createdBy + '")\n';
|
|
11692
11755
|
message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11761,7 +11824,7 @@ function validate$h(obj, path = 'VisualizationRepresentation') {
|
|
|
11761
11824
|
if (obj.lastModifiedBy !== undefined) {
|
|
11762
11825
|
const obj_lastModifiedBy = obj.lastModifiedBy;
|
|
11763
11826
|
const path_lastModifiedBy = path + '.lastModifiedBy';
|
|
11764
|
-
const referencepath_lastModifiedByValidationError = validate$
|
|
11827
|
+
const referencepath_lastModifiedByValidationError = validate$S(obj_lastModifiedBy, path_lastModifiedBy);
|
|
11765
11828
|
if (referencepath_lastModifiedByValidationError !== null) {
|
|
11766
11829
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_lastModifiedBy + '")\n';
|
|
11767
11830
|
message += referencepath_lastModifiedByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -12702,7 +12765,7 @@ function validate$f(obj, path = 'WorkspaceRepresentation') {
|
|
|
12702
12765
|
}
|
|
12703
12766
|
const obj_createdBy = obj.createdBy;
|
|
12704
12767
|
const path_createdBy = path + '.createdBy';
|
|
12705
|
-
const referencepath_createdByValidationError = validate$
|
|
12768
|
+
const referencepath_createdByValidationError = validate$S(obj_createdBy, path_createdBy);
|
|
12706
12769
|
if (referencepath_createdByValidationError !== null) {
|
|
12707
12770
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_createdBy + '")\n';
|
|
12708
12771
|
message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -13462,7 +13525,7 @@ function validate$d(obj, path = 'WorkspaceAssetRepresentation') {
|
|
|
13462
13525
|
}
|
|
13463
13526
|
const obj_createdBy = obj.createdBy;
|
|
13464
13527
|
const path_createdBy = path + '.createdBy';
|
|
13465
|
-
const referencepath_createdByValidationError = validate$
|
|
13528
|
+
const referencepath_createdByValidationError = validate$S(obj_createdBy, path_createdBy);
|
|
13466
13529
|
if (referencepath_createdByValidationError !== null) {
|
|
13467
13530
|
let message = 'Object doesn\'t match AnalyticsUserRepresentation (at "' + path_createdBy + '")\n';
|
|
13468
13531
|
message += referencepath_createdByValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|