@salesforce/lds-adapters-analytics-unifiedanalytics 1.348.0 → 1.349.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 +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 */),
|
|
@@ -6085,7 +6089,7 @@ const updateFollowedAsset_ConfigPropertyMetadata = [
|
|
|
6085
6089
|
generateParamConfigMetadata('assetId', true, 2 /* Body */, 0 /* String */),
|
|
6086
6090
|
generateParamConfigMetadata('assetType', false, 2 /* Body */, 0 /* String */),
|
|
6087
6091
|
generateParamConfigMetadata('followerType', false, 2 /* Body */, 0 /* String */),
|
|
6088
|
-
generateParamConfigMetadata('followedTimeRange',
|
|
6092
|
+
generateParamConfigMetadata('followedTimeRange', false, 2 /* Body */, 4 /* Unsupported */),
|
|
6089
6093
|
];
|
|
6090
6094
|
const updateFollowedAsset_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$z, updateFollowedAsset_ConfigPropertyMetadata);
|
|
6091
6095
|
const createResourceParams$z = /*#__PURE__*/ createResourceParams$T(updateFollowedAsset_ConfigPropertyMetadata);
|
|
@@ -6097,6 +6101,9 @@ function typeCheckConfig$z(untrustedConfig) {
|
|
|
6097
6101
|
if (referenceFollowedTimeRangeRepresentationValidationError === null) {
|
|
6098
6102
|
config.followedTimeRange = untrustedConfig_followedTimeRange;
|
|
6099
6103
|
}
|
|
6104
|
+
if (untrustedConfig_followedTimeRange === null) {
|
|
6105
|
+
config.followedTimeRange = untrustedConfig_followedTimeRange;
|
|
6106
|
+
}
|
|
6100
6107
|
return config;
|
|
6101
6108
|
}
|
|
6102
6109
|
function validateAdapterConfig$z(untrustedConfig, configPropertyNames) {
|
|
@@ -9063,7 +9070,7 @@ function select$s(luvio, params) {
|
|
|
9063
9070
|
return select$t();
|
|
9064
9071
|
}
|
|
9065
9072
|
function keyBuilder$s(luvio, params) {
|
|
9066
|
-
return keyPrefix + '::VisualizationCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ')';
|
|
9073
|
+
return keyPrefix + '::VisualizationCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ',' + 'minorVersion:' + params.queryParams.minorVersion + ')';
|
|
9067
9074
|
}
|
|
9068
9075
|
function getResponseCacheKeys$k(storeKeyMap, luvio, resourceParams, response) {
|
|
9069
9076
|
getTypeCacheKeys$b(storeKeyMap, luvio, response, () => keyBuilder$s(luvio, resourceParams));
|
|
@@ -9109,6 +9116,7 @@ const adapterName$k = 'getVisualizations';
|
|
|
9109
9116
|
const getVisualizations_ConfigPropertyMetadata = [
|
|
9110
9117
|
generateParamConfigMetadata('limit', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
9111
9118
|
generateParamConfigMetadata('offset', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
9119
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
9112
9120
|
];
|
|
9113
9121
|
const getVisualizations_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$k, getVisualizations_ConfigPropertyMetadata);
|
|
9114
9122
|
const createResourceParams$k = /*#__PURE__*/ createResourceParams$T(getVisualizations_ConfigPropertyMetadata);
|
|
@@ -9223,7 +9231,7 @@ function createResourceRequest$j(config) {
|
|
|
9223
9231
|
method: 'post',
|
|
9224
9232
|
body: config.body,
|
|
9225
9233
|
urlParams: {},
|
|
9226
|
-
queryParams:
|
|
9234
|
+
queryParams: config.queryParams,
|
|
9227
9235
|
headers,
|
|
9228
9236
|
priority: 'normal',
|
|
9229
9237
|
};
|
|
@@ -9231,6 +9239,7 @@ function createResourceRequest$j(config) {
|
|
|
9231
9239
|
|
|
9232
9240
|
const adapterName$j = 'createVisualization';
|
|
9233
9241
|
const createVisualization_ConfigPropertyMetadata = [
|
|
9242
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
9234
9243
|
generateParamConfigMetadata('id', false, 2 /* Body */, 0 /* String */),
|
|
9235
9244
|
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
9236
9245
|
generateParamConfigMetadata('label', true, 2 /* Body */, 0 /* String */),
|
|
@@ -9501,7 +9510,7 @@ function createResourceRequest$h(config) {
|
|
|
9501
9510
|
method: 'get',
|
|
9502
9511
|
body: null,
|
|
9503
9512
|
urlParams: config.urlParams,
|
|
9504
|
-
queryParams:
|
|
9513
|
+
queryParams: config.queryParams,
|
|
9505
9514
|
headers,
|
|
9506
9515
|
priority: 'normal',
|
|
9507
9516
|
};
|
|
@@ -9510,6 +9519,7 @@ function createResourceRequest$h(config) {
|
|
|
9510
9519
|
const adapterName$h = 'getVisualization';
|
|
9511
9520
|
const getVisualization_ConfigPropertyMetadata = [
|
|
9512
9521
|
generateParamConfigMetadata('visualizationIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
9522
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
9513
9523
|
];
|
|
9514
9524
|
const getVisualization_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$h, getVisualization_ConfigPropertyMetadata);
|
|
9515
9525
|
const createResourceParams$h = /*#__PURE__*/ createResourceParams$T(getVisualization_ConfigPropertyMetadata);
|
|
@@ -9624,7 +9634,7 @@ function createResourceRequest$g(config) {
|
|
|
9624
9634
|
method: 'patch',
|
|
9625
9635
|
body: config.body,
|
|
9626
9636
|
urlParams: config.urlParams,
|
|
9627
|
-
queryParams:
|
|
9637
|
+
queryParams: config.queryParams,
|
|
9628
9638
|
headers,
|
|
9629
9639
|
priority: 'normal',
|
|
9630
9640
|
};
|
|
@@ -9633,6 +9643,7 @@ function createResourceRequest$g(config) {
|
|
|
9633
9643
|
const adapterName$g = 'updateVisualization';
|
|
9634
9644
|
const updateVisualization_ConfigPropertyMetadata = [
|
|
9635
9645
|
generateParamConfigMetadata('visualizationIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
9646
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
9636
9647
|
generateParamConfigMetadata('id', false, 2 /* Body */, 0 /* String */),
|
|
9637
9648
|
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
9638
9649
|
generateParamConfigMetadata('label', true, 2 /* Body */, 0 /* String */),
|
|
@@ -9901,7 +9912,7 @@ function createResourceRequest$f(config) {
|
|
|
9901
9912
|
method: 'get',
|
|
9902
9913
|
body: null,
|
|
9903
9914
|
urlParams: config.urlParams,
|
|
9904
|
-
queryParams:
|
|
9915
|
+
queryParams: config.queryParams,
|
|
9905
9916
|
headers,
|
|
9906
9917
|
priority: 'normal',
|
|
9907
9918
|
};
|
|
@@ -9910,6 +9921,7 @@ function createResourceRequest$f(config) {
|
|
|
9910
9921
|
const adapterName$f = 'getVisualizationBundle';
|
|
9911
9922
|
const getVisualizationBundle_ConfigPropertyMetadata = [
|
|
9912
9923
|
generateParamConfigMetadata('visualizationIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
9924
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
9913
9925
|
];
|
|
9914
9926
|
const getVisualizationBundle_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$f, getVisualizationBundle_ConfigPropertyMetadata);
|
|
9915
9927
|
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.
|
|
3
|
+
"version": "1.349.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.349.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.349.0"
|
|
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 */),
|
|
@@ -4047,7 +4048,7 @@ function createResourceRequest$L(config) {
|
|
|
4047
4048
|
method: 'post',
|
|
4048
4049
|
body: config.body,
|
|
4049
4050
|
urlParams: {},
|
|
4050
|
-
queryParams:
|
|
4051
|
+
queryParams: config.queryParams,
|
|
4051
4052
|
headers,
|
|
4052
4053
|
priority: 'normal',
|
|
4053
4054
|
};
|
|
@@ -4055,6 +4056,7 @@ function createResourceRequest$L(config) {
|
|
|
4055
4056
|
|
|
4056
4057
|
const adapterName$L = 'createVisualization';
|
|
4057
4058
|
const createVisualization_ConfigPropertyMetadata = [
|
|
4059
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
4058
4060
|
generateParamConfigMetadata('id', false, 2 /* Body */, 0 /* String */),
|
|
4059
4061
|
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
4060
4062
|
generateParamConfigMetadata('label', true, 2 /* Body */, 0 /* String */),
|
|
@@ -6182,7 +6184,7 @@ function createResourceRequest$y(config) {
|
|
|
6182
6184
|
method: 'get',
|
|
6183
6185
|
body: null,
|
|
6184
6186
|
urlParams: config.urlParams,
|
|
6185
|
-
queryParams:
|
|
6187
|
+
queryParams: config.queryParams,
|
|
6186
6188
|
headers,
|
|
6187
6189
|
priority: 'normal',
|
|
6188
6190
|
};
|
|
@@ -6190,6 +6192,7 @@ function createResourceRequest$y(config) {
|
|
|
6190
6192
|
function createResourceRequestFromRepresentation$6(representation) {
|
|
6191
6193
|
const config = {
|
|
6192
6194
|
urlParams: {},
|
|
6195
|
+
queryParams: {},
|
|
6193
6196
|
};
|
|
6194
6197
|
config.urlParams.dashboardIdOrApiName = representation.name;
|
|
6195
6198
|
return createResourceRequest$y(config);
|
|
@@ -6198,6 +6201,7 @@ function createResourceRequestFromRepresentation$6(representation) {
|
|
|
6198
6201
|
const adapterName$y = 'getDashboardByName';
|
|
6199
6202
|
const getDashboardByName_ConfigPropertyMetadata = [
|
|
6200
6203
|
generateParamConfigMetadata('dashboardIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
6204
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
6201
6205
|
];
|
|
6202
6206
|
const getDashboardByName_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$y, getDashboardByName_ConfigPropertyMetadata);
|
|
6203
6207
|
const createResourceParams$y = /*#__PURE__*/ createResourceParams$T(getDashboardByName_ConfigPropertyMetadata);
|
|
@@ -6409,7 +6413,7 @@ function select$Q(luvio, params) {
|
|
|
6409
6413
|
return select$R();
|
|
6410
6414
|
}
|
|
6411
6415
|
function keyBuilder$N(luvio, params) {
|
|
6412
|
-
return keyPrefix + '::DashboardCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ')';
|
|
6416
|
+
return keyPrefix + '::DashboardCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'minorVersion:' + params.queryParams.minorVersion + ',' + 'offset:' + params.queryParams.offset + ')';
|
|
6413
6417
|
}
|
|
6414
6418
|
function getResponseCacheKeys$x(storeKeyMap, luvio, resourceParams, response) {
|
|
6415
6419
|
getTypeCacheKeys$k(storeKeyMap, luvio, response, () => keyBuilder$N(luvio, resourceParams));
|
|
@@ -6454,6 +6458,7 @@ function createResourceRequest$x(config) {
|
|
|
6454
6458
|
const adapterName$x = 'getDashboards';
|
|
6455
6459
|
const getDashboards_ConfigPropertyMetadata = [
|
|
6456
6460
|
generateParamConfigMetadata('limit', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
6461
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
6457
6462
|
generateParamConfigMetadata('offset', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
6458
6463
|
];
|
|
6459
6464
|
const getDashboards_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$x, getDashboards_ConfigPropertyMetadata);
|
|
@@ -10199,7 +10204,7 @@ function createResourceRequest$h(config) {
|
|
|
10199
10204
|
method: 'get',
|
|
10200
10205
|
body: null,
|
|
10201
10206
|
urlParams: config.urlParams,
|
|
10202
|
-
queryParams:
|
|
10207
|
+
queryParams: config.queryParams,
|
|
10203
10208
|
headers,
|
|
10204
10209
|
priority: 'normal',
|
|
10205
10210
|
};
|
|
@@ -10207,6 +10212,7 @@ function createResourceRequest$h(config) {
|
|
|
10207
10212
|
function createResourceRequestFromRepresentation$2(representation) {
|
|
10208
10213
|
const config = {
|
|
10209
10214
|
urlParams: {},
|
|
10215
|
+
queryParams: {},
|
|
10210
10216
|
};
|
|
10211
10217
|
config.urlParams.visualizationIdOrApiName = representation.name;
|
|
10212
10218
|
return createResourceRequest$h(config);
|
|
@@ -10215,6 +10221,7 @@ function createResourceRequestFromRepresentation$2(representation) {
|
|
|
10215
10221
|
const adapterName$h = 'getVisualization';
|
|
10216
10222
|
const getVisualization_ConfigPropertyMetadata = [
|
|
10217
10223
|
generateParamConfigMetadata('visualizationIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
10224
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
10218
10225
|
];
|
|
10219
10226
|
const getVisualization_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$h, getVisualization_ConfigPropertyMetadata);
|
|
10220
10227
|
const createResourceParams$h = /*#__PURE__*/ createResourceParams$T(getVisualization_ConfigPropertyMetadata);
|
|
@@ -10451,7 +10458,7 @@ function createResourceRequest$g(config) {
|
|
|
10451
10458
|
method: 'get',
|
|
10452
10459
|
body: null,
|
|
10453
10460
|
urlParams: config.urlParams,
|
|
10454
|
-
queryParams:
|
|
10461
|
+
queryParams: config.queryParams,
|
|
10455
10462
|
headers,
|
|
10456
10463
|
priority: 'normal',
|
|
10457
10464
|
};
|
|
@@ -10459,6 +10466,7 @@ function createResourceRequest$g(config) {
|
|
|
10459
10466
|
function createResourceRequestFromRepresentation$1(representation) {
|
|
10460
10467
|
const config = {
|
|
10461
10468
|
urlParams: {},
|
|
10469
|
+
queryParams: {},
|
|
10462
10470
|
};
|
|
10463
10471
|
config.urlParams.visualizationIdOrApiName = representation.visualization.name;
|
|
10464
10472
|
return createResourceRequest$g(config);
|
|
@@ -10467,6 +10475,7 @@ function createResourceRequestFromRepresentation$1(representation) {
|
|
|
10467
10475
|
const adapterName$g = 'getVisualizationBundle';
|
|
10468
10476
|
const getVisualizationBundle_ConfigPropertyMetadata = [
|
|
10469
10477
|
generateParamConfigMetadata('visualizationIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
10478
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
10470
10479
|
];
|
|
10471
10480
|
const getVisualizationBundle_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$g, getVisualizationBundle_ConfigPropertyMetadata);
|
|
10472
10481
|
const createResourceParams$g = /*#__PURE__*/ createResourceParams$T(getVisualizationBundle_ConfigPropertyMetadata);
|
|
@@ -10678,7 +10687,7 @@ function select$j(luvio, params) {
|
|
|
10678
10687
|
return select$k();
|
|
10679
10688
|
}
|
|
10680
10689
|
function keyBuilder$b(luvio, params) {
|
|
10681
|
-
return keyPrefix + '::VisualizationCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ')';
|
|
10690
|
+
return keyPrefix + '::VisualizationCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ',' + 'minorVersion:' + params.queryParams.minorVersion + ')';
|
|
10682
10691
|
}
|
|
10683
10692
|
function getResponseCacheKeys$f(storeKeyMap, luvio, resourceParams, response) {
|
|
10684
10693
|
getTypeCacheKeys$5(storeKeyMap, luvio, response, () => keyBuilder$b(luvio, resourceParams));
|
|
@@ -10724,6 +10733,7 @@ const adapterName$f = 'getVisualizations';
|
|
|
10724
10733
|
const getVisualizations_ConfigPropertyMetadata = [
|
|
10725
10734
|
generateParamConfigMetadata('limit', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
10726
10735
|
generateParamConfigMetadata('offset', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
10736
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
10727
10737
|
];
|
|
10728
10738
|
const getVisualizations_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$f, getVisualizations_ConfigPropertyMetadata);
|
|
10729
10739
|
const createResourceParams$f = /*#__PURE__*/ createResourceParams$T(getVisualizations_ConfigPropertyMetadata);
|
|
@@ -12167,7 +12177,7 @@ function createResourceRequest$7(config) {
|
|
|
12167
12177
|
method: 'patch',
|
|
12168
12178
|
body: config.body,
|
|
12169
12179
|
urlParams: config.urlParams,
|
|
12170
|
-
queryParams:
|
|
12180
|
+
queryParams: config.queryParams,
|
|
12171
12181
|
headers,
|
|
12172
12182
|
priority: 'normal',
|
|
12173
12183
|
};
|
|
@@ -12176,6 +12186,7 @@ function createResourceRequest$7(config) {
|
|
|
12176
12186
|
const adapterName$7 = 'updateDashboard';
|
|
12177
12187
|
const updateDashboard_ConfigPropertyMetadata = [
|
|
12178
12188
|
generateParamConfigMetadata('dashboardIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
12189
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
12179
12190
|
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
12180
12191
|
generateParamConfigMetadata('id', false, 2 /* Body */, 0 /* String */),
|
|
12181
12192
|
generateParamConfigMetadata('workspaceIdOrApiName', false, 2 /* Body */, 0 /* String */),
|
|
@@ -12533,7 +12544,7 @@ const updateFollowedAsset_ConfigPropertyMetadata = [
|
|
|
12533
12544
|
generateParamConfigMetadata('assetId', true, 2 /* Body */, 0 /* String */),
|
|
12534
12545
|
generateParamConfigMetadata('assetType', false, 2 /* Body */, 0 /* String */),
|
|
12535
12546
|
generateParamConfigMetadata('followerType', false, 2 /* Body */, 0 /* String */),
|
|
12536
|
-
generateParamConfigMetadata('followedTimeRange',
|
|
12547
|
+
generateParamConfigMetadata('followedTimeRange', false, 2 /* Body */, 4 /* Unsupported */),
|
|
12537
12548
|
];
|
|
12538
12549
|
const updateFollowedAsset_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$4, updateFollowedAsset_ConfigPropertyMetadata);
|
|
12539
12550
|
const createResourceParams$4 = /*#__PURE__*/ createResourceParams$T(updateFollowedAsset_ConfigPropertyMetadata);
|
|
@@ -12545,6 +12556,9 @@ function typeCheckConfig$4(untrustedConfig) {
|
|
|
12545
12556
|
if (referenceFollowedTimeRangeRepresentationValidationError === null) {
|
|
12546
12557
|
config.followedTimeRange = untrustedConfig_followedTimeRange;
|
|
12547
12558
|
}
|
|
12559
|
+
if (untrustedConfig_followedTimeRange === null) {
|
|
12560
|
+
config.followedTimeRange = untrustedConfig_followedTimeRange;
|
|
12561
|
+
}
|
|
12548
12562
|
return config;
|
|
12549
12563
|
}
|
|
12550
12564
|
function validateAdapterConfig$4(untrustedConfig, configPropertyNames) {
|
|
@@ -12812,7 +12826,7 @@ function createResourceRequest$1(config) {
|
|
|
12812
12826
|
method: 'patch',
|
|
12813
12827
|
body: config.body,
|
|
12814
12828
|
urlParams: config.urlParams,
|
|
12815
|
-
queryParams:
|
|
12829
|
+
queryParams: config.queryParams,
|
|
12816
12830
|
headers,
|
|
12817
12831
|
priority: 'normal',
|
|
12818
12832
|
};
|
|
@@ -12821,6 +12835,7 @@ function createResourceRequest$1(config) {
|
|
|
12821
12835
|
const adapterName$1 = 'updateVisualization';
|
|
12822
12836
|
const updateVisualization_ConfigPropertyMetadata = [
|
|
12823
12837
|
generateParamConfigMetadata('visualizationIdOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
12838
|
+
generateParamConfigMetadata('minorVersion', false, 1 /* QueryParameter */, 3 /* Integer */),
|
|
12824
12839
|
generateParamConfigMetadata('id', false, 2 /* Body */, 0 /* String */),
|
|
12825
12840
|
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
12826
12841
|
generateParamConfigMetadata('label', true, 2 /* Body */, 0 /* String */),
|
|
@@ -13432,4 +13447,4 @@ withDefaultLuvio((luvio) => {
|
|
|
13432
13447
|
});
|
|
13433
13448
|
|
|
13434
13449
|
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 };
|
|
13435
|
-
// version: 1.
|
|
13450
|
+
// version: 1.349.0-2008e7132b
|
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
|
|
@@ -2491,6 +2492,9 @@ types:
|
|
|
2491
2492
|
limit:
|
|
2492
2493
|
type: integer
|
|
2493
2494
|
required: false
|
|
2495
|
+
minorVersion:
|
|
2496
|
+
type: integer
|
|
2497
|
+
required: false
|
|
2494
2498
|
offset:
|
|
2495
2499
|
type: integer
|
|
2496
2500
|
required: false
|
|
@@ -2503,6 +2507,10 @@ types:
|
|
|
2503
2507
|
body:
|
|
2504
2508
|
application/json:
|
|
2505
2509
|
type: DashboardRepresentation
|
|
2510
|
+
queryParameters:
|
|
2511
|
+
minorVersion:
|
|
2512
|
+
type: integer
|
|
2513
|
+
required: false
|
|
2506
2514
|
body:
|
|
2507
2515
|
application/json:
|
|
2508
2516
|
type: DashboardInputRepresentation
|
|
@@ -2523,6 +2531,10 @@ types:
|
|
|
2523
2531
|
body:
|
|
2524
2532
|
application/json:
|
|
2525
2533
|
type: DashboardRepresentation
|
|
2534
|
+
queryParameters:
|
|
2535
|
+
minorVersion:
|
|
2536
|
+
type: integer
|
|
2537
|
+
required: false
|
|
2526
2538
|
patch:
|
|
2527
2539
|
displayName: patchDashboard
|
|
2528
2540
|
description: Update Unified Analytics Dashboard Metadata by Id or Name.
|
|
@@ -2532,6 +2544,10 @@ types:
|
|
|
2532
2544
|
body:
|
|
2533
2545
|
application/json:
|
|
2534
2546
|
type: DashboardRepresentation
|
|
2547
|
+
queryParameters:
|
|
2548
|
+
minorVersion:
|
|
2549
|
+
type: integer
|
|
2550
|
+
required: false
|
|
2535
2551
|
body:
|
|
2536
2552
|
application/json:
|
|
2537
2553
|
type: DashboardInputRepresentation
|
|
@@ -2999,6 +3015,9 @@ types:
|
|
|
2999
3015
|
offset:
|
|
3000
3016
|
type: integer
|
|
3001
3017
|
required: false
|
|
3018
|
+
minorVersion:
|
|
3019
|
+
type: integer
|
|
3020
|
+
required: false
|
|
3002
3021
|
post:
|
|
3003
3022
|
displayName: postVisualization
|
|
3004
3023
|
description: Creates a new Visualization.
|
|
@@ -3008,6 +3027,10 @@ types:
|
|
|
3008
3027
|
body:
|
|
3009
3028
|
application/json:
|
|
3010
3029
|
type: VisualizationRepresentation
|
|
3030
|
+
queryParameters:
|
|
3031
|
+
minorVersion:
|
|
3032
|
+
type: integer
|
|
3033
|
+
required: false
|
|
3011
3034
|
body:
|
|
3012
3035
|
application/json:
|
|
3013
3036
|
type: VisualizationInputRepresentation
|
|
@@ -3028,6 +3051,10 @@ types:
|
|
|
3028
3051
|
body:
|
|
3029
3052
|
application/json:
|
|
3030
3053
|
type: VisualizationRepresentation
|
|
3054
|
+
queryParameters:
|
|
3055
|
+
minorVersion:
|
|
3056
|
+
type: integer
|
|
3057
|
+
required: false
|
|
3031
3058
|
patch:
|
|
3032
3059
|
displayName: patchVisualization
|
|
3033
3060
|
description: Update Visualization Metadata by Id or Name.
|
|
@@ -3037,6 +3064,10 @@ types:
|
|
|
3037
3064
|
body:
|
|
3038
3065
|
application/json:
|
|
3039
3066
|
type: VisualizationRepresentation
|
|
3067
|
+
queryParameters:
|
|
3068
|
+
minorVersion:
|
|
3069
|
+
type: integer
|
|
3070
|
+
required: false
|
|
3040
3071
|
body:
|
|
3041
3072
|
application/json:
|
|
3042
3073
|
type: VisualizationInputRepresentation
|
|
@@ -3055,6 +3086,10 @@ types:
|
|
|
3055
3086
|
body:
|
|
3056
3087
|
application/json:
|
|
3057
3088
|
type: VisualizationBundleRepresentation
|
|
3089
|
+
queryParameters:
|
|
3090
|
+
minorVersion:
|
|
3091
|
+
type: integer
|
|
3092
|
+
required: false
|
|
3058
3093
|
uriParameters:
|
|
3059
3094
|
visualizationIdOrApiName:
|
|
3060
3095
|
type: string
|