@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
|
@@ -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>;
|
|
@@ -12,6 +12,7 @@ export interface GetSharesConfig {
|
|
|
12
12
|
userOrGroupId?: string;
|
|
13
13
|
orderBy?: string;
|
|
14
14
|
sortOrder?: string;
|
|
15
|
+
filterByRecipientType?: Array<string>;
|
|
15
16
|
}
|
|
16
17
|
export declare const createResourceParams: (config: GetSharesConfig) => resources_getTableauRecordsSharesByRecordId_ResourceRequestConfig;
|
|
17
18
|
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 };
|
|
@@ -10,6 +10,7 @@ export interface ResourceRequestConfig {
|
|
|
10
10
|
userOrGroupId?: string;
|
|
11
11
|
orderBy?: string;
|
|
12
12
|
sortOrder?: string;
|
|
13
|
+
filterByRecipientType?: Array<string>;
|
|
13
14
|
};
|
|
14
15
|
}
|
|
15
16
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
package/dist/es/es2018/types/src/generated/resources/postTableauRecordsSharesByRecordId.d.ts
CHANGED
|
@@ -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 = "
|
|
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
|
|
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 = "
|
|
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
|
}
|
package/dist/es/es2018/types/src/generated/types/SetupRecordAccessCollectionRepresentation.d.ts
CHANGED
|
@@ -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 = "
|
|
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
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-analytics-unifiedanalytics",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.385.0",
|
|
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.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.385.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.385.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|