@salesforce/lds-adapters-analytics-unifiedanalytics 1.404.0-dev19 → 1.404.0-dev20

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.
@@ -3199,6 +3199,8 @@ const createDashboard_ConfigPropertyMetadata = [
3199
3199
  generateParamConfigMetadata('workspaceIdOrApiName', false, 2 /* Body */, 0 /* String */),
3200
3200
  generateParamConfigMetadata('label', true, 2 /* Body */, 0 /* String */),
3201
3201
  generateParamConfigMetadata('name', false, 2 /* Body */, 0 /* String */),
3202
+ generateParamConfigMetadata('lastModifiedBy', false, 2 /* Body */, 4 /* Unsupported */),
3203
+ generateParamConfigMetadata('lastModifiedDate', false, 2 /* Body */, 0 /* String */),
3202
3204
  generateParamConfigMetadata('layouts', true, 2 /* Body */, 4 /* Unsupported */, true),
3203
3205
  generateParamConfigMetadata('widgets', true, 2 /* Body */, 4 /* Unsupported */),
3204
3206
  generateParamConfigMetadata('style', false, 2 /* Body */, 4 /* Unsupported */),
@@ -3209,6 +3211,8 @@ const createResourceParams$T = /*#__PURE__*/ createResourceParams$_(createDashbo
3209
3211
  function typeCheckConfig$T(untrustedConfig) {
3210
3212
  const config = {};
3211
3213
  typeCheckConfig$_(untrustedConfig, config, createDashboard_ConfigPropertyMetadata);
3214
+ const untrustedConfig_lastModifiedBy = untrustedConfig.lastModifiedBy;
3215
+ config.lastModifiedBy = untrustedConfig_lastModifiedBy;
3212
3216
  const untrustedConfig_layouts = untrustedConfig.layouts;
3213
3217
  if (ArrayIsArray$1(untrustedConfig_layouts)) {
3214
3218
  const untrustedConfig_layouts_array = [];
@@ -3572,6 +3576,8 @@ const updateDashboard_ConfigPropertyMetadata = [
3572
3576
  generateParamConfigMetadata('workspaceIdOrApiName', false, 2 /* Body */, 0 /* String */),
3573
3577
  generateParamConfigMetadata('label', true, 2 /* Body */, 0 /* String */),
3574
3578
  generateParamConfigMetadata('name', false, 2 /* Body */, 0 /* String */),
3579
+ generateParamConfigMetadata('lastModifiedBy', false, 2 /* Body */, 4 /* Unsupported */),
3580
+ generateParamConfigMetadata('lastModifiedDate', false, 2 /* Body */, 0 /* String */),
3575
3581
  generateParamConfigMetadata('layouts', true, 2 /* Body */, 4 /* Unsupported */, true),
3576
3582
  generateParamConfigMetadata('widgets', true, 2 /* Body */, 4 /* Unsupported */),
3577
3583
  generateParamConfigMetadata('style', false, 2 /* Body */, 4 /* Unsupported */),
@@ -3582,6 +3588,8 @@ const createResourceParams$Q = /*#__PURE__*/ createResourceParams$_(updateDashbo
3582
3588
  function typeCheckConfig$Q(untrustedConfig) {
3583
3589
  const config = {};
3584
3590
  typeCheckConfig$_(untrustedConfig, config, updateDashboard_ConfigPropertyMetadata);
3591
+ const untrustedConfig_lastModifiedBy = untrustedConfig.lastModifiedBy;
3592
+ config.lastModifiedBy = untrustedConfig_lastModifiedBy;
3585
3593
  const untrustedConfig_layouts = untrustedConfig.layouts;
3586
3594
  if (ArrayIsArray$1(untrustedConfig_layouts)) {
3587
3595
  const untrustedConfig_layouts_array = [];
@@ -12,6 +12,8 @@ export interface CreateDashboardConfig {
12
12
  workspaceIdOrApiName?: string;
13
13
  label: string;
14
14
  name?: string;
15
+ lastModifiedBy?: unknown;
16
+ lastModifiedDate?: string;
15
17
  layouts: Array<unknown>;
16
18
  widgets: {
17
19
  [key: string]: unknown;
@@ -13,6 +13,8 @@ export interface UpdateDashboardConfig {
13
13
  workspaceIdOrApiName?: string;
14
14
  label: string;
15
15
  name?: string;
16
+ lastModifiedBy?: unknown;
17
+ lastModifiedDate?: string;
16
18
  layouts: Array<unknown>;
17
19
  widgets: {
18
20
  [key: string]: unknown;
@@ -13,6 +13,8 @@ export interface ResourceRequestConfig {
13
13
  workspaceIdOrApiName?: string;
14
14
  label: string;
15
15
  name?: string;
16
+ lastModifiedBy?: unknown;
17
+ lastModifiedDate?: string;
16
18
  layouts: Array<unknown>;
17
19
  widgets: {
18
20
  [key: string]: unknown;
@@ -10,6 +10,8 @@ export interface ResourceRequestConfig {
10
10
  workspaceIdOrApiName?: string;
11
11
  label: string;
12
12
  name?: string;
13
+ lastModifiedBy?: unknown;
14
+ lastModifiedDate?: string;
13
15
  layouts: Array<unknown>;
14
16
  widgets: {
15
17
  [key: string]: unknown;
@@ -1,5 +1,5 @@
1
1
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
- export declare const VERSION = "f0dd9e670e17de8e3a03b57bf8ca6bc0";
2
+ export declare const VERSION = "9ab970c1941084d340422fe41e943042";
3
3
  export declare function validate(obj: any, path?: string): TypeError | null;
4
4
  export declare const RepresentationType: string;
5
5
  export declare function normalize(input: DashboardInputRepresentation, existing: DashboardInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DashboardInputRepresentationNormalized;
@@ -24,6 +24,10 @@ export interface DashboardInputRepresentationNormalized {
24
24
  id?: string;
25
25
  /** Master label. */
26
26
  label: string;
27
+ /** Last modified by of the asset. */
28
+ lastModifiedBy?: unknown;
29
+ /** Last modified date of the asset. */
30
+ lastModifiedDate?: string;
27
31
  /** List of layouts in the dashboard. */
28
32
  layouts: Array<unknown>;
29
33
  /** Unique developer name. */
@@ -52,6 +56,8 @@ export interface DashboardInputRepresentation {
52
56
  description?: string;
53
57
  id?: string;
54
58
  label: string;
59
+ lastModifiedBy?: unknown;
60
+ lastModifiedDate?: string;
55
61
  layouts: Array<unknown>;
56
62
  name?: string;
57
63
  style?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-analytics-unifiedanalytics",
3
- "version": "1.404.0-dev19",
3
+ "version": "1.404.0-dev20",
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.404.0-dev19"
43
+ "@salesforce/lds-bindings": "^1.404.0-dev20"
44
44
  },
45
45
  "devDependencies": {
46
- "@salesforce/lds-compiler-plugins": "^1.404.0-dev19"
46
+ "@salesforce/lds-compiler-plugins": "^1.404.0-dev20"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {
package/sfdc/index.js CHANGED
@@ -2162,6 +2162,8 @@ const createDashboard_ConfigPropertyMetadata = [
2162
2162
  generateParamConfigMetadata('workspaceIdOrApiName', false, 2 /* Body */, 0 /* String */),
2163
2163
  generateParamConfigMetadata('label', true, 2 /* Body */, 0 /* String */),
2164
2164
  generateParamConfigMetadata('name', false, 2 /* Body */, 0 /* String */),
2165
+ generateParamConfigMetadata('lastModifiedBy', false, 2 /* Body */, 4 /* Unsupported */),
2166
+ generateParamConfigMetadata('lastModifiedDate', false, 2 /* Body */, 0 /* String */),
2165
2167
  generateParamConfigMetadata('layouts', true, 2 /* Body */, 4 /* Unsupported */, true),
2166
2168
  generateParamConfigMetadata('widgets', true, 2 /* Body */, 4 /* Unsupported */),
2167
2169
  generateParamConfigMetadata('style', false, 2 /* Body */, 4 /* Unsupported */),
@@ -2172,6 +2174,8 @@ const createResourceParams$X = /*#__PURE__*/ createResourceParams$_(createDashbo
2172
2174
  function typeCheckConfig$X(untrustedConfig) {
2173
2175
  const config = {};
2174
2176
  typeCheckConfig$_(untrustedConfig, config, createDashboard_ConfigPropertyMetadata);
2177
+ const untrustedConfig_lastModifiedBy = untrustedConfig.lastModifiedBy;
2178
+ config.lastModifiedBy = untrustedConfig_lastModifiedBy;
2175
2179
  const untrustedConfig_layouts = untrustedConfig.layouts;
2176
2180
  if (ArrayIsArray$1(untrustedConfig_layouts)) {
2177
2181
  const untrustedConfig_layouts_array = [];
@@ -14515,6 +14519,8 @@ const updateDashboard_ConfigPropertyMetadata = [
14515
14519
  generateParamConfigMetadata('workspaceIdOrApiName', false, 2 /* Body */, 0 /* String */),
14516
14520
  generateParamConfigMetadata('label', true, 2 /* Body */, 0 /* String */),
14517
14521
  generateParamConfigMetadata('name', false, 2 /* Body */, 0 /* String */),
14522
+ generateParamConfigMetadata('lastModifiedBy', false, 2 /* Body */, 4 /* Unsupported */),
14523
+ generateParamConfigMetadata('lastModifiedDate', false, 2 /* Body */, 0 /* String */),
14518
14524
  generateParamConfigMetadata('layouts', true, 2 /* Body */, 4 /* Unsupported */, true),
14519
14525
  generateParamConfigMetadata('widgets', true, 2 /* Body */, 4 /* Unsupported */),
14520
14526
  generateParamConfigMetadata('style', false, 2 /* Body */, 4 /* Unsupported */),
@@ -14525,6 +14531,8 @@ const createResourceParams$7 = /*#__PURE__*/ createResourceParams$_(updateDashbo
14525
14531
  function typeCheckConfig$7(untrustedConfig) {
14526
14532
  const config = {};
14527
14533
  typeCheckConfig$_(untrustedConfig, config, updateDashboard_ConfigPropertyMetadata);
14534
+ const untrustedConfig_lastModifiedBy = untrustedConfig.lastModifiedBy;
14535
+ config.lastModifiedBy = untrustedConfig_lastModifiedBy;
14528
14536
  const untrustedConfig_layouts = untrustedConfig.layouts;
14529
14537
  if (ArrayIsArray$1(untrustedConfig_layouts)) {
14530
14538
  const untrustedConfig_layouts_array = [];
@@ -15911,4 +15919,4 @@ withDefaultLuvio((luvio) => {
15911
15919
  });
15912
15920
 
15913
15921
  export { createAnnotation, createAssetSlackChannel, createDashboard, createDataAlert, createDataAssetRequest, createLoglines, createRecordShares, createTemplate, createVisualization, createWorkspace, createWorkspaceAsset, deleteAllShares, deleteDashboard, deleteDataAlert, deleteRecordShare, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, generateSFDrivePresignedCredentials, 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 };
15914
- // version: 1.404.0-dev19-909c19a5d0
15922
+ // version: 1.404.0-dev20-d07b5007e7
package/src/raml/api.raml CHANGED
@@ -931,6 +931,14 @@ types:
931
931
  description: Unique developer name.
932
932
  type: string
933
933
  required: false
934
+ lastModifiedBy:
935
+ description: Last modified by of the asset.
936
+ type: any
937
+ required: false
938
+ lastModifiedDate:
939
+ description: Last modified date of the asset.
940
+ type: string
941
+ required: false
934
942
  layouts:
935
943
  description: List of layouts in the dashboard.
936
944
  type: array