@salesforce/lds-adapters-uiapi 1.374.0 → 1.375.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.
@@ -4,14 +4,17 @@ import { NormalizedGraphQL as type$45$util_NormalizedGraphQL, GraphQLIngestState
4
4
  import { FieldNode as $64$luvio_graphql$45$parser_FieldNode, OperationDefinitionNode as $64$luvio_graphql$45$parser_OperationDefinitionNode, SelectionNode as $64$luvio_graphql$45$parser_SelectionNode, FragmentDefinitionNode as $64$luvio_graphql$45$parser_FragmentDefinitionNode, InlineFragmentNode as $64$luvio_graphql$45$parser_InlineFragmentNode, FragmentSpreadNode as $64$luvio_graphql$45$parser_FragmentSpreadNode } from '@luvio/graphql-parser';
5
5
  import { GraphQLVariables as $64$luvio_graphql_GraphQLVariables, GraphQLFragmentMap as $64$luvio_graphql_GraphQLFragmentMap, GetMinimumSelectionsFunction as $64$luvio_graphql_GetMinimumSelectionsFunction } from '@luvio/graphql';
6
6
  export declare const name = "Setup__ListViewRow";
7
- export declare const VERSION = "64197359a4e2fa7cc243c02e897bfbf6";
7
+ export declare const VERSION = "de20102a064874c9fc37bc9cbd59dbd0";
8
8
  export interface Interface {
9
+ id: string;
9
10
  columns: Setup__ListScalarField_Interface[];
10
11
  }
11
12
  export interface MinimumInterface {
13
+ id: Interface["id"];
12
14
  }
13
15
  export type PartialInterface = Record<string, any> & MinimumInterface;
14
- export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, path: $64$luvio_engine_IngestPath, data: PartialInterface): string | $64$luvio_engine_NormalizedKeyMetadata;
16
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, path: $64$luvio_engine_IngestPath, data: PartialInterface): string;
17
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, path: $64$luvio_engine_IngestPath, data: PartialInterface): $64$luvio_engine_NormalizedKeyMetadata;
15
18
  export declare function mergeData(existingData: type$45$util_NormalizedGraphQL, newData: type$45$util_NormalizedGraphQL): {
16
19
  data: Record<string, any>;
17
20
  };
