@salesforce/lds-adapters-analytics-unifiedanalytics 1.409.0 → 1.410.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.
|
@@ -5171,6 +5171,23 @@ function validate$K(obj, path = 'DataAssetRequestAdditionalInfoRepresentation')
|
|
|
5171
5171
|
}
|
|
5172
5172
|
}
|
|
5173
5173
|
}
|
|
5174
|
+
if (obj.failedAssets !== undefined) {
|
|
5175
|
+
const obj_failedAssets = obj.failedAssets;
|
|
5176
|
+
const path_failedAssets = path + '.failedAssets';
|
|
5177
|
+
if (!ArrayIsArray(obj_failedAssets)) {
|
|
5178
|
+
return new TypeError('Expected "array" but received "' + typeof obj_failedAssets + '" (at "' + path_failedAssets + '")');
|
|
5179
|
+
}
|
|
5180
|
+
for (let i = 0; i < obj_failedAssets.length; i++) {
|
|
5181
|
+
const obj_failedAssets_item = obj_failedAssets[i];
|
|
5182
|
+
const path_failedAssets_item = path_failedAssets + '[' + i + ']';
|
|
5183
|
+
const referencepath_failedAssets_itemValidationError = validate$L(obj_failedAssets_item, path_failedAssets_item);
|
|
5184
|
+
if (referencepath_failedAssets_itemValidationError !== null) {
|
|
5185
|
+
let message = 'Object doesn\'t match AdditionalInfoAssetRepresentation (at "' + path_failedAssets_item + '")\n';
|
|
5186
|
+
message += referencepath_failedAssets_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
5187
|
+
return new TypeError(message);
|
|
5188
|
+
}
|
|
5189
|
+
}
|
|
5190
|
+
}
|
|
5174
5191
|
if (obj.inProgressAssets !== undefined) {
|
|
5175
5192
|
const obj_inProgressAssets = obj.inProgressAssets;
|
|
5176
5193
|
const path_inProgressAssets = path + '.inProgressAssets';
|
package/dist/es/es2018/types/src/generated/types/DataAssetRequestAdditionalInfoRepresentation.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AdditionalInfoDataspacesRepresentation as AdditionalInfoDataspacesRepresentation_AdditionalInfoDataspacesRepresentation } from './AdditionalInfoDataspacesRepresentation';
|
|
2
2
|
import { AdditionalInfoAssetRepresentation as AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation } from './AdditionalInfoAssetRepresentation';
|
|
3
3
|
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';
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "9cc8058b699974e79651296431aff1db";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
6
|
export declare const RepresentationType: string;
|
|
7
7
|
export declare function normalize(input: DataAssetRequestAdditionalInfoRepresentation, existing: DataAssetRequestAdditionalInfoRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAssetRequestAdditionalInfoRepresentationNormalized;
|
|
@@ -19,6 +19,8 @@ export interface DataAssetRequestAdditionalInfoRepresentationNormalized {
|
|
|
19
19
|
dataspaces?: AdditionalInfoDataspacesRepresentation_AdditionalInfoDataspacesRepresentation;
|
|
20
20
|
/** List of Assets Deployed */
|
|
21
21
|
deployedAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
22
|
+
/** List of Failed Assets */
|
|
23
|
+
failedAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
22
24
|
/** List of Assets In Progress */
|
|
23
25
|
inProgressAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
24
26
|
/** List of Assets Not Started */
|
|
@@ -33,6 +35,7 @@ export interface DataAssetRequestAdditionalInfoRepresentationNormalized {
|
|
|
33
35
|
export interface DataAssetRequestAdditionalInfoRepresentation {
|
|
34
36
|
dataspaces?: AdditionalInfoDataspacesRepresentation_AdditionalInfoDataspacesRepresentation;
|
|
35
37
|
deployedAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
38
|
+
failedAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
36
39
|
inProgressAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
37
40
|
notStartedAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
38
41
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-analytics-unifiedanalytics",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.410.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.410.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.410.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -3046,6 +3046,23 @@ function validate$S(obj, path = 'DataAssetRequestAdditionalInfoRepresentation')
|
|
|
3046
3046
|
}
|
|
3047
3047
|
}
|
|
3048
3048
|
}
|
|
3049
|
+
if (obj.failedAssets !== undefined) {
|
|
3050
|
+
const obj_failedAssets = obj.failedAssets;
|
|
3051
|
+
const path_failedAssets = path + '.failedAssets';
|
|
3052
|
+
if (!ArrayIsArray(obj_failedAssets)) {
|
|
3053
|
+
return new TypeError('Expected "array" but received "' + typeof obj_failedAssets + '" (at "' + path_failedAssets + '")');
|
|
3054
|
+
}
|
|
3055
|
+
for (let i = 0; i < obj_failedAssets.length; i++) {
|
|
3056
|
+
const obj_failedAssets_item = obj_failedAssets[i];
|
|
3057
|
+
const path_failedAssets_item = path_failedAssets + '[' + i + ']';
|
|
3058
|
+
const referencepath_failedAssets_itemValidationError = validate$T(obj_failedAssets_item, path_failedAssets_item);
|
|
3059
|
+
if (referencepath_failedAssets_itemValidationError !== null) {
|
|
3060
|
+
let message = 'Object doesn\'t match AdditionalInfoAssetRepresentation (at "' + path_failedAssets_item + '")\n';
|
|
3061
|
+
message += referencepath_failedAssets_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
3062
|
+
return new TypeError(message);
|
|
3063
|
+
}
|
|
3064
|
+
}
|
|
3065
|
+
}
|
|
3049
3066
|
if (obj.inProgressAssets !== undefined) {
|
|
3050
3067
|
const obj_inProgressAssets = obj.inProgressAssets;
|
|
3051
3068
|
const path_inProgressAssets = path + '.inProgressAssets';
|
|
@@ -15519,4 +15536,4 @@ withDefaultLuvio((luvio) => {
|
|
|
15519
15536
|
});
|
|
15520
15537
|
|
|
15521
15538
|
export { createAnnotation, createAssetSlackChannel, createDashboard, createDataAlert, createDataAssetRequest, createLoglines, createRecordShares, createTemplate, createVisualization, createWorkspace, createWorkspaceAsset, deleteAllShares, deleteDashboard, deleteDataAlert, deleteRecordShare, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, getAnnotations, getAnnotations_imperative, getAssetSlackChannels, getAssetSlackChannels_imperative, getDashboardByName, getDashboardByNameNotifyChange, getDashboardByName_imperative, getDashboards, getDashboards_imperative, getDataAlert, getDataAlertCollection, getDataAlertCollection_imperative, getDataAlertNotifyChange, getDataAlert_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, 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, notifySharesUpdateAvailable, postDataAlertRun, publish, publishToMarketplace, queryAssets, queryUsers, unfollow, updateDashboard, updateDataAlert, updateDataAssetRequest, updateFollowedAsset, updateRecordShares, updateSubscriptionDigestConfig, updateVisualization, updateWorkspace };
|
|
15522
|
-
// version: 1.
|
|
15539
|
+
// version: 1.410.0-7c228ee347
|
package/src/raml/api.raml
CHANGED
|
@@ -1935,6 +1935,12 @@ types:
|
|
|
1935
1935
|
items:
|
|
1936
1936
|
type: AdditionalInfoAssetRepresentation
|
|
1937
1937
|
required: false
|
|
1938
|
+
failedAssets:
|
|
1939
|
+
description: List of Failed Assets
|
|
1940
|
+
type: array
|
|
1941
|
+
items:
|
|
1942
|
+
type: AdditionalInfoAssetRepresentation
|
|
1943
|
+
required: false
|
|
1938
1944
|
AdditionalInfoDataspacesRepresentation:
|
|
1939
1945
|
description: Additional Info Dataspaces Representation
|
|
1940
1946
|
type: object
|