@salesforce/lds-adapters-analytics-unifiedanalytics 1.434.0 → 1.435.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 +191 -130
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/PromotionContentAssetRepresentation.d.ts +46 -0
- package/package.json +3 -3
- package/sfdc/index.js +172 -111
- package/src/raml/api.raml +31 -0
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { AnalyticsUserRepresentation as AnalyticsUserRepresentation_AnalyticsUserRepresentation } from './AnalyticsUserRepresentation';
|
|
2
2
|
import { DataAssetRequestAdditionalInfoRepresentation as DataAssetRequestAdditionalInfoRepresentation_DataAssetRequestAdditionalInfoRepresentation } from './DataAssetRequestAdditionalInfoRepresentation';
|
|
3
|
+
import { PromotionContentAssetRepresentation as PromotionContentAssetRepresentation_PromotionContentAssetRepresentation } from './PromotionContentAssetRepresentation';
|
|
3
4
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
4
5
|
export declare const TTL = 500;
|
|
5
|
-
export declare const VERSION = "
|
|
6
|
+
export declare const VERSION = "14c3cbce26bc641b86f45457db9a2331";
|
|
6
7
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
8
|
export declare const RepresentationType: string;
|
|
8
9
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -80,6 +81,8 @@ export interface DataAssetRequestRepresentationNormalized {
|
|
|
80
81
|
productionOrgWorkspaceId: string | null;
|
|
81
82
|
/** Promotion Approval Flow of the request */
|
|
82
83
|
promotionApprovalFlow: string | null;
|
|
84
|
+
/** List of content assets from promotion additional info */
|
|
85
|
+
promotionContentAssets?: Array<PromotionContentAssetRepresentation_PromotionContentAssetRepresentation>;
|
|
83
86
|
/** Rejection Comment */
|
|
84
87
|
rejectionComment: string | null;
|
|
85
88
|
/** Type of the request */
|
|
@@ -135,6 +138,7 @@ export interface DataAssetRequestRepresentation {
|
|
|
135
138
|
productionOrgId: string | null;
|
|
136
139
|
productionOrgWorkspaceId: string | null;
|
|
137
140
|
promotionApprovalFlow: string | null;
|
|
141
|
+
promotionContentAssets?: Array<PromotionContentAssetRepresentation_PromotionContentAssetRepresentation>;
|
|
138
142
|
rejectionComment: string | null;
|
|
139
143
|
requestType: string;
|
|
140
144
|
requestedBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation;
|
|
@@ -0,0 +1,46 @@
|
|
|
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 = "a40334f8fc33a083731ace3bba75e04c";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: PromotionContentAssetRepresentation, existing: PromotionContentAssetRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PromotionContentAssetRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: PromotionContentAssetRepresentationNormalized, incoming: PromotionContentAssetRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: PromotionContentAssetRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Represents a content asset in a promotion request
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface PromotionContentAssetRepresentationNormalized {
|
|
17
|
+
/** The type of the asset */
|
|
18
|
+
assetType: string;
|
|
19
|
+
/** Indicates whether the asset is a first-level reuse */
|
|
20
|
+
isFirstLevelReuse: boolean;
|
|
21
|
+
/** Indicates whether the asset is reused from another promotion */
|
|
22
|
+
isReused: boolean;
|
|
23
|
+
/** The source developer name of the asset */
|
|
24
|
+
sourceDevName: string;
|
|
25
|
+
/** The source ID of the asset */
|
|
26
|
+
sourceId: string;
|
|
27
|
+
/** The target developer name of the asset */
|
|
28
|
+
targetDevName: string;
|
|
29
|
+
/** The target ID of the asset */
|
|
30
|
+
targetId: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Represents a content asset in a promotion request
|
|
34
|
+
*
|
|
35
|
+
* Keys:
|
|
36
|
+
* (none)
|
|
37
|
+
*/
|
|
38
|
+
export interface PromotionContentAssetRepresentation {
|
|
39
|
+
assetType: string;
|
|
40
|
+
isFirstLevelReuse: boolean;
|
|
41
|
+
isReused: boolean;
|
|
42
|
+
sourceDevName: string;
|
|
43
|
+
sourceId: string;
|
|
44
|
+
targetDevName: string;
|
|
45
|
+
targetId: string;
|
|
46
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-analytics-unifiedanalytics",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.435.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.435.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.435.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|