@salesforce/lds-adapters-analytics-unifiedanalytics 1.404.0-dev8 → 1.404.0-dev9

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.
@@ -6961,7 +6961,7 @@ function validate$F(obj, path = 'DataAssetDependentRepresentation') {
6961
6961
  }
6962
6962
 
6963
6963
  const TTL$i = 500;
6964
- const VERSION$t = "bc1bcd1c96c7c70c3cde837dafdafaba";
6964
+ const VERSION$t = "a7e542d6800dd912fc3893a5acf78e91";
6965
6965
  function validate$E(obj, path = 'DataAssetDependentCollectionRepresentation') {
6966
6966
  const v_error = (() => {
6967
6967
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -6982,6 +6982,13 @@ function validate$E(obj, path = 'DataAssetDependentCollectionRepresentation') {
6982
6982
  return new TypeError(message);
6983
6983
  }
6984
6984
  }
6985
+ if (obj.sourceOrgType !== undefined) {
6986
+ const obj_sourceOrgType = obj.sourceOrgType;
6987
+ const path_sourceOrgType = path + '.sourceOrgType';
6988
+ if (typeof obj_sourceOrgType !== 'string') {
6989
+ return new TypeError('Expected "string" but received "' + typeof obj_sourceOrgType + '" (at "' + path_sourceOrgType + '")');
6990
+ }
6991
+ }
6985
6992
  })();
6986
6993
  return v_error === undefined ? null : v_error;
6987
6994
  }
@@ -1,7 +1,7 @@
1
1
  import { DataAssetDependentRepresentation as DataAssetDependentRepresentation_DataAssetDependentRepresentation } from './DataAssetDependentRepresentation';
2
2
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
3
  export declare const TTL = 500;
4
- export declare const VERSION = "bc1bcd1c96c7c70c3cde837dafdafaba";
4
+ export declare const VERSION = "a7e542d6800dd912fc3893a5acf78e91";
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: DataAssetDependentCollectionRepresentation, existing: DataAssetDependentCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAssetDependentCollectionRepresentationNormalized;
@@ -18,6 +18,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
18
18
  export interface DataAssetDependentCollectionRepresentationNormalized {
19
19
  /** Array of Dependent Assets */
20
20
  dependentDataAssets: Array<$64$luvio_engine_StoreLink>;
21
+ /** Type of the org from which the request originates */
22
+ sourceOrgType?: string;
21
23
  }
22
24
  /**
23
25
  * Represents a List of dependent assets for a given asset
@@ -27,4 +29,5 @@ export interface DataAssetDependentCollectionRepresentationNormalized {
27
29
  */
28
30
  export interface DataAssetDependentCollectionRepresentation {
29
31
  dependentDataAssets: Array<DataAssetDependentRepresentation_DataAssetDependentRepresentation>;
32
+ sourceOrgType?: string;
30
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-analytics-unifiedanalytics",
3
- "version": "1.404.0-dev8",
3
+ "version": "1.404.0-dev9",
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-dev8"
43
+ "@salesforce/lds-bindings": "^1.404.0-dev9"
44
44
  },
45
45
  "devDependencies": {
46
- "@salesforce/lds-compiler-plugins": "^1.404.0-dev8"
46
+ "@salesforce/lds-compiler-plugins": "^1.404.0-dev9"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {
package/sfdc/index.js CHANGED
@@ -8375,7 +8375,7 @@ function validate$v(obj, path = 'DataAssetDependentRepresentation') {
8375
8375
  }
8376
8376
 
8377
8377
  const TTL$f = 500;
8378
- const VERSION$n = "bc1bcd1c96c7c70c3cde837dafdafaba";
8378
+ const VERSION$n = "a7e542d6800dd912fc3893a5acf78e91";
8379
8379
  function validate$u(obj, path = 'DataAssetDependentCollectionRepresentation') {
8380
8380
  const v_error = (() => {
8381
8381
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -8396,6 +8396,13 @@ function validate$u(obj, path = 'DataAssetDependentCollectionRepresentation') {
8396
8396
  return new TypeError(message);
8397
8397
  }
8398
8398
  }
8399
+ if (obj.sourceOrgType !== undefined) {
8400
+ const obj_sourceOrgType = obj.sourceOrgType;
8401
+ const path_sourceOrgType = path + '.sourceOrgType';
8402
+ if (typeof obj_sourceOrgType !== 'string') {
8403
+ return new TypeError('Expected "string" but received "' + typeof obj_sourceOrgType + '" (at "' + path_sourceOrgType + '")');
8404
+ }
8405
+ }
8399
8406
  })();
8400
8407
  return v_error === undefined ? null : v_error;
8401
8408
  }
@@ -15806,4 +15813,4 @@ withDefaultLuvio((luvio) => {
15806
15813
  });
15807
15814
 
15808
15815
  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 };
15809
- // version: 1.404.0-dev8-0d1fa821a7
15816
+ // version: 1.404.0-dev9-2a4f3180c5
package/src/raml/api.raml CHANGED
@@ -1029,6 +1029,13 @@ types:
1029
1029
  type: array
1030
1030
  items:
1031
1031
  type: DataAssetDependentRepresentation
1032
+ sourceOrgType:
1033
+ description: Type of the org from which the request originates
1034
+ type: string
1035
+ required: false
1036
+ enum:
1037
+ - Companion
1038
+ - Home
1032
1039
  DataAssetDependentRepresentation:
1033
1040
  description: Represents a Dependent asset
1034
1041
  type: object