@salesforce/lds-adapters-uiapi 1.368.0 → 1.369.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.
@@ -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;
@@ -31226,12 +31226,19 @@ function equalsMetadata(existingMetadata, incomingMetadata) {
31226
31226
  }
31227
31227
 
31228
31228
  const TTL$g = 30000;
31229
- const VERSION$1R = "62467c27c19349b70c9db2a8d9d591d9";
31229
+ const VERSION$1R = "ecedd058ac9cfc9b51de0f2c00276ce8";
31230
31230
  function validate$E(obj, path = 'RelatedListRecordCollectionRepresentation') {
31231
31231
  const v_error = (() => {
31232
31232
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
31233
31233
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
31234
31234
  }
31235
+ if (obj.columnLabels !== undefined) {
31236
+ const obj_columnLabels = obj.columnLabels;
31237
+ const path_columnLabels = path + '.columnLabels';
31238
+ if (obj_columnLabels === undefined) {
31239
+ return new TypeError('Expected "defined" but received "' + typeof obj_columnLabels + '" (at "' + path_columnLabels + '")');
31240
+ }
31241
+ }
31235
31242
  const obj_count = obj.count;
31236
31243
  const path_count = path + '.count';
31237
31244
  if (typeof obj_count !== 'number' || (typeof obj_count === 'number' && Math.floor(obj_count) !== obj_count)) {
@@ -31603,6 +31610,14 @@ const dynamicSelect$4 = function dynamicRelatedListRecordCollectionRepresentatio
31603
31610
  reader.enterPath('count');
31604
31611
  reader.readScalar('count', metadataProperties, sink);
31605
31612
  reader.exitPath();
31613
+ reader.enterPath('columnLabels');
31614
+ reader.readObject('columnLabels', {
31615
+ name: 'columnLabels',
31616
+ kind: 'Object',
31617
+ // Any
31618
+ required: false
31619
+ }, source, sink);
31620
+ reader.exitPath();
31606
31621
  reader.enterPath('fields');
31607
31622
  reader.readScalarPlural('fields', source, sink, true);
31608
31623
  reader.exitPath();
@@ -31645,6 +31660,19 @@ function equals$g(existing, incoming) {
31645
31660
  if (!(existing_currentPageToken === incoming_currentPageToken)) {
31646
31661
  return false;
31647
31662
  }
31663
+ const existing_columnLabels = existing.columnLabels;
31664
+ const incoming_columnLabels = incoming.columnLabels;
31665
+ // if at least one of these optionals is defined
31666
+ if (existing_columnLabels !== undefined || incoming_columnLabels !== undefined) {
31667
+ // if one of these is not defined we know the other is defined and therefore
31668
+ // not equal
31669
+ if (existing_columnLabels === undefined || incoming_columnLabels === undefined) {
31670
+ return false;
31671
+ }
31672
+ if (JSONStringify(incoming_columnLabels) !== JSONStringify(existing_columnLabels)) {
31673
+ return false;
31674
+ }
31675
+ }
31648
31676
  const existing_currentPageUrl = existing.currentPageUrl;
31649
31677
  const incoming_currentPageUrl = incoming.currentPageUrl;
31650
31678
  if (!(existing_currentPageUrl === incoming_currentPageUrl)) {
@@ -31882,10 +31910,11 @@ function createPaginationParams(params) {
31882
31910
  }
31883
31911
  function keyBuilder$1$(luvio, params) {
31884
31912
  return keyBuilder$20(luvio, {
31913
+ includeColumnLabels: params.body.includeColumnLabels || null,
31914
+ relatedListId: params.urlParams.relatedListId,
31885
31915
  sortBy: params.body.sortBy || [],
31886
- where: params.body.where || null,
31887
31916
  parentRecordId: params.urlParams.parentRecordId,
31888
- relatedListId: params.urlParams.relatedListId
31917
+ where: params.body.where || null
31889
31918
  });
31890
31919
  }
31891
31920
  function getResponseCacheKeys$j(storeKeyMap, luvio, resourceParams, response) {
@@ -32307,6 +32336,7 @@ const getRelatedListRecords_ConfigPropertyMetadata = [
32307
32336
  generateParamConfigMetadata('parentRecordId', true, 0 /* UrlParameter */, 0 /* String */, false, getRecordId18),
32308
32337
  generateParamConfigMetadata('relatedListId', true, 0 /* UrlParameter */, 0 /* String */),
32309
32338
  generateParamConfigMetadata('fields', false, 2 /* Body */, 0 /* String */, true),
32339
+ generateParamConfigMetadata('includeColumnLabels', false, 2 /* Body */, 1 /* Boolean */),
32310
32340
  generateParamConfigMetadata('optionalFields', false, 2 /* Body */, 0 /* String */, true),
32311
32341
  generateParamConfigMetadata('pageSize', false, 2 /* Body */, 3 /* Integer */),
32312
32342
  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.368.0",
3
+ "version": "1.369.0",
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.368.0",
72
- "@salesforce/lds-default-luvio": "^1.368.0"
71
+ "@salesforce/lds-bindings": "^1.369.0",
72
+ "@salesforce/lds-default-luvio": "^1.369.0"
73
73
  },
74
74
  "devDependencies": {
75
- "@salesforce/lds-compiler-plugins": "^1.368.0",
76
- "@salesforce/lds-jest": "^1.368.0",
77
- "@salesforce/lds-store-binary": "^1.368.0"
75
+ "@salesforce/lds-compiler-plugins": "^1.369.0",
76
+ "@salesforce/lds-jest": "^1.369.0",
77
+ "@salesforce/lds-store-binary": "^1.369.0"
78
78
  },
79
79
  "luvioBundlesize": [
80
80
  {
@@ -25751,4 +25751,4 @@ register({
25751
25751
  });
25752
25752
 
25753
25753
  export { configurationForGraphQLAdapters as configuration, graphql, factory$1 as graphqlAdapterFactory, graphqlBatch, graphqlBatch_imperative, graphql_imperative };
25754
- // version: 1.368.0-de8cc6721e
25754
+ // version: 1.369.0-7bf258f54c
package/sfdc/index.js CHANGED
@@ -30729,12 +30729,19 @@ function equalsMetadata(existingMetadata, incomingMetadata) {
30729
30729
  }
30730
30730
 
30731
30731
  const TTL$a = 30000;
30732
- const VERSION$c = "62467c27c19349b70c9db2a8d9d591d9";
30732
+ const VERSION$c = "ecedd058ac9cfc9b51de0f2c00276ce8";
30733
30733
  function validate$A(obj, path = 'RelatedListRecordCollectionRepresentation') {
30734
30734
  const v_error = (() => {
30735
30735
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
30736
30736
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
30737
30737
  }
30738
+ if (obj.columnLabels !== undefined) {
30739
+ const obj_columnLabels = obj.columnLabels;
30740
+ const path_columnLabels = path + '.columnLabels';
30741
+ if (obj_columnLabels === undefined) {
30742
+ return new TypeError('Expected "defined" but received "' + typeof obj_columnLabels + '" (at "' + path_columnLabels + '")');
30743
+ }
30744
+ }
30738
30745
  const obj_count = obj.count;
30739
30746
  const path_count = path + '.count';
30740
30747
  if (typeof obj_count !== 'number' || (typeof obj_count === 'number' && Math.floor(obj_count) !== obj_count)) {
@@ -31106,6 +31113,14 @@ const dynamicSelect$4 = function dynamicRelatedListRecordCollectionRepresentatio
31106
31113
  reader.enterPath('count');
31107
31114
  reader.readScalar('count', metadataProperties, sink);
31108
31115
  reader.exitPath();
31116
+ reader.enterPath('columnLabels');
31117
+ reader.readObject('columnLabels', {
31118
+ name: 'columnLabels',
31119
+ kind: 'Object',
31120
+ // Any
31121
+ required: false
31122
+ }, source, sink);
31123
+ reader.exitPath();
31109
31124
  reader.enterPath('fields');
31110
31125
  reader.readScalarPlural('fields', source, sink, true);
31111
31126
  reader.exitPath();
@@ -31148,6 +31163,19 @@ function equals$c(existing, incoming) {
31148
31163
  if (!(existing_currentPageToken === incoming_currentPageToken)) {
31149
31164
  return false;
31150
31165
  }
31166
+ const existing_columnLabels = existing.columnLabels;
31167
+ const incoming_columnLabels = incoming.columnLabels;
31168
+ // if at least one of these optionals is defined
31169
+ if (existing_columnLabels !== undefined || incoming_columnLabels !== undefined) {
31170
+ // if one of these is not defined we know the other is defined and therefore
31171
+ // not equal
31172
+ if (existing_columnLabels === undefined || incoming_columnLabels === undefined) {
31173
+ return false;
31174
+ }
31175
+ if (JSONStringify(incoming_columnLabels) !== JSONStringify(existing_columnLabels)) {
31176
+ return false;
31177
+ }
31178
+ }
31151
31179
  const existing_currentPageUrl = existing.currentPageUrl;
31152
31180
  const incoming_currentPageUrl = incoming.currentPageUrl;
31153
31181
  if (!(existing_currentPageUrl === incoming_currentPageUrl)) {
@@ -31385,10 +31413,11 @@ function createPaginationParams(params) {
31385
31413
  }
31386
31414
  function keyBuilder$s(luvio, params) {
31387
31415
  return keyBuilder$t(luvio, {
31416
+ includeColumnLabels: params.body.includeColumnLabels || null,
31417
+ relatedListId: params.urlParams.relatedListId,
31388
31418
  sortBy: params.body.sortBy || [],
31389
- where: params.body.where || null,
31390
31419
  parentRecordId: params.urlParams.parentRecordId,
31391
- relatedListId: params.urlParams.relatedListId
31420
+ where: params.body.where || null
31392
31421
  });
31393
31422
  }
31394
31423
  function getResponseCacheKeys$h(storeKeyMap, luvio, resourceParams, response) {
@@ -31810,6 +31839,7 @@ const getRelatedListRecords_ConfigPropertyMetadata = [
31810
31839
  generateParamConfigMetadata('parentRecordId', true, 0 /* UrlParameter */, 0 /* String */, false, getRecordId18),
31811
31840
  generateParamConfigMetadata('relatedListId', true, 0 /* UrlParameter */, 0 /* String */),
31812
31841
  generateParamConfigMetadata('fields', false, 2 /* Body */, 0 /* String */, true),
31842
+ generateParamConfigMetadata('includeColumnLabels', false, 2 /* Body */, 1 /* Boolean */),
31813
31843
  generateParamConfigMetadata('optionalFields', false, 2 /* Body */, 0 /* String */, true),
31814
31844
  generateParamConfigMetadata('pageSize', false, 2 /* Body */, 3 /* Integer */),
31815
31845
  generateParamConfigMetadata('pageToken', false, 2 /* Body */, 0 /* String */),
@@ -39000,4 +39030,4 @@ withDefaultLuvio((luvio) => {
39000
39030
  });
39001
39031
 
39002
39032
  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 };
39003
- // version: 1.368.0-de8cc6721e
39033
+ // version: 1.369.0-7bf258f54c
@@ -95,7 +95,7 @@ var TypeCheckShapes;
95
95
  TypeCheckShapes[TypeCheckShapes["Integer"] = 3] = "Integer";
96
96
  TypeCheckShapes[TypeCheckShapes["Unsupported"] = 4] = "Unsupported";
97
97
  })(TypeCheckShapes || (TypeCheckShapes = {}));
98
- // engine version: 0.158.3-41cf8514
98
+ // engine version: 0.158.7-bafe2646
99
99
 
100
100
  const { keys: ObjectKeys, create: ObjectCreate } = Object;
101
101
 
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):