@salesforce/lds-adapters-analytics-unifiedanalytics 1.316.0 → 1.318.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 +3 -0
- package/dist/es/es2018/types/src/generated/adapters/getUnifiedAnalyticsLibraryAssets.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauLibraryAssetsQuery.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/types/AnalyticsLibraryCollectionQueryInputRepresentation.d.ts +7 -1
- package/package.json +3 -3
- package/sfdc/index.js +4 -1
- package/src/raml/api.raml +8 -0
|
@@ -8914,11 +8914,14 @@ const getUnifiedAnalyticsLibraryAssets_ConfigPropertyMetadata = [
|
|
|
8914
8914
|
generateParamConfigMetadata('limit', false, 2 /* Body */, 4 /* Unsupported */),
|
|
8915
8915
|
generateParamConfigMetadata('offset', false, 2 /* Body */, 4 /* Unsupported */),
|
|
8916
8916
|
generateParamConfigMetadata('searchToken', false, 2 /* Body */, 4 /* Unsupported */),
|
|
8917
|
+
generateParamConfigMetadata('sortBy', false, 2 /* Body */, 0 /* String */),
|
|
8918
|
+
generateParamConfigMetadata('sortDirection', false, 2 /* Body */, 0 /* String */),
|
|
8917
8919
|
];
|
|
8918
8920
|
const getUnifiedAnalyticsLibraryAssets_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$1, getUnifiedAnalyticsLibraryAssets_ConfigPropertyMetadata);
|
|
8919
8921
|
const createResourceParams$1 = /*#__PURE__*/ createResourceParams$D(getUnifiedAnalyticsLibraryAssets_ConfigPropertyMetadata);
|
|
8920
8922
|
function typeCheckConfig$1(untrustedConfig) {
|
|
8921
8923
|
const config = {};
|
|
8924
|
+
typeCheckConfig$D(untrustedConfig, config, getUnifiedAnalyticsLibraryAssets_ConfigPropertyMetadata);
|
|
8922
8925
|
const untrustedConfig_assetTypes = untrustedConfig.assetTypes;
|
|
8923
8926
|
if (ArrayIsArray$1(untrustedConfig_assetTypes)) {
|
|
8924
8927
|
const untrustedConfig_assetTypes_array = [];
|
|
@@ -13,6 +13,8 @@ export interface GetUnifiedAnalyticsLibraryAssetsConfig {
|
|
|
13
13
|
limit?: number | null;
|
|
14
14
|
offset?: number | null;
|
|
15
15
|
searchToken?: string | null;
|
|
16
|
+
sortBy?: string;
|
|
17
|
+
sortDirection?: string;
|
|
16
18
|
}
|
|
17
19
|
export declare const createResourceParams: (config: GetUnifiedAnalyticsLibraryAssetsConfig) => resources_postTableauLibraryAssetsQuery_ResourceRequestConfig;
|
|
18
20
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetUnifiedAnalyticsLibraryAssetsConfig>): adapter$45$utils_Untrusted<GetUnifiedAnalyticsLibraryAssetsConfig>;
|
|
@@ -9,6 +9,8 @@ export interface ResourceRequestConfig {
|
|
|
9
9
|
limit?: number | null;
|
|
10
10
|
offset?: number | null;
|
|
11
11
|
searchToken?: string | null;
|
|
12
|
+
sortBy?: string;
|
|
13
|
+
sortDirection?: string;
|
|
12
14
|
};
|
|
13
15
|
}
|
|
14
16
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -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 = "0d1296bde0448369877f57c9dbb26255";
|
|
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: AnalyticsLibraryCollectionQueryInputRepresentation, existing: AnalyticsLibraryCollectionQueryInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AnalyticsLibraryCollectionQueryInputRepresentationNormalized;
|
|
@@ -26,6 +26,10 @@ export interface AnalyticsLibraryCollectionQueryInputRepresentationNormalized {
|
|
|
26
26
|
offset?: number | null;
|
|
27
27
|
/** SearchToken to filter analytics library assets on name or description */
|
|
28
28
|
searchToken?: string | null;
|
|
29
|
+
/** Sort by field */
|
|
30
|
+
sortBy?: string;
|
|
31
|
+
/** Sort direction */
|
|
32
|
+
sortDirection?: string;
|
|
29
33
|
}
|
|
30
34
|
/**
|
|
31
35
|
* Input representation for Analytics Library Listing API
|
|
@@ -41,4 +45,6 @@ export interface AnalyticsLibraryCollectionQueryInputRepresentation {
|
|
|
41
45
|
limit?: number | null;
|
|
42
46
|
offset?: number | null;
|
|
43
47
|
searchToken?: string | null;
|
|
48
|
+
sortBy?: string;
|
|
49
|
+
sortDirection?: string;
|
|
44
50
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-analytics-unifiedanalytics",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.318.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.318.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.318.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -6812,11 +6812,14 @@ const getUnifiedAnalyticsLibraryAssets_ConfigPropertyMetadata = [
|
|
|
6812
6812
|
generateParamConfigMetadata('limit', false, 2 /* Body */, 4 /* Unsupported */),
|
|
6813
6813
|
generateParamConfigMetadata('offset', false, 2 /* Body */, 4 /* Unsupported */),
|
|
6814
6814
|
generateParamConfigMetadata('searchToken', false, 2 /* Body */, 4 /* Unsupported */),
|
|
6815
|
+
generateParamConfigMetadata('sortBy', false, 2 /* Body */, 0 /* String */),
|
|
6816
|
+
generateParamConfigMetadata('sortDirection', false, 2 /* Body */, 0 /* String */),
|
|
6815
6817
|
];
|
|
6816
6818
|
const getUnifiedAnalyticsLibraryAssets_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$e, getUnifiedAnalyticsLibraryAssets_ConfigPropertyMetadata);
|
|
6817
6819
|
const createResourceParams$e = /*#__PURE__*/ createResourceParams$D(getUnifiedAnalyticsLibraryAssets_ConfigPropertyMetadata);
|
|
6818
6820
|
function typeCheckConfig$e(untrustedConfig) {
|
|
6819
6821
|
const config = {};
|
|
6822
|
+
typeCheckConfig$D(untrustedConfig, config, getUnifiedAnalyticsLibraryAssets_ConfigPropertyMetadata);
|
|
6820
6823
|
const untrustedConfig_assetTypes = untrustedConfig.assetTypes;
|
|
6821
6824
|
if (ArrayIsArray$1(untrustedConfig_assetTypes)) {
|
|
6822
6825
|
const untrustedConfig_assetTypes_array = [];
|
|
@@ -9655,4 +9658,4 @@ withDefaultLuvio((luvio) => {
|
|
|
9655
9658
|
});
|
|
9656
9659
|
|
|
9657
9660
|
export { createAnnotation, createAssetSlackChannel, createDashboard, createLoglines, createVisualization, createWorkspace, createWorkspaceAsset, deleteDashboard, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, getAnnotations, getAnnotations_imperative, getAssetSlackChannels, getAssetSlackChannels_imperative, getDashboardByName, getDashboardByNameNotifyChange, getDashboardByName_imperative, getDashboards, getDashboards_imperative, getFlowByName, getFlowByName_imperative, getFlows, getFlows_imperative, getFollowedAssets, getFollowedAssets_imperative, getFollowers, getFollowers_imperative, getOrg, getOrg_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, publish, queryAssets, queryUsers, unfollow, updateDashboard, updateSubscriptionDigestConfig, updateVisualization, updateWorkspace };
|
|
9658
|
-
// version: 1.
|
|
9661
|
+
// version: 1.318.0-46c39b8717
|
package/src/raml/api.raml
CHANGED
|
@@ -913,6 +913,14 @@ types:
|
|
|
913
913
|
description: SearchToken to filter analytics library assets on name or description
|
|
914
914
|
type: string | nil
|
|
915
915
|
required: false
|
|
916
|
+
sortBy:
|
|
917
|
+
description: Sort by field
|
|
918
|
+
type: string
|
|
919
|
+
required: false
|
|
920
|
+
sortDirection:
|
|
921
|
+
description: Sort direction
|
|
922
|
+
type: string
|
|
923
|
+
required: false
|
|
916
924
|
AnalyticsLibraryDashboardTemplateRepresentation:
|
|
917
925
|
description: Output representation of dashboard template preview in analytics
|
|
918
926
|
library
|