@salesforce/lds-adapters-analytics-unifiedanalytics 1.384.0 → 1.385.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 +120 -122
- package/dist/es/es2018/types/src/generated/adapters/createRecordShares.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getShares.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauRecordsSharesByRecordId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauRecordsSharesByRecordId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertCollectionRepresentation.d.ts +5 -14
- package/dist/es/es2018/types/src/generated/types/DataAlertRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SetupRecordAccessCollectionRepresentation.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/SetupRecordAccessInputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +124 -123
- package/src/raml/api.raml +21 -2
- package/src/raml/luvio.raml +5 -0
package/sfdc/index.js
CHANGED
|
@@ -1651,7 +1651,7 @@ function ingestSuccess$Q(luvio, resourceParams, response) {
|
|
|
1651
1651
|
function createResourceRequest$Y(config) {
|
|
1652
1652
|
const headers = {};
|
|
1653
1653
|
return {
|
|
1654
|
-
baseUri: '/services/data/
|
|
1654
|
+
baseUri: '/services/data/v66.0',
|
|
1655
1655
|
basePath: '/tableau/annotations',
|
|
1656
1656
|
method: 'post',
|
|
1657
1657
|
body: config.body,
|
|
@@ -1877,7 +1877,7 @@ function ingestSuccess$P(luvio, resourceParams, response) {
|
|
|
1877
1877
|
function createResourceRequest$X(config) {
|
|
1878
1878
|
const headers = {};
|
|
1879
1879
|
return {
|
|
1880
|
-
baseUri: '/services/data/
|
|
1880
|
+
baseUri: '/services/data/v66.0',
|
|
1881
1881
|
basePath: '/tableau/slack/channels',
|
|
1882
1882
|
method: 'post',
|
|
1883
1883
|
body: config.body,
|
|
@@ -2127,7 +2127,7 @@ function ingestSuccess$O(luvio, resourceParams, response) {
|
|
|
2127
2127
|
function createResourceRequest$W(config) {
|
|
2128
2128
|
const headers = {};
|
|
2129
2129
|
return {
|
|
2130
|
-
baseUri: '/services/data/
|
|
2130
|
+
baseUri: '/services/data/v66.0',
|
|
2131
2131
|
basePath: '/tableau/dashboards',
|
|
2132
2132
|
method: 'post',
|
|
2133
2133
|
body: config.body,
|
|
@@ -2524,7 +2524,7 @@ function validate$U(obj, path = 'DataAlertThresholdsRepresentation') {
|
|
|
2524
2524
|
}
|
|
2525
2525
|
|
|
2526
2526
|
const TTL$q = 500;
|
|
2527
|
-
const VERSION$B = "
|
|
2527
|
+
const VERSION$B = "219373b56f198f8a68fe8ca6afd30b60";
|
|
2528
2528
|
function validate$T(obj, path = 'DataAlertRepresentation') {
|
|
2529
2529
|
const v_error = (() => {
|
|
2530
2530
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -2543,6 +2543,11 @@ function validate$T(obj, path = 'DataAlertRepresentation') {
|
|
|
2543
2543
|
message += referencepath_contentValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
2544
2544
|
return new TypeError(message);
|
|
2545
2545
|
}
|
|
2546
|
+
const obj_createdDate = obj.createdDate;
|
|
2547
|
+
const path_createdDate = path + '.createdDate';
|
|
2548
|
+
if (typeof obj_createdDate !== 'string') {
|
|
2549
|
+
return new TypeError('Expected "string" but received "' + typeof obj_createdDate + '" (at "' + path_createdDate + '")');
|
|
2550
|
+
}
|
|
2546
2551
|
const obj_deliveryConfigurations = obj.deliveryConfigurations;
|
|
2547
2552
|
const path_deliveryConfigurations = path + '.deliveryConfigurations';
|
|
2548
2553
|
const referencepath_deliveryConfigurationsValidationError = validate$Y(obj_deliveryConfigurations, path_deliveryConfigurations);
|
|
@@ -2556,6 +2561,11 @@ function validate$T(obj, path = 'DataAlertRepresentation') {
|
|
|
2556
2561
|
if (typeof obj_id !== 'string') {
|
|
2557
2562
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
2558
2563
|
}
|
|
2564
|
+
const obj_lastModifiedDate = obj.lastModifiedDate;
|
|
2565
|
+
const path_lastModifiedDate = path + '.lastModifiedDate';
|
|
2566
|
+
if (typeof obj_lastModifiedDate !== 'string') {
|
|
2567
|
+
return new TypeError('Expected "string" but received "' + typeof obj_lastModifiedDate + '" (at "' + path_lastModifiedDate + '")');
|
|
2568
|
+
}
|
|
2559
2569
|
const obj_schedule = obj.schedule;
|
|
2560
2570
|
const path_schedule = path + '.schedule';
|
|
2561
2571
|
const referencepath_scheduleValidationError = validate$X(obj_schedule, path_schedule);
|
|
@@ -2650,7 +2660,7 @@ function ingestSuccess$N(luvio, resourceParams, response) {
|
|
|
2650
2660
|
function createResourceRequest$V(config) {
|
|
2651
2661
|
const headers = {};
|
|
2652
2662
|
return {
|
|
2653
|
-
baseUri: '/services/data/
|
|
2663
|
+
baseUri: '/services/data/v66.0',
|
|
2654
2664
|
basePath: '/tableau/dataAlerts',
|
|
2655
2665
|
method: 'post',
|
|
2656
2666
|
body: config.body,
|
|
@@ -3488,7 +3498,7 @@ function ingestSuccess$M(luvio, resourceParams, response) {
|
|
|
3488
3498
|
function createResourceRequest$U(config) {
|
|
3489
3499
|
const headers = {};
|
|
3490
3500
|
return {
|
|
3491
|
-
baseUri: '/services/data/
|
|
3501
|
+
baseUri: '/services/data/v66.0',
|
|
3492
3502
|
basePath: '/tableau/data-assets/requests',
|
|
3493
3503
|
method: 'post',
|
|
3494
3504
|
body: config.body,
|
|
@@ -3661,7 +3671,7 @@ function ingestSuccess$L(luvio, resourceParams, response) {
|
|
|
3661
3671
|
function createResourceRequest$T(config) {
|
|
3662
3672
|
const headers = {};
|
|
3663
3673
|
return {
|
|
3664
|
-
baseUri: '/services/data/
|
|
3674
|
+
baseUri: '/services/data/v66.0',
|
|
3665
3675
|
basePath: '/tableau/loglines',
|
|
3666
3676
|
method: 'post',
|
|
3667
3677
|
body: config.body,
|
|
@@ -3932,7 +3942,7 @@ function ingestSuccess$K(luvio, resourceParams, response) {
|
|
|
3932
3942
|
function createResourceRequest$S(config) {
|
|
3933
3943
|
const headers = {};
|
|
3934
3944
|
return {
|
|
3935
|
-
baseUri: '/services/data/
|
|
3945
|
+
baseUri: '/services/data/v66.0',
|
|
3936
3946
|
basePath: '/tableau/records/' + config.urlParams.recordId + '/shares',
|
|
3937
3947
|
method: 'post',
|
|
3938
3948
|
body: config.body,
|
|
@@ -3947,6 +3957,7 @@ const adapterName$S = 'createRecordShares';
|
|
|
3947
3957
|
const createRecordShares_ConfigPropertyMetadata = [
|
|
3948
3958
|
generateParamConfigMetadata('recordId', true, 0 /* UrlParameter */, 0 /* String */),
|
|
3949
3959
|
generateParamConfigMetadata('accessRequestItems', true, 2 /* Body */, 4 /* Unsupported */, true),
|
|
3960
|
+
generateParamConfigMetadata('sendNotificationToRecipients', false, 2 /* Body */, 1 /* Boolean */),
|
|
3950
3961
|
];
|
|
3951
3962
|
const createRecordShares_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$S, createRecordShares_ConfigPropertyMetadata);
|
|
3952
3963
|
const createResourceParams$S = /*#__PURE__*/ createResourceParams$Z(createRecordShares_ConfigPropertyMetadata);
|
|
@@ -4096,7 +4107,7 @@ function ingestSuccess$J(luvio, resourceParams, response) {
|
|
|
4096
4107
|
function createResourceRequest$R(config) {
|
|
4097
4108
|
const headers = {};
|
|
4098
4109
|
return {
|
|
4099
|
-
baseUri: '/services/data/
|
|
4110
|
+
baseUri: '/services/data/v66.0',
|
|
4100
4111
|
basePath: '/tableau/marketplace/templates',
|
|
4101
4112
|
method: 'post',
|
|
4102
4113
|
body: config.body,
|
|
@@ -4413,7 +4424,7 @@ function ingestSuccess$I(luvio, resourceParams, response) {
|
|
|
4413
4424
|
function createResourceRequest$Q(config) {
|
|
4414
4425
|
const headers = {};
|
|
4415
4426
|
return {
|
|
4416
|
-
baseUri: '/services/data/
|
|
4427
|
+
baseUri: '/services/data/v66.0',
|
|
4417
4428
|
basePath: '/tableau/visualizations',
|
|
4418
4429
|
method: 'post',
|
|
4419
4430
|
body: config.body,
|
|
@@ -4714,7 +4725,7 @@ function ingestSuccess$H(luvio, resourceParams, response) {
|
|
|
4714
4725
|
function createResourceRequest$P(config) {
|
|
4715
4726
|
const headers = {};
|
|
4716
4727
|
return {
|
|
4717
|
-
baseUri: '/services/data/
|
|
4728
|
+
baseUri: '/services/data/v66.0',
|
|
4718
4729
|
basePath: '/tableau/workspaces',
|
|
4719
4730
|
method: 'post',
|
|
4720
4731
|
body: config.body,
|
|
@@ -4898,7 +4909,7 @@ function ingestSuccess$G(luvio, resourceParams, response) {
|
|
|
4898
4909
|
function createResourceRequest$O(config) {
|
|
4899
4910
|
const headers = {};
|
|
4900
4911
|
return {
|
|
4901
|
-
baseUri: '/services/data/
|
|
4912
|
+
baseUri: '/services/data/v66.0',
|
|
4902
4913
|
basePath: '/tableau/workspaces/' + config.urlParams.workspaceIdOrApiName + '/assets',
|
|
4903
4914
|
method: 'post',
|
|
4904
4915
|
body: config.body,
|
|
@@ -5128,6 +5139,20 @@ function getTypeCacheKeys$t(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
5128
5139
|
mergeable: false
|
|
5129
5140
|
});
|
|
5130
5141
|
}
|
|
5142
|
+
const notifyUpdateAvailableFactory = (luvio) => {
|
|
5143
|
+
return function notifySharesUpdateAvailable(configs) {
|
|
5144
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
5145
|
+
const requiredKeyParams = ['recordId'];
|
|
5146
|
+
configs.forEach(config => {
|
|
5147
|
+
if (false === requiredKeyParams.every(req => req in config)) {
|
|
5148
|
+
throw new Error(`one of the configs did not contain all required parameters: ${JSONStringify(ObjectKeys(config))}`);
|
|
5149
|
+
}
|
|
5150
|
+
});
|
|
5151
|
+
}
|
|
5152
|
+
const keys = configs.map(c => keyBuilder$18(luvio, c));
|
|
5153
|
+
return luvio.notifyStoreUpdateAvailable(keys);
|
|
5154
|
+
};
|
|
5155
|
+
};
|
|
5131
5156
|
|
|
5132
5157
|
function keyBuilder$17(luvio, params) {
|
|
5133
5158
|
return keyBuilder$18(luvio, {
|
|
@@ -5149,7 +5174,7 @@ function evictSuccess$7(luvio, resourceParams) {
|
|
|
5149
5174
|
function createResourceRequest$N(config) {
|
|
5150
5175
|
const headers = {};
|
|
5151
5176
|
return {
|
|
5152
|
-
baseUri: '/services/data/
|
|
5177
|
+
baseUri: '/services/data/v66.0',
|
|
5153
5178
|
basePath: '/tableau/records/' + config.urlParams.recordId + '/shares',
|
|
5154
5179
|
method: 'delete',
|
|
5155
5180
|
body: null,
|
|
@@ -5233,7 +5258,7 @@ function evictSuccess$6(luvio, resourceParams) {
|
|
|
5233
5258
|
function createResourceRequest$M(config) {
|
|
5234
5259
|
const headers = {};
|
|
5235
5260
|
return {
|
|
5236
|
-
baseUri: '/services/data/
|
|
5261
|
+
baseUri: '/services/data/v66.0',
|
|
5237
5262
|
basePath: '/tableau/dashboards/' + config.urlParams.dashboardIdOrApiName + '',
|
|
5238
5263
|
method: 'delete',
|
|
5239
5264
|
body: null,
|
|
@@ -5317,7 +5342,7 @@ function evictSuccess$5(luvio, resourceParams) {
|
|
|
5317
5342
|
function createResourceRequest$L(config) {
|
|
5318
5343
|
const headers = {};
|
|
5319
5344
|
return {
|
|
5320
|
-
baseUri: '/services/data/
|
|
5345
|
+
baseUri: '/services/data/v66.0',
|
|
5321
5346
|
basePath: '/tableau/dataAlerts/' + config.urlParams.dataAlertId + '',
|
|
5322
5347
|
method: 'delete',
|
|
5323
5348
|
body: null,
|
|
@@ -5402,7 +5427,7 @@ function evictSuccess$4(luvio, resourceParams) {
|
|
|
5402
5427
|
function createResourceRequest$K(config) {
|
|
5403
5428
|
const headers = {};
|
|
5404
5429
|
return {
|
|
5405
|
-
baseUri: '/services/data/
|
|
5430
|
+
baseUri: '/services/data/v66.0',
|
|
5406
5431
|
basePath: '/tableau/records/' + config.urlParams.recordId + '/shares/' + config.urlParams.userOrGroupId + '',
|
|
5407
5432
|
method: 'delete',
|
|
5408
5433
|
body: null,
|
|
@@ -5487,7 +5512,7 @@ function evictSuccess$3(luvio, resourceParams) {
|
|
|
5487
5512
|
function createResourceRequest$J(config) {
|
|
5488
5513
|
const headers = {};
|
|
5489
5514
|
return {
|
|
5490
|
-
baseUri: '/services/data/
|
|
5515
|
+
baseUri: '/services/data/v66.0',
|
|
5491
5516
|
basePath: '/tableau/visualizations/' + config.urlParams.visualizationIdOrApiName + '',
|
|
5492
5517
|
method: 'delete',
|
|
5493
5518
|
body: null,
|
|
@@ -5571,7 +5596,7 @@ function evictSuccess$2(luvio, resourceParams) {
|
|
|
5571
5596
|
function createResourceRequest$I(config) {
|
|
5572
5597
|
const headers = {};
|
|
5573
5598
|
return {
|
|
5574
|
-
baseUri: '/services/data/
|
|
5599
|
+
baseUri: '/services/data/v66.0',
|
|
5575
5600
|
basePath: '/tableau/workspaces/' + config.urlParams.workspaceIdOrApiName + '',
|
|
5576
5601
|
method: 'delete',
|
|
5577
5602
|
body: null,
|
|
@@ -5655,7 +5680,7 @@ function evictSuccess$1(luvio, resourceParams) {
|
|
|
5655
5680
|
function createResourceRequest$H(config) {
|
|
5656
5681
|
const headers = {};
|
|
5657
5682
|
return {
|
|
5658
|
-
baseUri: '/services/data/
|
|
5683
|
+
baseUri: '/services/data/v66.0',
|
|
5659
5684
|
basePath: '/tableau/workspaces/' + config.urlParams.workspaceIdOrApiName + '/assets/' + config.urlParams.assetId + '',
|
|
5660
5685
|
method: 'delete',
|
|
5661
5686
|
body: null,
|
|
@@ -5921,7 +5946,7 @@ function ingestSuccess$F(luvio, resourceParams, response) {
|
|
|
5921
5946
|
function createResourceRequest$G(config) {
|
|
5922
5947
|
const headers = {};
|
|
5923
5948
|
return {
|
|
5924
|
-
baseUri: '/services/data/
|
|
5949
|
+
baseUri: '/services/data/v66.0',
|
|
5925
5950
|
basePath: '/tableau/follow/followers/' + config.urlParams.followerId + '/follows',
|
|
5926
5951
|
method: 'post',
|
|
5927
5952
|
body: config.body,
|
|
@@ -6103,7 +6128,7 @@ function ingestSuccess$E(luvio, resourceParams, response) {
|
|
|
6103
6128
|
function createResourceRequest$F(config) {
|
|
6104
6129
|
const headers = {};
|
|
6105
6130
|
return {
|
|
6106
|
-
baseUri: '/services/data/
|
|
6131
|
+
baseUri: '/services/data/v66.0',
|
|
6107
6132
|
basePath: '/ssot/sf-drive/actions/generate-credential',
|
|
6108
6133
|
method: 'post',
|
|
6109
6134
|
body: config.body,
|
|
@@ -6318,7 +6343,7 @@ function ingestError$p(luvio, params, error, snapshotRefresh) {
|
|
|
6318
6343
|
function createResourceRequest$E(config) {
|
|
6319
6344
|
const headers = {};
|
|
6320
6345
|
return {
|
|
6321
|
-
baseUri: '/services/data/
|
|
6346
|
+
baseUri: '/services/data/v66.0',
|
|
6322
6347
|
basePath: '/tableau/annotations',
|
|
6323
6348
|
method: 'get',
|
|
6324
6349
|
body: null,
|
|
@@ -6556,7 +6581,7 @@ function ingestError$o(luvio, params, error, snapshotRefresh) {
|
|
|
6556
6581
|
function createResourceRequest$D(config) {
|
|
6557
6582
|
const headers = {};
|
|
6558
6583
|
return {
|
|
6559
|
-
baseUri: '/services/data/
|
|
6584
|
+
baseUri: '/services/data/v66.0',
|
|
6560
6585
|
basePath: '/tableau/slack/channels',
|
|
6561
6586
|
method: 'get',
|
|
6562
6587
|
body: null,
|
|
@@ -6690,7 +6715,7 @@ function ingestError$n(luvio, params, error, snapshotRefresh) {
|
|
|
6690
6715
|
function createResourceRequest$C(config) {
|
|
6691
6716
|
const headers = {};
|
|
6692
6717
|
return {
|
|
6693
|
-
baseUri: '/services/data/
|
|
6718
|
+
baseUri: '/services/data/v66.0',
|
|
6694
6719
|
basePath: '/tableau/dashboards/' + config.urlParams.dashboardIdOrApiName + '',
|
|
6695
6720
|
method: 'get',
|
|
6696
6721
|
body: null,
|
|
@@ -6955,7 +6980,7 @@ function ingestError$m(luvio, params, error, snapshotRefresh) {
|
|
|
6955
6980
|
function createResourceRequest$B(config) {
|
|
6956
6981
|
const headers = {};
|
|
6957
6982
|
return {
|
|
6958
|
-
baseUri: '/services/data/
|
|
6983
|
+
baseUri: '/services/data/v66.0',
|
|
6959
6984
|
basePath: '/tableau/dashboards',
|
|
6960
6985
|
method: 'get',
|
|
6961
6986
|
body: null,
|
|
@@ -7097,7 +7122,7 @@ function ingestError$l(luvio, params, error, snapshotRefresh) {
|
|
|
7097
7122
|
function createResourceRequest$A(config) {
|
|
7098
7123
|
const headers = {};
|
|
7099
7124
|
return {
|
|
7100
|
-
baseUri: '/services/data/
|
|
7125
|
+
baseUri: '/services/data/v66.0',
|
|
7101
7126
|
basePath: '/tableau/dataAlerts/' + config.urlParams.dataAlertId + '',
|
|
7102
7127
|
method: 'get',
|
|
7103
7128
|
body: null,
|
|
@@ -7236,7 +7261,7 @@ const notifyChangeFactory$6 = (luvio, options) => {
|
|
|
7236
7261
|
};
|
|
7237
7262
|
|
|
7238
7263
|
const TTL$g = 500;
|
|
7239
|
-
const VERSION$n = "
|
|
7264
|
+
const VERSION$n = "d3e9e0efe02f7fa88865b7e72fe25f25";
|
|
7240
7265
|
function validate$w(obj, path = 'DataAlertCollectionRepresentation') {
|
|
7241
7266
|
const v_error = (() => {
|
|
7242
7267
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -7250,14 +7275,38 @@ function validate$w(obj, path = 'DataAlertCollectionRepresentation') {
|
|
|
7250
7275
|
for (let i = 0; i < obj_dataAlerts.length; i++) {
|
|
7251
7276
|
const obj_dataAlerts_item = obj_dataAlerts[i];
|
|
7252
7277
|
const path_dataAlerts_item = path_dataAlerts + '[' + i + ']';
|
|
7253
|
-
|
|
7254
|
-
|
|
7278
|
+
const referencepath_dataAlerts_itemValidationError = validate$T(obj_dataAlerts_item, path_dataAlerts_item);
|
|
7279
|
+
if (referencepath_dataAlerts_itemValidationError !== null) {
|
|
7280
|
+
let message = 'Object doesn\'t match DataAlertRepresentation (at "' + path_dataAlerts_item + '")\n';
|
|
7281
|
+
message += referencepath_dataAlerts_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
7282
|
+
return new TypeError(message);
|
|
7255
7283
|
}
|
|
7256
7284
|
}
|
|
7257
7285
|
const obj_nextPageUrl = obj.nextPageUrl;
|
|
7258
7286
|
const path_nextPageUrl = path + '.nextPageUrl';
|
|
7259
|
-
|
|
7260
|
-
|
|
7287
|
+
let obj_nextPageUrl_union0 = null;
|
|
7288
|
+
const obj_nextPageUrl_union0_error = (() => {
|
|
7289
|
+
if (typeof obj_nextPageUrl !== 'string') {
|
|
7290
|
+
return new TypeError('Expected "string" but received "' + typeof obj_nextPageUrl + '" (at "' + path_nextPageUrl + '")');
|
|
7291
|
+
}
|
|
7292
|
+
})();
|
|
7293
|
+
if (obj_nextPageUrl_union0_error != null) {
|
|
7294
|
+
obj_nextPageUrl_union0 = obj_nextPageUrl_union0_error.message;
|
|
7295
|
+
}
|
|
7296
|
+
let obj_nextPageUrl_union1 = null;
|
|
7297
|
+
const obj_nextPageUrl_union1_error = (() => {
|
|
7298
|
+
if (obj_nextPageUrl !== null) {
|
|
7299
|
+
return new TypeError('Expected "null" but received "' + typeof obj_nextPageUrl + '" (at "' + path_nextPageUrl + '")');
|
|
7300
|
+
}
|
|
7301
|
+
})();
|
|
7302
|
+
if (obj_nextPageUrl_union1_error != null) {
|
|
7303
|
+
obj_nextPageUrl_union1 = obj_nextPageUrl_union1_error.message;
|
|
7304
|
+
}
|
|
7305
|
+
if (obj_nextPageUrl_union0 && obj_nextPageUrl_union1) {
|
|
7306
|
+
let message = 'Object doesn\'t match union (at "' + path_nextPageUrl + '")';
|
|
7307
|
+
message += '\n' + obj_nextPageUrl_union0.split('\n').map((line) => '\t' + line).join('\n');
|
|
7308
|
+
message += '\n' + obj_nextPageUrl_union1.split('\n').map((line) => '\t' + line).join('\n');
|
|
7309
|
+
return new TypeError(message);
|
|
7261
7310
|
}
|
|
7262
7311
|
const obj_totalSize = obj.totalSize;
|
|
7263
7312
|
const path_totalSize = path + '.totalSize';
|
|
@@ -7269,22 +7318,6 @@ function validate$w(obj, path = 'DataAlertCollectionRepresentation') {
|
|
|
7269
7318
|
}
|
|
7270
7319
|
const RepresentationType$o = 'DataAlertCollectionRepresentation';
|
|
7271
7320
|
function normalize$n(input, existing, path, luvio, store, timestamp) {
|
|
7272
|
-
const input_dataAlerts = input.dataAlerts;
|
|
7273
|
-
const input_dataAlerts_id = path.fullPath + '__dataAlerts';
|
|
7274
|
-
for (let i = 0; i < input_dataAlerts.length; i++) {
|
|
7275
|
-
const input_dataAlerts_item = input_dataAlerts[i];
|
|
7276
|
-
let input_dataAlerts_item_id = input_dataAlerts_id + '__' + i;
|
|
7277
|
-
input_dataAlerts[i] = ingest$B(input_dataAlerts_item, {
|
|
7278
|
-
fullPath: input_dataAlerts_item_id,
|
|
7279
|
-
propertyName: i,
|
|
7280
|
-
parent: {
|
|
7281
|
-
data: input,
|
|
7282
|
-
key: path.fullPath,
|
|
7283
|
-
existing: existing,
|
|
7284
|
-
},
|
|
7285
|
-
ttl: path.ttl
|
|
7286
|
-
}, luvio, store, timestamp);
|
|
7287
|
-
}
|
|
7288
7321
|
return input;
|
|
7289
7322
|
}
|
|
7290
7323
|
const select$W = function DataAlertCollectionRepresentationSelect() {
|
|
@@ -7292,43 +7325,11 @@ const select$W = function DataAlertCollectionRepresentationSelect() {
|
|
|
7292
7325
|
kind: 'Fragment',
|
|
7293
7326
|
version: VERSION$n,
|
|
7294
7327
|
private: [],
|
|
7295
|
-
|
|
7296
|
-
{
|
|
7297
|
-
name: 'dataAlerts',
|
|
7298
|
-
kind: 'Link',
|
|
7299
|
-
plural: true,
|
|
7300
|
-
fragment: select$1n()
|
|
7301
|
-
},
|
|
7302
|
-
{
|
|
7303
|
-
name: 'nextPageUrl',
|
|
7304
|
-
kind: 'Scalar'
|
|
7305
|
-
},
|
|
7306
|
-
{
|
|
7307
|
-
name: 'totalSize',
|
|
7308
|
-
kind: 'Scalar'
|
|
7309
|
-
}
|
|
7310
|
-
]
|
|
7328
|
+
opaque: true
|
|
7311
7329
|
};
|
|
7312
7330
|
};
|
|
7313
7331
|
function equals$n(existing, incoming) {
|
|
7314
|
-
|
|
7315
|
-
const incoming_totalSize = incoming.totalSize;
|
|
7316
|
-
if (!(existing_totalSize === incoming_totalSize)) {
|
|
7317
|
-
return false;
|
|
7318
|
-
}
|
|
7319
|
-
const existing_nextPageUrl = existing.nextPageUrl;
|
|
7320
|
-
const incoming_nextPageUrl = incoming.nextPageUrl;
|
|
7321
|
-
if (!(existing_nextPageUrl === incoming_nextPageUrl)) {
|
|
7322
|
-
return false;
|
|
7323
|
-
}
|
|
7324
|
-
const existing_dataAlerts = existing.dataAlerts;
|
|
7325
|
-
const incoming_dataAlerts = incoming.dataAlerts;
|
|
7326
|
-
const equals_dataAlerts_items = equalsArray(existing_dataAlerts, incoming_dataAlerts, (existing_dataAlerts_item, incoming_dataAlerts_item) => {
|
|
7327
|
-
if (!(existing_dataAlerts_item.__ref === incoming_dataAlerts_item.__ref)) {
|
|
7328
|
-
return false;
|
|
7329
|
-
}
|
|
7330
|
-
});
|
|
7331
|
-
if (equals_dataAlerts_items === false) {
|
|
7332
|
+
if (JSONStringify(incoming) !== JSONStringify(existing)) {
|
|
7332
7333
|
return false;
|
|
7333
7334
|
}
|
|
7334
7335
|
return true;
|
|
@@ -7353,10 +7354,6 @@ function getTypeCacheKeys$n(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
7353
7354
|
representationName: RepresentationType$o,
|
|
7354
7355
|
mergeable: false
|
|
7355
7356
|
});
|
|
7356
|
-
const input_dataAlerts_length = input.dataAlerts.length;
|
|
7357
|
-
for (let i = 0; i < input_dataAlerts_length; i++) {
|
|
7358
|
-
getTypeCacheKeys$B(rootKeySet, luvio, input.dataAlerts[i]);
|
|
7359
|
-
}
|
|
7360
7357
|
}
|
|
7361
7358
|
|
|
7362
7359
|
function select$V(luvio, params) {
|
|
@@ -7400,7 +7397,7 @@ function ingestError$k(luvio, params, error, snapshotRefresh) {
|
|
|
7400
7397
|
function createResourceRequest$z(config) {
|
|
7401
7398
|
const headers = {};
|
|
7402
7399
|
return {
|
|
7403
|
-
baseUri: '/services/data/
|
|
7400
|
+
baseUri: '/services/data/v66.0',
|
|
7404
7401
|
basePath: '/tableau/dataAlerts',
|
|
7405
7402
|
method: 'get',
|
|
7406
7403
|
body: null,
|
|
@@ -7700,7 +7697,7 @@ function ingestError$j(luvio, params, error, snapshotRefresh) {
|
|
|
7700
7697
|
function createResourceRequest$y(config) {
|
|
7701
7698
|
const headers = {};
|
|
7702
7699
|
return {
|
|
7703
|
-
baseUri: '/services/data/
|
|
7700
|
+
baseUri: '/services/data/v66.0',
|
|
7704
7701
|
basePath: '/tableau/data-assets/dependencies/' + config.urlParams.assetId + '',
|
|
7705
7702
|
method: 'get',
|
|
7706
7703
|
body: null,
|
|
@@ -7840,7 +7837,7 @@ function ingestError$i(luvio, params, error, snapshotRefresh) {
|
|
|
7840
7837
|
function createResourceRequest$x(config) {
|
|
7841
7838
|
const headers = {};
|
|
7842
7839
|
return {
|
|
7843
|
-
baseUri: '/services/data/
|
|
7840
|
+
baseUri: '/services/data/v66.0',
|
|
7844
7841
|
basePath: '/tableau/data-assets/requests/' + config.urlParams.requestIdOrApiName + '',
|
|
7845
7842
|
method: 'get',
|
|
7846
7843
|
body: null,
|
|
@@ -8084,7 +8081,7 @@ function ingestError$h(luvio, params, error, snapshotRefresh) {
|
|
|
8084
8081
|
function createResourceRequest$w(config) {
|
|
8085
8082
|
const headers = {};
|
|
8086
8083
|
return {
|
|
8087
|
-
baseUri: '/services/data/
|
|
8084
|
+
baseUri: '/services/data/v66.0',
|
|
8088
8085
|
basePath: '/tableau/data-assets/requests',
|
|
8089
8086
|
method: 'get',
|
|
8090
8087
|
body: null,
|
|
@@ -8287,7 +8284,7 @@ function ingestError$g(luvio, params, error, snapshotRefresh) {
|
|
|
8287
8284
|
function createResourceRequest$v(config) {
|
|
8288
8285
|
const headers = {};
|
|
8289
8286
|
return {
|
|
8290
|
-
baseUri: '/services/data/
|
|
8287
|
+
baseUri: '/services/data/v66.0',
|
|
8291
8288
|
basePath: '/tableau/data-assets/requests/count',
|
|
8292
8289
|
method: 'get',
|
|
8293
8290
|
body: null,
|
|
@@ -8617,7 +8614,7 @@ function ingestError$f(luvio, params, error, snapshotRefresh) {
|
|
|
8617
8614
|
function createResourceRequest$u(config) {
|
|
8618
8615
|
const headers = {};
|
|
8619
8616
|
return {
|
|
8620
|
-
baseUri: '/services/data/
|
|
8617
|
+
baseUri: '/services/data/v66.0',
|
|
8621
8618
|
basePath: '/tableau/flows/' + config.urlParams.flowApiName + '',
|
|
8622
8619
|
method: 'get',
|
|
8623
8620
|
body: null,
|
|
@@ -8844,7 +8841,7 @@ function ingestError$e(luvio, params, error, snapshotRefresh) {
|
|
|
8844
8841
|
function createResourceRequest$t(config) {
|
|
8845
8842
|
const headers = {};
|
|
8846
8843
|
return {
|
|
8847
|
-
baseUri: '/services/data/
|
|
8844
|
+
baseUri: '/services/data/v66.0',
|
|
8848
8845
|
basePath: '/tableau/flows',
|
|
8849
8846
|
method: 'get',
|
|
8850
8847
|
body: null,
|
|
@@ -9143,7 +9140,7 @@ function ingestError$d(luvio, params, error, snapshotRefresh) {
|
|
|
9143
9140
|
function createResourceRequest$s(config) {
|
|
9144
9141
|
const headers = {};
|
|
9145
9142
|
return {
|
|
9146
|
-
baseUri: '/services/data/
|
|
9143
|
+
baseUri: '/services/data/v66.0',
|
|
9147
9144
|
basePath: '/tableau/follow/followers/' + config.urlParams.followerId + '/followed-assets',
|
|
9148
9145
|
method: 'get',
|
|
9149
9146
|
body: null,
|
|
@@ -9349,7 +9346,7 @@ function ingestError$c(luvio, params, error, snapshotRefresh) {
|
|
|
9349
9346
|
function createResourceRequest$r(config) {
|
|
9350
9347
|
const headers = {};
|
|
9351
9348
|
return {
|
|
9352
|
-
baseUri: '/services/data/
|
|
9349
|
+
baseUri: '/services/data/v66.0',
|
|
9353
9350
|
basePath: '/tableau/follow/assets/' + config.urlParams.followedAssetId + '/followers',
|
|
9354
9351
|
method: 'get',
|
|
9355
9352
|
body: null,
|
|
@@ -9587,7 +9584,7 @@ function ingestError$b(luvio, params, error, snapshotRefresh) {
|
|
|
9587
9584
|
function createResourceRequest$q(config) {
|
|
9588
9585
|
const headers = {};
|
|
9589
9586
|
return {
|
|
9590
|
-
baseUri: '/services/data/
|
|
9587
|
+
baseUri: '/services/data/v66.0',
|
|
9591
9588
|
basePath: '/tableau/marketplace/installations/' + config.urlParams.installationId + '',
|
|
9592
9589
|
method: 'get',
|
|
9593
9590
|
body: null,
|
|
@@ -9827,7 +9824,7 @@ function ingestError$a(luvio, params, error, snapshotRefresh) {
|
|
|
9827
9824
|
function createResourceRequest$p(config) {
|
|
9828
9825
|
const headers = {};
|
|
9829
9826
|
return {
|
|
9830
|
-
baseUri: '/services/data/
|
|
9827
|
+
baseUri: '/services/data/v66.0',
|
|
9831
9828
|
basePath: '/tableau/orgs',
|
|
9832
9829
|
method: 'get',
|
|
9833
9830
|
body: null,
|
|
@@ -9964,7 +9961,7 @@ function ingestError$9(luvio, params, error, snapshotRefresh) {
|
|
|
9964
9961
|
function createResourceRequest$o(config) {
|
|
9965
9962
|
const headers = {};
|
|
9966
9963
|
return {
|
|
9967
|
-
baseUri: '/services/data/
|
|
9964
|
+
baseUri: '/services/data/v66.0',
|
|
9968
9965
|
basePath: '/tableau/records/' + config.urlParams.recordId + '/shares',
|
|
9969
9966
|
method: 'get',
|
|
9970
9967
|
body: null,
|
|
@@ -9991,6 +9988,7 @@ const getShares_ConfigPropertyMetadata = [
|
|
|
9991
9988
|
generateParamConfigMetadata('userOrGroupId', false, 1 /* QueryParameter */, 0 /* String */),
|
|
9992
9989
|
generateParamConfigMetadata('orderBy', false, 1 /* QueryParameter */, 0 /* String */),
|
|
9993
9990
|
generateParamConfigMetadata('sortOrder', false, 1 /* QueryParameter */, 0 /* String */),
|
|
9991
|
+
generateParamConfigMetadata('filterByRecipientType', false, 1 /* QueryParameter */, 0 /* String */, true),
|
|
9994
9992
|
];
|
|
9995
9993
|
const getShares_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$o, getShares_ConfigPropertyMetadata);
|
|
9996
9994
|
const createResourceParams$o = /*#__PURE__*/ createResourceParams$Z(getShares_ConfigPropertyMetadata);
|
|
@@ -10280,7 +10278,7 @@ function ingestError$8(luvio, params, error, snapshotRefresh) {
|
|
|
10280
10278
|
function createResourceRequest$n(config) {
|
|
10281
10279
|
const headers = {};
|
|
10282
10280
|
return {
|
|
10283
|
-
baseUri: '/services/data/
|
|
10281
|
+
baseUri: '/services/data/v66.0',
|
|
10284
10282
|
basePath: '/tableau/annotations/slack-app-info',
|
|
10285
10283
|
method: 'get',
|
|
10286
10284
|
body: null,
|
|
@@ -10491,7 +10489,7 @@ function ingestError$7(luvio, params, error, snapshotRefresh) {
|
|
|
10491
10489
|
function createResourceRequest$m(config) {
|
|
10492
10490
|
const headers = {};
|
|
10493
10491
|
return {
|
|
10494
|
-
baseUri: '/services/data/
|
|
10492
|
+
baseUri: '/services/data/v66.0',
|
|
10495
10493
|
basePath: '/tableau/subscriptions/digest/' + config.urlParams.digestConfigOwner + '',
|
|
10496
10494
|
method: 'get',
|
|
10497
10495
|
body: null,
|
|
@@ -10794,7 +10792,7 @@ function ingestSuccess$k(luvio, resourceParams, response) {
|
|
|
10794
10792
|
function createResourceRequest$l(config) {
|
|
10795
10793
|
const headers = {};
|
|
10796
10794
|
return {
|
|
10797
|
-
baseUri: '/services/data/
|
|
10795
|
+
baseUri: '/services/data/v66.0',
|
|
10798
10796
|
basePath: '/tableau/library/assets/query',
|
|
10799
10797
|
method: 'post',
|
|
10800
10798
|
body: config.body,
|
|
@@ -11022,7 +11020,7 @@ function ingestError$6(luvio, params, error, snapshotRefresh) {
|
|
|
11022
11020
|
function createResourceRequest$k(config) {
|
|
11023
11021
|
const headers = {};
|
|
11024
11022
|
return {
|
|
11025
|
-
baseUri: '/services/data/
|
|
11023
|
+
baseUri: '/services/data/v66.0',
|
|
11026
11024
|
basePath: '/tableau/follow/assets/' + config.urlParams.followedAssetId + '/follower-count',
|
|
11027
11025
|
method: 'get',
|
|
11028
11026
|
body: null,
|
|
@@ -11157,7 +11155,7 @@ function ingestError$5(luvio, params, error, snapshotRefresh) {
|
|
|
11157
11155
|
function createResourceRequest$j(config) {
|
|
11158
11156
|
const headers = {};
|
|
11159
11157
|
return {
|
|
11160
|
-
baseUri: '/services/data/
|
|
11158
|
+
baseUri: '/services/data/v66.0',
|
|
11161
11159
|
basePath: '/tableau/visualizations/' + config.urlParams.visualizationIdOrApiName + '',
|
|
11162
11160
|
method: 'get',
|
|
11163
11161
|
body: null,
|
|
@@ -11411,7 +11409,7 @@ function ingestError$4(luvio, params, error, snapshotRefresh) {
|
|
|
11411
11409
|
function createResourceRequest$i(config) {
|
|
11412
11410
|
const headers = {};
|
|
11413
11411
|
return {
|
|
11414
|
-
baseUri: '/services/data/
|
|
11412
|
+
baseUri: '/services/data/v66.0',
|
|
11415
11413
|
basePath: '/tableau/visualizations/' + config.urlParams.visualizationIdOrApiName + '/bundle',
|
|
11416
11414
|
method: 'get',
|
|
11417
11415
|
body: null,
|
|
@@ -11676,7 +11674,7 @@ function ingestError$3(luvio, params, error, snapshotRefresh) {
|
|
|
11676
11674
|
function createResourceRequest$h(config) {
|
|
11677
11675
|
const headers = {};
|
|
11678
11676
|
return {
|
|
11679
|
-
baseUri: '/services/data/
|
|
11677
|
+
baseUri: '/services/data/v66.0',
|
|
11680
11678
|
basePath: '/tableau/visualizations',
|
|
11681
11679
|
method: 'get',
|
|
11682
11680
|
body: null,
|
|
@@ -11812,7 +11810,7 @@ function ingestError$2(luvio, params, error, snapshotRefresh) {
|
|
|
11812
11810
|
function createResourceRequest$g(config) {
|
|
11813
11811
|
const headers = {};
|
|
11814
11812
|
return {
|
|
11815
|
-
baseUri: '/services/data/
|
|
11813
|
+
baseUri: '/services/data/v66.0',
|
|
11816
11814
|
basePath: '/tableau/workspaces/' + config.urlParams.workspaceIdOrApiName + '',
|
|
11817
11815
|
method: 'get',
|
|
11818
11816
|
body: null,
|
|
@@ -12075,7 +12073,7 @@ function ingestError$1(luvio, params, error, snapshotRefresh) {
|
|
|
12075
12073
|
function createResourceRequest$f(config) {
|
|
12076
12074
|
const headers = {};
|
|
12077
12075
|
return {
|
|
12078
|
-
baseUri: '/services/data/
|
|
12076
|
+
baseUri: '/services/data/v66.0',
|
|
12079
12077
|
basePath: '/tableau/workspaces',
|
|
12080
12078
|
method: 'get',
|
|
12081
12079
|
body: null,
|
|
@@ -12283,7 +12281,7 @@ function ingestError(luvio, params, error, snapshotRefresh) {
|
|
|
12283
12281
|
function createResourceRequest$e(config) {
|
|
12284
12282
|
const headers = {};
|
|
12285
12283
|
return {
|
|
12286
|
-
baseUri: '/services/data/
|
|
12284
|
+
baseUri: '/services/data/v66.0',
|
|
12287
12285
|
basePath: '/tableau/marketplace/listings/' + config.urlParams.listingId + '/install',
|
|
12288
12286
|
method: 'get',
|
|
12289
12287
|
body: null,
|
|
@@ -12505,7 +12503,7 @@ function ingestSuccess$c(luvio, resourceParams, response) {
|
|
|
12505
12503
|
function createResourceRequest$d(config) {
|
|
12506
12504
|
const headers = {};
|
|
12507
12505
|
return {
|
|
12508
|
-
baseUri: '/services/data/
|
|
12506
|
+
baseUri: '/services/data/v66.0',
|
|
12509
12507
|
basePath: '/tableau/dataAlerts/' + config.urlParams.dataAlertId + '/run',
|
|
12510
12508
|
method: 'post',
|
|
12511
12509
|
body: null,
|
|
@@ -12669,7 +12667,7 @@ function ingestSuccess$b(luvio, resourceParams, response) {
|
|
|
12669
12667
|
function createResourceRequest$c(config) {
|
|
12670
12668
|
const headers = {};
|
|
12671
12669
|
return {
|
|
12672
|
-
baseUri: '/services/data/
|
|
12670
|
+
baseUri: '/services/data/v66.0',
|
|
12673
12671
|
basePath: '/tableau/admin/monitoring/events',
|
|
12674
12672
|
method: 'post',
|
|
12675
12673
|
body: config.body,
|
|
@@ -12831,7 +12829,7 @@ function ingestSuccess$a(luvio, resourceParams, response) {
|
|
|
12831
12829
|
function createResourceRequest$b(config) {
|
|
12832
12830
|
const headers = {};
|
|
12833
12831
|
return {
|
|
12834
|
-
baseUri: '/services/data/
|
|
12832
|
+
baseUri: '/services/data/v66.0',
|
|
12835
12833
|
basePath: '/tableau/marketplace/listings',
|
|
12836
12834
|
method: 'post',
|
|
12837
12835
|
body: config.body,
|
|
@@ -13125,7 +13123,7 @@ function ingestSuccess$9(luvio, resourceParams, response) {
|
|
|
13125
13123
|
function createResourceRequest$a(config) {
|
|
13126
13124
|
const headers = {};
|
|
13127
13125
|
return {
|
|
13128
|
-
baseUri: '/services/data/
|
|
13126
|
+
baseUri: '/services/data/v66.0',
|
|
13129
13127
|
basePath: '/tableau/assets/query',
|
|
13130
13128
|
method: 'post',
|
|
13131
13129
|
body: config.body,
|
|
@@ -13324,7 +13322,7 @@ function ingestSuccess$8(luvio, resourceParams, response) {
|
|
|
13324
13322
|
function createResourceRequest$9(config) {
|
|
13325
13323
|
const headers = {};
|
|
13326
13324
|
return {
|
|
13327
|
-
baseUri: '/services/data/
|
|
13325
|
+
baseUri: '/services/data/v66.0',
|
|
13328
13326
|
basePath: '/tableau/users/query',
|
|
13329
13327
|
method: 'post',
|
|
13330
13328
|
body: config.body,
|
|
@@ -13412,7 +13410,7 @@ function evictSuccess(luvio, resourceParams) {
|
|
|
13412
13410
|
function createResourceRequest$8(config) {
|
|
13413
13411
|
const headers = {};
|
|
13414
13412
|
return {
|
|
13415
|
-
baseUri: '/services/data/
|
|
13413
|
+
baseUri: '/services/data/v66.0',
|
|
13416
13414
|
basePath: '/tableau/follow/followers/' + config.urlParams.followerId + '/follows/' + config.urlParams.followedAssetId + '',
|
|
13417
13415
|
method: 'delete',
|
|
13418
13416
|
body: null,
|
|
@@ -13503,7 +13501,7 @@ function ingestSuccess$7(luvio, resourceParams, response) {
|
|
|
13503
13501
|
function createResourceRequest$7(config) {
|
|
13504
13502
|
const headers = {};
|
|
13505
13503
|
return {
|
|
13506
|
-
baseUri: '/services/data/
|
|
13504
|
+
baseUri: '/services/data/v66.0',
|
|
13507
13505
|
basePath: '/tableau/dashboards/' + config.urlParams.dashboardIdOrApiName + '',
|
|
13508
13506
|
method: 'patch',
|
|
13509
13507
|
body: config.body,
|
|
@@ -13641,7 +13639,7 @@ function ingestSuccess$6(luvio, resourceParams, response) {
|
|
|
13641
13639
|
function createResourceRequest$6(config) {
|
|
13642
13640
|
const headers = {};
|
|
13643
13641
|
return {
|
|
13644
|
-
baseUri: '/services/data/
|
|
13642
|
+
baseUri: '/services/data/v66.0',
|
|
13645
13643
|
basePath: '/tableau/dataAlerts/' + config.urlParams.dataAlertId + '',
|
|
13646
13644
|
method: 'put',
|
|
13647
13645
|
body: config.body,
|
|
@@ -13758,7 +13756,7 @@ function ingestSuccess$5(luvio, resourceParams, response) {
|
|
|
13758
13756
|
function createResourceRequest$5(config) {
|
|
13759
13757
|
const headers = {};
|
|
13760
13758
|
return {
|
|
13761
|
-
baseUri: '/services/data/
|
|
13759
|
+
baseUri: '/services/data/v66.0',
|
|
13762
13760
|
basePath: '/tableau/data-assets/requests/' + config.urlParams.requestIdOrApiName + '',
|
|
13763
13761
|
method: 'patch',
|
|
13764
13762
|
body: config.body,
|
|
@@ -13937,7 +13935,7 @@ function ingestSuccess$4(luvio, resourceParams, response) {
|
|
|
13937
13935
|
function createResourceRequest$4(config) {
|
|
13938
13936
|
const headers = {};
|
|
13939
13937
|
return {
|
|
13940
|
-
baseUri: '/services/data/
|
|
13938
|
+
baseUri: '/services/data/v66.0',
|
|
13941
13939
|
basePath: '/tableau/follow/followers/' + config.urlParams.followerId + '/follows',
|
|
13942
13940
|
method: 'patch',
|
|
13943
13941
|
body: config.body,
|
|
@@ -14038,7 +14036,7 @@ function ingestSuccess$3(luvio, resourceParams, response) {
|
|
|
14038
14036
|
function createResourceRequest$3(config) {
|
|
14039
14037
|
const headers = {};
|
|
14040
14038
|
return {
|
|
14041
|
-
baseUri: '/services/data/
|
|
14039
|
+
baseUri: '/services/data/v66.0',
|
|
14042
14040
|
basePath: '/tableau/records/' + config.urlParams.recordId + '/shares',
|
|
14043
14041
|
method: 'patch',
|
|
14044
14042
|
body: config.body,
|
|
@@ -14138,7 +14136,7 @@ function ingestSuccess$2(luvio, resourceParams, response) {
|
|
|
14138
14136
|
function createResourceRequest$2(config) {
|
|
14139
14137
|
const headers = {};
|
|
14140
14138
|
return {
|
|
14141
|
-
baseUri: '/services/data/
|
|
14139
|
+
baseUri: '/services/data/v66.0',
|
|
14142
14140
|
basePath: '/tableau/subscriptions/digest/' + config.urlParams.digestConfigOwner + '',
|
|
14143
14141
|
method: 'patch',
|
|
14144
14142
|
body: config.body,
|
|
@@ -14230,7 +14228,7 @@ function ingestSuccess$1(luvio, resourceParams, response) {
|
|
|
14230
14228
|
function createResourceRequest$1(config) {
|
|
14231
14229
|
const headers = {};
|
|
14232
14230
|
return {
|
|
14233
|
-
baseUri: '/services/data/
|
|
14231
|
+
baseUri: '/services/data/v66.0',
|
|
14234
14232
|
basePath: '/tableau/visualizations/' + config.urlParams.visualizationIdOrApiName + '',
|
|
14235
14233
|
method: 'patch',
|
|
14236
14234
|
body: config.body,
|
|
@@ -14415,7 +14413,7 @@ function ingestSuccess(luvio, resourceParams, response) {
|
|
|
14415
14413
|
function createResourceRequest(config) {
|
|
14416
14414
|
const headers = {};
|
|
14417
14415
|
return {
|
|
14418
|
-
baseUri: '/services/data/
|
|
14416
|
+
baseUri: '/services/data/v66.0',
|
|
14419
14417
|
basePath: '/tableau/workspaces/' + config.urlParams.workspaceIdOrApiName + '',
|
|
14420
14418
|
method: 'patch',
|
|
14421
14419
|
body: config.body,
|
|
@@ -14658,6 +14656,7 @@ const initiateMarketplaceListingInstallationMetadata = {
|
|
|
14658
14656
|
name: 'initiateMarketplaceListingInstallation',
|
|
14659
14657
|
};
|
|
14660
14658
|
// Notify Update Available
|
|
14659
|
+
let notifySharesUpdateAvailable;
|
|
14661
14660
|
function bindExportsTo(luvio) {
|
|
14662
14661
|
// LDS Adapters
|
|
14663
14662
|
const getAnnotations_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getAnnotations', getAnnotationsAdapterFactory), getAnnotationsMetadata);
|
|
@@ -14788,6 +14787,7 @@ function bindExportsTo(luvio) {
|
|
|
14788
14787
|
getWorkspaces_imperative: createImperativeAdapter(luvio, getWorkspaces_ldsAdapter, getWorkspacesMetadata),
|
|
14789
14788
|
initiateMarketplaceListingInstallation_imperative: createImperativeAdapter(luvio, initiateMarketplaceListingInstallation_ldsAdapter, initiateMarketplaceListingInstallationMetadata),
|
|
14790
14789
|
// Notify Update Availables
|
|
14790
|
+
notifySharesUpdateAvailable: createLDSAdapter(luvio, 'notifySharesUpdateAvailable', notifyUpdateAvailableFactory),
|
|
14791
14791
|
};
|
|
14792
14792
|
}
|
|
14793
14793
|
withDefaultLuvio((luvio) => {
|
|
@@ -14887,8 +14887,9 @@ withDefaultLuvio((luvio) => {
|
|
|
14887
14887
|
getWorkspaceByIdOrName_imperative,
|
|
14888
14888
|
getWorkspaces_imperative,
|
|
14889
14889
|
initiateMarketplaceListingInstallation_imperative,
|
|
14890
|
+
notifySharesUpdateAvailable,
|
|
14890
14891
|
} = bindExportsTo(luvio));
|
|
14891
14892
|
});
|
|
14892
14893
|
|
|
14893
|
-
export { createAnnotation, createAssetSlackChannel, createDashboard, createDataAlert, createDataAssetRequest, createLoglines, createRecordShares, createTemplate, createVisualization, createWorkspace, createWorkspaceAsset, deleteAllShares, deleteDashboard, deleteDataAlert, deleteRecordShare, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, getAnnotations, getAnnotations_imperative, getAssetSlackChannels, getAssetSlackChannels_imperative, getDashboardByName, getDashboardByNameNotifyChange, getDashboardByName_imperative, getDashboards, getDashboards_imperative, getDataAlert, getDataAlertCollection, getDataAlertCollection_imperative, getDataAlertNotifyChange, getDataAlert_imperative, getDataAssetDependencies, getDataAssetDependencies_imperative, getDataAssetRequestByIdOrApiName, getDataAssetRequestByIdOrApiNameNotifyChange, getDataAssetRequestByIdOrApiName_imperative, getDataAssetRequests, getDataAssetRequestsCount, getDataAssetRequestsCount_imperative, getDataAssetRequests_imperative, getFlowByName, getFlowByName_imperative, getFlows, getFlows_imperative, getFollowedAssets, getFollowedAssets_imperative, getFollowers, getFollowers_imperative, getMarketplaceListingInstallationProgress, getMarketplaceListingInstallationProgress_imperative, getOrg, getOrg_imperative, getShares, getSharesNotifyChange, getShares_imperative, getSlackAppInfo, getSlackAppInfo_imperative, getSubscriptionDigestConfig, getSubscriptionDigestConfigNotifyChange, getSubscriptionDigestConfig_imperative, getUnifiedAnalyticsLibraryAssets, getUniqueFollowerCount, getUniqueFollowerCount_imperative, getVisualization, getVisualizationBundle, getVisualizationBundleNotifyChange, getVisualizationBundle_imperative, getVisualizationNotifyChange, getVisualization_imperative, getVisualizations, getVisualizations_imperative, getWorkspaceByIdOrName, getWorkspaceByIdOrNameNotifyChange, getWorkspaceByIdOrName_imperative, getWorkspaces, getWorkspaces_imperative, initiateMarketplaceListingInstallation, initiateMarketplaceListingInstallation_imperative, postDataAlertRun, publish, publishToMarketplace, queryAssets, queryUsers, unfollow, updateDashboard, updateDataAlert, updateDataAssetRequest, updateFollowedAsset, updateRecordShares, updateSubscriptionDigestConfig, updateVisualization, updateWorkspace };
|
|
14894
|
-
// version: 1.
|
|
14894
|
+
export { createAnnotation, createAssetSlackChannel, createDashboard, createDataAlert, createDataAssetRequest, createLoglines, createRecordShares, createTemplate, createVisualization, createWorkspace, createWorkspaceAsset, deleteAllShares, deleteDashboard, deleteDataAlert, deleteRecordShare, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, getAnnotations, getAnnotations_imperative, getAssetSlackChannels, getAssetSlackChannels_imperative, getDashboardByName, getDashboardByNameNotifyChange, getDashboardByName_imperative, getDashboards, getDashboards_imperative, getDataAlert, getDataAlertCollection, getDataAlertCollection_imperative, getDataAlertNotifyChange, getDataAlert_imperative, getDataAssetDependencies, getDataAssetDependencies_imperative, getDataAssetRequestByIdOrApiName, getDataAssetRequestByIdOrApiNameNotifyChange, getDataAssetRequestByIdOrApiName_imperative, getDataAssetRequests, getDataAssetRequestsCount, getDataAssetRequestsCount_imperative, getDataAssetRequests_imperative, getFlowByName, getFlowByName_imperative, getFlows, getFlows_imperative, getFollowedAssets, getFollowedAssets_imperative, getFollowers, getFollowers_imperative, getMarketplaceListingInstallationProgress, getMarketplaceListingInstallationProgress_imperative, getOrg, getOrg_imperative, getShares, getSharesNotifyChange, getShares_imperative, getSlackAppInfo, getSlackAppInfo_imperative, getSubscriptionDigestConfig, getSubscriptionDigestConfigNotifyChange, getSubscriptionDigestConfig_imperative, getUnifiedAnalyticsLibraryAssets, getUniqueFollowerCount, getUniqueFollowerCount_imperative, getVisualization, getVisualizationBundle, getVisualizationBundleNotifyChange, getVisualizationBundle_imperative, getVisualizationNotifyChange, getVisualization_imperative, getVisualizations, getVisualizations_imperative, getWorkspaceByIdOrName, getWorkspaceByIdOrNameNotifyChange, getWorkspaceByIdOrName_imperative, getWorkspaces, getWorkspaces_imperative, initiateMarketplaceListingInstallation, initiateMarketplaceListingInstallation_imperative, notifySharesUpdateAvailable, postDataAlertRun, publish, publishToMarketplace, queryAssets, queryUsers, unfollow, updateDashboard, updateDataAlert, updateDataAssetRequest, updateFollowedAsset, updateRecordShares, updateSubscriptionDigestConfig, updateVisualization, updateWorkspace };
|
|
14895
|
+
// version: 1.385.0-c6070cc476
|