@salesforce/lds-adapters-analytics-unifiedanalytics 1.379.1 → 1.380.0-dev10
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 +2740 -2564
- package/dist/es/es2018/types/src/generated/adapters/createRecordShares.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetDependencies.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getShares.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/publishToMarketplace.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsDependenciesByAssetId.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauRecordsSharesByRecordId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauMarketplaceListings.d.ts +14 -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/DataAssetRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/MarketplaceListingInputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/MarketplaceListingRepresentation.d.ts +38 -0
- 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/dist/es/es2018/types/src/generated/types/SetupRecordShareUserOrGroupRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +2586 -2404
- package/src/raml/api.raml +77 -1
- package/src/raml/luvio.raml +14 -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>;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_postTableauMarketplaceListings_ResourceRequestConfig } from '../resources/postTableauMarketplaceListings';
|
|
4
|
+
import { MarketplaceListingRepresentation as types_MarketplaceListingRepresentation_MarketplaceListingRepresentation } from '../types/MarketplaceListingRepresentation';
|
|
5
|
+
export declare const adapterName = "publishToMarketplace";
|
|
6
|
+
export declare const publishToMarketplace_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const publishToMarketplace_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface PublishToMarketplaceConfig {
|
|
9
|
+
assetId: string;
|
|
10
|
+
assetType: string;
|
|
11
|
+
assetVersion?: number;
|
|
12
|
+
}
|
|
13
|
+
export declare const createResourceParams: (config: PublishToMarketplaceConfig) => resources_postTableauMarketplaceListings_ResourceRequestConfig;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<PublishToMarketplaceConfig>): adapter$45$utils_Untrusted<PublishToMarketplaceConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): PublishToMarketplaceConfig | null;
|
|
16
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: PublishToMarketplaceConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_MarketplaceListingRepresentation_MarketplaceListingRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_MarketplaceListingRepresentation_MarketplaceListingRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_MarketplaceListingRepresentation_MarketplaceListingRepresentation, any>>;
|
|
17
|
+
export declare const publishToMarketplaceAdapterFactory: $64$luvio_engine_AdapterFactory<PublishToMarketplaceConfig, types_MarketplaceListingRepresentation_MarketplaceListingRepresentation>;
|
|
@@ -58,3 +58,5 @@ export { generateSFDriveCredentialsAdapterFactory } from '../adapters/generateSF
|
|
|
58
58
|
export { initiateMarketplaceListingInstallationAdapterFactory } from '../adapters/initiateMarketplaceListingInstallation';
|
|
59
59
|
export { getMarketplaceListingInstallationProgressAdapterFactory } from '../adapters/getMarketplaceListingInstallationProgress';
|
|
60
60
|
export { createTemplateAdapterFactory } from '../adapters/createTemplate';
|
|
61
|
+
export { publishToMarketplaceAdapterFactory } from '../adapters/publishToMarketplace';
|
|
62
|
+
export { notifyUpdateAvailableFactory as notifySharesUpdateAvailableFactory } from '../types/SetupRecordAccessCollectionRepresentation';
|
|
@@ -55,6 +55,7 @@ declare let getWorkspaces: any;
|
|
|
55
55
|
declare let initiateMarketplaceListingInstallation: any;
|
|
56
56
|
declare let postDataAlertRun: any;
|
|
57
57
|
declare let publish: any;
|
|
58
|
+
declare let publishToMarketplace: any;
|
|
58
59
|
declare let queryAssets: any;
|
|
59
60
|
declare let queryUsers: any;
|
|
60
61
|
declare let unfollow: any;
|
|
@@ -92,4 +93,6 @@ declare let getVisualizations_imperative: any;
|
|
|
92
93
|
declare let getWorkspaceByIdOrName_imperative: any;
|
|
93
94
|
declare let getWorkspaces_imperative: any;
|
|
94
95
|
declare let initiateMarketplaceListingInstallation_imperative: any;
|
|
95
|
-
|
|
96
|
+
declare let notifySharesUpdateAvailable: any;
|
|
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 };
|
package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsDependenciesByAssetId.d.ts
CHANGED
|
@@ -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;
|
|
@@ -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;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { MarketplaceListingRepresentation as types_MarketplaceListingRepresentation_MarketplaceListingRepresentation } from '../types/MarketplaceListingRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
body: {
|
|
5
|
+
assetId: string;
|
|
6
|
+
assetType: string;
|
|
7
|
+
assetVersion?: number;
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
11
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_MarketplaceListingRepresentation_MarketplaceListingRepresentation): void;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_MarketplaceListingRepresentation_MarketplaceListingRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_MarketplaceListingRepresentation_MarketplaceListingRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_MarketplaceListingRepresentation_MarketplaceListingRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_MarketplaceListingRepresentation_MarketplaceListingRepresentation, any>;
|
|
13
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
14
|
+
export default createResourceRequest;
|
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
|
}
|
|
@@ -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 = "
|
|
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
|
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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 = "52a172bcc062dbb04af4015bf5656657";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: MarketplaceListingInputRepresentation, existing: MarketplaceListingInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): MarketplaceListingInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: MarketplaceListingInputRepresentationNormalized, incoming: MarketplaceListingInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: MarketplaceListingInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input representation to publish asset to Marketplace.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface MarketplaceListingInputRepresentationNormalized {
|
|
17
|
+
/** The ID of the asset. */
|
|
18
|
+
assetId: string;
|
|
19
|
+
/** The type of the asset. */
|
|
20
|
+
assetType: string;
|
|
21
|
+
/** The version of the asset. */
|
|
22
|
+
assetVersion?: number;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Input representation to publish asset to Marketplace.
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface MarketplaceListingInputRepresentation {
|
|
31
|
+
assetId: string;
|
|
32
|
+
assetType: string;
|
|
33
|
+
assetVersion?: number;
|
|
34
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
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';
|
|
2
|
+
export declare const TTL = 1000;
|
|
3
|
+
export declare const VERSION = "818fc6d54b5d55d802b204f98d16d055";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
7
|
+
id: string;
|
|
8
|
+
}
|
|
9
|
+
export type MarketplaceListingRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export type PartialMarketplaceListingRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): MarketplaceListingRepresentationNormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: MarketplaceListingRepresentation): string;
|
|
14
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: MarketplaceListingRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function normalize(input: MarketplaceListingRepresentation, existing: MarketplaceListingRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): MarketplaceListingRepresentationNormalized;
|
|
16
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
17
|
+
export declare function equals(existing: MarketplaceListingRepresentationNormalized, incoming: MarketplaceListingRepresentationNormalized): boolean;
|
|
18
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: MarketplaceListingRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
20
|
+
/**
|
|
21
|
+
* The ID of marketplace listings.
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* id (string): id
|
|
25
|
+
*/
|
|
26
|
+
export interface MarketplaceListingRepresentationNormalized {
|
|
27
|
+
/** The ID of marketplace listings. */
|
|
28
|
+
id: string;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* The ID of marketplace listings.
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* id (string): id
|
|
35
|
+
*/
|
|
36
|
+
export interface MarketplaceListingRepresentation {
|
|
37
|
+
id: string;
|
|
38
|
+
}
|
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/dist/es/es2018/types/src/generated/types/SetupRecordShareUserOrGroupRepresentation.d.ts
CHANGED
|
@@ -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 = "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.
|
|
3
|
+
"version": "1.380.0-dev10",
|
|
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.380.0-dev10"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.380.0-dev10"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|