@salesforce/lds-adapters-uiapi 1.354.0-dev17 → 1.354.0-dev18

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.
@@ -9,6 +9,7 @@ export interface GetRelatedListRecordsConfig {
9
9
  parentRecordId: string;
10
10
  relatedListId: string;
11
11
  fields?: Array<string>;
12
+ includeColumnLabels?: boolean;
12
13
  optionalFields?: Array<string>;
13
14
  pageSize?: number;
14
15
  pageToken?: string;
@@ -8,6 +8,7 @@ export interface ResourceRequestConfig {
8
8
  };
9
9
  body: {
10
10
  fields?: Array<string>;
11
+ includeColumnLabels?: boolean;
11
12
  optionalFields?: Array<string>;
12
13
  pageSize?: number;
13
14
  pageToken?: string;
@@ -3,7 +3,7 @@ import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $
3
3
  import { PaginationParams as pagination_syntheticCursor_PaginationParams } from '../pagination/syntheticCursor';
4
4
  import { RecordRepresentation as RecordRepresentation_RecordRepresentation } from './RecordRepresentation';
5
5
  export declare const TTL = 30000;
6
- export declare const VERSION = "62467c27c19349b70c9db2a8d9d591d9";
6
+ export declare const VERSION = "ecedd058ac9cfc9b51de0f2c00276ce8";
7
7
  export declare function validate(obj: any, path?: string): TypeError | null;
8
8
  export declare const RepresentationType: string;
9
9
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -44,6 +44,8 @@ export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$lu
44
44
  * where (string | null): where
45
45
  */
46
46
  export interface RelatedListRecordCollectionRepresentationNormalized {
47
+ /** A map of column API name to column label. */
48
+ columnLabels?: unknown;
47
49
  /** The total count of records returned. */
48
50
  count: number;
49
51
  /** The token for the current page of records. */
@@ -84,6 +86,7 @@ export interface RelatedListRecordCollectionRepresentationNormalized {
84
86
  * where (string | null): where
85
87
  */
86
88
  export interface RelatedListRecordCollectionRepresentation {
89
+ columnLabels?: unknown;
87
90
  count: number;
88
91
  currentPageToken: string;
89
92
  currentPageUrl: string | null;
@@ -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 = "541567e0cd578bd356467b2690c7f65c";
2
+ export declare const VERSION = "42875a6869d6a0cd8ef21f16e6c6d9f4";
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: RelatedListRecordsInputRepresentation, existing: RelatedListRecordsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): RelatedListRecordsInputRepresentationNormalized;
@@ -16,6 +16,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
16
16
  export interface RelatedListRecordsInputRepresentationNormalized {
17
17
  /** Additional fields queried for the records returned. If the field is not available to the user, an error occurs. */
18
18
  fields?: Array<string>;
19
+ /** Flag to include includeColumnLabels for ease of localization. */
20
+ includeColumnLabels?: boolean;
19
21
  /** Additional fields queried for the records returned. If the field is not available to the user, no error occurs and the field isn’t included in the records. */
20
22
  optionalFields?: Array<string>;
21
23
  /** The number of list records viewed at one time. The default value is 50. Value can be 1–2000. */
@@ -35,6 +37,7 @@ export interface RelatedListRecordsInputRepresentationNormalized {
35
37
  */
36
38
  export interface RelatedListRecordsInputRepresentation {
37
39
  fields?: Array<string>;
40
+ includeColumnLabels?: boolean;
38
41
  optionalFields?: Array<string>;
39
42
  pageSize?: number;
40
43
  pageToken?: string;
@@ -31168,12 +31168,19 @@ function equalsMetadata(existingMetadata, incomingMetadata) {
31168
31168
  }
31169
31169
 
31170
31170
  const TTL$g = 30000;
31171
- const VERSION$1I = "62467c27c19349b70c9db2a8d9d591d9";
31171
+ const VERSION$1I = "ecedd058ac9cfc9b51de0f2c00276ce8";
31172
31172
  function validate$E(obj, path = 'RelatedListRecordCollectionRepresentation') {
31173
31173
  const v_error = (() => {
31174
31174
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
31175
31175
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
31176
31176
  }
31177
+ if (obj.columnLabels !== undefined) {
31178
+ const obj_columnLabels = obj.columnLabels;
31179
+ const path_columnLabels = path + '.columnLabels';
31180
+ if (obj_columnLabels === undefined) {
31181
+ return new TypeError('Expected "defined" but received "' + typeof obj_columnLabels + '" (at "' + path_columnLabels + '")');
31182
+ }
31183
+ }
31177
31184
  const obj_count = obj.count;
31178
31185
  const path_count = path + '.count';
31179
31186
  if (typeof obj_count !== 'number' || (typeof obj_count === 'number' && Math.floor(obj_count) !== obj_count)) {
@@ -31545,6 +31552,14 @@ const dynamicSelect$4 = function dynamicRelatedListRecordCollectionRepresentatio
31545
31552
  reader.enterPath('count');
31546
31553
  reader.readScalar('count', metadataProperties, sink);
31547
31554
  reader.exitPath();
31555
+ reader.enterPath('columnLabels');
31556
+ reader.readObject('columnLabels', {
31557
+ name: 'columnLabels',
31558
+ kind: 'Object',
31559
+ // Any
31560
+ required: false
31561
+ }, source, sink);
31562
+ reader.exitPath();
31548
31563
  reader.enterPath('fields');
31549
31564
  reader.readScalarPlural('fields', source, sink, true);
31550
31565
  reader.exitPath();
@@ -31587,6 +31602,19 @@ function equals$g(existing, incoming) {
31587
31602
  if (!(existing_currentPageToken === incoming_currentPageToken)) {
31588
31603
  return false;
31589
31604
  }
31605
+ const existing_columnLabels = existing.columnLabels;
31606
+ const incoming_columnLabels = incoming.columnLabels;
31607
+ // if at least one of these optionals is defined
31608
+ if (existing_columnLabels !== undefined || incoming_columnLabels !== undefined) {
31609
+ // if one of these is not defined we know the other is defined and therefore
31610
+ // not equal
31611
+ if (existing_columnLabels === undefined || incoming_columnLabels === undefined) {
31612
+ return false;
31613
+ }
31614
+ if (JSONStringify(incoming_columnLabels) !== JSONStringify(existing_columnLabels)) {
31615
+ return false;
31616
+ }
31617
+ }
31590
31618
  const existing_currentPageUrl = existing.currentPageUrl;
31591
31619
  const incoming_currentPageUrl = incoming.currentPageUrl;
31592
31620
  if (!(existing_currentPageUrl === incoming_currentPageUrl)) {
@@ -31824,10 +31852,11 @@ function createPaginationParams(params) {
31824
31852
  }
31825
31853
  function keyBuilder$1S(luvio, params) {
31826
31854
  return keyBuilder$1T(luvio, {
31855
+ includeColumnLabels: params.body.includeColumnLabels || null,
31856
+ relatedListId: params.urlParams.relatedListId,
31827
31857
  sortBy: params.body.sortBy || [],
31828
- where: params.body.where || null,
31829
31858
  parentRecordId: params.urlParams.parentRecordId,
31830
- relatedListId: params.urlParams.relatedListId
31859
+ where: params.body.where || null
31831
31860
  });
31832
31861
  }
31833
31862
  function getResponseCacheKeys$j(storeKeyMap, luvio, resourceParams, response) {
@@ -32249,6 +32278,7 @@ const getRelatedListRecords_ConfigPropertyMetadata = [
32249
32278
  generateParamConfigMetadata('parentRecordId', true, 0 /* UrlParameter */, 0 /* String */, false, getRecordId18),
32250
32279
  generateParamConfigMetadata('relatedListId', true, 0 /* UrlParameter */, 0 /* String */),
32251
32280
  generateParamConfigMetadata('fields', false, 2 /* Body */, 0 /* String */, true),
32281
+ generateParamConfigMetadata('includeColumnLabels', false, 2 /* Body */, 1 /* Boolean */),
32252
32282
  generateParamConfigMetadata('optionalFields', false, 2 /* Body */, 0 /* String */, true),
32253
32283
  generateParamConfigMetadata('pageSize', false, 2 /* Body */, 3 /* Integer */),
32254
32284
  generateParamConfigMetadata('pageToken', false, 2 /* Body */, 0 /* String */),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-uiapi",
3
- "version": "1.354.0-dev17",
3
+ "version": "1.354.0-dev18",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "Wire adapters for record related UI API endpoints",
6
6
  "main": "dist/es/es2018/uiapi-records-service.js",
@@ -68,13 +68,13 @@
68
68
  }
69
69
  },
70
70
  "dependencies": {
71
- "@salesforce/lds-bindings": "^1.354.0-dev17",
72
- "@salesforce/lds-default-luvio": "^1.354.0-dev17"
71
+ "@salesforce/lds-bindings": "^1.354.0-dev18",
72
+ "@salesforce/lds-default-luvio": "^1.354.0-dev18"
73
73
  },
74
74
  "devDependencies": {
75
- "@salesforce/lds-compiler-plugins": "^1.354.0-dev17",
76
- "@salesforce/lds-jest": "^1.354.0-dev17",
77
- "@salesforce/lds-store-binary": "^1.354.0-dev17"
75
+ "@salesforce/lds-compiler-plugins": "^1.354.0-dev18",
76
+ "@salesforce/lds-jest": "^1.354.0-dev18",
77
+ "@salesforce/lds-store-binary": "^1.354.0-dev18"
78
78
  },
79
79
  "luvioBundlesize": [
80
80
  {
@@ -24214,4 +24214,4 @@ register({
24214
24214
  });
24215
24215
 
24216
24216
  export { configurationForGraphQLAdapters as configuration, graphql, factory$1 as graphqlAdapterFactory, graphqlBatch, graphqlBatch_imperative, graphql_imperative };
24217
- // version: 1.354.0-dev17-0989532028
24217
+ // version: 1.354.0-dev18-42dc52a64b
package/sfdc/index.js CHANGED
@@ -30675,12 +30675,19 @@ function equalsMetadata(existingMetadata, incomingMetadata) {
30675
30675
  }
30676
30676
 
30677
30677
  const TTL$a = 30000;
30678
- const VERSION$c = "62467c27c19349b70c9db2a8d9d591d9";
30678
+ const VERSION$c = "ecedd058ac9cfc9b51de0f2c00276ce8";
30679
30679
  function validate$A(obj, path = 'RelatedListRecordCollectionRepresentation') {
30680
30680
  const v_error = (() => {
30681
30681
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
30682
30682
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
30683
30683
  }
30684
+ if (obj.columnLabels !== undefined) {
30685
+ const obj_columnLabels = obj.columnLabels;
30686
+ const path_columnLabels = path + '.columnLabels';
30687
+ if (obj_columnLabels === undefined) {
30688
+ return new TypeError('Expected "defined" but received "' + typeof obj_columnLabels + '" (at "' + path_columnLabels + '")');
30689
+ }
30690
+ }
30684
30691
  const obj_count = obj.count;
30685
30692
  const path_count = path + '.count';
30686
30693
  if (typeof obj_count !== 'number' || (typeof obj_count === 'number' && Math.floor(obj_count) !== obj_count)) {
@@ -31052,6 +31059,14 @@ const dynamicSelect$4 = function dynamicRelatedListRecordCollectionRepresentatio
31052
31059
  reader.enterPath('count');
31053
31060
  reader.readScalar('count', metadataProperties, sink);
31054
31061
  reader.exitPath();
31062
+ reader.enterPath('columnLabels');
31063
+ reader.readObject('columnLabels', {
31064
+ name: 'columnLabels',
31065
+ kind: 'Object',
31066
+ // Any
31067
+ required: false
31068
+ }, source, sink);
31069
+ reader.exitPath();
31055
31070
  reader.enterPath('fields');
31056
31071
  reader.readScalarPlural('fields', source, sink, true);
31057
31072
  reader.exitPath();
@@ -31094,6 +31109,19 @@ function equals$c(existing, incoming) {
31094
31109
  if (!(existing_currentPageToken === incoming_currentPageToken)) {
31095
31110
  return false;
31096
31111
  }
31112
+ const existing_columnLabels = existing.columnLabels;
31113
+ const incoming_columnLabels = incoming.columnLabels;
31114
+ // if at least one of these optionals is defined
31115
+ if (existing_columnLabels !== undefined || incoming_columnLabels !== undefined) {
31116
+ // if one of these is not defined we know the other is defined and therefore
31117
+ // not equal
31118
+ if (existing_columnLabels === undefined || incoming_columnLabels === undefined) {
31119
+ return false;
31120
+ }
31121
+ if (JSONStringify(incoming_columnLabels) !== JSONStringify(existing_columnLabels)) {
31122
+ return false;
31123
+ }
31124
+ }
31097
31125
  const existing_currentPageUrl = existing.currentPageUrl;
31098
31126
  const incoming_currentPageUrl = incoming.currentPageUrl;
31099
31127
  if (!(existing_currentPageUrl === incoming_currentPageUrl)) {
@@ -31331,10 +31359,11 @@ function createPaginationParams(params) {
31331
31359
  }
31332
31360
  function keyBuilder$s(luvio, params) {
31333
31361
  return keyBuilder$t(luvio, {
31362
+ includeColumnLabels: params.body.includeColumnLabels || null,
31363
+ relatedListId: params.urlParams.relatedListId,
31334
31364
  sortBy: params.body.sortBy || [],
31335
- where: params.body.where || null,
31336
31365
  parentRecordId: params.urlParams.parentRecordId,
31337
- relatedListId: params.urlParams.relatedListId
31366
+ where: params.body.where || null
31338
31367
  });
31339
31368
  }
31340
31369
  function getResponseCacheKeys$h(storeKeyMap, luvio, resourceParams, response) {
@@ -31756,6 +31785,7 @@ const getRelatedListRecords_ConfigPropertyMetadata = [
31756
31785
  generateParamConfigMetadata('parentRecordId', true, 0 /* UrlParameter */, 0 /* String */, false, getRecordId18),
31757
31786
  generateParamConfigMetadata('relatedListId', true, 0 /* UrlParameter */, 0 /* String */),
31758
31787
  generateParamConfigMetadata('fields', false, 2 /* Body */, 0 /* String */, true),
31788
+ generateParamConfigMetadata('includeColumnLabels', false, 2 /* Body */, 1 /* Boolean */),
31759
31789
  generateParamConfigMetadata('optionalFields', false, 2 /* Body */, 0 /* String */, true),
31760
31790
  generateParamConfigMetadata('pageSize', false, 2 /* Body */, 3 /* Integer */),
31761
31791
  generateParamConfigMetadata('pageToken', false, 2 /* Body */, 0 /* String */),
@@ -38946,4 +38976,4 @@ withDefaultLuvio((luvio) => {
38946
38976
  });
38947
38977
 
38948
38978
  export { API_NAMESPACE, InMemoryRecordRepresentationQueryEvaluator, MRU, RepresentationType$J as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$O as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$V as RecordRepresentationRepresentationType, TTL$z as RecordRepresentationTTL, RepresentationType$V as RecordRepresentationType, VERSION$1g as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, getFieldApiNamesArray as coerceFieldIdArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configurationForRestAdapters as configuration, createContentDocumentAndVersion, createContentVersion, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfo, createRecord, createRelatedListAdapterWithPrediction, createRelatedListPlusAdapterWithPrediction, deleteListInfo, deleteRecord, executeBatchRecordOperations, extractRecordIdFromStoreKey, getActionOverrides, getActionOverrides_imperative, getAllApps, getAllApps_imperative, getAppDetails, getAppDetails_imperative, getDuplicateConfiguration, getDuplicateConfiguration_imperative, getDuplicates, getDuplicates_imperative, getFlexipageFormulaOverrides, getFlexipageFormulaOverrides_imperative, getGlobalActions, getGlobalActions_imperative, getKeywordSearchResults, getKeywordSearchResults_imperative, getLayout, getLayoutUserState, getLayoutUserState_imperative, getLayout_imperative, getListInfoByName, getListInfoByNameAdapterFactory, getListInfoByName_imperative, getListInfosByName, getListInfosByName_imperative, getListInfosByObjectName, getListInfosByObjectNameAdapterFactory, getListInfosByObjectName_imperative, getListObjectInfo, getListObjectInfoAdapterFactory, getListObjectInfo_imperative, getListPreferences, getListPreferences_imperative, getListRecordsByName, factory$a as getListRecordsByNameAdapterFactory, getListRecordsByName_imperative, getListUi, getListUi_imperative, getLookupActions, getLookupActions_imperative, getLookupMetadata, getLookupMetadata_imperative, getLookupRecords, getLookupRecords_imperative, getNavItems, getNavItems_imperative, getObjectCreateActions, getObjectCreateActions_imperative, getObjectInfo, getObjectInfoAdapterFactory, getObjectInfoDirectoryAdapterFactory, getObjectInfo_imperative, getObjectInfos, getObjectInfosAdapterFactory, getObjectInfos_imperative, getPathLayout, getPathLayout_imperative, getPicklistValues, getPicklistValuesByRecordType, getPicklistValuesByRecordType_imperative, getPicklistValues_imperative, getQuickActionDefaults, getQuickActionDefaults_imperative, getQuickActionInfo, getQuickActionInfo_imperative, getQuickActionLayout, getQuickActionLayout_imperative, getRecord, getRecordActions, getRecordActionsAdapterFactory, getRecordActions_imperative, factory$f as getRecordAdapterFactory, getRecordAvatars, getRecordAvatarsAdapterFactory, getRecordAvatars_imperative, getRecordCreateDefaults, getRecordCreateDefaults_imperative, getRecordEditActions, getRecordEditActions_imperative, getRecordId18, getRecordId18Array, getRecordIngestionOverride, getRecordNotifyChange, getRecordTemplateClone, getRecordTemplateClone_imperative, getRecordTemplateCreate, getRecordTemplateCreate_imperative, getRecordUi, getRecordUi_imperative, getRecord_imperative, getRecords, getRecordsAdapterFactory, getRecords_imperative, getRelatedListActions, getRelatedListActionsAdapterFactory, getRelatedListActions_imperative, getRelatedListCount, getRelatedListCount_imperative, getRelatedListInfo, getRelatedListInfoAdapterFactory, getRelatedListInfoBatch, getRelatedListInfoBatchAdapterFactory, getRelatedListInfoBatch_imperative, getRelatedListInfo_imperative, getRelatedListPreferences, getRelatedListPreferencesBatch, getRelatedListPreferencesBatch_imperative, getRelatedListPreferences_imperative, getRelatedListRecordActions, getRelatedListRecordActions_imperative, getRelatedListRecords, getRelatedListRecordsAdapterFactory, getRelatedListRecordsBatch, getRelatedListRecordsBatchAdapterFactory, getRelatedListRecordsBatch_imperative, getRelatedListRecords_imperative, getRelatedListsActions, getRelatedListsActionsAdapterFactory, getRelatedListsActions_imperative, getRelatedListsCount, getRelatedListsCount_imperative, getRelatedListsInfo, getRelatedListsInfoAdapterFactory, getRelatedListsInfo_imperative, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadata, getSearchFilterMetadata_imperative, getSearchFilterOptions, getSearchFilterOptions_imperative, getSearchResults, getSearchResults_imperative, getTypeCacheKeys$X as getTypeCacheKeysRecord, ingest as ingestContentDocumentCompositeRepresentation, ingest$H as ingestObjectInfo, ingest$B as ingestQuickActionExecutionRepresentation, ingest$O as ingestRecord, instrument, isStoreKeyRecordViewEntity, isSupportedEntity, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$D as keyBuilderFromTypeRecordRepresentation, keyBuilder$1Y as keyBuilderObjectInfo, keyBuilder$1R as keyBuilderQuickActionExecutionRepresentation, keyBuilder$29 as keyBuilderRecord, notifyAllListInfoSummaryUpdateAvailable, notifyAllListRecordUpdateAvailable, notifyListInfoSummaryUpdateAvailable, notifyListInfoUpdateAvailable, notifyListRecordCollectionUpdateAvailable, notifyListViewSummaryUpdateAvailable, notifyQuickActionDefaultsUpdateAvailable, notifyRecordUpdateAvailable, performQuickAction, performUpdateRecordQuickAction, refresh, registerPrefetcher, updateLayoutUserState, updateListInfoByName, updateListPreferences, updateRecord, updateRecordAvatar, updateRelatedListInfo, updateRelatedListPreferences };
38949
- // version: 1.354.0-dev17-0989532028
38979
+ // version: 1.354.0-dev18-42dc52a64b
package/src/raml/api.raml CHANGED
@@ -4136,6 +4136,10 @@ types:
4136
4136
  where:
4137
4137
  description: The where condition requested when these records were fetched.
4138
4138
  type: string | nil # TODO: Hand rolled
4139
+ columnLabels:
4140
+ description: A map of column API name to column label.
4141
+ type: any
4142
+ required: false #handrolled
4139
4143
  BatchRelatedListCountRepresentation: # TODO: Handrolled
4140
4144
  description: BatchRelatedListCountRepresentation
4141
4145
  type: object
@@ -4211,6 +4215,10 @@ types:
4211
4215
  required: false #TODO: handrolled
4212
4216
  items:
4213
4217
  type: string
4218
+ includeColumnLabels:
4219
+ description: Flag to include includeColumnLabels for ease of localization.
4220
+ type: boolean
4221
+ required: false
4214
4222
  optionalFields:
4215
4223
  description: Additional fields queried for the records returned. If the field
4216
4224
  is not available to the user, no error occurs and the field isn’t included
@@ -8567,6 +8575,9 @@ types:
8567
8575
  # items:
8568
8576
  # type: string
8569
8577
  # (oas-collectionFormat): csv
8578
+ # includeColumnLabels:
8579
+ # type: boolean
8580
+ # required: false
8570
8581
  # optionalFields:
8571
8582
  # type: array
8572
8583
  # required: false
@@ -1851,6 +1851,7 @@ types:
1851
1851
  (luvio.key):
1852
1852
  sortBy: body.sortBy || []
1853
1853
  where: body.where || null
1854
+ includeColumnLabels: body.includeColumnLabels || null
1854
1855
  parentRecordId: urlParams.parentRecordId
1855
1856
  relatedListId: urlParams.relatedListId
1856
1857
  (luvio.paginationParams):