@@ -5,10 +5,11 @@ import { NormalizedGraphQL as type$45$util_NormalizedGraphQL, GraphQLIngestState
5
5
  import { FieldNode as $64$luvio_graphql$45$parser_FieldNode, OperationDefinitionNode as $64$luvio_graphql$45$parser_OperationDefinitionNode, SelectionNode as $64$luvio_graphql$45$parser_SelectionNode, FragmentDefinitionNode as $64$luvio_graphql$45$parser_FragmentDefinitionNode, InlineFragmentNode as $64$luvio_graphql$45$parser_InlineFragmentNode, FragmentSpreadNode as $64$luvio_graphql$45$parser_FragmentSpreadNode } from '@luvio/graphql-parser';
6
6
  import { GraphQLVariables as $64$luvio_graphql_GraphQLVariables, GraphQLFragmentMap as $64$luvio_graphql_GraphQLFragmentMap, GetMinimumSelectionsFunction as $64$luvio_graphql_GetMinimumSelectionsFunction } from '@luvio/graphql';
7
7
  export declare const name = "Setup__ListViewRowConnection";
8
- export declare const VERSION = "7b474680bc37a464a0c628599119db27";
8
+ export declare const VERSION = "0af8ab891c0cd416a19a0f2fed0c1791";
9
9
  export interface Interface {
10
10
  edges: Setup__ListViewRowEdge_Interface[] | undefined;
11
11
  pageInfo: PageInfo_Interface;
12
+ totalCount: number;
12
13
  }
13
14
  export interface MinimumInterface {
14
15
  }
@@ -54978,14 +54978,10 @@ function getInContextFragmentType$q(fragment, fragmentMap) {
54978
54978
  }
54979
54979
 
54980
54980
  const name$6 = 'Setup__ListViewRow';
54981
- const VERSION$i = '64197359a4e2fa7cc243c02e897bfbf6';
54981
+ const VERSION$i = 'de20102a064874c9fc37bc9cbd59dbd0';
54982
54982
  function keyBuilder$k(luvio, path, data) {
54983
- return path.fullPath;
54983
+ return keyPrefix + '::uiapi::' + name$6 + '::' + data.id; // We're missing idNodeName in the actual key here...
54984
54984
  }
54985
- // W-12356727: To be switched over once path.fullPath is a structured key.
54986
- // export function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, path: $64$luvio_engine_IngestPath, data: PartialInterface): $64$luvio_engine_NormalizedKeyMetadata {
54987
- // return path.fullPath;
54988
- // }
54989
54985
  function mergeData$6(existingData, newData) {
54990
54986
  return {
54991
54987
  data: ObjectAssign({}, existingData["data"], newData["data"]),
@@ -54993,7 +54989,7 @@ function mergeData$6(existingData, newData) {
54993
54989
  }
54994
54990
  function ingest$e(astNode, state) {
54995
54991
  const { path, data, timestamp, luvio } = state;
54996
- const key = keyBuilder$k(luvio, path);
54992
+ const key = keyBuilder$k(luvio, path, data);
54997
54993
  return ingestNonCursorConnectionType(astNode, state, {
54998
54994
  key,
54999
54995
  isFragmentApplicable: isFragmentApplicable$7,
@@ -55032,6 +55028,11 @@ function selectType$6(typename, sel, fieldData, reader, key, sink, variables, fr
55032
55028
  reader.assignScalar(key, sink, fieldData);
55033
55029
  break;
55034
55030
  }
55031
+ case 'ID': {
55032
+ reader.markSeenId(parentRecordId);
55033
+ reader.assignScalar(key, sink, fieldData);
55034
+ break;
55035
+ }
55035
55036
  case 'Setup__ListScalarField': {
55036
55037
  selectTypeLink(sel, fieldData, reader, key, sink, variables, fragments, VERSION$j, select$g, false);
55037
55038
  break;
@@ -55048,6 +55049,7 @@ function buildSelectionForNode$7(source, reader, parentNode, selectionNode, vari
55048
55049
  function select$f(field, variables, fragments) {
55049
55050
  return (source, reader, parentRecordId) => {
55050
55051
  const sink = {};
55052
+ reader.markSeenId(parentRecordId); // Always mark identifiable types as seen
55051
55053
  return selectCalculateSink(sink, field, buildSelectionForNode$7, source, reader, variables, fragments, parentRecordId);
55052
55054
  };
55053
55055
  }
@@ -55060,12 +55062,19 @@ const getMinimumSelections$r = () => {
55060
55062
  value: '__typename',
55061
55063
  },
55062
55064
  },
55065
+ {
55066
+ kind: 'Field',
55067
+ name: {
55068
+ kind: 'Name',
55069
+ value: 'id',
55070
+ },
55071
+ },
55063
55072
  ];
55064
55073
  return { selections: minimumSelections };
55065
55074
  };
55066
55075
  function getTypeCacheKeys$f(cacheKeySink, astNode, state) {
55067
55076
  const { path, data, luvio } = state;
55068
- const rootKey = keyBuilder$k(luvio, path);
55077
+ const rootKey = keyBuilder$k(luvio, path, data);
55069
55078
  cacheKeySink.set(rootKey, {
55070
55079
  namespace: keyPrefix,
55071
55080
  mergeable: true,
@@ -55114,6 +55123,12 @@ function getFieldType$o(field) {
55114
55123
  typename: 'String'
55115
55124
  };
55116
55125
  }
55126
+ case 'id': {
55127
+ return {
55128
+ isArray: false,
55129
+ typename: 'ID'
55130
+ };
55131
+ }
55117
55132
  case 'columns': {
55118
55133
  return {
55119
55134
  isArray: true,
@@ -55135,6 +55150,10 @@ function ingestFieldByType$6(typename, parentKey, requestedField, sink, fieldKey
55135
55150
  sink[fieldKey] = fieldData;
55136
55151
  break;
55137
55152
  }
55153
+ case 'ID': {
55154
+ sink[fieldKey] = fieldData;
55155
+ break;
55156
+ }
55138
55157
  case 'Setup__ListScalarField': {
55139
55158
  const Setup__ListScalarFieldState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
55140
55159
  sink[fieldKey] = ingest$f(requestedField, Setup__ListScalarFieldState);
@@ -55322,7 +55341,7 @@ function getInContextFragmentType$o(fragment, fragmentMap) {
55322
55341
  }
55323
55342
 
55324
55343
  const name$4 = 'Setup__ListViewRowConnection';
55325
- const VERSION$g = '7b474680bc37a464a0c628599119db27';
55344
+ const VERSION$g = '0af8ab891c0cd416a19a0f2fed0c1791';
55326
55345
  function keyBuilder$i(luvio, path, data) {
55327
55346
  return path.fullPath;
55328
55347
  }
@@ -55442,6 +55461,11 @@ function selectType$4(typename, sel, fieldData, reader, key, sink, variables, fr
55442
55461
  selectTypeLink(sel, fieldData, reader, key, sink, variables, fragments, VERSION$1i, select$1f, false);
55443
55462
  break;
55444
55463
  }
55464
+ case 'Int': {
55465
+ reader.markSeenId(parentRecordId);
55466
+ reader.assignScalar(key, sink, fieldData);
55467
+ break;
55468
+ }
55445
55469
  }
55446
55470
  return sink;
55447
55471
  }
@@ -55538,6 +55562,12 @@ function getFieldType$m(field) {
55538
55562
  typename: 'PageInfo'
55539
55563
  };
55540
55564
  }
55565
+ case 'totalCount': {
55566
+ return {
55567
+ isArray: false,
55568
+ typename: 'Int'
55569
+ };
55570
+ }
55541
55571
  default:
55542
55572
  return undefined;
55543
55573
  }
@@ -55563,6 +55593,10 @@ function ingestFieldByType$4(typename, parentKey, fullPathKey, requestedField, s
55563
55593
  sink[fieldKey] = ingest$1e(requestedField, PageInfoState);
55564
55594
  break;
55565
55595
  }
55596
+ case 'Int': {
55597
+ sink[fieldKey] = fieldData;
55598
+ break;
55599
+ }
55566
55600
  }
55567
55601
  }
55568
55602
  function isMappedField$4(field) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-uiapi",
3
- "version": "1.374.0",
3
+ "version": "1.375.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",
@@ -69,13 +69,13 @@
69
69
  },
70
70
  "dependencies": {
71
71
  "@luvio/graphql-parser": "0.158.7",
72
- "@salesforce/lds-bindings": "^1.374.0",
73
- "@salesforce/lds-default-luvio": "^1.374.0"
72
+ "@salesforce/lds-bindings": "^1.375.0",
73
+ "@salesforce/lds-default-luvio": "^1.375.0"
74
74
  },
75
75
  "devDependencies": {
76
- "@salesforce/lds-compiler-plugins": "^1.374.0",
77
- "@salesforce/lds-jest": "^1.374.0",
78
- "@salesforce/lds-store-binary": "^1.374.0"
76
+ "@salesforce/lds-compiler-plugins": "^1.375.0",
77
+ "@salesforce/lds-jest": "^1.375.0",
78
+ "@salesforce/lds-store-binary": "^1.375.0"
79
79
  },
80
80
  "luvioBundlesize": [
81
81
  {
@@ -20823,14 +20823,10 @@ function getInContextFragmentType$q(fragment, fragmentMap) {
20823
20823
  }
20824
20824
 
20825
20825
  const name$6 = 'Setup__ListViewRow';
20826
- const VERSION$e = '64197359a4e2fa7cc243c02e897bfbf6';
20826
+ const VERSION$e = 'de20102a064874c9fc37bc9cbd59dbd0';
20827
20827
  function keyBuilder$a(luvio, path, data) {
20828
- return path.fullPath;
20828
+ return keyPrefix + '::uiapi::' + name$6 + '::' + data.id; // We're missing idNodeName in the actual key here...
20829
20829
  }
20830
- // W-12356727: To be switched over once path.fullPath is a structured key.
20831
- // export function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, path: $64$luvio_engine_IngestPath, data: PartialInterface): $64$luvio_engine_NormalizedKeyMetadata {
20832
- // return path.fullPath;
20833
- // }
20834
20830
  function mergeData$6(existingData, newData) {
20835
20831
  return {
20836
20832
  data: ObjectAssign({}, existingData["data"], newData["data"]),
@@ -20838,7 +20834,7 @@ function mergeData$6(existingData, newData) {
20838
20834
  }
20839
20835
  function ingest$7(astNode, state) {
20840
20836
  const { path, data, timestamp, luvio } = state;
20841
- const key = keyBuilder$a(luvio, path);
20837
+ const key = keyBuilder$a(luvio, path, data);
20842
20838
  return ingestNonCursorConnectionType(astNode, state, {
20843
20839
  key,
20844
20840
  isFragmentApplicable: isFragmentApplicable$7,
@@ -20877,6 +20873,11 @@ function selectType$6(typename, sel, fieldData, reader, key, sink, variables, fr
20877
20873
  reader.assignScalar(key, sink, fieldData);
20878
20874
  break;
20879
20875
  }
20876
+ case 'ID': {
20877
+ reader.markSeenId(parentRecordId);
20878
+ reader.assignScalar(key, sink, fieldData);
20879
+ break;
20880
+ }
20880
20881
  case 'Setup__ListScalarField': {
20881
20882
  selectTypeLink(sel, fieldData, reader, key, sink, variables, fragments, VERSION$f, select$h, false);
20882
20883
  break;
@@ -20893,6 +20894,7 @@ function buildSelectionForNode$7(source, reader, parentNode, selectionNode, vari
20893
20894
  function select$g(field, variables, fragments) {
20894
20895
  return (source, reader, parentRecordId) => {
20895
20896
  const sink = {};
20897
+ reader.markSeenId(parentRecordId); // Always mark identifiable types as seen
20896
20898
  return selectCalculateSink(sink, field, buildSelectionForNode$7, source, reader, variables, fragments, parentRecordId);
20897
20899
  };
20898
20900
  }
@@ -20905,12 +20907,19 @@ const getMinimumSelections$r = () => {
20905
20907
  value: '__typename',
20906
20908
  },
20907
20909
  },
20910
+ {
20911
+ kind: 'Field',
20912
+ name: {
20913
+ kind: 'Name',
20914
+ value: 'id',
20915
+ },
20916
+ },
20908
20917
  ];
20909
20918
  return { selections: minimumSelections };
20910
20919
  };
20911
20920
  function getTypeCacheKeys$7(cacheKeySink, astNode, state) {
20912
20921
  const { path, data, luvio } = state;
20913
- const rootKey = keyBuilder$a(luvio, path);
20922
+ const rootKey = keyBuilder$a(luvio, path, data);
20914
20923
  cacheKeySink.set(rootKey, {
20915
20924
  namespace: keyPrefix,
20916
20925
  mergeable: true,
@@ -20959,6 +20968,12 @@ function getFieldType$o(field) {
20959
20968
  typename: 'String'
20960
20969
  };
20961
20970
  }
20971
+ case 'id': {
20972
+ return {
20973
+ isArray: false,
20974
+ typename: 'ID'
20975
+ };
20976
+ }
20962
20977
  case 'columns': {
20963
20978
  return {
20964
20979
  isArray: true,
@@ -20980,6 +20995,10 @@ function ingestFieldByType$6(typename, parentKey, requestedField, sink, fieldKey
20980
20995
  sink[fieldKey] = fieldData;
20981
20996
  break;
20982
20997
  }
20998
+ case 'ID': {
20999
+ sink[fieldKey] = fieldData;
21000
+ break;
21001
+ }
20983
21002
  case 'Setup__ListScalarField': {
20984
21003
  const Setup__ListScalarFieldState = buildFieldState(state, parentKey + '__' + fieldKey, fieldData);
20985
21004
  sink[fieldKey] = ingest$8(requestedField, Setup__ListScalarFieldState);
@@ -21167,7 +21186,7 @@ function getInContextFragmentType$o(fragment, fragmentMap) {
21167
21186
  }
21168
21187
 
21169
21188
  const name$4 = 'Setup__ListViewRowConnection';
21170
- const VERSION$c = '7b474680bc37a464a0c628599119db27';
21189
+ const VERSION$c = '0af8ab891c0cd416a19a0f2fed0c1791';
21171
21190
  function keyBuilder$8(luvio, path, data) {
21172
21191
  return path.fullPath;
21173
21192
  }
@@ -21286,6 +21305,11 @@ function selectType$4(typename, sel, fieldData, reader, key, sink, variables, fr
21286
21305
  selectTypeLink(sel, fieldData, reader, key, sink, variables, fragments, VERSION$1e, select$1g, false);
21287
21306
  break;
21288
21307
  }
21308
+ case 'Int': {
21309
+ reader.markSeenId(parentRecordId);
21310
+ reader.assignScalar(key, sink, fieldData);
21311
+ break;
21312
+ }
21289
21313
  }
21290
21314
  return sink;
21291
21315
  }
@@ -21382,6 +21406,12 @@ function getFieldType$m(field) {
21382
21406
  typename: 'PageInfo'
21383
21407
  };
21384
21408
  }
21409
+ case 'totalCount': {
21410
+ return {
21411
+ isArray: false,
21412
+ typename: 'Int'
21413
+ };
21414
+ }
21385
21415
  default:
21386
21416
  return undefined;
21387
21417
  }
@@ -21407,6 +21437,10 @@ function ingestFieldByType$4(typename, parentKey, fullPathKey, requestedField, s
21407
21437
  sink[fieldKey] = ingest$17(requestedField, PageInfoState);
21408
21438
  break;
21409
21439
  }
21440
+ case 'Int': {
21441
+ sink[fieldKey] = fieldData;
21442
+ break;
21443
+ }
21410
21444
  }
21411
21445
  }
21412
21446
  function isMappedField$4(field) {
@@ -26072,4 +26106,4 @@ function refreshGraphQL(data) {
26072
26106
  }
26073
26107
 
26074
26108
  export { configurationForGraphQLAdapters as configuration, graphql, factory$1 as graphqlAdapterFactory, graphqlBatch, graphqlBatch_imperative, graphql_imperative, refreshGraphQL };
26075
- // version: 1.374.0-263fb4e123
26109
+ // version: 1.375.0-5bf9e6303e
package/sfdc/index.js CHANGED
@@ -39050,4 +39050,4 @@ withDefaultLuvio((luvio) => {
39050
39050
  });
39051
39051
 
39052
39052
  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 };
39053
- // version: 1.374.0-263fb4e123
39053
+ // version: 1.375.0-5bf9e6303e
@@ -1815,6 +1815,7 @@ input Setup__ListOrderInput {
1815
1815
  }
1816
1816
 
1817
1817
  type Setup__ListViewRow {
1818
+ id: ID!
1818
1819
  columns(apiNames: [String!]): [Setup__ListScalarField]!
1819
1820
  }
1820
1821
 
@@ -1852,6 +1853,7 @@ enum Setup__ListFilterOperator {
1852
1853
  type Setup__ListViewRowConnection {
1853
1854
  edges: [Setup__ListViewRowEdge]
1854
1855
  pageInfo: PageInfo!
1856
+ totalCount: Int!
1855
1857
  }
1856
1858
 
1857
1859
  input Setup__ListFilterInput {