@salesforce/lds-adapters-industries-recordaggregation 1.287.0-dev1 → 1.287.0-dev2
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/industries-recordaggregation.js +50 -10
- package/dist/es/es2018/types/src/generated/types/RecordAggregationCreationOutputRepresentation.d.ts +0 -1
- package/dist/es/es2018/types/src/generated/types/RecordAggregationUpdationOutputRepresentation.d.ts +0 -1
- package/dist/es/es2018/types/src/generated/types/RecordRollupResultColumnOutputRepresentation.d.ts +10 -1
- package/package.json +3 -3
- package/sfdc/index.js +51 -11
- package/src/raml/api.raml +9 -0
- package/src/raml/luvio.raml +1 -3
|
@@ -254,7 +254,6 @@ function validate$g(obj, path = 'RecordAggregationNodeInputRepresentation') {
|
|
|
254
254
|
return v_error === undefined ? null : v_error;
|
|
255
255
|
}
|
|
256
256
|
|
|
257
|
-
const TTL$1 = 0;
|
|
258
257
|
const VERSION$f = "360b76c13b79ed8a1d3522d29b8a91e1";
|
|
259
258
|
function validate$f(obj, path = 'RecordAggregationCreationOutputRepresentation') {
|
|
260
259
|
const v_error = (() => {
|
|
@@ -339,7 +338,7 @@ const ingest$6 = function RecordAggregationCreationOutputRepresentationIngest(in
|
|
|
339
338
|
}
|
|
340
339
|
}
|
|
341
340
|
const key = keyBuilderFromType$3(luvio, input);
|
|
342
|
-
const ttlToUse =
|
|
341
|
+
const ttlToUse = path.ttl !== undefined ? path.ttl : 100;
|
|
343
342
|
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$6, "IndustriesRecordAggregation", VERSION$f, RepresentationType$6, equals$f);
|
|
344
343
|
return createLink(key);
|
|
345
344
|
};
|
|
@@ -600,7 +599,7 @@ const ingest$5 = function RecordAggregationApplicableObjectsOutputRepresentation
|
|
|
600
599
|
}
|
|
601
600
|
}
|
|
602
601
|
const key = path.fullPath;
|
|
603
|
-
const ttlToUse = path.ttl !== undefined ? path.ttl :
|
|
602
|
+
const ttlToUse = path.ttl !== undefined ? path.ttl : 100;
|
|
604
603
|
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$5, "IndustriesRecordAggregation", VERSION$d, RepresentationType$5, equals$d);
|
|
605
604
|
return createLink(key);
|
|
606
605
|
};
|
|
@@ -943,7 +942,7 @@ const ingest$4 = function RecordAggregationEntityApplicableFieldsOutputRepresent
|
|
|
943
942
|
}
|
|
944
943
|
}
|
|
945
944
|
const key = path.fullPath;
|
|
946
|
-
const ttlToUse = path.ttl !== undefined ? path.ttl :
|
|
945
|
+
const ttlToUse = path.ttl !== undefined ? path.ttl : 100;
|
|
947
946
|
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$4, "IndustriesRecordAggregation", VERSION$b, RepresentationType$4, equals$b);
|
|
948
947
|
return createLink(key);
|
|
949
948
|
};
|
|
@@ -1742,7 +1741,7 @@ const ingest$3 = function RADOutputRepresentationIngest(input, path, luvio, stor
|
|
|
1742
1741
|
}
|
|
1743
1742
|
}
|
|
1744
1743
|
const key = path.fullPath;
|
|
1745
|
-
const ttlToUse = path.ttl !== undefined ? path.ttl :
|
|
1744
|
+
const ttlToUse = path.ttl !== undefined ? path.ttl : 100;
|
|
1746
1745
|
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$3, "IndustriesRecordAggregation", VERSION$5, RepresentationType$3, equals$5);
|
|
1747
1746
|
return createLink(key);
|
|
1748
1747
|
};
|
|
@@ -1958,7 +1957,7 @@ const ingest$2 = function RecordAggregationDefinitionPartialUpdateOutputRepresen
|
|
|
1958
1957
|
}
|
|
1959
1958
|
}
|
|
1960
1959
|
const key = keyBuilderFromType$2(luvio, input);
|
|
1961
|
-
const ttlToUse = path.ttl !== undefined ? path.ttl :
|
|
1960
|
+
const ttlToUse = path.ttl !== undefined ? path.ttl : 100;
|
|
1962
1961
|
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$2, "IndustriesRecordAggregation", VERSION$4, RepresentationType$2, equals$4);
|
|
1963
1962
|
return createLink(key);
|
|
1964
1963
|
};
|
|
@@ -2063,7 +2062,6 @@ const patchRecordAggregationDefinitionAdapterFactory = (luvio) => {
|
|
|
2063
2062
|
};
|
|
2064
2063
|
};
|
|
2065
2064
|
|
|
2066
|
-
const TTL = 0;
|
|
2067
2065
|
const VERSION$3 = "f0ea8c85a5a54a087ec6802a512e69cd";
|
|
2068
2066
|
function validate$3(obj, path = 'RecordAggregationUpdationOutputRepresentation') {
|
|
2069
2067
|
const v_error = (() => {
|
|
@@ -2134,7 +2132,7 @@ const ingest$1 = function RecordAggregationUpdationOutputRepresentationIngest(in
|
|
|
2134
2132
|
}
|
|
2135
2133
|
}
|
|
2136
2134
|
const key = keyBuilderFromType$1(luvio, input);
|
|
2137
|
-
const ttlToUse =
|
|
2135
|
+
const ttlToUse = path.ttl !== undefined ? path.ttl : 100;
|
|
2138
2136
|
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$1, "IndustriesRecordAggregation", VERSION$3, RepresentationType$1, equals$3);
|
|
2139
2137
|
return createLink(key);
|
|
2140
2138
|
};
|
|
@@ -2253,7 +2251,7 @@ const putRecordAggregationDefinitionAdapterFactory = (luvio) => {
|
|
|
2253
2251
|
};
|
|
2254
2252
|
};
|
|
2255
2253
|
|
|
2256
|
-
const VERSION$2 = "
|
|
2254
|
+
const VERSION$2 = "02daf0b89e25c17101427c70217f6ffb";
|
|
2257
2255
|
function validate$2(obj, path = 'RecordRollupResultColumnOutputRepresentation') {
|
|
2258
2256
|
const v_error = (() => {
|
|
2259
2257
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -2279,11 +2277,26 @@ function validate$2(obj, path = 'RecordRollupResultColumnOutputRepresentation')
|
|
|
2279
2277
|
if (typeof obj_isRedirectionEnabled !== 'boolean') {
|
|
2280
2278
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isRedirectionEnabled + '" (at "' + path_isRedirectionEnabled + '")');
|
|
2281
2279
|
}
|
|
2280
|
+
const obj_isSortable = obj.isSortable;
|
|
2281
|
+
const path_isSortable = path + '.isSortable';
|
|
2282
|
+
if (typeof obj_isSortable !== 'boolean') {
|
|
2283
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSortable + '" (at "' + path_isSortable + '")');
|
|
2284
|
+
}
|
|
2285
|
+
const obj_isTypeName = obj.isTypeName;
|
|
2286
|
+
const path_isTypeName = path + '.isTypeName';
|
|
2287
|
+
if (typeof obj_isTypeName !== 'boolean') {
|
|
2288
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isTypeName + '" (at "' + path_isTypeName + '")');
|
|
2289
|
+
}
|
|
2282
2290
|
const obj_sequence = obj.sequence;
|
|
2283
2291
|
const path_sequence = path + '.sequence';
|
|
2284
2292
|
if (typeof obj_sequence !== 'number' || (typeof obj_sequence === 'number' && Math.floor(obj_sequence) !== obj_sequence)) {
|
|
2285
2293
|
return new TypeError('Expected "integer" but received "' + typeof obj_sequence + '" (at "' + path_sequence + '")');
|
|
2286
2294
|
}
|
|
2295
|
+
const obj_sortByField = obj.sortByField;
|
|
2296
|
+
const path_sortByField = path + '.sortByField';
|
|
2297
|
+
if (typeof obj_sortByField !== 'string') {
|
|
2298
|
+
return new TypeError('Expected "string" but received "' + typeof obj_sortByField + '" (at "' + path_sortByField + '")');
|
|
2299
|
+
}
|
|
2287
2300
|
})();
|
|
2288
2301
|
return v_error === undefined ? null : v_error;
|
|
2289
2302
|
}
|
|
@@ -2309,9 +2322,21 @@ const select$3 = function RecordRollupResultColumnOutputRepresentationSelect() {
|
|
|
2309
2322
|
name: 'isRedirectionEnabled',
|
|
2310
2323
|
kind: 'Scalar'
|
|
2311
2324
|
},
|
|
2325
|
+
{
|
|
2326
|
+
name: 'isSortable',
|
|
2327
|
+
kind: 'Scalar'
|
|
2328
|
+
},
|
|
2329
|
+
{
|
|
2330
|
+
name: 'isTypeName',
|
|
2331
|
+
kind: 'Scalar'
|
|
2332
|
+
},
|
|
2312
2333
|
{
|
|
2313
2334
|
name: 'sequence',
|
|
2314
2335
|
kind: 'Scalar'
|
|
2336
|
+
},
|
|
2337
|
+
{
|
|
2338
|
+
name: 'sortByField',
|
|
2339
|
+
kind: 'Scalar'
|
|
2315
2340
|
}
|
|
2316
2341
|
]
|
|
2317
2342
|
};
|
|
@@ -2322,6 +2347,16 @@ function equals$2(existing, incoming) {
|
|
|
2322
2347
|
if (!(existing_isRedirectionEnabled === incoming_isRedirectionEnabled)) {
|
|
2323
2348
|
return false;
|
|
2324
2349
|
}
|
|
2350
|
+
const existing_isSortable = existing.isSortable;
|
|
2351
|
+
const incoming_isSortable = incoming.isSortable;
|
|
2352
|
+
if (!(existing_isSortable === incoming_isSortable)) {
|
|
2353
|
+
return false;
|
|
2354
|
+
}
|
|
2355
|
+
const existing_isTypeName = existing.isTypeName;
|
|
2356
|
+
const incoming_isTypeName = incoming.isTypeName;
|
|
2357
|
+
if (!(existing_isTypeName === incoming_isTypeName)) {
|
|
2358
|
+
return false;
|
|
2359
|
+
}
|
|
2325
2360
|
const existing_sequence = existing.sequence;
|
|
2326
2361
|
const incoming_sequence = incoming.sequence;
|
|
2327
2362
|
if (!(existing_sequence === incoming_sequence)) {
|
|
@@ -2342,6 +2377,11 @@ function equals$2(existing, incoming) {
|
|
|
2342
2377
|
if (!(existing_fieldLabel === incoming_fieldLabel)) {
|
|
2343
2378
|
return false;
|
|
2344
2379
|
}
|
|
2380
|
+
const existing_sortByField = existing.sortByField;
|
|
2381
|
+
const incoming_sortByField = incoming.sortByField;
|
|
2382
|
+
if (!(existing_sortByField === incoming_sortByField)) {
|
|
2383
|
+
return false;
|
|
2384
|
+
}
|
|
2345
2385
|
return true;
|
|
2346
2386
|
}
|
|
2347
2387
|
|
|
@@ -2558,7 +2598,7 @@ const ingest = function RecordRollupResultOutputRepresentationIngest(input, path
|
|
|
2558
2598
|
}
|
|
2559
2599
|
}
|
|
2560
2600
|
const key = keyBuilderFromType(luvio, input);
|
|
2561
|
-
const ttlToUse = path.ttl !== undefined ? path.ttl :
|
|
2601
|
+
const ttlToUse = path.ttl !== undefined ? path.ttl : 100;
|
|
2562
2602
|
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize, "IndustriesRecordAggregation", VERSION, RepresentationType, equals);
|
|
2563
2603
|
return createLink(key);
|
|
2564
2604
|
};
|
package/dist/es/es2018/types/src/generated/types/RecordAggregationCreationOutputRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
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, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const TTL = 0;
|
|
3
2
|
export declare const VERSION = "360b76c13b79ed8a1d3522d29b8a91e1";
|
|
4
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
4
|
export declare const RepresentationType: string;
|
package/dist/es/es2018/types/src/generated/types/RecordAggregationUpdationOutputRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
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, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const TTL = 0;
|
|
3
2
|
export declare const VERSION = "f0ea8c85a5a54a087ec6802a512e69cd";
|
|
4
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
4
|
export declare const RepresentationType: string;
|
package/dist/es/es2018/types/src/generated/types/RecordRollupResultColumnOutputRepresentation.d.ts
CHANGED
|
@@ -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 = "
|
|
2
|
+
export declare const VERSION = "02daf0b89e25c17101427c70217f6ffb";
|
|
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: RecordRollupResultColumnOutputRepresentation, existing: RecordRollupResultColumnOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): RecordRollupResultColumnOutputRepresentationNormalized;
|
|
@@ -22,8 +22,14 @@ export interface RecordRollupResultColumnOutputRepresentationNormalized {
|
|
|
22
22
|
fieldLabel: string;
|
|
23
23
|
/** Indicates whether clicking on the column label redirects to the relevant record details page (true) or not (false). This field is applicable only to the Name field. */
|
|
24
24
|
isRedirectionEnabled: boolean;
|
|
25
|
+
/** Indicates whether the column is sortable (true) or not (false). */
|
|
26
|
+
isSortable: boolean;
|
|
27
|
+
/** Indicates whether the field is of type Name (true) or not (false). */
|
|
28
|
+
isTypeName: boolean;
|
|
25
29
|
/** The sequence in which the column should appear in the data table. */
|
|
26
30
|
sequence: number;
|
|
31
|
+
/** Represents the field using which the column is sorted. */
|
|
32
|
+
sortByField: string;
|
|
27
33
|
}
|
|
28
34
|
/**
|
|
29
35
|
* Represents the output for fetching Record Rollup Results
|
|
@@ -36,5 +42,8 @@ export interface RecordRollupResultColumnOutputRepresentation {
|
|
|
36
42
|
fieldApiName: string;
|
|
37
43
|
fieldLabel: string;
|
|
38
44
|
isRedirectionEnabled: boolean;
|
|
45
|
+
isSortable: boolean;
|
|
46
|
+
isTypeName: boolean;
|
|
39
47
|
sequence: number;
|
|
48
|
+
sortByField: string;
|
|
40
49
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-recordaggregation",
|
|
3
|
-
"version": "1.287.0-
|
|
3
|
+
"version": "1.287.0-dev2",
|
|
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.287.0-
|
|
43
|
+
"@salesforce/lds-bindings": "^1.287.0-dev2"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.287.0-
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.287.0-dev2"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -265,7 +265,7 @@ const ingest$6 = function RecordAggregationApplicableObjectsOutputRepresentation
|
|
|
265
265
|
}
|
|
266
266
|
}
|
|
267
267
|
const key = path.fullPath;
|
|
268
|
-
const ttlToUse = path.ttl !== undefined ? path.ttl :
|
|
268
|
+
const ttlToUse = path.ttl !== undefined ? path.ttl : 100;
|
|
269
269
|
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$6, "IndustriesRecordAggregation", VERSION$e, RepresentationType$6, equals$e);
|
|
270
270
|
return createLink(key);
|
|
271
271
|
};
|
|
@@ -1061,7 +1061,7 @@ const ingest$5 = function RADOutputRepresentationIngest(input, path, luvio, stor
|
|
|
1061
1061
|
}
|
|
1062
1062
|
}
|
|
1063
1063
|
const key = path.fullPath;
|
|
1064
|
-
const ttlToUse = path.ttl !== undefined ? path.ttl :
|
|
1064
|
+
const ttlToUse = path.ttl !== undefined ? path.ttl : 100;
|
|
1065
1065
|
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$5, "IndustriesRecordAggregation", VERSION$8, RepresentationType$5, equals$8);
|
|
1066
1066
|
return createLink(key);
|
|
1067
1067
|
};
|
|
@@ -1407,7 +1407,7 @@ const ingest$4 = function RecordAggregationEntityApplicableFieldsOutputRepresent
|
|
|
1407
1407
|
}
|
|
1408
1408
|
}
|
|
1409
1409
|
const key = path.fullPath;
|
|
1410
|
-
const ttlToUse = path.ttl !== undefined ? path.ttl :
|
|
1410
|
+
const ttlToUse = path.ttl !== undefined ? path.ttl : 100;
|
|
1411
1411
|
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$4, "IndustriesRecordAggregation", VERSION$6, RepresentationType$4, equals$6);
|
|
1412
1412
|
return createLink(key);
|
|
1413
1413
|
};
|
|
@@ -1623,7 +1623,7 @@ const ingest$3 = function RecordAggregationDefinitionPartialUpdateOutputRepresen
|
|
|
1623
1623
|
}
|
|
1624
1624
|
}
|
|
1625
1625
|
const key = keyBuilderFromType$3(luvio, input);
|
|
1626
|
-
const ttlToUse = path.ttl !== undefined ? path.ttl :
|
|
1626
|
+
const ttlToUse = path.ttl !== undefined ? path.ttl : 100;
|
|
1627
1627
|
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$3, "IndustriesRecordAggregation", VERSION$5, RepresentationType$3, equals$5);
|
|
1628
1628
|
return createLink(key);
|
|
1629
1629
|
};
|
|
@@ -1728,7 +1728,7 @@ const patchRecordAggregationDefinitionAdapterFactory = (luvio) => {
|
|
|
1728
1728
|
};
|
|
1729
1729
|
};
|
|
1730
1730
|
|
|
1731
|
-
const VERSION$4 = "
|
|
1731
|
+
const VERSION$4 = "02daf0b89e25c17101427c70217f6ffb";
|
|
1732
1732
|
function validate$9(obj, path = 'RecordRollupResultColumnOutputRepresentation') {
|
|
1733
1733
|
const v_error = (() => {
|
|
1734
1734
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -1754,11 +1754,26 @@ function validate$9(obj, path = 'RecordRollupResultColumnOutputRepresentation')
|
|
|
1754
1754
|
if (typeof obj_isRedirectionEnabled !== 'boolean') {
|
|
1755
1755
|
return new TypeError('Expected "boolean" but received "' + typeof obj_isRedirectionEnabled + '" (at "' + path_isRedirectionEnabled + '")');
|
|
1756
1756
|
}
|
|
1757
|
+
const obj_isSortable = obj.isSortable;
|
|
1758
|
+
const path_isSortable = path + '.isSortable';
|
|
1759
|
+
if (typeof obj_isSortable !== 'boolean') {
|
|
1760
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSortable + '" (at "' + path_isSortable + '")');
|
|
1761
|
+
}
|
|
1762
|
+
const obj_isTypeName = obj.isTypeName;
|
|
1763
|
+
const path_isTypeName = path + '.isTypeName';
|
|
1764
|
+
if (typeof obj_isTypeName !== 'boolean') {
|
|
1765
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isTypeName + '" (at "' + path_isTypeName + '")');
|
|
1766
|
+
}
|
|
1757
1767
|
const obj_sequence = obj.sequence;
|
|
1758
1768
|
const path_sequence = path + '.sequence';
|
|
1759
1769
|
if (typeof obj_sequence !== 'number' || (typeof obj_sequence === 'number' && Math.floor(obj_sequence) !== obj_sequence)) {
|
|
1760
1770
|
return new TypeError('Expected "integer" but received "' + typeof obj_sequence + '" (at "' + path_sequence + '")');
|
|
1761
1771
|
}
|
|
1772
|
+
const obj_sortByField = obj.sortByField;
|
|
1773
|
+
const path_sortByField = path + '.sortByField';
|
|
1774
|
+
if (typeof obj_sortByField !== 'string') {
|
|
1775
|
+
return new TypeError('Expected "string" but received "' + typeof obj_sortByField + '" (at "' + path_sortByField + '")');
|
|
1776
|
+
}
|
|
1762
1777
|
})();
|
|
1763
1778
|
return v_error === undefined ? null : v_error;
|
|
1764
1779
|
}
|
|
@@ -1784,9 +1799,21 @@ const select$7 = function RecordRollupResultColumnOutputRepresentationSelect() {
|
|
|
1784
1799
|
name: 'isRedirectionEnabled',
|
|
1785
1800
|
kind: 'Scalar'
|
|
1786
1801
|
},
|
|
1802
|
+
{
|
|
1803
|
+
name: 'isSortable',
|
|
1804
|
+
kind: 'Scalar'
|
|
1805
|
+
},
|
|
1806
|
+
{
|
|
1807
|
+
name: 'isTypeName',
|
|
1808
|
+
kind: 'Scalar'
|
|
1809
|
+
},
|
|
1787
1810
|
{
|
|
1788
1811
|
name: 'sequence',
|
|
1789
1812
|
kind: 'Scalar'
|
|
1813
|
+
},
|
|
1814
|
+
{
|
|
1815
|
+
name: 'sortByField',
|
|
1816
|
+
kind: 'Scalar'
|
|
1790
1817
|
}
|
|
1791
1818
|
]
|
|
1792
1819
|
};
|
|
@@ -1797,6 +1824,16 @@ function equals$4(existing, incoming) {
|
|
|
1797
1824
|
if (!(existing_isRedirectionEnabled === incoming_isRedirectionEnabled)) {
|
|
1798
1825
|
return false;
|
|
1799
1826
|
}
|
|
1827
|
+
const existing_isSortable = existing.isSortable;
|
|
1828
|
+
const incoming_isSortable = incoming.isSortable;
|
|
1829
|
+
if (!(existing_isSortable === incoming_isSortable)) {
|
|
1830
|
+
return false;
|
|
1831
|
+
}
|
|
1832
|
+
const existing_isTypeName = existing.isTypeName;
|
|
1833
|
+
const incoming_isTypeName = incoming.isTypeName;
|
|
1834
|
+
if (!(existing_isTypeName === incoming_isTypeName)) {
|
|
1835
|
+
return false;
|
|
1836
|
+
}
|
|
1800
1837
|
const existing_sequence = existing.sequence;
|
|
1801
1838
|
const incoming_sequence = incoming.sequence;
|
|
1802
1839
|
if (!(existing_sequence === incoming_sequence)) {
|
|
@@ -1817,6 +1854,11 @@ function equals$4(existing, incoming) {
|
|
|
1817
1854
|
if (!(existing_fieldLabel === incoming_fieldLabel)) {
|
|
1818
1855
|
return false;
|
|
1819
1856
|
}
|
|
1857
|
+
const existing_sortByField = existing.sortByField;
|
|
1858
|
+
const incoming_sortByField = incoming.sortByField;
|
|
1859
|
+
if (!(existing_sortByField === incoming_sortByField)) {
|
|
1860
|
+
return false;
|
|
1861
|
+
}
|
|
1820
1862
|
return true;
|
|
1821
1863
|
}
|
|
1822
1864
|
|
|
@@ -2033,7 +2075,7 @@ const ingest$2 = function RecordRollupResultOutputRepresentationIngest(input, pa
|
|
|
2033
2075
|
}
|
|
2034
2076
|
}
|
|
2035
2077
|
const key = keyBuilderFromType$2(luvio, input);
|
|
2036
|
-
const ttlToUse = path.ttl !== undefined ? path.ttl :
|
|
2078
|
+
const ttlToUse = path.ttl !== undefined ? path.ttl : 100;
|
|
2037
2079
|
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$2, "IndustriesRecordAggregation", VERSION$2, RepresentationType$2, equals$2);
|
|
2038
2080
|
return createLink(key);
|
|
2039
2081
|
};
|
|
@@ -2282,7 +2324,6 @@ function validate$2(obj, path = 'RecordAggregationNodeInputRepresentation') {
|
|
|
2282
2324
|
return v_error === undefined ? null : v_error;
|
|
2283
2325
|
}
|
|
2284
2326
|
|
|
2285
|
-
const TTL$1 = 0;
|
|
2286
2327
|
const VERSION$1 = "360b76c13b79ed8a1d3522d29b8a91e1";
|
|
2287
2328
|
function validate$1(obj, path = 'RecordAggregationCreationOutputRepresentation') {
|
|
2288
2329
|
const v_error = (() => {
|
|
@@ -2367,7 +2408,7 @@ const ingest$1 = function RecordAggregationCreationOutputRepresentationIngest(in
|
|
|
2367
2408
|
}
|
|
2368
2409
|
}
|
|
2369
2410
|
const key = keyBuilderFromType$1(luvio, input);
|
|
2370
|
-
const ttlToUse =
|
|
2411
|
+
const ttlToUse = path.ttl !== undefined ? path.ttl : 100;
|
|
2371
2412
|
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$1, "IndustriesRecordAggregation", VERSION$1, RepresentationType$1, equals$1);
|
|
2372
2413
|
return createLink(key);
|
|
2373
2414
|
};
|
|
@@ -2485,7 +2526,6 @@ const postRecordAggregationCreationAdapterFactory = (luvio) => {
|
|
|
2485
2526
|
};
|
|
2486
2527
|
};
|
|
2487
2528
|
|
|
2488
|
-
const TTL = 0;
|
|
2489
2529
|
const VERSION = "f0ea8c85a5a54a087ec6802a512e69cd";
|
|
2490
2530
|
function validate(obj, path = 'RecordAggregationUpdationOutputRepresentation') {
|
|
2491
2531
|
const v_error = (() => {
|
|
@@ -2556,7 +2596,7 @@ const ingest = function RecordAggregationUpdationOutputRepresentationIngest(inpu
|
|
|
2556
2596
|
}
|
|
2557
2597
|
}
|
|
2558
2598
|
const key = keyBuilderFromType(luvio, input);
|
|
2559
|
-
const ttlToUse =
|
|
2599
|
+
const ttlToUse = path.ttl !== undefined ? path.ttl : 100;
|
|
2560
2600
|
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize, "IndustriesRecordAggregation", VERSION, RepresentationType, equals);
|
|
2561
2601
|
return createLink(key);
|
|
2562
2602
|
};
|
|
@@ -2740,4 +2780,4 @@ withDefaultLuvio((luvio) => {
|
|
|
2740
2780
|
});
|
|
2741
2781
|
|
|
2742
2782
|
export { getRecordAggregationApplicableObjects, getRecordAggregationApplicableObjects_imperative, getRecordAggregationDefinition, getRecordAggregationDefinition_imperative, getRecordAggregationEntityApplicableFields, getRecordAggregationEntityApplicableFields_imperative, patchRecordAggregationDefinition, postGenerateRecordRollupResult, postRecordAggregationCreation, putRecordAggregationDefinition };
|
|
2743
|
-
// version: 1.287.0-
|
|
2783
|
+
// version: 1.287.0-dev2-0906f6561
|
package/src/raml/api.raml
CHANGED
|
@@ -385,6 +385,15 @@ types:
|
|
|
385
385
|
isRedirectionEnabled:
|
|
386
386
|
description: Indicates whether clicking on the column label redirects to the relevant record details page (true) or not (false). This field is applicable only to the Name field.
|
|
387
387
|
type: boolean
|
|
388
|
+
isSortable:
|
|
389
|
+
description: Indicates whether the column is sortable (true) or not (false).
|
|
390
|
+
type: boolean
|
|
391
|
+
isTypeName:
|
|
392
|
+
description: Indicates whether the field is of type Name (true) or not (false).
|
|
393
|
+
type: boolean
|
|
394
|
+
sortByField:
|
|
395
|
+
description: Represents the field using which the column is sorted.
|
|
396
|
+
type: string
|
|
388
397
|
RecordRollupResultInputRepresentation:
|
|
389
398
|
description: Input representation for fetching record aggregation result
|
|
390
399
|
type: object
|
package/src/raml/luvio.raml
CHANGED
|
@@ -5,15 +5,13 @@ uses:
|
|
|
5
5
|
luvio: luvio://annotations.raml
|
|
6
6
|
|
|
7
7
|
(luvio.keyPrefix): 'IndustriesRecordAggregation'
|
|
8
|
-
(luvio.ttl):
|
|
8
|
+
(luvio.ttl): 100
|
|
9
9
|
|
|
10
10
|
types:
|
|
11
11
|
RecordAggregationCreationOutputRepresentation:
|
|
12
|
-
(luvio.ttl): 0
|
|
13
12
|
(luvio.key):
|
|
14
13
|
id: recordAggregationDefinitionId
|
|
15
14
|
RecordAggregationUpdationOutputRepresentation:
|
|
16
|
-
(luvio.ttl): 0
|
|
17
15
|
(luvio.key):
|
|
18
16
|
id: statusCode
|
|
19
17
|
RecordRollupResultOutputRepresentation:
|