@salesforce/lds-adapters-analytics-unifiedanalytics 1.380.0-dev1 → 1.380.0-dev11

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.
Files changed (21) hide show
  1. package/dist/es/es2018/analytics-unifiedanalytics.js +86 -64
  2. package/dist/es/es2018/types/src/generated/adapters/createRecordShares.d.ts +1 -0
  3. package/dist/es/es2018/types/src/generated/adapters/getDataAssetDependencies.d.ts +1 -0
  4. package/dist/es/es2018/types/src/generated/adapters/getFlows.d.ts +1 -0
  5. package/dist/es/es2018/types/src/generated/adapters/getShares.d.ts +2 -0
  6. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
  7. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +2 -0
  8. package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsDependenciesByAssetId.d.ts +3 -0
  9. package/dist/es/es2018/types/src/generated/resources/getTableauFlows.d.ts +1 -0
  10. package/dist/es/es2018/types/src/generated/resources/getTableauRecordsSharesByRecordId.d.ts +2 -0
  11. package/dist/es/es2018/types/src/generated/resources/postTableauRecordsSharesByRecordId.d.ts +1 -0
  12. package/dist/es/es2018/types/src/generated/types/DataAlertCollectionRepresentation.d.ts +5 -14
  13. package/dist/es/es2018/types/src/generated/types/DataAlertRepresentation.d.ts +7 -1
  14. package/dist/es/es2018/types/src/generated/types/DataAssetRepresentation.d.ts +7 -1
  15. package/dist/es/es2018/types/src/generated/types/SetupRecordAccessCollectionRepresentation.d.ts +1 -0
  16. package/dist/es/es2018/types/src/generated/types/SetupRecordAccessInputRepresentation.d.ts +4 -1
  17. package/dist/es/es2018/types/src/generated/types/SetupRecordShareUserOrGroupRepresentation.d.ts +4 -1
  18. package/package.json +3 -3
  19. package/sfdc/index.js +90 -65
  20. package/src/raml/api.raml +48 -1
  21. package/src/raml/luvio.raml +5 -0
@@ -3784,7 +3784,7 @@ function validate$T(obj, path = 'DataAlertThresholdsRepresentation') {
3784
3784
  }
3785
3785
 
3786
3786
  const TTL$n = 500;
