@salesforce/lds-adapters-analytics-unifiedanalytics 1.332.0-dev18 → 1.332.0-dev19
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 +22 -10
- package/dist/es/es2018/types/src/generated/adapters/createDashboard.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/createVisualization.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getDashboardByName.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getDashboards.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getVisualization.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getVisualizationBundle.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getVisualizations.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/updateDashboard.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/updateFollowedAsset.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/adapters/updateVisualization.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauDashboards.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauDashboardsByDashboardIdOrApiName.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauVisualizations.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauVisualizationsBundleByVisualizationIdOrApiName.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauVisualizationsByVisualizationIdOrApiName.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/patchTableauDashboardsByDashboardIdOrApiName.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/patchTableauFollowFollowersFollowsByFollowerId.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/resources/patchTableauVisualizationsByVisualizationIdOrApiName.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauDashboards.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauVisualizations.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/types/UpdateFollowedAssetInputRepresentation.d.ts +4 -3
- package/package.json +3 -3
- package/sfdc/index.js +26 -11
- package/src/raml/api.raml +36 -1
|
@@ -2980,7 +2980,7 @@ function select$17(luvio, params) {
|
|
|
2980
2980
|
return select$18();
|
|
2981
2981
|
}
|
|
2982
2982
|
function keyBuilder$13(luvio, params) {
|
|
2983
|
-
return keyPrefix + '::DashboardCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ')';
|
|
2983
|
+
return keyPrefix + '::DashboardCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'minorVersion:' + params.queryParams.minorVersion + ',' + 'offset:' + params.queryParams.offset + ')';
|
|
2984
2984
|
}
|
|
2985
2985
|
function getResponseCacheKeys$N(storeKeyMap, luvio, resourceParams, response) {
|
|
2986
2986
|
getTypeCacheKeys$t(storeKeyMap, luvio, response, () => keyBuilder$13(luvio, resourceParams));
|
|
@@ -3025,6 +3025,7 @@ function createResourceRequest$N(config) {
|
|
|
3025
3025
|
const adapterName$N = 'getDashboards';
|
|
3026
3026
|
const getDashboards_ConfigPropertyMetadata = [
|
|
3027
3027
|
generateParamConfigMetadata('limit', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
3028
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
3028
3029
|
generateParamConfigMetadata('offset', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
3029
3030
|
];
|
|
3030
3031
|
const getDashboards_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$N, getDashboards_ConfigPropertyMetadata);
|
|
@@ -3140,7 +3141,7 @@ function createResourceRequest$M(config) {
|
|
|
3140
3141
|
method: 'post',
|
|
3141
3142
|
body: config.body,
|
|
3142
3143
|
urlParams: {},
|
|
3143
|
-
queryParams:
|
|
3144
|
+
queryParams: config.queryParams,
|
|
3144
3145
|
headers,
|
|
3145
3146
|
priority: 'normal',
|
|
3146
3147
|
};
|
|
@@ -3148,6 +3149,7 @@ function createResourceRequest$M(config) {
|
|
|
3148
3149
|
|
|
3149
3150
|
const adapterName$M = 'createDashboard';
|
|
3150
3151
|
const createDashboard_ConfigPropertyMetadata = [
|
|
3152
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
3151
3153
|
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
3152
3154
|
generateParamConfigMetadata('id', false, 2 /* Body */, 0 /* String */),
|
|
3153
3155
|
generateParamConfigMetadata('workspaceIdOrApiName', false, 2 /* Body */, 0 /* String */),
|
|
@@ -3371,7 +3373,7 @@ function createResourceRequest$K(config) {
|
|
|
3371
3373
|
method: 'get',
|
|
3372
3374
|
body: null,
|
|
3373
3375
|
urlParams: config.urlParams,
|
|
3374
|
-
queryParams:
|
|
3376
|
+
queryParams: config.queryParams,
|
|
3375
3377
|
headers,
|
|
3376
3378
|
priority: 'normal',
|
|
3377
3379
|
};
|
|
@@ -3380,6 +3382,7 @@ function createResourceRequest$K(config) {
|
|
|
3380
3382
|
const adapterName$K = 'getDashboardByName';
|
|
3381
3383
|
const getDashboardByName_ConfigPropertyMetadata = [
|
|
3382
3384
|
generateParamConfigMetadata('dashboardIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
3385
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
3383
3386
|
];
|
|
3384
3387
|
const getDashboardByName_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$K, getDashboardByName_ConfigPropertyMetadata);
|
|
3385
3388
|
const createResourceParams$K = /*#__PURE__*/ createResourceParams$T(getDashboardByName_ConfigPropertyMetadata);
|
|
@@ -3494,7 +3497,7 @@ function createResourceRequest$J(config) {
|
|
|
3494
3497
|
method: 'patch',
|
|
3495
3498
|
body: config.body,
|
|
3496
3499
|
urlParams: config.urlParams,
|
|
3497
|
-
queryParams:
|
|
3500
|
+
queryParams: config.queryParams,
|
|
3498
3501
|
headers,
|
|
3499
3502
|
priority: 'normal',
|
|
3500
3503
|
};
|
|
@@ -3503,6 +3506,7 @@ function createResourceRequest$J(config) {
|
|
|
3503
3506
|
const adapterName$J = 'updateDashboard';
|
|
3504
3507
|
const updateDashboard_ConfigPropertyMetadata = [
|
|
3505
3508
|
generateParamConfigMetadata('dashboardIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
3509
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
3506
3510
|
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
3507
3511
|
generateParamConfigMetadata('id', false, 2 /* Body */, 0 /* String */),
|
|
3508
3512
|
generateParamConfigMetadata('workspaceIdOrApiName', false, 2 /* Body */, 0 /* String */),
|
|
@@ -6106,7 +6110,7 @@ const updateFollowedAsset_ConfigPropertyMetadata = [
|
|
|
6106
6110
|
generateParamConfigMetadata('assetId', true, 2 /* Body */, 0 /* String */),
|
|
6107
6111
|
generateParamConfigMetadata('assetType', false, 2 /* Body */, 0 /* String */),
|
|
6108
6112
|
generateParamConfigMetadata('followerType', false, 2 /* Body */, 0 /* String */),
|
|
6109
|
-
generateParamConfigMetadata('followedTimeRange',
|
|
6113
|
+
generateParamConfigMetadata('followedTimeRange', false, 2 /* Body */, 4 /* Unsupported */),
|
|
6110
6114
|
];
|
|
6111
6115
|
const updateFollowedAsset_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$z, updateFollowedAsset_ConfigPropertyMetadata);
|
|
6112
6116
|
const createResourceParams$z = /*#__PURE__*/ createResourceParams$T(updateFollowedAsset_ConfigPropertyMetadata);
|
|
@@ -6118,6 +6122,9 @@ function typeCheckConfig$z(untrustedConfig) {
|
|
|
6118
6122
|
if (referenceFollowedTimeRangeRepresentationValidationError === null) {
|
|
6119
6123
|
config.followedTimeRange = untrustedConfig_followedTimeRange;
|
|
6120
6124
|
}
|
|
6125
|
+
if (untrustedConfig_followedTimeRange === null) {
|
|
6126
|
+
config.followedTimeRange = untrustedConfig_followedTimeRange;
|
|
6127
|
+
}
|
|
6121
6128
|
return config;
|
|
6122
6129
|
}
|
|
6123
6130
|
function validateAdapterConfig$z(untrustedConfig, configPropertyNames) {
|
|
@@ -9084,7 +9091,7 @@ function select$s(luvio, params) {
|
|
|
9084
9091
|
return select$t();
|
|
9085
9092
|
}
|
|
9086
9093
|
function keyBuilder$s(luvio, params) {
|
|
9087
|
-
return keyPrefix + '::VisualizationCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ')';
|
|
9094
|
+
return keyPrefix + '::VisualizationCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ',' + 'minorVersion:' + params.queryParams.minorVersion + ')';
|
|
9088
9095
|
}
|
|
9089
9096
|
function getResponseCacheKeys$k(storeKeyMap, luvio, resourceParams, response) {
|
|
9090
9097
|
getTypeCacheKeys$b(storeKeyMap, luvio, response, () => keyBuilder$s(luvio, resourceParams));
|
|
@@ -9130,6 +9137,7 @@ const adapterName$k = 'getVisualizations';
|
|
|
9130
9137
|
const getVisualizations_ConfigPropertyMetadata = [
|
|
9131
9138
|
generateParamConfigMetadata('limit', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
9132
9139
|
generateParamConfigMetadata('offset', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
9140
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
9133
9141
|
];
|
|
9134
9142
|
const getVisualizations_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$k, getVisualizations_ConfigPropertyMetadata);
|
|
9135
9143
|
const createResourceParams$k = /*#__PURE__*/ createResourceParams$T(getVisualizations_ConfigPropertyMetadata);
|
|
@@ -9244,7 +9252,7 @@ function createResourceRequest$j(config) {
|
|
|
9244
9252
|
method: 'post',
|
|
9245
9253
|
body: config.body,
|
|
9246
9254
|
urlParams: {},
|
|
9247
|
-
queryParams:
|
|
9255
|
+
queryParams: config.queryParams,
|
|
9248
9256
|
headers,
|
|
9249
9257
|
priority: 'normal',
|
|
9250
9258
|
};
|
|
@@ -9252,6 +9260,7 @@ function createResourceRequest$j(config) {
|
|
|
9252
9260
|
|
|
9253
9261
|
const adapterName$j = 'createVisualization';
|
|
9254
9262
|
const createVisualization_ConfigPropertyMetadata = [
|
|
9263
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
9255
9264
|
generateParamConfigMetadata('id', false, 2 /* Body */, 0 /* String */),
|
|
9256
9265
|
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
9257
9266
|
generateParamConfigMetadata('label', true, 2 /* Body */, 0 /* String */),
|
|
@@ -9522,7 +9531,7 @@ function createResourceRequest$h(config) {
|
|
|
9522
9531
|
method: 'get',
|
|
9523
9532
|
body: null,
|
|
9524
9533
|
urlParams: config.urlParams,
|
|
9525
|
-
queryParams:
|
|
9534
|
+
queryParams: config.queryParams,
|
|
9526
9535
|
headers,
|
|
9527
9536
|
priority: 'normal',
|
|
9528
9537
|
};
|
|
@@ -9531,6 +9540,7 @@ function createResourceRequest$h(config) {
|
|
|
9531
9540
|
const adapterName$h = 'getVisualization';
|
|
9532
9541
|
const getVisualization_ConfigPropertyMetadata = [
|
|
9533
9542
|
generateParamConfigMetadata('visualizationIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
9543
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
9534
9544
|
];
|
|
9535
9545
|
const getVisualization_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$h, getVisualization_ConfigPropertyMetadata);
|
|
9536
9546
|
const createResourceParams$h = /*#__PURE__*/ createResourceParams$T(getVisualization_ConfigPropertyMetadata);
|
|
@@ -9645,7 +9655,7 @@ function createResourceRequest$g(config) {
|
|
|
9645
9655
|
method: 'patch',
|
|
9646
9656
|
body: config.body,
|
|
9647
9657
|
urlParams: config.urlParams,
|
|
9648
|
-
queryParams:
|
|
9658
|
+
queryParams: config.queryParams,
|
|
9649
9659
|
headers,
|
|
9650
9660
|
priority: 'normal',
|
|
9651
9661
|
};
|
|
@@ -9654,6 +9664,7 @@ function createResourceRequest$g(config) {
|
|
|
9654
9664
|
const adapterName$g = 'updateVisualization';
|
|
9655
9665
|
const updateVisualization_ConfigPropertyMetadata = [
|
|
9656
9666
|
generateParamConfigMetadata('visualizationIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
9667
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
9657
9668
|
generateParamConfigMetadata('id', false, 2 /* Body */, 0 /* String */),
|
|
9658
9669
|
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
9659
9670
|
generateParamConfigMetadata('label', true, 2 /* Body */, 0 /* String */),
|
|
@@ -9922,7 +9933,7 @@ function createResourceRequest$f(config) {
|
|
|
9922
9933
|
method: 'get',
|
|
9923
9934
|
body: null,
|
|
9924
9935
|
urlParams: config.urlParams,
|
|
9925
|
-
queryParams:
|
|
9936
|
+
queryParams: config.queryParams,
|
|
9926
9937
|
headers,
|
|
9927
9938
|
priority: 'normal',
|
|
9928
9939
|
};
|
|
@@ -9931,6 +9942,7 @@ function createResourceRequest$f(config) {
|
|
|
9931
9942
|
const adapterName$f = 'getVisualizationBundle';
|
|
9932
9943
|
const getVisualizationBundle_ConfigPropertyMetadata = [
|
|
9933
9944
|
generateParamConfigMetadata('visualizationIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
9945
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
9934
9946
|
];
|
|
9935
9947
|
const getVisualizationBundle_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$f, getVisualizationBundle_ConfigPropertyMetadata);
|
|
9936
9948
|
const createResourceParams$f = /*#__PURE__*/ createResourceParams$T(getVisualizationBundle_ConfigPropertyMetadata);
|
|
@@ -6,6 +6,7 @@ export declare const adapterName = "createDashboard";
|
|
|
6
6
|
export declare const createDashboard_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
7
|
export declare const createDashboard_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
8
|
export interface CreateDashboardConfig {
|
|
9
|
+
minorVersion?: number;
|
|
9
10
|
description?: string;
|
|
10
11
|
id?: string;
|
|
11
12
|
workspaceIdOrApiName?: string;
|
|
@@ -6,6 +6,7 @@ export declare const adapterName = "createVisualization";
|
|
|
6
6
|
export declare const createVisualization_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
7
|
export declare const createVisualization_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
8
|
export interface CreateVisualizationConfig {
|
|
9
|
+
minorVersion?: number;
|
|
9
10
|
id?: string;
|
|
10
11
|
description?: string;
|
|
11
12
|
label: string;
|
|
@@ -7,6 +7,7 @@ export declare const getDashboardByName_ConfigPropertyMetadata: $64$luvio_engine
|
|
|
7
7
|
export declare const getDashboardByName_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
8
|
export interface GetDashboardByNameConfig {
|
|
9
9
|
dashboardIdOrApiName: string;
|
|
10
|
+
minorVersion?: number;
|
|
10
11
|
}
|
|
11
12
|
export declare const createResourceParams: (config: GetDashboardByNameConfig) => resources_getTableauDashboardsByDashboardIdOrApiName_ResourceRequestConfig;
|
|
12
13
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetDashboardByNameConfig): string;
|
|
@@ -7,6 +7,7 @@ export declare const getDashboards_ConfigPropertyMetadata: $64$luvio_engine_Adap
|
|
|
7
7
|
export declare const getDashboards_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
8
|
export interface GetDashboardsConfig {
|
|
9
9
|
limit?: number;
|
|
10
|
+
minorVersion?: number;
|
|
10
11
|
offset?: number;
|
|
11
12
|
}
|
|
12
13
|
export declare const createResourceParams: (config: GetDashboardsConfig) => resources_getTableauDashboards_ResourceRequestConfig;
|
|
@@ -7,6 +7,7 @@ export declare const getVisualization_ConfigPropertyMetadata: $64$luvio_engine_A
|
|
|
7
7
|
export declare const getVisualization_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
8
|
export interface GetVisualizationConfig {
|
|
9
9
|
visualizationIdOrApiName: string;
|
|
10
|
+
minorVersion?: number;
|
|
10
11
|
}
|
|
11
12
|
export declare const createResourceParams: (config: GetVisualizationConfig) => resources_getTableauVisualizationsByVisualizationIdOrApiName_ResourceRequestConfig;
|
|
12
13
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetVisualizationConfig): string;
|
|
@@ -7,6 +7,7 @@ export declare const getVisualizationBundle_ConfigPropertyMetadata: $64$luvio_en
|
|
|
7
7
|
export declare const getVisualizationBundle_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
8
|
export interface GetVisualizationBundleConfig {
|
|
9
9
|
visualizationIdOrApiName: string;
|
|
10
|
+
minorVersion?: number;
|
|
10
11
|
}
|
|
11
12
|
export declare const createResourceParams: (config: GetVisualizationBundleConfig) => resources_getTableauVisualizationsBundleByVisualizationIdOrApiName_ResourceRequestConfig;
|
|
12
13
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetVisualizationBundleConfig): string;
|
|
@@ -8,6 +8,7 @@ export declare const getVisualizations_ConfigPropertyNames: adapter$45$utils_Ada
|
|
|
8
8
|
export interface GetVisualizationsConfig {
|
|
9
9
|
limit?: number;
|
|
10
10
|
offset?: number;
|
|
11
|
+
minorVersion?: number;
|
|
11
12
|
}
|
|
12
13
|
export declare const createResourceParams: (config: GetVisualizationsConfig) => resources_getTableauVisualizations_ResourceRequestConfig;
|
|
13
14
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetVisualizationsConfig): string;
|
|
@@ -7,6 +7,7 @@ export declare const updateDashboard_ConfigPropertyMetadata: $64$luvio_engine_Ad
|
|
|
7
7
|
export declare const updateDashboard_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
8
|
export interface UpdateDashboardConfig {
|
|
9
9
|
dashboardIdOrApiName: string;
|
|
10
|
+
minorVersion?: number;
|
|
10
11
|
description?: string;
|
|
11
12
|
id?: string;
|
|
12
13
|
workspaceIdOrApiName?: string;
|
|
@@ -11,7 +11,7 @@ export interface UpdateFollowedAssetConfig {
|
|
|
11
11
|
assetId: string;
|
|
12
12
|
assetType?: string;
|
|
13
13
|
followerType?: string;
|
|
14
|
-
followedTimeRange
|
|
14
|
+
followedTimeRange?: types_FollowedTimeRangeRepresentation_FollowedTimeRangeRepresentation | null;
|
|
15
15
|
}
|
|
16
16
|
export declare const createResourceParams: (config: UpdateFollowedAssetConfig) => resources_patchTableauFollowFollowersFollowsByFollowerId_ResourceRequestConfig;
|
|
17
17
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateFollowedAssetConfig>): adapter$45$utils_Untrusted<UpdateFollowedAssetConfig>;
|
|
@@ -7,6 +7,7 @@ export declare const updateVisualization_ConfigPropertyMetadata: $64$luvio_engin
|
|
|
7
7
|
export declare const updateVisualization_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
8
|
export interface UpdateVisualizationConfig {
|
|
9
9
|
visualizationIdOrApiName: string;
|
|
10
|
+
minorVersion?: number;
|
|
10
11
|
id?: string;
|
|
11
12
|
description?: string;
|
|
12
13
|
label: string;
|
package/dist/es/es2018/types/src/generated/resources/getTableauDashboardsByDashboardIdOrApiName.d.ts
CHANGED
|
@@ -4,6 +4,9 @@ export interface ResourceRequestConfig {
|
|
|
4
4
|
urlParams: {
|
|
5
5
|
dashboardIdOrApiName: string;
|
|
6
6
|
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
minorVersion?: number;
|
|
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,9 @@ export interface ResourceRequestConfig {
|
|
|
4
4
|
urlParams: {
|
|
5
5
|
visualizationIdOrApiName: string;
|
|
6
6
|
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
minorVersion?: number;
|
|
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,9 @@ export interface ResourceRequestConfig {
|
|
|
4
4
|
urlParams: {
|
|
5
5
|
visualizationIdOrApiName: string;
|
|
6
6
|
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
minorVersion?: number;
|
|
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;
|
|
@@ -9,7 +9,7 @@ export interface ResourceRequestConfig {
|
|
|
9
9
|
assetId: string;
|
|
10
10
|
assetType?: string;
|
|
11
11
|
followerType?: string;
|
|
12
|
-
followedTimeRange
|
|
12
|
+
followedTimeRange?: types_FollowedTimeRangeRepresentation_FollowedTimeRangeRepresentation | null;
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
15
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
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
2
|
import { DashboardRepresentation as types_DashboardRepresentation_DashboardRepresentation } from '../types/DashboardRepresentation';
|
|
3
3
|
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
minorVersion?: number;
|
|
6
|
+
};
|
|
4
7
|
body: {
|
|
5
8
|
description?: string;
|
|
6
9
|
id?: string;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
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
2
|
import { VisualizationRepresentation as types_VisualizationRepresentation_VisualizationRepresentation } from '../types/VisualizationRepresentation';
|
|
3
3
|
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
minorVersion?: number;
|
|
6
|
+
};
|
|
4
7
|
body: {
|
|
5
8
|
id?: string;
|
|
6
9
|
description?: string;
|
package/dist/es/es2018/types/src/generated/types/UpdateFollowedAssetInputRepresentation.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FollowedTimeRangeRepresentation as FollowedTimeRangeRepresentation_FollowedTimeRangeRepresentation } from './FollowedTimeRangeRepresentation';
|
|
2
2
|
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';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "0694d9a08ad023f17a5520aec2b0fac5";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export declare function normalize(input: UpdateFollowedAssetInputRepresentation, existing: UpdateFollowedAssetInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): UpdateFollowedAssetInputRepresentationNormalized;
|
|
@@ -19,7 +19,8 @@ export interface UpdateFollowedAssetInputRepresentationNormalized {
|
|
|
19
19
|
assetId: string;
|
|
20
20
|
/** Followed asset type */
|
|
21
21
|
assetType?: string;
|
|
22
|
-
|
|
22
|
+
/** Time Range filter representation */
|
|
23
|
+
followedTimeRange?: FollowedTimeRangeRepresentation_FollowedTimeRangeRepresentation | null;
|
|
23
24
|
/** Follower type */
|
|
24
25
|
followerType?: string;
|
|
25
26
|
}
|
|
@@ -32,6 +33,6 @@ export interface UpdateFollowedAssetInputRepresentationNormalized {
|
|
|
32
33
|
export interface UpdateFollowedAssetInputRepresentation {
|
|
33
34
|
assetId: string;
|
|
34
35
|
assetType?: string;
|
|
35
|
-
followedTimeRange
|
|
36
|
+
followedTimeRange?: FollowedTimeRangeRepresentation_FollowedTimeRangeRepresentation | null;
|
|
36
37
|
followerType?: string;
|
|
37
38
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-analytics-unifiedanalytics",
|
|
3
|
-
"version": "1.332.0-
|
|
3
|
+
"version": "1.332.0-dev19",
|
|
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.332.0-
|
|
43
|
+
"@salesforce/lds-bindings": "^1.332.0-dev19"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.332.0-
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.332.0-dev19"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -2132,7 +2132,7 @@ function createResourceRequest$Q(config) {
|
|
|
2132
2132
|
method: 'post',
|
|
2133
2133
|
body: config.body,
|
|
2134
2134
|
urlParams: {},
|
|
2135
|
-
queryParams:
|
|
2135
|
+
queryParams: config.queryParams,
|
|
2136
2136
|
headers,
|
|
2137
2137
|
priority: 'normal',
|
|
2138
2138
|
};
|
|
@@ -2140,6 +2140,7 @@ function createResourceRequest$Q(config) {
|
|
|
2140
2140
|
|
|
2141
2141
|
const adapterName$Q = 'createDashboard';
|
|
2142
2142
|
const createDashboard_ConfigPropertyMetadata = [
|
|
2143
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
2143
2144
|
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
2144
2145
|
generateParamConfigMetadata('id', false, 2 /* Body */, 0 /* String */),
|
|
2145
2146
|
generateParamConfigMetadata('workspaceIdOrApiName', false, 2 /* Body */, 0 /* String */),
|
|
@@ -4068,7 +4069,7 @@ function createResourceRequest$L(config) {
|
|
|
4068
4069
|
method: 'post',
|
|
4069
4070
|
body: config.body,
|
|
4070
4071
|
urlParams: {},
|
|
4071
|
-
queryParams:
|
|
4072
|
+
queryParams: config.queryParams,
|
|
4072
4073
|
headers,
|
|
4073
4074
|
priority: 'normal',
|
|
4074
4075
|
};
|
|
@@ -4076,6 +4077,7 @@ function createResourceRequest$L(config) {
|
|
|
4076
4077
|
|
|
4077
4078
|
const adapterName$L = 'createVisualization';
|
|
4078
4079
|
const createVisualization_ConfigPropertyMetadata = [
|
|
4080
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
4079
4081
|
generateParamConfigMetadata('id', false, 2 /* Body */, 0 /* String */),
|
|
4080
4082
|
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
4081
4083
|
generateParamConfigMetadata('label', true, 2 /* Body */, 0 /* String */),
|
|
@@ -6203,7 +6205,7 @@ function createResourceRequest$y(config) {
|
|
|
6203
6205
|
method: 'get',
|
|
6204
6206
|
body: null,
|
|
6205
6207
|
urlParams: config.urlParams,
|
|
6206
|
-
queryParams:
|
|
6208
|
+
queryParams: config.queryParams,
|
|
6207
6209
|
headers,
|
|
6208
6210
|
priority: 'normal',
|
|
6209
6211
|
};
|
|
@@ -6211,6 +6213,7 @@ function createResourceRequest$y(config) {
|
|
|
6211
6213
|
function createResourceRequestFromRepresentation$6(representation) {
|
|
6212
6214
|
const config = {
|
|
6213
6215
|
urlParams: {},
|
|
6216
|
+
queryParams: {},
|
|
6214
6217
|
};
|
|
6215
6218
|
config.urlParams.dashboardIdOrApiName = representation.name;
|
|
6216
6219
|
return createResourceRequest$y(config);
|
|
@@ -6219,6 +6222,7 @@ function createResourceRequestFromRepresentation$6(representation) {
|
|
|
6219
6222
|
const adapterName$y = 'getDashboardByName';
|
|
6220
6223
|
const getDashboardByName_ConfigPropertyMetadata = [
|
|
6221
6224
|
generateParamConfigMetadata('dashboardIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
6225
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
6222
6226
|
];
|
|
6223
6227
|
const getDashboardByName_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$y, getDashboardByName_ConfigPropertyMetadata);
|
|
6224
6228
|
const createResourceParams$y = /*#__PURE__*/ createResourceParams$T(getDashboardByName_ConfigPropertyMetadata);
|
|
@@ -6430,7 +6434,7 @@ function select$Q(luvio, params) {
|
|
|
6430
6434
|
return select$R();
|
|
6431
6435
|
}
|
|
6432
6436
|
function keyBuilder$N(luvio, params) {
|
|
6433
|
-
return keyPrefix + '::DashboardCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ')';
|
|
6437
|
+
return keyPrefix + '::DashboardCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'minorVersion:' + params.queryParams.minorVersion + ',' + 'offset:' + params.queryParams.offset + ')';
|
|
6434
6438
|
}
|
|
6435
6439
|
function getResponseCacheKeys$x(storeKeyMap, luvio, resourceParams, response) {
|
|
6436
6440
|
getTypeCacheKeys$k(storeKeyMap, luvio, response, () => keyBuilder$N(luvio, resourceParams));
|
|
@@ -6475,6 +6479,7 @@ function createResourceRequest$x(config) {
|
|
|
6475
6479
|
const adapterName$x = 'getDashboards';
|
|
6476
6480
|
const getDashboards_ConfigPropertyMetadata = [
|
|
6477
6481
|
generateParamConfigMetadata('limit', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
6482
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
6478
6483
|
generateParamConfigMetadata('offset', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
6479
6484
|
];
|
|
6480
6485
|
const getDashboards_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$x, getDashboards_ConfigPropertyMetadata);
|
|
@@ -10220,7 +10225,7 @@ function createResourceRequest$h(config) {
|
|
|
10220
10225
|
method: 'get',
|
|
10221
10226
|
body: null,
|
|
10222
10227
|
urlParams: config.urlParams,
|
|
10223
|
-
queryParams:
|
|
10228
|
+
queryParams: config.queryParams,
|
|
10224
10229
|
headers,
|
|
10225
10230
|
priority: 'normal',
|
|
10226
10231
|
};
|
|
@@ -10228,6 +10233,7 @@ function createResourceRequest$h(config) {
|
|
|
10228
10233
|
function createResourceRequestFromRepresentation$2(representation) {
|
|
10229
10234
|
const config = {
|
|
10230
10235
|
urlParams: {},
|
|
10236
|
+
queryParams: {},
|
|
10231
10237
|
};
|
|
10232
10238
|
config.urlParams.visualizationIdOrApiName = representation.name;
|
|
10233
10239
|
return createResourceRequest$h(config);
|
|
@@ -10236,6 +10242,7 @@ function createResourceRequestFromRepresentation$2(representation) {
|
|
|
10236
10242
|
const adapterName$h = 'getVisualization';
|
|
10237
10243
|
const getVisualization_ConfigPropertyMetadata = [
|
|
10238
10244
|
generateParamConfigMetadata('visualizationIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
10245
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
10239
10246
|
];
|
|
10240
10247
|
const getVisualization_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$h, getVisualization_ConfigPropertyMetadata);
|
|
10241
10248
|
const createResourceParams$h = /*#__PURE__*/ createResourceParams$T(getVisualization_ConfigPropertyMetadata);
|
|
@@ -10472,7 +10479,7 @@ function createResourceRequest$g(config) {
|
|
|
10472
10479
|
method: 'get',
|
|
10473
10480
|
body: null,
|
|
10474
10481
|
urlParams: config.urlParams,
|
|
10475
|
-
queryParams:
|
|
10482
|
+
queryParams: config.queryParams,
|
|
10476
10483
|
headers,
|
|
10477
10484
|
priority: 'normal',
|
|
10478
10485
|
};
|
|
@@ -10480,6 +10487,7 @@ function createResourceRequest$g(config) {
|
|
|
10480
10487
|
function createResourceRequestFromRepresentation$1(representation) {
|
|
10481
10488
|
const config = {
|
|
10482
10489
|
urlParams: {},
|
|
10490
|
+
queryParams: {},
|
|
10483
10491
|
};
|
|
10484
10492
|
config.urlParams.visualizationIdOrApiName = representation.visualization.name;
|
|
10485
10493
|
return createResourceRequest$g(config);
|
|
@@ -10488,6 +10496,7 @@ function createResourceRequestFromRepresentation$1(representation) {
|
|
|
10488
10496
|
const adapterName$g = 'getVisualizationBundle';
|
|
10489
10497
|
const getVisualizationBundle_ConfigPropertyMetadata = [
|
|
10490
10498
|
generateParamConfigMetadata('visualizationIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
10499
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
10491
10500
|
];
|
|
10492
10501
|
const getVisualizationBundle_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$g, getVisualizationBundle_ConfigPropertyMetadata);
|
|
10493
10502
|
const createResourceParams$g = /*#__PURE__*/ createResourceParams$T(getVisualizationBundle_ConfigPropertyMetadata);
|
|
@@ -10699,7 +10708,7 @@ function select$j(luvio, params) {
|
|
|
10699
10708
|
return select$k();
|
|
10700
10709
|
}
|
|
10701
10710
|
function keyBuilder$b(luvio, params) {
|
|
10702
|
-
return keyPrefix + '::VisualizationCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ')';
|
|
10711
|
+
return keyPrefix + '::VisualizationCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ',' + 'minorVersion:' + params.queryParams.minorVersion + ')';
|
|
10703
10712
|
}
|
|
10704
10713
|
function getResponseCacheKeys$f(storeKeyMap, luvio, resourceParams, response) {
|
|
10705
10714
|
getTypeCacheKeys$5(storeKeyMap, luvio, response, () => keyBuilder$b(luvio, resourceParams));
|
|
@@ -10745,6 +10754,7 @@ const adapterName$f = 'getVisualizations';
|
|
|
10745
10754
|
const getVisualizations_ConfigPropertyMetadata = [
|
|
10746
10755
|
generateParamConfigMetadata('limit', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
10747
10756
|
generateParamConfigMetadata('offset', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
10757
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
10748
10758
|
];
|
|
10749
10759
|
const getVisualizations_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$f, getVisualizations_ConfigPropertyMetadata);
|
|
10750
10760
|
const createResourceParams$f = /*#__PURE__*/ createResourceParams$T(getVisualizations_ConfigPropertyMetadata);
|
|
@@ -12188,7 +12198,7 @@ function createResourceRequest$7(config) {
|
|
|
12188
12198
|
method: 'patch',
|
|
12189
12199
|
body: config.body,
|
|
12190
12200
|
urlParams: config.urlParams,
|
|
12191
|
-
queryParams:
|
|
12201
|
+
queryParams: config.queryParams,
|
|
12192
12202
|
headers,
|
|
12193
12203
|
priority: 'normal',
|
|
12194
12204
|
};
|
|
@@ -12197,6 +12207,7 @@ function createResourceRequest$7(config) {
|
|
|
12197
12207
|
const adapterName$7 = 'updateDashboard';
|
|
12198
12208
|
const updateDashboard_ConfigPropertyMetadata = [
|
|
12199
12209
|
generateParamConfigMetadata('dashboardIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
12210
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
12200
12211
|
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
12201
12212
|
generateParamConfigMetadata('id', false, 2 /* Body */, 0 /* String */),
|
|
12202
12213
|
generateParamConfigMetadata('workspaceIdOrApiName', false, 2 /* Body */, 0 /* String */),
|
|
@@ -12554,7 +12565,7 @@ const updateFollowedAsset_ConfigPropertyMetadata = [
|
|
|
12554
12565
|
generateParamConfigMetadata('assetId', true, 2 /* Body */, 0 /* String */),
|
|
12555
12566
|
generateParamConfigMetadata('assetType', false, 2 /* Body */, 0 /* String */),
|
|
12556
12567
|
generateParamConfigMetadata('followerType', false, 2 /* Body */, 0 /* String */),
|
|
12557
|
-
generateParamConfigMetadata('followedTimeRange',
|
|
12568
|
+
generateParamConfigMetadata('followedTimeRange', false, 2 /* Body */, 4 /* Unsupported */),
|
|
12558
12569
|
];
|
|
12559
12570
|
const updateFollowedAsset_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$4, updateFollowedAsset_ConfigPropertyMetadata);
|
|
12560
12571
|
const createResourceParams$4 = /*#__PURE__*/ createResourceParams$T(updateFollowedAsset_ConfigPropertyMetadata);
|
|
@@ -12566,6 +12577,9 @@ function typeCheckConfig$4(untrustedConfig) {
|
|
|
12566
12577
|
if (referenceFollowedTimeRangeRepresentationValidationError === null) {
|
|
12567
12578
|
config.followedTimeRange = untrustedConfig_followedTimeRange;
|
|
12568
12579
|
}
|
|
12580
|
+
if (untrustedConfig_followedTimeRange === null) {
|
|
12581
|
+
config.followedTimeRange = untrustedConfig_followedTimeRange;
|
|
12582
|
+
}
|
|
12569
12583
|
return config;
|
|
12570
12584
|
}
|
|
12571
12585
|
function validateAdapterConfig$4(untrustedConfig, configPropertyNames) {
|
|
@@ -12833,7 +12847,7 @@ function createResourceRequest$1(config) {
|
|
|
12833
12847
|
method: 'patch',
|
|
12834
12848
|
body: config.body,
|
|
12835
12849
|
urlParams: config.urlParams,
|
|
12836
|
-
queryParams:
|
|
12850
|
+
queryParams: config.queryParams,
|
|
12837
12851
|
headers,
|
|
12838
12852
|
priority: 'normal',
|
|
12839
12853
|
};
|
|
@@ -12842,6 +12856,7 @@ function createResourceRequest$1(config) {
|
|
|
12842
12856
|
const adapterName$1 = 'updateVisualization';
|
|
12843
12857
|
const updateVisualization_ConfigPropertyMetadata = [
|
|
12844
12858
|
generateParamConfigMetadata('visualizationIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
12859
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
12845
12860
|
generateParamConfigMetadata('id', false, 2 /* Body */, 0 /* String */),
|
|
12846
12861
|
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
12847
12862
|
generateParamConfigMetadata('label', true, 2 /* Body */, 0 /* String */),
|
|
@@ -13453,4 +13468,4 @@ withDefaultLuvio((luvio) => {
|
|
|
13453
13468
|
});
|
|
13454
13469
|
|
|
13455
13470
|
export { createAnnotation, createAssetSlackChannel, createDashboard, createDataAlert, createDataAssetRequest, createLoglines, createRecordShares, createVisualization, createWorkspace, createWorkspaceAsset, deleteAllShares, deleteDashboard, deleteRecordShare, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, getAnnotations, getAnnotations_imperative, getAssetSlackChannels, getAssetSlackChannels_imperative, getDashboardByName, getDashboardByNameNotifyChange, getDashboardByName_imperative, getDashboards, getDashboards_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, publish, queryAssets, queryUsers, unfollow, updateDashboard, updateDataAlert, updateDataAssetRequest, updateFollowedAsset, updateRecordShares, updateSubscriptionDigestConfig, updateVisualization, updateWorkspace };
|
|
13456
|
-
// version: 1.332.0-
|
|
13471
|
+
// version: 1.332.0-dev19-d7ba00c6cd
|
package/src/raml/api.raml
CHANGED
|
@@ -363,7 +363,8 @@ types:
|
|
|
363
363
|
required: false
|
|
364
364
|
followedTimeRange:
|
|
365
365
|
description: Time Range filter representation
|
|
366
|
-
type: FollowedTimeRangeRepresentation
|
|
366
|
+
type: FollowedTimeRangeRepresentation | nil
|
|
367
|
+
required: false
|
|
367
368
|
FollowedAssetCollectionRepresentation:
|
|
368
369
|
description: Collection of Followed Assets
|
|
369
370
|
type: object
|
|
@@ -2492,6 +2493,9 @@ types:
|
|
|
2492
2493
|
limit:
|
|
2493
2494
|
type: integer
|
|
2494
2495
|
required: false
|
|
2496
|
+
minorVersion:
|
|
2497
|
+
type: integer
|
|
2498
|
+
required: false
|
|
2495
2499
|
offset:
|
|
2496
2500
|
type: integer
|
|
2497
2501
|
required: false
|
|
@@ -2504,6 +2508,10 @@ types:
|
|
|
2504
2508
|
body:
|
|
2505
2509
|
application/json:
|
|
2506
2510
|
type: DashboardRepresentation
|
|
2511
|
+
queryParameters:
|
|
2512
|
+
minorVersion:
|
|
2513
|
+
type: integer
|
|
2514
|
+
required: false
|
|
2507
2515
|
body:
|
|
2508
2516
|
application/json:
|
|
2509
2517
|
type: DashboardInputRepresentation
|
|
@@ -2524,6 +2532,10 @@ types:
|
|
|
2524
2532
|
body:
|
|
2525
2533
|
application/json:
|
|
2526
2534
|
type: DashboardRepresentation
|
|
2535
|
+
queryParameters:
|
|
2536
|
+
minorVersion:
|
|
2537
|
+
type: integer
|
|
2538
|
+
required: false
|
|
2527
2539
|
patch:
|
|
2528
2540
|
displayName: patchDashboard
|
|
2529
2541
|
description: Update Unified Analytics Dashboard Metadata by Id or Name.
|
|
@@ -2533,6 +2545,10 @@ types:
|
|
|
2533
2545
|
body:
|
|
2534
2546
|
application/json:
|
|
2535
2547
|
type: DashboardRepresentation
|
|
2548
|
+
queryParameters:
|
|
2549
|
+
minorVersion:
|
|
2550
|
+
type: integer
|
|
2551
|
+
required: false
|
|
2536
2552
|
body:
|
|
2537
2553
|
application/json:
|
|
2538
2554
|
type: DashboardInputRepresentation
|
|
@@ -3000,6 +3016,9 @@ types:
|
|
|
3000
3016
|
offset:
|
|
3001
3017
|
type: integer
|
|
3002
3018
|
required: false
|
|
3019
|
+
minorVersion:
|
|
3020
|
+
type: integer
|
|
3021
|
+
required: false
|
|
3003
3022
|
post:
|
|
3004
3023
|
displayName: postVisualization
|
|
3005
3024
|
description: Creates a new Visualization.
|
|
@@ -3009,6 +3028,10 @@ types:
|
|
|
3009
3028
|
body:
|
|
3010
3029
|
application/json:
|
|
3011
3030
|
type: VisualizationRepresentation
|
|
3031
|
+
queryParameters:
|
|
3032
|
+
minorVersion:
|
|
3033
|
+
type: integer
|
|
3034
|
+
required: false
|
|
3012
3035
|
body:
|
|
3013
3036
|
application/json:
|
|
3014
3037
|
type: VisualizationInputRepresentation
|
|
@@ -3029,6 +3052,10 @@ types:
|
|
|
3029
3052
|
body:
|
|
3030
3053
|
application/json:
|
|
3031
3054
|
type: VisualizationRepresentation
|
|
3055
|
+
queryParameters:
|
|
3056
|
+
minorVersion:
|
|
3057
|
+
type: integer
|
|
3058
|
+
required: false
|
|
3032
3059
|
patch:
|
|
3033
3060
|
displayName: patchVisualization
|
|
3034
3061
|
description: Update Visualization Metadata by Id or Name.
|
|
@@ -3038,6 +3065,10 @@ types:
|
|
|
3038
3065
|
body:
|
|
3039
3066
|
application/json:
|
|
3040
3067
|
type: VisualizationRepresentation
|
|
3068
|
+
queryParameters:
|
|
3069
|
+
minorVersion:
|
|
3070
|
+
type: integer
|
|
3071
|
+
required: false
|
|
3041
3072
|
body:
|
|
3042
3073
|
application/json:
|
|
3043
3074
|
type: VisualizationInputRepresentation
|
|
@@ -3056,6 +3087,10 @@ types:
|
|
|
3056
3087
|
body:
|
|
3057
3088
|
application/json:
|
|
3058
3089
|
type: VisualizationBundleRepresentation
|
|
3090
|
+
queryParameters:
|
|
3091
|
+
minorVersion:
|
|
3092
|
+
type: integer
|
|
3093
|
+
required: false
|
|
3059
3094
|
uriParameters:
|
|
3060
3095
|
visualizationIdOrApiName:
|
|
3061
3096
|
type: string
|