@salesforce/lds-adapters-industries-recordaggregation 1.351.0 → 1.352.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.
|
@@ -30,13 +30,13 @@ export interface RADOutputRepresentationNormalized {
|
|
|
30
30
|
canDeleteDefinition: boolean;
|
|
31
31
|
/** Indicates whether the record aggregation definition can be edited (true) or not (false). */
|
|
32
32
|
canEditDefinition: boolean;
|
|
33
|
-
/** Indicates whether on demand
|
|
33
|
+
/** Indicates whether on demand record rollup can be managed for the specified record aggregation definition ID (true) or not (false). */
|
|
34
34
|
canManageOnDemand?: boolean;
|
|
35
35
|
/** Description of the record aggregation definition. */
|
|
36
36
|
description?: string;
|
|
37
37
|
/** Display name of the record aggregation definition. */
|
|
38
38
|
displayName: string;
|
|
39
|
-
/** Indicates whether on demand
|
|
39
|
+
/** Indicates whether on demand record rollup is enabled for the specified record aggregation definition ID (true) or not (false). */
|
|
40
40
|
isOnDemandEnabled?: boolean;
|
|
41
41
|
/** The message returned in the response. */
|
|
42
42
|
message: string;
|
|
@@ -18,7 +18,7 @@ export interface RecordAggregationDefinitionPartialUpdateInputRepresentationNorm
|
|
|
18
18
|
definitionDescription?: string;
|
|
19
19
|
/** The display name of the record aggregation definition. */
|
|
20
20
|
definitionDisplayName?: string;
|
|
21
|
-
/**
|
|
21
|
+
/** Indicates whether on demand record rollup must be enabled (true) for the specified record aggregation definition ID, or not (false). */
|
|
22
22
|
enableOnDemand?: boolean;
|
|
23
23
|
/** Status of record aggregation definition. */
|
|
24
24
|
status?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-recordaggregation",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.352.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/industries-recordaggregation.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.352.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.352.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -4068,4 +4068,4 @@ withDefaultLuvio((luvio) => {
|
|
|
4068
4068
|
});
|
|
4069
4069
|
|
|
4070
4070
|
export { deleteRecordAggregationDefinition, getBulkRecordRollupDefinitionDetails, getRecordAggregationApplicableObjects, getRecordAggregationApplicableObjects_imperative, getRecordAggregationDefinition, getRecordAggregationDefinitionNotifyChange, getRecordAggregationDefinition_imperative, getRecordAggregationEntityApplicableFields, getRecordAggregationEntityApplicableFields_imperative, patchRecordAggregationDefinition, performBulkRecordRollupSyncExecution, postGenerateRecordRollupResult, postRecordAggregationCreation, putRecordAggregationDefinition };
|
|
4071
|
-
// version: 1.
|
|
4071
|
+
// version: 1.352.0-abe5da40fa
|
package/src/raml/api.raml
CHANGED
|
@@ -148,11 +148,11 @@ types:
|
|
|
148
148
|
description: Indicates whether the record aggregation definition can be deleted (true) or not (false).
|
|
149
149
|
type: boolean
|
|
150
150
|
canManageOnDemand:
|
|
151
|
-
description: Indicates whether on demand
|
|
151
|
+
description: Indicates whether on demand record rollup can be managed for the specified record aggregation definition ID (true) or not (false).
|
|
152
152
|
type: boolean
|
|
153
153
|
required: false
|
|
154
154
|
isOnDemandEnabled:
|
|
155
|
-
description: Indicates whether on demand
|
|
155
|
+
description: Indicates whether on demand record rollup is enabled for the specified record aggregation definition ID (true) or not (false).
|
|
156
156
|
type: boolean
|
|
157
157
|
required: false
|
|
158
158
|
RecordAggregationApplicableFieldOutputRepresentation:
|
|
@@ -265,7 +265,7 @@ types:
|
|
|
265
265
|
type: string
|
|
266
266
|
required: false
|
|
267
267
|
enableOnDemand:
|
|
268
|
-
description:
|
|
268
|
+
description: Indicates whether on demand record rollup must be enabled (true) for the specified record aggregation definition ID, or not (false).
|
|
269
269
|
type: boolean
|
|
270
270
|
required: false
|
|
271
271
|
RecordAggregationDefinitionPartialUpdateOutputRepresentation:
|