3787
- const VERSION$x = "3229a7b14837ba4170d4cd91239df29c";
3787
+ const VERSION$x = "219373b56f198f8a68fe8ca6afd30b60";
3788
3788
  function validate$S(obj, path = 'DataAlertRepresentation') {
3789
3789
  const v_error = (() => {
3790
3790
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -3803,6 +3803,11 @@ function validate$S(obj, path = 'DataAlertRepresentation') {
3803
3803
  message += referencepath_contentValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
3804
3804
  return new TypeError(message);
3805
3805
  }
3806
+ const obj_createdDate = obj.createdDate;
3807
+ const path_createdDate = path + '.createdDate';
3808
+ if (typeof obj_createdDate !== 'string') {
3809
+ return new TypeError('Expected "string" but received "' + typeof obj_createdDate + '" (at "' + path_createdDate + '")');
3810
+ }
3806
3811
  const obj_deliveryConfigurations = obj.deliveryConfigurations;
3807
3812
  const path_deliveryConfigurations = path + '.deliveryConfigurations';
3808
3813
  const referencepath_deliveryConfigurationsValidationError = validate$X(obj_deliveryConfigurations, path_deliveryConfigurations);
@@ -3816,6 +3821,11 @@ function validate$S(obj, path = 'DataAlertRepresentation') {
3816
3821
  if (typeof obj_id !== 'string') {
3817
3822
  return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
3818
3823
  }
3824
+ const obj_lastModifiedDate = obj.lastModifiedDate;
3825
+ const path_lastModifiedDate = path + '.lastModifiedDate';
3826
+ if (typeof obj_lastModifiedDate !== 'string') {
3827
+ return new TypeError('Expected "string" but received "' + typeof obj_lastModifiedDate + '" (at "' + path_lastModifiedDate + '")');
3828
+ }
3819
3829
  const obj_schedule = obj.schedule;
3820
3830
  const path_schedule = path + '.schedule';
3821
3831
  const referencepath_scheduleValidationError = validate$W(obj_schedule, path_schedule);
@@ -3885,7 +3895,7 @@ function getTypeCacheKeys$x(rootKeySet, luvio, input, fullPathFactory) {
3885
3895
  }
3886
3896
 
3887
3897
  const TTL$m = 500;
3888
- const VERSION$w = "af0497c1f6e23bc472a94e33329c591e";
3898
+ const VERSION$w = "d3e9e0efe02f7fa88865b7e72fe25f25";
3889
3899
  function validate$R(obj, path = 'DataAlertCollectionRepresentation') {
3890
3900
  const v_error = (() => {
3891
3901
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -3899,14 +3909,38 @@ function validate$R(obj, path = 'DataAlertCollectionRepresentation') {
3899
3909
  for (let i = 0; i < obj_dataAlerts.length; i++) {
3900
3910
  const obj_dataAlerts_item = obj_dataAlerts[i];
3901
3911
  const path_dataAlerts_item = path_dataAlerts + '[' + i + ']';
3902
- if (typeof obj_dataAlerts_item !== 'object' || Array.isArray(obj_dataAlerts_item)) {
3903
- return new TypeError('Expected "object" but received "' + typeof obj_dataAlerts_item + '" (at "' + path_dataAlerts_item + '")');
3912
+ const referencepath_dataAlerts_itemValidationError = validate$S(obj_dataAlerts_item, path_dataAlerts_item);
3913
+ if (referencepath_dataAlerts_itemValidationError !== null) {
3914
+ let message = 'Object doesn\'t match DataAlertRepresentation (at "' + path_dataAlerts_item + '")\n';
3915
+ message += referencepath_dataAlerts_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
3916
+ return new TypeError(message);
3904
3917
  }
3905
3918
  }
3906
3919
  const obj_nextPageUrl = obj.nextPageUrl;
3907
3920
  const path_nextPageUrl = path + '.nextPageUrl';
3908
- if (typeof obj_nextPageUrl !== 'string') {
3909
- return new TypeError('Expected "string" but received "' + typeof obj_nextPageUrl + '" (at "' + path_nextPageUrl + '")');
3921
+ let obj_nextPageUrl_union0 = null;
3922
+ const obj_nextPageUrl_union0_error = (() => {
3923
+ if (typeof obj_nextPageUrl !== 'string') {
3924
+ return new TypeError('Expected "string" but received "' + typeof obj_nextPageUrl + '" (at "' + path_nextPageUrl + '")');
3925
+ }
3926
+ })();
3927
+ if (obj_nextPageUrl_union0_error != null) {
3928
+ obj_nextPageUrl_union0 = obj_nextPageUrl_union0_error.message;
3929
+ }
3930
+ let obj_nextPageUrl_union1 = null;
3931
+ const obj_nextPageUrl_union1_error = (() => {
3932
+ if (obj_nextPageUrl !== null) {
3933
+ return new TypeError('Expected "null" but received "' + typeof obj_nextPageUrl + '" (at "' + path_nextPageUrl + '")');
3934
+ }
3935
+ })();
3936
+ if (obj_nextPageUrl_union1_error != null) {
3937
+ obj_nextPageUrl_union1 = obj_nextPageUrl_union1_error.message;
3938
+ }
3939
+ if (obj_nextPageUrl_union0 && obj_nextPageUrl_union1) {
3940
+ let message = 'Object doesn\'t match union (at "' + path_nextPageUrl + '")';
3941
+ message += '\n' + obj_nextPageUrl_union0.split('\n').map((line) => '\t' + line).join('\n');
3942
+ message += '\n' + obj_nextPageUrl_union1.split('\n').map((line) => '\t' + line).join('\n');
3943
+ return new TypeError(message);
3910
3944
  }
3911
3945
  const obj_totalSize = obj.totalSize;
3912
3946
  const path_totalSize = path + '.totalSize';
@@ -3918,22 +3952,6 @@ function validate$R(obj, path = 'DataAlertCollectionRepresentation') {
3918
3952
  }
3919
3953
  const RepresentationType$y = 'DataAlertCollectionRepresentation';
3920
3954
  function normalize$w(input, existing, path, luvio, store, timestamp) {
3921
- const input_dataAlerts = input.dataAlerts;
3922
- const input_dataAlerts_id = path.fullPath + '__dataAlerts';
3923
- for (let i = 0; i < input_dataAlerts.length; i++) {
3924
- const input_dataAlerts_item = input_dataAlerts[i];
3925
- let input_dataAlerts_item_id = input_dataAlerts_id + '__' + i;
3926
- input_dataAlerts[i] = ingest$x(input_dataAlerts_item, {
3927
- fullPath: input_dataAlerts_item_id,
3928
- propertyName: i,
3929
- parent: {
3930
- data: input,
3931
- key: path.fullPath,
3932
- existing: existing,
3933
- },
3934
- ttl: path.ttl
3935
- }, luvio, store, timestamp);
3936
- }
3937
3955
  return input;
3938
3956
  }
3939
3957
  const select$1c = function DataAlertCollectionRepresentationSelect() {
@@ -3941,43 +3959,11 @@ const select$1c = function DataAlertCollectionRepresentationSelect() {
3941
3959
  kind: 'Fragment',
3942
3960
  version: VERSION$w,
3943
3961
  private: [],
3944
- selections: [
3945
- {
3946
- name: 'dataAlerts',
3947
- kind: 'Link',
3948
- plural: true,
3949
- fragment: select$1d()
3950
- },
3951
- {
3952
- name: 'nextPageUrl',
3953
- kind: 'Scalar'
3954
- },
3955
- {
3956
- name: 'totalSize',
3957
- kind: 'Scalar'
3958
- }
3959
- ]
3962
+ opaque: true
3960
3963
  };
3961
3964
  };
3962
3965
  function equals$w(existing, incoming) {
3963
- const existing_totalSize = existing.totalSize;
3964
- const incoming_totalSize = incoming.totalSize;
3965
- if (!(existing_totalSize === incoming_totalSize)) {
3966
- return false;
3967
- }
3968
- const existing_nextPageUrl = existing.nextPageUrl;
3969
- const incoming_nextPageUrl = incoming.nextPageUrl;
3970
- if (!(existing_nextPageUrl === incoming_nextPageUrl)) {
3971
- return false;
3972
- }
3973
- const existing_dataAlerts = existing.dataAlerts;
3974
- const incoming_dataAlerts = incoming.dataAlerts;
3975
- const equals_dataAlerts_items = equalsArray(existing_dataAlerts, incoming_dataAlerts, (existing_dataAlerts_item, incoming_dataAlerts_item) => {
3976
- if (!(existing_dataAlerts_item.__ref === incoming_dataAlerts_item.__ref)) {
3977
- return false;
3978
- }
3979
- });
3980
- if (equals_dataAlerts_items === false) {
3966
+ if (JSONStringify(incoming) !== JSONStringify(existing)) {
3981
3967
  return false;
3982
3968
  }
3983
3969
  return true;
@@ -4002,10 +3988,6 @@ function getTypeCacheKeys$w(rootKeySet, luvio, input, fullPathFactory) {
4002
3988
  representationName: RepresentationType$y,
4003
3989
  mergeable: false
4004
3990
  });
4005
- const input_dataAlerts_length = input.dataAlerts.length;
4006
- for (let i = 0; i < input_dataAlerts_length; i++) {
4007
- getTypeCacheKeys$x(rootKeySet, luvio, input.dataAlerts[i]);
4008
- }
4009
3991
  }
4010
3992
 
4011
3993
  function select$1b(luvio, params) {
@@ -6396,6 +6378,13 @@ function validate$D(obj, path = 'DataAssetRepresentation') {
6396
6378
  return new TypeError('Expected "string" but received "' + typeof obj_createdDate + '" (at "' + path_createdDate + '")');
6397
6379
  }
6398
6380
  }
6381
+ if (obj.createdWorkspace !== undefined) {
6382
+ const obj_createdWorkspace = obj.createdWorkspace;
6383
+ const path_createdWorkspace = path + '.createdWorkspace';
6384
+ if (typeof obj_createdWorkspace !== 'string') {
6385
+ return new TypeError('Expected "string" but received "' + typeof obj_createdWorkspace + '" (at "' + path_createdWorkspace + '")');
6386
+ }
6387
+ }
6399
6388
  if (obj.description !== undefined) {
6400
6389
  const obj_description = obj.description;
6401
6390
  const path_description = path + '.description';
@@ -6433,6 +6422,13 @@ function validate$D(obj, path = 'DataAssetRepresentation') {
6433
6422
  if (typeof obj_name !== 'string') {
6434
6423
  return new TypeError('Expected "string" but received "' + typeof obj_name + '" (at "' + path_name + '")');
6435
6424
  }
6425
+ if (obj.synchronizationStatus !== undefined) {
6426
+ const obj_synchronizationStatus = obj.synchronizationStatus;
6427
+ const path_synchronizationStatus = path + '.synchronizationStatus';
6428
+ if (typeof obj_synchronizationStatus !== 'string') {
6429
+ return new TypeError('Expected "string" but received "' + typeof obj_synchronizationStatus + '" (at "' + path_synchronizationStatus + '")');
6430
+ }
6431
+ }
6436
6432
  if (obj.workspaceId !== undefined) {
6437
6433
  const obj_workspaceId = obj.workspaceId;
6438
6434
  const path_workspaceId = path + '.workspaceId';
@@ -6530,7 +6526,7 @@ function select$Y(luvio, params) {
6530
6526
  return select$Z();
6531
6527
  }
6532
6528
  function keyBuilder$V(luvio, params) {
6533
- return keyPrefix + '::DataAssetDependentCollectionRepresentation:(' + 'assetId:' + params.urlParams.assetId + ')';
6529
+ return keyPrefix + '::DataAssetDependentCollectionRepresentation:(' + 'includeSynchronizationInfo:' + params.queryParams.includeSynchronizationInfo + ',' + 'assetId:' + params.urlParams.assetId + ')';
6534
6530
  }
6535
6531
  function getResponseCacheKeys$D(storeKeyMap, luvio, resourceParams, response) {
6536
6532
  getTypeCacheKeys$r(storeKeyMap, luvio, response, () => keyBuilder$V(luvio, resourceParams));
@@ -6572,7 +6568,7 @@ function createResourceRequest$D(config) {
6572
6568
  method: 'get',
6573
6569
  body: null,
6574
6570
  urlParams: config.urlParams,
6575
- queryParams: {},
6571
+ queryParams: config.queryParams,
6576
6572
  headers,
6577
6573
  priority: 'normal',
6578
6574
  };
@@ -6581,6 +6577,7 @@ function createResourceRequest$D(config) {
6581
6577
  const adapterName$D = 'getDataAssetDependencies';
6582
6578
  const getDataAssetDependencies_ConfigPropertyMetadata = [
6583
6579
  generateParamConfigMetadata('assetId', true, 0 /* UrlParameter */, 0 /* String */),
6580
+ generateParamConfigMetadata('includeSynchronizationInfo', false, 1 /* QueryParameter */, 1 /* Boolean */),
6584
6581
  ];
6585
6582
  const getDataAssetDependencies_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$D, getDataAssetDependencies_ConfigPropertyMetadata);
6586
6583
  const createResourceParams$D = /*#__PURE__*/ createResourceParams$Z(getDataAssetDependencies_ConfigPropertyMetadata);
@@ -8333,6 +8330,13 @@ function validate$q(obj, path = 'SetupRecordShareUserOrGroupRepresentation') {
8333
8330
  return new TypeError('Expected "string" but received "' + typeof obj_email + '" (at "' + path_email + '")');
8334
8331
  }
8335
8332
  }
8333
+ if (obj.groupMemberCount !== undefined) {
8334
+ const obj_groupMemberCount = obj.groupMemberCount;
8335
+ const path_groupMemberCount = path + '.groupMemberCount';
8336
+ if (typeof obj_groupMemberCount !== 'number' || (typeof obj_groupMemberCount === 'number' && Math.floor(obj_groupMemberCount) !== obj_groupMemberCount)) {
8337
+ return new TypeError('Expected "integer" but received "' + typeof obj_groupMemberCount + '" (at "' + path_groupMemberCount + '")');
8338
+ }
8339
+ }
8336
8340
  if (obj.id !== undefined) {
8337
8341
  const obj_id = obj.id;
8338
8342
  const path_id = path + '.id';
@@ -8477,6 +8481,20 @@ function getTypeCacheKeys$j(rootKeySet, luvio, input, fullPathFactory) {
8477
8481
  mergeable: false
8478
8482
  });
8479
8483
  }
8484
+ const notifyUpdateAvailableFactory = (luvio) => {
8485
+ return function notifySharesUpdateAvailable(configs) {
8486
+ if (process.env.NODE_ENV !== 'production') {
8487
+ const requiredKeyParams = ['recordId'];
8488
+ configs.forEach(config => {
8489
+ if (false === requiredKeyParams.every(req => req in config)) {
8490
+ throw new Error(`one of the configs did not contain all required parameters: ${JSONStringify(ObjectKeys(config))}`);
8491
+ }
8492
+ });
8493
+ }
8494
+ const keys = configs.map(c => keyBuilder$F(luvio, c));
8495
+ return luvio.notifyStoreUpdateAvailable(keys);
8496
+ };
8497
+ };
8480
8498
 
8481
8499
  function keyBuilder$E(luvio, params) {
8482
8500
  return keyBuilder$F(luvio, {
@@ -8624,6 +8642,8 @@ const getShares_ConfigPropertyMetadata = [
8624
8642
  generateParamConfigMetadata('userOrGroupId', false, 1 /* QueryParameter */, 0 /* String */),
8625
8643
  generateParamConfigMetadata('orderBy', false, 1 /* QueryParameter */, 0 /* String */),
8626
8644
  generateParamConfigMetadata('sortOrder', false, 1 /* QueryParameter */, 0 /* String */),
8645
+ generateParamConfigMetadata('filterByRecipientType', false, 1 /* QueryParameter */, 0 /* String */, true),
8646
+ generateParamConfigMetadata('recipientSearchTerm', false, 1 /* QueryParameter */, 0 /* String */),
8627
8647
  ];
8628
8648
  const getShares_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$t, getShares_ConfigPropertyMetadata);
8629
8649
  const createResourceParams$t = /*#__PURE__*/ createResourceParams$Z(getShares_ConfigPropertyMetadata);
@@ -9021,6 +9041,7 @@ const adapterName$r = 'createRecordShares';
9021
9041
  const createRecordShares_ConfigPropertyMetadata = [
9022
9042
  generateParamConfigMetadata('recordId', true, 0 /* UrlParameter */, 0 /* String */),
9023
9043
  generateParamConfigMetadata('accessRequestItems', true, 2 /* Body */, 4 /* Unsupported */, true),
9044
+ generateParamConfigMetadata('sendNotificationToRecipients', false, 2 /* Body */, 1 /* Boolean */),
9024
9045
  ];
9025
9046
  const createRecordShares_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$r, createRecordShares_ConfigPropertyMetadata);
9026
9047
  const createResourceParams$r = /*#__PURE__*/ createResourceParams$Z(createRecordShares_ConfigPropertyMetadata);
@@ -12344,7 +12365,7 @@ function select$g(luvio, params) {
12344
12365
  return select$h();
12345
12366
  }
12346
12367
  function keyBuilder$e(luvio, params) {
12347
- return keyPrefix + '::FlowCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ')';
12368
+ return keyPrefix + '::FlowCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ',' + 'searchTerm:' + params.queryParams.searchTerm + ')';
12348
12369
  }
12349
12370
  function getResponseCacheKeys$9(storeKeyMap, luvio, resourceParams, response) {
12350
12371
  getTypeCacheKeys$7(storeKeyMap, luvio, response, () => keyBuilder$e(luvio, resourceParams));
@@ -12390,6 +12411,7 @@ const adapterName$9 = 'getFlows';
12390
12411
  const getFlows_ConfigPropertyMetadata = [
12391
12412
  generateParamConfigMetadata('limit', false, 1 /* QueryParameter */, 3 /* Integer */),
12392
12413
  generateParamConfigMetadata('offset', false, 1 /* QueryParameter */, 3 /* Integer */),
12414
+ generateParamConfigMetadata('searchTerm', false, 1 /* QueryParameter */, 0 /* String */),
12393
12415
  ];
12394
12416
  const getFlows_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$9, getFlows_ConfigPropertyMetadata);
12395
12417
  const createResourceParams$9 = /*#__PURE__*/ createResourceParams$Z(getFlows_ConfigPropertyMetadata);
@@ -14161,4 +14183,4 @@ const publishToMarketplaceAdapterFactory = (luvio) => {
14161
14183
  };
14162
14184
  };
14163
14185
 
14164
- export { createAnnotationAdapterFactory, createAssetSlackChannelAdapterFactory, createDashboardAdapterFactory, createDataAlertAdapterFactory, createDataAssetRequestAdapterFactory, createLoglinesAdapterFactory, createRecordSharesAdapterFactory, createTemplateAdapterFactory, createVisualizationAdapterFactory, createWorkspaceAdapterFactory, createWorkspaceAssetAdapterFactory, deleteAllSharesAdapterFactory, deleteDashboardAdapterFactory, deleteDataAlertAdapterFactory, deleteRecordShareAdapterFactory, deleteVisualizationAdapterFactory, deleteWorkspaceAdapterFactory, deleteWorkspaceAssetAdapterFactory, followAdapterFactory, generateSFDriveCredentialsAdapterFactory, getAnnotationsAdapterFactory, getAssetSlackChannelsAdapterFactory, getDashboardByNameAdapterFactory, getDashboardsAdapterFactory, getDataAlertAdapterFactory, getDataAlertCollectionAdapterFactory, getDataAssetDependenciesAdapterFactory, getDataAssetRequestByIdOrApiNameAdapterFactory, getDataAssetRequestsAdapterFactory, getDataAssetRequestsCountAdapterFactory, getFlowByNameAdapterFactory, getFlowsAdapterFactory, getFollowedAssetsAdapterFactory, getFollowersAdapterFactory, getMarketplaceListingInstallationProgressAdapterFactory, getOrgAdapterFactory, getSharesAdapterFactory, getSlackAppInfoAdapterFactory, getSubscriptionDigestConfigAdapterFactory, getUnifiedAnalyticsLibraryAssetsAdapterFactory, getUniqueFollowerCountAdapterFactory, getVisualizationAdapterFactory, getVisualizationBundleAdapterFactory, getVisualizationsAdapterFactory, getWorkspaceByIdOrNameAdapterFactory, getWorkspacesAdapterFactory, initiateMarketplaceListingInstallationAdapterFactory, postDataAlertRunAdapterFactory, publishAdapterFactory, publishToMarketplaceAdapterFactory, queryAssetsAdapterFactory, queryUsersAdapterFactory, unfollowAdapterFactory, updateDashboardAdapterFactory, updateDataAlertAdapterFactory, updateDataAssetRequestAdapterFactory, updateFollowedAssetAdapterFactory, updateRecordSharesAdapterFactory, updateSubscriptionDigestConfigAdapterFactory, updateVisualizationAdapterFactory, updateWorkspaceAdapterFactory };
14186
+ export { createAnnotationAdapterFactory, createAssetSlackChannelAdapterFactory, createDashboardAdapterFactory, createDataAlertAdapterFactory, createDataAssetRequestAdapterFactory, createLoglinesAdapterFactory, createRecordSharesAdapterFactory, createTemplateAdapterFactory, createVisualizationAdapterFactory, createWorkspaceAdapterFactory, createWorkspaceAssetAdapterFactory, deleteAllSharesAdapterFactory, deleteDashboardAdapterFactory, deleteDataAlertAdapterFactory, deleteRecordShareAdapterFactory, deleteVisualizationAdapterFactory, deleteWorkspaceAdapterFactory, deleteWorkspaceAssetAdapterFactory, followAdapterFactory, generateSFDriveCredentialsAdapterFactory, getAnnotationsAdapterFactory, getAssetSlackChannelsAdapterFactory, getDashboardByNameAdapterFactory, getDashboardsAdapterFactory, getDataAlertAdapterFactory, getDataAlertCollectionAdapterFactory, getDataAssetDependenciesAdapterFactory, getDataAssetRequestByIdOrApiNameAdapterFactory, getDataAssetRequestsAdapterFactory, getDataAssetRequestsCountAdapterFactory, getFlowByNameAdapterFactory, getFlowsAdapterFactory, getFollowedAssetsAdapterFactory, getFollowersAdapterFactory, getMarketplaceListingInstallationProgressAdapterFactory, getOrgAdapterFactory, getSharesAdapterFactory, getSlackAppInfoAdapterFactory, getSubscriptionDigestConfigAdapterFactory, getUnifiedAnalyticsLibraryAssetsAdapterFactory, getUniqueFollowerCountAdapterFactory, getVisualizationAdapterFactory, getVisualizationBundleAdapterFactory, getVisualizationsAdapterFactory, getWorkspaceByIdOrNameAdapterFactory, getWorkspacesAdapterFactory, initiateMarketplaceListingInstallationAdapterFactory, notifyUpdateAvailableFactory as notifySharesUpdateAvailableFactory, postDataAlertRunAdapterFactory, publishAdapterFactory, publishToMarketplaceAdapterFactory, queryAssetsAdapterFactory, queryUsersAdapterFactory, unfollowAdapterFactory, updateDashboardAdapterFactory, updateDataAlertAdapterFactory, updateDataAssetRequestAdapterFactory, updateFollowedAssetAdapterFactory, updateRecordSharesAdapterFactory, updateSubscriptionDigestConfigAdapterFactory, updateVisualizationAdapterFactory, updateWorkspaceAdapterFactory };
@@ -8,6 +8,7 @@ export declare const createRecordShares_ConfigPropertyNames: adapter$45$utils_Ad
8
8
  export interface CreateRecordSharesConfig {
9
9
  recordId: string;
10
10
  accessRequestItems: Array<unknown>;
11
+ sendNotificationToRecipients?: boolean;
11
12
  }
12
13
  export declare const createResourceParams: (config: CreateRecordSharesConfig) => resources_postTableauRecordsSharesByRecordId_ResourceRequestConfig;
13
14
  export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateRecordSharesConfig>): adapter$45$utils_Untrusted<CreateRecordSharesConfig>;
@@ -7,6 +7,7 @@ export declare const getDataAssetDependencies_ConfigPropertyMetadata: $64$luvio_
7
7
  export declare const getDataAssetDependencies_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
8
  export interface GetDataAssetDependenciesConfig {
9
9
  assetId: string;
10
+ includeSynchronizationInfo?: boolean;
10
11
  }
11
12
  export declare const createResourceParams: (config: GetDataAssetDependenciesConfig) => resources_getTableauDataAssetsDependenciesByAssetId_ResourceRequestConfig;
12
13
  export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetDataAssetDependenciesConfig): string;
@@ -8,6 +8,7 @@ export declare const getFlows_ConfigPropertyNames: adapter$45$utils_AdapterValid
8
8
  export interface GetFlowsConfig {
9
9
  limit?: number;
10
10
  offset?: number;
11
+ searchTerm?: string;
11
12
  }
12
13
  export declare const createResourceParams: (config: GetFlowsConfig) => resources_getTableauFlows_ResourceRequestConfig;
13
14
  export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetFlowsConfig): string;
@@ -12,6 +12,8 @@ export interface GetSharesConfig {
12
12
  userOrGroupId?: string;
13
13
  orderBy?: string;
14
14
  sortOrder?: string;
15
+ filterByRecipientType?: Array<string>;
16
+ recipientSearchTerm?: string;
15
17
  }
16
18
  export declare const createResourceParams: (config: GetSharesConfig) => resources_getTableauRecordsSharesByRecordId_ResourceRequestConfig;
17
19
  export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetSharesConfig): string;
@@ -59,3 +59,4 @@ export { initiateMarketplaceListingInstallationAdapterFactory } from '../adapter
59
59
  export { getMarketplaceListingInstallationProgressAdapterFactory } from '../adapters/getMarketplaceListingInstallationProgress';
60
60
  export { createTemplateAdapterFactory } from '../adapters/createTemplate';
61
61
  export { publishToMarketplaceAdapterFactory } from '../adapters/publishToMarketplace';
62
+ export { notifyUpdateAvailableFactory as notifySharesUpdateAvailableFactory } from '../types/SetupRecordAccessCollectionRepresentation';
@@ -93,4 +93,6 @@ declare let getVisualizations_imperative: any;
93
93
  declare let getWorkspaceByIdOrName_imperative: any;
94
94
  declare let getWorkspaces_imperative: any;
95
95
  declare let initiateMarketplaceListingInstallation_imperative: any;
96
+ declare let notifySharesUpdateAvailable: any;
96
97
  export { createAnnotation, createAssetSlackChannel, createDashboard, createDataAlert, createDataAssetRequest, createLoglines, createRecordShares, createTemplate, createVisualization, createWorkspace, createWorkspaceAsset, deleteAllShares, deleteDashboard, deleteDataAlert, deleteRecordShare, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, getAnnotations, getAssetSlackChannels, getDashboardByName, getDashboardByNameNotifyChange, getDashboards, getDataAlert, getDataAlertCollection, getDataAlertNotifyChange, getDataAssetDependencies, getDataAssetRequestByIdOrApiName, getDataAssetRequestByIdOrApiNameNotifyChange, getDataAssetRequests, getDataAssetRequestsCount, getFlowByName, getFlows, getFollowedAssets, getFollowers, getMarketplaceListingInstallationProgress, getOrg, getShares, getSharesNotifyChange, getSlackAppInfo, getSubscriptionDigestConfig, getSubscriptionDigestConfigNotifyChange, getUnifiedAnalyticsLibraryAssets, getUniqueFollowerCount, getVisualization, getVisualizationBundle, getVisualizationBundleNotifyChange, getVisualizationNotifyChange, getVisualizations, getWorkspaceByIdOrName, getWorkspaceByIdOrNameNotifyChange, getWorkspaces, initiateMarketplaceListingInstallation, postDataAlertRun, publish, publishToMarketplace, queryAssets, queryUsers, unfollow, updateDashboard, updateDataAlert, updateDataAssetRequest, updateFollowedAsset, updateRecordShares, updateSubscriptionDigestConfig, updateVisualization, updateWorkspace, getAnnotations_imperative, getAssetSlackChannels_imperative, getDashboardByName_imperative, getDashboards_imperative, getDataAlert_imperative, getDataAlertCollection_imperative, getDataAssetDependencies_imperative, getDataAssetRequestByIdOrApiName_imperative, getDataAssetRequests_imperative, getDataAssetRequestsCount_imperative, getFlowByName_imperative, getFlows_imperative, getFollowedAssets_imperative, getFollowers_imperative, getMarketplaceListingInstallationProgress_imperative, getOrg_imperative, getShares_imperative, getSlackAppInfo_imperative, getSubscriptionDigestConfig_imperative, getUniqueFollowerCount_imperative, getVisualization_imperative, getVisualizationBundle_imperative, getVisualizations_imperative, getWorkspaceByIdOrName_imperative, getWorkspaces_imperative, initiateMarketplaceListingInstallation_imperative, };
98
+ export { notifySharesUpdateAvailable };
@@ -4,6 +4,9 @@ export interface ResourceRequestConfig {
4
4
  urlParams: {
5
5
  assetId: string;
6
6
  };
7
+ queryParams: {
8
+ includeSynchronizationInfo?: boolean;
9
+ };
7
10
  }
8
11
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
9
12
  export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
@@ -4,6 +4,7 @@ export interface ResourceRequestConfig {
4
4
  queryParams: {
5
5
  limit?: number;
6
6
  offset?: number;
7
+ searchTerm?: string;
7
8
  };
8
9
  }
9
10
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -10,6 +10,8 @@ export interface ResourceRequestConfig {
10
10
  userOrGroupId?: string;
11
11
  orderBy?: string;
12
12
  sortOrder?: string;
13
+ filterByRecipientType?: Array<string>;
14
+ recipientSearchTerm?: string;
13
15
  };
14
16
  }
15
17
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -6,6 +6,7 @@ export interface ResourceRequestConfig {
6
6
  };
7
7
  body: {
8
8
  accessRequestItems: Array<unknown>;
9
+ sendNotificationToRecipients?: boolean;
9
10
  };
10
11
  }
11
12
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -1,23 +1,14 @@
1
- import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
1
  import { DataAlertRepresentation as DataAlertRepresentation_DataAlertRepresentation } from './DataAlertRepresentation';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
3
  export declare const TTL = 500;
4
- export declare const VERSION = "af0497c1f6e23bc472a94e33329c591e";
4
+ export declare const VERSION = "d3e9e0efe02f7fa88865b7e72fe25f25";
5
5
  export declare function validate(obj: any, path?: string): TypeError | null;
6
6
  export declare const RepresentationType: string;
7
7
  export declare function normalize(input: DataAlertCollectionRepresentation, existing: DataAlertCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAlertCollectionRepresentationNormalized;
8
- export interface DynamicIngestParams {
9
- dataAlerts: $64$luvio_engine_ResourceIngest;
10
- }
11
- export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: DataAlertCollectionRepresentation, existing: DataAlertCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => DataAlertCollectionRepresentationNormalized;
12
- export declare const select: () => $64$luvio_engine_FragmentSelection;
13
- export interface DynamicSelectParams {
14
- dataAlerts?: $64$luvio_engine_LinkSelection;
15
- }
16
- export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
8
+ export declare const select: () => $64$luvio_engine_BaseFragment;
17
9
  export declare function equals(existing: DataAlertCollectionRepresentationNormalized, incoming: DataAlertCollectionRepresentationNormalized): boolean;
18
10
  export declare const ingest: $64$luvio_engine_ResourceIngest;
19
11
  export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DataAlertCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
20
- export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
21
12
  /**
22
13
  * A collection of unified analytics data alerts.
23
14
  *
@@ -28,7 +19,7 @@ export interface DataAlertCollectionRepresentationNormalized {
28
19
  /** List of data alerts being returned. */
29
20
  dataAlerts: Array<$64$luvio_engine_StoreLink>;
30
21
  /** Next page url for pagination. */
31
- nextPageUrl: string;
22
+ nextPageUrl: string | null;
32
23
  /** Total size of data alert array returned. */
33
24
  totalSize: number;
34
25
  }
@@ -40,6 +31,6 @@ export interface DataAlertCollectionRepresentationNormalized {
40
31
  */
41
32
  export interface DataAlertCollectionRepresentation {
42
33
  dataAlerts: Array<DataAlertRepresentation_DataAlertRepresentation>;
43
- nextPageUrl: string;
34
+ nextPageUrl: string | null;
44
35
  totalSize: number;
45
36
  }
@@ -4,7 +4,7 @@ import { DataAlertScheduleRepresentation as DataAlertScheduleRepresentation_Data
4
4
  import { DataAlertThresholdsRepresentation as DataAlertThresholdsRepresentation_DataAlertThresholdsRepresentation } from './DataAlertThresholdsRepresentation';
5
5
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
6
6
  export declare const TTL = 500;
7
- export declare const VERSION = "3229a7b14837ba4170d4cd91239df29c";
7
+ export declare const VERSION = "219373b56f198f8a68fe8ca6afd30b60";
8
8
  export declare function validate(obj: any, path?: string): TypeError | null;
9
9
  export declare const RepresentationType: string;
10
10
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -32,10 +32,14 @@ export interface DataAlertRepresentationNormalized {
32
32
  alertName: string;
33
33
  /** Notification content configuration. Contains the config needed to generate the notification content. */
34
34
  content: DataAlertContentRepresentation_DataAlertContentRepresentation;
35
+ /** Creation date of the data alert */
36
+ createdDate: string;
35
37
  /** Data alert delivery configurations. */
36
38
  deliveryConfigurations: DataAlertDeliveryConfigurationRepresentation_DataAlertDeliveryConfigurationRepresentation;
37
39
  /** ID of the Data Alert */
38
40
  id: string;
41
+ /** Last modified date of the data alert */
42
+ lastModifiedDate: string;
39
43
  schedule: DataAlertScheduleRepresentation_DataAlertScheduleRepresentation;
40
44
  thresholds: DataAlertThresholdsRepresentation_DataAlertThresholdsRepresentation;
41
45
  }
@@ -48,8 +52,10 @@ export interface DataAlertRepresentationNormalized {
48
52
  export interface DataAlertRepresentation {
49
53
  alertName: string;
50
54
  content: DataAlertContentRepresentation_DataAlertContentRepresentation;
55
+ createdDate: string;
51
56
  deliveryConfigurations: DataAlertDeliveryConfigurationRepresentation_DataAlertDeliveryConfigurationRepresentation;
52
57
  id: string;
58
+ lastModifiedDate: string;
53
59
  schedule: DataAlertScheduleRepresentation_DataAlertScheduleRepresentation;
54
60
  thresholds: DataAlertThresholdsRepresentation_DataAlertThresholdsRepresentation;
55
61
  }
@@ -1,7 +1,7 @@
1
1
  import { AnalyticsUserRepresentation as AnalyticsUserRepresentation_AnalyticsUserRepresentation } from './AnalyticsUserRepresentation';
2
2
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
3
3
  export declare const TTL = 500;
4
- export declare const VERSION = "7ce15fca75fceda2fa8738e6d8aa258a";
4
+ export declare const VERSION = "0b280063b1145b756cd89a65339f642b";
5
5
  export declare function validate(obj: any, path?: string): TypeError | null;
6
6
  export declare const RepresentationType: string;
7
7
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -33,6 +33,8 @@ export interface DataAssetRepresentationNormalized {
33
33
  createdBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation;
34
34
  /** Created date of the DataAsset */
35
35
  createdDate?: string;
36
+ /** Workspace where the DataAsset was created */
37
+ createdWorkspace?: string;
36
38
  /** Description of the DataAsset. */
37
39
  description?: string;
38
40
  /** DataAsset id. */
@@ -45,6 +47,8 @@ export interface DataAssetRepresentationNormalized {
45
47
  lastModifiedDate: string;
46
48
  /** Name of the DataAsset. */
47
49
  name: string;
50
+ /** Synchronization status of the DataAsset */
51
+ synchronizationStatus?: string;
48
52
  /** Id of the workspace which the DataAsset is part of */
49
53
  workspaceId?: string;
50
54
  }
@@ -59,11 +63,13 @@ export interface DataAssetRepresentation {
59
63
  assetType: string;
60
64
  createdBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation;
61
65
  createdDate?: string;
66
+ createdWorkspace?: string;
62
67
  description?: string;
63
68
  id?: string;
64
69
  label: string;
65
70
  lastModifiedBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation;
66
71
  lastModifiedDate: string;
67
72
  name: string;
73
+ synchronizationStatus?: string;
68
74
  workspaceId?: string;
69
75
  }
@@ -40,3 +40,4 @@ export interface SetupRecordAccessCollectionRepresentation {
40
40
  recordAccessMappings: Array<SetupRecordAccessRepresentation_SetupRecordAccessRepresentation>;
41
41
  recordId: string;
42
42
  }
43
+ export declare const notifyUpdateAvailableFactory: (luvio: $64$luvio_engine_Luvio) => (configs: Partial<KeyParams>[]) => Promise<void>;
@@ -1,5 +1,5 @@
1
1
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
- export declare const VERSION = "3730cfd15f57c7c36a898c3334f4c0c7";
2
+ export declare const VERSION = "535532bdabc5e474f966246eb0a0f04b";
3
3
  export declare function validate(obj: any, path?: string): TypeError | null;
4
4
  export declare const RepresentationType: string;
5
5
  export declare function normalize(input: SetupRecordAccessInputRepresentation, existing: SetupRecordAccessInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SetupRecordAccessInputRepresentationNormalized;
@@ -16,6 +16,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
16
16
  export interface SetupRecordAccessInputRepresentationNormalized {
17
17
  /** List of records shares */
18
18
  accessRequestItems: Array<unknown>;
19
+ /** check for sending notification to recipients */
20
+ sendNotificationToRecipients?: boolean;
19
21
  }
20
22
  /**
21
23
  * User Or Role Access Input Representation
@@ -25,4 +27,5 @@ export interface SetupRecordAccessInputRepresentationNormalized {
25
27
  */
26
28
  export interface SetupRecordAccessInputRepresentation {
27
29
  accessRequestItems: Array<unknown>;
30
+ sendNotificationToRecipients?: boolean;
28
31
  }
@@ -1,5 +1,5 @@
1
1
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
- export declare const VERSION = "d1614bb2b4e44eba88be256d9176f648";
2
+ export declare const VERSION = "56cf7641df9c98fbbbcf8b438caa22e9";
3
3
  export declare function validate(obj: any, path?: string): TypeError | null;
4
4
  export declare const RepresentationType: string;
5
5
  export declare function normalize(input: SetupRecordShareUserOrGroupRepresentation, existing: SetupRecordShareUserOrGroupRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SetupRecordShareUserOrGroupRepresentationNormalized;
@@ -18,6 +18,8 @@ export interface SetupRecordShareUserOrGroupRepresentationNormalized {
18
18
  displayName?: string;
19
19
  /** Email of the User */
20
20
  email?: string;
21
+ /** Count of users in group */
22
+ groupMemberCount?: number;
21
23
  /** Id of the User or Group */
22
24
  id?: string;
23
25
  /** Profile Photo URL of the User */
@@ -34,6 +36,7 @@ export interface SetupRecordShareUserOrGroupRepresentationNormalized {
34
36
  export interface SetupRecordShareUserOrGroupRepresentation {
35
37
  displayName?: string;
36
38
  email?: string;
39
+ groupMemberCount?: number;
37
40
  id?: string;
38
41
  profilePhotoUrl?: string;
39
42
  username?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-analytics-unifiedanalytics",
3
- "version": "1.380.0-dev1",
3
+ "version": "1.380.0-dev11",
4
4
  "description": "Tableau Unified Analytics Platform",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "dist/es/es2018/analytics-unifiedanalytics.js",
@@ -40,10 +40,10 @@
40
40
  "test:unit": "jest"
41
41
  },
42
42
  "dependencies": {
43
- "@salesforce/lds-bindings": "^1.380.0-dev1"
43
+ "@salesforce/lds-bindings": "^1.380.0-dev11"
44
44
  },
45
45
  "devDependencies": {
46
- "@salesforce/lds-compiler-plugins": "^1.380.0-dev1"
46
+ "@salesforce/lds-compiler-plugins": "^1.380.0-dev11"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {
package/sfdc/index.js CHANGED
@@ -2524,7 +2524,7 @@ function validate$U(obj, path = 'DataAlertThresholdsRepresentation') {
2524
2524
  }
2525
2525
 
2526
2526
  const TTL$q = 500;
2527
- const VERSION$B = "3229a7b14837ba4170d4cd91239df29c";
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);
@@ -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);
@@ -4984,6 +4995,13 @@ function validate$F(obj, path = 'SetupRecordShareUserOrGroupRepresentation') {
4984
4995
  return new TypeError('Expected "string" but received "' + typeof obj_email + '" (at "' + path_email + '")');
4985
4996
  }
4986
4997
  }
4998
+ if (obj.groupMemberCount !== undefined) {
4999
+ const obj_groupMemberCount = obj.groupMemberCount;
5000
+ const path_groupMemberCount = path + '.groupMemberCount';
5001
+ if (typeof obj_groupMemberCount !== 'number' || (typeof obj_groupMemberCount === 'number' && Math.floor(obj_groupMemberCount) !== obj_groupMemberCount)) {
5002
+ return new TypeError('Expected "integer" but received "' + typeof obj_groupMemberCount + '" (at "' + path_groupMemberCount + '")');
5003
+ }
5004
+ }
4987
5005
  if (obj.id !== undefined) {
4988
5006
  const obj_id = obj.id;
4989
5007
  const path_id = path + '.id';
@@ -5128,6 +5146,20 @@ function getTypeCacheKeys$t(rootKeySet, luvio, input, fullPathFactory) {
5128
5146
  mergeable: false
5129
5147
  });
5130
5148
  }
5149
+ const notifyUpdateAvailableFactory = (luvio) => {
5150
+ return function notifySharesUpdateAvailable(configs) {
5151
+ if (process.env.NODE_ENV !== 'production') {
5152
+ const requiredKeyParams = ['recordId'];
5153
+ configs.forEach(config => {
5154
+ if (false === requiredKeyParams.every(req => req in config)) {
5155
+ throw new Error(`one of the configs did not contain all required parameters: ${JSONStringify(ObjectKeys(config))}`);
5156
+ }
5157
+ });
5158
+ }
5159
+ const keys = configs.map(c => keyBuilder$18(luvio, c));
5160
+ return luvio.notifyStoreUpdateAvailable(keys);
5161
+ };
5162
+ };
5131
5163
 
5132
5164
  function keyBuilder$17(luvio, params) {
5133
5165
  return keyBuilder$18(luvio, {
@@ -7236,7 +7268,7 @@ const notifyChangeFactory$6 = (luvio, options) => {
7236
7268
  };
7237
7269
 
7238
7270
  const TTL$g = 500;
7239
- const VERSION$n = "af0497c1f6e23bc472a94e33329c591e";
7271
+ const VERSION$n = "d3e9e0efe02f7fa88865b7e72fe25f25";
7240
7272
  function validate$w(obj, path = 'DataAlertCollectionRepresentation') {
7241
7273
  const v_error = (() => {
7242
7274
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -7250,14 +7282,38 @@ function validate$w(obj, path = 'DataAlertCollectionRepresentation') {
7250
7282
  for (let i = 0; i < obj_dataAlerts.length; i++) {
7251
7283
  const obj_dataAlerts_item = obj_dataAlerts[i];
7252
7284
  const path_dataAlerts_item = path_dataAlerts + '[' + i + ']';
7253
- if (typeof obj_dataAlerts_item !== 'object' || Array.isArray(obj_dataAlerts_item)) {
7254
- return new TypeError('Expected "object" but received "' + typeof obj_dataAlerts_item + '" (at "' + path_dataAlerts_item + '")');
7285
+ const referencepath_dataAlerts_itemValidationError = validate$T(obj_dataAlerts_item, path_dataAlerts_item);
7286
+ if (referencepath_dataAlerts_itemValidationError !== null) {
7287
+ let message = 'Object doesn\'t match DataAlertRepresentation (at "' + path_dataAlerts_item + '")\n';
7288
+ message += referencepath_dataAlerts_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
7289
+ return new TypeError(message);
7255
7290
  }
7256
7291
  }
7257
7292
  const obj_nextPageUrl = obj.nextPageUrl;
7258
7293
  const path_nextPageUrl = path + '.nextPageUrl';
7259
- if (typeof obj_nextPageUrl !== 'string') {
7260
- return new TypeError('Expected "string" but received "' + typeof obj_nextPageUrl + '" (at "' + path_nextPageUrl + '")');
7294
+ let obj_nextPageUrl_union0 = null;
7295
+ const obj_nextPageUrl_union0_error = (() => {
7296
+ if (typeof obj_nextPageUrl !== 'string') {
7297
+ return new TypeError('Expected "string" but received "' + typeof obj_nextPageUrl + '" (at "' + path_nextPageUrl + '")');
7298
+ }
7299
+ })();
7300
+ if (obj_nextPageUrl_union0_error != null) {
7301
+ obj_nextPageUrl_union0 = obj_nextPageUrl_union0_error.message;
7302
+ }
7303
+ let obj_nextPageUrl_union1 = null;
7304
+ const obj_nextPageUrl_union1_error = (() => {
7305
+ if (obj_nextPageUrl !== null) {
7306
+ return new TypeError('Expected "null" but received "' + typeof obj_nextPageUrl + '" (at "' + path_nextPageUrl + '")');
7307
+ }
7308
+ })();
7309
+ if (obj_nextPageUrl_union1_error != null) {
7310
+ obj_nextPageUrl_union1 = obj_nextPageUrl_union1_error.message;
7311
+ }
7312
+ if (obj_nextPageUrl_union0 && obj_nextPageUrl_union1) {
7313
+ let message = 'Object doesn\'t match union (at "' + path_nextPageUrl + '")';
7314
+ message += '\n' + obj_nextPageUrl_union0.split('\n').map((line) => '\t' + line).join('\n');
7315
+ message += '\n' + obj_nextPageUrl_union1.split('\n').map((line) => '\t' + line).join('\n');
7316
+ return new TypeError(message);
7261
7317
  }
7262
7318
  const obj_totalSize = obj.totalSize;
7263
7319
  const path_totalSize = path + '.totalSize';
@@ -7269,22 +7325,6 @@ function validate$w(obj, path = 'DataAlertCollectionRepresentation') {
7269
7325
  }
7270
7326
  const RepresentationType$o = 'DataAlertCollectionRepresentation';
7271
7327
  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
7328
  return input;
7289
7329
  }
7290
7330
  const select$W = function DataAlertCollectionRepresentationSelect() {
@@ -7292,43 +7332,11 @@ const select$W = function DataAlertCollectionRepresentationSelect() {
7292
7332
  kind: 'Fragment',
7293
7333
  version: VERSION$n,
7294
7334
  private: [],
7295
- selections: [
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
- ]
7335
+ opaque: true
7311
7336
  };
7312
7337
  };
7313
7338
  function equals$n(existing, incoming) {
7314
- const existing_totalSize = existing.totalSize;
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) {
7339
+ if (JSONStringify(incoming) !== JSONStringify(existing)) {
7332
7340
  return false;
7333
7341
  }
7334
7342
  return true;
@@ -7353,10 +7361,6 @@ function getTypeCacheKeys$n(rootKeySet, luvio, input, fullPathFactory) {
7353
7361
  representationName: RepresentationType$o,
7354
7362
  mergeable: false
7355
7363
  });
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
7364
  }
7361
7365
 
7362
7366
  function select$V(luvio, params) {
@@ -7529,6 +7533,13 @@ function validate$v(obj, path = 'DataAssetRepresentation') {
7529
7533
  return new TypeError('Expected "string" but received "' + typeof obj_createdDate + '" (at "' + path_createdDate + '")');
7530
7534
  }
7531
7535
  }
7536
+ if (obj.createdWorkspace !== undefined) {
7537
+ const obj_createdWorkspace = obj.createdWorkspace;
7538
+ const path_createdWorkspace = path + '.createdWorkspace';
7539
+ if (typeof obj_createdWorkspace !== 'string') {
7540
+ return new TypeError('Expected "string" but received "' + typeof obj_createdWorkspace + '" (at "' + path_createdWorkspace + '")');
7541
+ }
7542
+ }
7532
7543
  if (obj.description !== undefined) {
7533
7544
  const obj_description = obj.description;
7534
7545
  const path_description = path + '.description';
@@ -7566,6 +7577,13 @@ function validate$v(obj, path = 'DataAssetRepresentation') {
7566
7577
  if (typeof obj_name !== 'string') {
7567
7578
  return new TypeError('Expected "string" but received "' + typeof obj_name + '" (at "' + path_name + '")');
7568
7579
  }
7580
+ if (obj.synchronizationStatus !== undefined) {
7581
+ const obj_synchronizationStatus = obj.synchronizationStatus;
7582
+ const path_synchronizationStatus = path + '.synchronizationStatus';
7583
+ if (typeof obj_synchronizationStatus !== 'string') {
7584
+ return new TypeError('Expected "string" but received "' + typeof obj_synchronizationStatus + '" (at "' + path_synchronizationStatus + '")');
7585
+ }
7586
+ }
7569
7587
  if (obj.workspaceId !== undefined) {
7570
7588
  const obj_workspaceId = obj.workspaceId;
7571
7589
  const path_workspaceId = path + '.workspaceId';
@@ -7663,7 +7681,7 @@ function select$T(luvio, params) {
7663
7681
  return select$U();
7664
7682
  }
7665
7683
  function keyBuilder$O(luvio, params) {
7666
- return keyPrefix + '::DataAssetDependentCollectionRepresentation:(' + 'assetId:' + params.urlParams.assetId + ')';
7684
+ return keyPrefix + '::DataAssetDependentCollectionRepresentation:(' + 'includeSynchronizationInfo:' + params.queryParams.includeSynchronizationInfo + ',' + 'assetId:' + params.urlParams.assetId + ')';
7667
7685
  }
7668
7686
  function getResponseCacheKeys$y(storeKeyMap, luvio, resourceParams, response) {
7669
7687
  getTypeCacheKeys$m(storeKeyMap, luvio, response, () => keyBuilder$O(luvio, resourceParams));
@@ -7705,7 +7723,7 @@ function createResourceRequest$y(config) {
7705
7723
  method: 'get',
7706
7724
  body: null,
7707
7725
  urlParams: config.urlParams,
7708
- queryParams: {},
7726
+ queryParams: config.queryParams,
7709
7727
  headers,
7710
7728
  priority: 'normal',
7711
7729
  };
@@ -7714,6 +7732,7 @@ function createResourceRequest$y(config) {
7714
7732
  const adapterName$y = 'getDataAssetDependencies';
7715
7733
  const getDataAssetDependencies_ConfigPropertyMetadata = [
7716
7734
  generateParamConfigMetadata('assetId', true, 0 /* UrlParameter */, 0 /* String */),
7735
+ generateParamConfigMetadata('includeSynchronizationInfo', false, 1 /* QueryParameter */, 1 /* Boolean */),
7717
7736
  ];
7718
7737
  const getDataAssetDependencies_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$y, getDataAssetDependencies_ConfigPropertyMetadata);
7719
7738
  const createResourceParams$y = /*#__PURE__*/ createResourceParams$Z(getDataAssetDependencies_ConfigPropertyMetadata);
@@ -8813,7 +8832,7 @@ function select$K(luvio, params) {
8813
8832
  return select$L();
8814
8833
  }
8815
8834
  function keyBuilder$E(luvio, params) {
8816
- return keyPrefix + '::FlowCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ')';
8835
+ return keyPrefix + '::FlowCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ',' + 'searchTerm:' + params.queryParams.searchTerm + ')';
8817
8836
  }
8818
8837
  function getResponseCacheKeys$t(storeKeyMap, luvio, resourceParams, response) {
8819
8838
  getTypeCacheKeys$i(storeKeyMap, luvio, response, () => keyBuilder$E(luvio, resourceParams));
@@ -8859,6 +8878,7 @@ const adapterName$t = 'getFlows';
8859
8878
  const getFlows_ConfigPropertyMetadata = [
8860
8879
  generateParamConfigMetadata('limit', false, 1 /* QueryParameter */, 3 /* Integer */),
8861
8880
  generateParamConfigMetadata('offset', false, 1 /* QueryParameter */, 3 /* Integer */),
8881
+ generateParamConfigMetadata('searchTerm', false, 1 /* QueryParameter */, 0 /* String */),
8862
8882
  ];
8863
8883
  const getFlows_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$t, getFlows_ConfigPropertyMetadata);
8864
8884
  const createResourceParams$t = /*#__PURE__*/ createResourceParams$Z(getFlows_ConfigPropertyMetadata);
@@ -9991,6 +10011,8 @@ const getShares_ConfigPropertyMetadata = [
9991
10011
  generateParamConfigMetadata('userOrGroupId', false, 1 /* QueryParameter */, 0 /* String */),
9992
10012
  generateParamConfigMetadata('orderBy', false, 1 /* QueryParameter */, 0 /* String */),
9993
10013
  generateParamConfigMetadata('sortOrder', false, 1 /* QueryParameter */, 0 /* String */),
10014
+ generateParamConfigMetadata('filterByRecipientType', false, 1 /* QueryParameter */, 0 /* String */, true),
10015
+ generateParamConfigMetadata('recipientSearchTerm', false, 1 /* QueryParameter */, 0 /* String */),
9994
10016
  ];
9995
10017
  const getShares_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$o, getShares_ConfigPropertyMetadata);
9996
10018
  const createResourceParams$o = /*#__PURE__*/ createResourceParams$Z(getShares_ConfigPropertyMetadata);
@@ -14658,6 +14680,7 @@ const initiateMarketplaceListingInstallationMetadata = {
14658
14680
  name: 'initiateMarketplaceListingInstallation',
14659
14681
  };
14660
14682
  // Notify Update Available
14683
+ let notifySharesUpdateAvailable;
14661
14684
  function bindExportsTo(luvio) {
14662
14685
  // LDS Adapters
14663
14686
  const getAnnotations_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getAnnotations', getAnnotationsAdapterFactory), getAnnotationsMetadata);
@@ -14788,6 +14811,7 @@ function bindExportsTo(luvio) {
14788
14811
  getWorkspaces_imperative: createImperativeAdapter(luvio, getWorkspaces_ldsAdapter, getWorkspacesMetadata),
14789
14812
  initiateMarketplaceListingInstallation_imperative: createImperativeAdapter(luvio, initiateMarketplaceListingInstallation_ldsAdapter, initiateMarketplaceListingInstallationMetadata),
14790
14813
  // Notify Update Availables
14814
+ notifySharesUpdateAvailable: createLDSAdapter(luvio, 'notifySharesUpdateAvailable', notifyUpdateAvailableFactory),
14791
14815
  };
14792
14816
  }
14793
14817
  withDefaultLuvio((luvio) => {
@@ -14887,8 +14911,9 @@ withDefaultLuvio((luvio) => {
14887
14911
  getWorkspaceByIdOrName_imperative,
14888
14912
  getWorkspaces_imperative,
14889
14913
  initiateMarketplaceListingInstallation_imperative,
14914
+ notifySharesUpdateAvailable,
14890
14915
  } = bindExportsTo(luvio));
14891
14916
  });
14892
14917
 
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.380.0-dev1-b7c5fad9db
14918
+ 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 };
14919
+ // version: 1.380.0-dev11-54c448d29f
package/src/raml/api.raml CHANGED
@@ -1010,6 +1010,17 @@ types:
1010
1010
  description: Id of the workspace which the DataAsset is part of
1011
1011
  type: string
1012
1012
  required: false
1013
+ synchronizationStatus:
1014
+ description: Synchronization status of the DataAsset
1015
+ type: string
1016
+ enum:
1017
+ - SYNC
1018
+ - NEW
1019
+ required: false
1020
+ createdWorkspace:
1021
+ description: Workspace where the DataAsset was created
1022
+ type: string
1023
+ required: false
1013
1024
  DataAssetRequestCollectionRepresentation:
1014
1025
  description: Collection of Data Asset Requests
1015
1026
  type: object
@@ -1040,7 +1051,7 @@ types:
1040
1051
  type: integer
1041
1052
  nextPageUrl:
1042
1053
  description: Next page url for pagination.
1043
- type: string
1054
+ type: string | nil
1044
1055
  DataAlertValueInputRepresentation:
1045
1056
  description: Abstract input representation for operands
1046
1057
  type: object
@@ -1506,6 +1517,12 @@ types:
1506
1517
  deliveryConfigurations:
1507
1518
  description: Data alert delivery configurations.
1508
1519
  type: DataAlertDeliveryConfigurationRepresentation
1520
+ createdDate:
1521
+ description: Creation date of the data alert
1522
+ type: string
1523
+ lastModifiedDate:
1524
+ description: Last modified date of the data alert
1525
+ type: string
1509
1526
  schedule:
1510
1527
  description: Data alert schedule.
1511
1528
  type: DataAlertScheduleRepresentation
@@ -2148,6 +2165,10 @@ types:
2148
2165
  type: array
2149
2166
  items:
2150
2167
  type: any
2168
+ sendNotificationToRecipients:
2169
+ description: check for sending notification to recipients
2170
+ type: boolean
2171
+ required: false
2151
2172
  SetupRecordAccessItemInputRepresentation:
2152
2173
  description: Record Access Item Input Representation
2153
2174
  type: object
@@ -2199,6 +2220,10 @@ types:
2199
2220
  description: Username of the User
2200
2221
  type: string
2201
2222
  required: false
2223
+ groupMemberCount:
2224
+ description: Count of users in group
2225
+ type: integer
2226
+ required: false
2202
2227
  SetupRecordAccessRepresentation:
2203
2228
  description: Record Access mapping for specific UserOrGroup
2204
2229
  discriminatorValue: RecordAccessMappingForUserOrGroup
@@ -3104,6 +3129,11 @@ types:
3104
3129
  get:
3105
3130
  displayName: getDataAssetDependencies
3106
3131
  description: Gets the dependencies of an Data asset
3132
+ queryParameters:
3133
+ includeSynchronizationInfo:
3134
+ type: boolean
3135
+ required: false
3136
+ description: Include synchronization information in the response
3107
3137
  responses:
3108
3138
  '200':
3109
3139
  description: Success
@@ -3301,6 +3331,20 @@ types:
3301
3331
  enum:
3302
3332
  - DESC
3303
3333
  - ASC
3334
+ filterByRecipientType:
3335
+ description: recipient filter value, default is none
3336
+ type: array
3337
+ required: false
3338
+ items:
3339
+ type: string
3340
+ enum:
3341
+ - User
3342
+ - Group
3343
+ recipientSearchTerm:
3344
+ description: Search term parameter value
3345
+ type: string
3346
+ required: false
3347
+
3304
3348
  patch:
3305
3349
  displayName: patchSetupRecordShareCollection
3306
3350
  description: Update an record share to be associated with a record Item
@@ -3631,6 +3675,9 @@ types:
3631
3675
  offset:
3632
3676
  type: integer
3633
3677
  required: false
3678
+ searchTerm:
3679
+ type: string
3680
+ required: false
3634
3681
  /flows/{flowApiName}:
3635
3682
  get:
3636
3683
  displayName: getFlowByName
@@ -36,6 +36,7 @@ types:
36
36
  (luvio.opaque): true
37
37
  DataAlertCollectionRepresentation:
38
38
  (luvio.ttl): 500
39
+ (luvio.opaque): true
39
40
  DataAlertRepresentation:
40
41
  (luvio.ttl): 500
41
42
  (luvio.opaque): true
@@ -155,6 +156,10 @@ types:
155
156
  (luvio.opaque): true
156
157
  (luvio.key):
157
158
  recordId: recordId
159
+ (luvio.updateAvailable):
160
+ name: notifySharesUpdateAvailable
161
+ parameters:
162
+ recordId: recordId
158
163
  SetupRecordAccessRepresentation:
159
164
  (luvio.ttl): 500
160
165
  (luvio.opaque): true