@salesforce/lds-adapters-uiapi 1.216.0 → 1.218.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.
@@ -91,3 +91,4 @@ export interface ListInfoRepresentation {
91
91
  visibility: string;
92
92
  visibilityEditable: boolean;
93
93
  }
94
+ export declare const notifyUpdateAvailableFactory: (luvio: $64$luvio_engine_Luvio) => (configs: Partial<KeyParams>[]) => Promise<void>;
@@ -5,6 +5,7 @@ export { notifyChangeFactory as GetRecordNotifyChange } from './wire/getRecord';
5
5
  export { notifyUpdateAvailableFactory as NotifyRecordUpdateAvailable } from './generated/types/RecordRepresentation';
6
6
  export { ClientOptions as UpdateRecordClientOptions } from './wire/updateRecord';
7
7
  export { notifyUpdateAvailableFactory as NotifyListViewSummaryUpdateAvailable } from './generated/types/ListViewSummaryCollectionRepresentation';
8
+ export { notifyUpdateAvailableFactory as NotifyListInfoUpdateAvailable } from './raml-artifacts/types/ListInfoRepresentation/notifyUpdateAvailableFactory';
8
9
  export type { GetRecordConfig } from './generated/adapters/getRecord';
9
10
  export type { GetRecordsConfig } from './raml-artifacts/adapters/getRecords/GetRecordsConfig';
10
11
  export type { UpdateRecordConfig } from './generated/adapters/updateRecord';
@@ -0,0 +1,3 @@
1
+ import type { Luvio } from '@luvio/engine';
2
+ import type { KeyParams } from '../../../generated/types/ListInfoRepresentation';
3
+ export declare const notifyUpdateAvailableFactory: (luvio: Luvio) => (configs: Partial<KeyParams>[]) => Promise<void>;
@@ -9,6 +9,7 @@ export declare const updateRelatedListPreferences: (config: Parameters<ReturnTyp
9
9
  export declare let getRecordNotifyChange: any;
10
10
  export declare let notifyRecordUpdateAvailable: any;
11
11
  export declare let notifyListViewSummaryUpdateAvailable: any;
12
+ export declare let notifyListInfoUpdateAvailable: any;
12
13
  export { createRecordInputFilteredByEditedFields, generateRecordInputForCreate, generateRecordInputForUpdate, getFieldDisplayValue, getFieldValue, getRecordInput, } from './uiapi-static-functions';
13
14
  export { keyBuilder as keyBuilderRecord } from './generated/types/RecordRepresentation';
14
15
  export { ingest as ingestRecord, createIngestRecordWithFields, } from './raml-artifacts/types/RecordRepresentation/ingest';
@@ -1484,6 +1484,20 @@ function getTypeCacheKeys$1X(rootKeySet, luvio, input, fullPathFactory) {
1484
1484
  mergeable: false
1485
1485
  });
1486
1486
  }
1487
+ const notifyUpdateAvailableFactory$3 = (luvio) => {
1488
+ return function notifyListInfoUpdateAvailable(configs) {
1489
+ if (process.env.NODE_ENV !== 'production') {
1490
+ const requiredKeyParams = ['listViewApiName', 'objectApiName', 'type'];
1491
+ configs.forEach(config => {
1492
+ if (false === requiredKeyParams.every(req => req in config)) {
1493
+ throw new Error(`one of the configs did not contain all required parameters: ${JSONStringify(ObjectKeys(config))}`);
1494
+ }
1495
+ });
1496
+ }
1497
+ const keys = configs.map(c => keyBuilder$36(luvio, c));
1498
+ return luvio.notifyStoreUpdateAvailable(keys);
1499
+ };
1500
+ };
1487
1501
 
1488
1502
  const RECORD_ID_DECODER = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456';
1489
1503
  /**
@@ -2578,7 +2592,7 @@ function getTypeCacheKeys$1T(rootKeySet, luvio, input, fullPathFactory) {
2578
2592
  getTypeCacheKeys$1W(rootKeySet, luvio, input_fields[key], () => rootKey + "__fields" + "__" + key);
2579
2593
  }
2580
2594
  }
2581
- const notifyUpdateAvailableFactory$1 = (luvio) => {
2595
+ const notifyUpdateAvailableFactory$2 = (luvio) => {
2582
2596
  return function notifyRecordUpdateAvailable(configs) {
2583
2597
  if (process.env.NODE_ENV !== 'production') {
2584
2598
  const requiredKeyParams = ['recordId'];
@@ -8091,7 +8105,7 @@ function getTypeCacheKeys$1P(rootKeySet, luvio, input, fullPathFactory) {
8091
8105
  getTypeCacheKeys$1Q(rootKeySet, luvio, input.lists[i]);
8092
8106
  }
8093
8107
  }
8094
- const notifyUpdateAvailableFactory = (luvio) => {
8108
+ const notifyUpdateAvailableFactory$1 = (luvio) => {
8095
8109
  return function notifyListViewSummaryUpdateAvailable(configs) {
8096
8110
  if (process.env.NODE_ENV !== 'production') {
8097
8111
  const requiredKeyParams = ['objectApiName', 'queryString', 'recentListsOnly'];
@@ -12241,6 +12255,21 @@ const factory$g = (luvio) => {
12241
12255
  }, { contextId: contextId$4 });
12242
12256
  };
12243
12257
 
12258
+ const notifyUpdateAvailableFactory = (luvio) => {
12259
+ return function notifyListInfoUpdateAvailable(configs) {
12260
+ const generated_notifyUpdateAvailable = notifyUpdateAvailableFactory$3(luvio);
12261
+ // Taken from getUiApiListInfoByListViewApiNameAndObjectApiName/keyBuilder artifact
12262
+ // We automatically set the type based on the listViewApiName, and we need to do the same
12263
+ // here for key matching and validation
12264
+ configs.forEach((config) => {
12265
+ if (!config.type) {
12266
+ config.type = config.listViewApiName === '__Recent' ? 'mru' : 'listView';
12267
+ }
12268
+ });
12269
+ return generated_notifyUpdateAvailable(configs);
12270
+ };
12271
+ };
12272
+
12244
12273
  const VERSION$26 = "7e00c51105cbf56a79ab8fcddf462c1e";
12245
12274
  function validate$1f(obj, path = 'QuickActionExecutionRepresentation') {
12246
12275
  const v_error = (() => {
@@ -50285,4 +50314,4 @@ ensureRegisteredOnce({
50285
50314
  instrument,
50286
50315
  });
50287
50316
 
50288
- export { notifyChangeFactory as GetRecordNotifyChange, InMemoryRecordRepresentationQueryEvaluator, MRU, notifyUpdateAvailableFactory as NotifyListViewSummaryUpdateAvailable, notifyUpdateAvailableFactory$1 as NotifyRecordUpdateAvailable, RepresentationType$O as ObjectInfoRepresentationType, RepresentationType$T as RecordRepresentationRepresentationType, TTL$B as RecordRepresentationTTL, RepresentationType$T as RecordRepresentationType, VERSION$2g as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildSelectionFromFields, buildSelectionFromRecord, configuration, factory$1 as createContentDocumentAndVersionAdapterFactory, factory as createContentVersionAdapterFactory, createIngestRecordWithFields, factory$4 as createRecordAdapterFactory, createRecordInputFilteredByEditedFields, factory$3 as deleteRecordAdapterFactory, generateRecordInputForCreate, generateRecordInputForUpdate, getActionOverridesAdapterFactory, getAllAppsAdapterFactory, getAppDetailsAdapterFactory, getDuplicateConfigurationAdapterFactory, getDuplicatesAdapterFactory, getFieldDisplayValue$1 as getFieldDisplayValue, getFieldValue, getGlobalActionsAdapterFactory, getKeywordSearchResultsAdapterFactory, getLayoutAdapterFactory, getLayoutUserStateAdapterFactory, getListInfoByNameAdapterFactory, getListInfosByNameAdapterFactory, getListObjectInfoAdapterFactory, factory$a as getListRecordsByNameAdapterFactory, factory$i as getListUiAdapterFactory, getListUiByApiNameAdapterFactory, getListUiByListViewIdAdapterFactory, getListViewSummaryCollectionAdapterFactory, getLookupActionsAdapterFactory, getLookupMetadataAdapterFactory, factory$9 as getLookupRecordsAdapterFactory, factory$j as getMruListUiAdapterFactory, getNavItemsAdapterFactory, getObjectCreateActionsAdapterFactory, getObjectInfoAdapterFactory, getObjectInfosAdapterFactory, getPicklistValuesAdapterFactory, getPicklistValuesByRecordTypeAdapterFactory, getQuickActionDefaultsAdapterFactory, getQuickActionLayoutAdapterFactory, getRecordActionsAdapterFactory, factory$g as getRecordAdapterFactory, getRecordAvatarsAdapterFactory, factory$7 as getRecordCreateDefaultsAdapterFactory, getRecordEditActionsAdapterFactory, getRecordId18, getRecordInput, createFieldsIngestSuccess$3 as getRecordResourceIngest, factory$6 as getRecordTemplateCloneAdapterFactory, factory$5 as getRecordTemplateCreateAdapterFactory, factory$h as getRecordUiAdapterFactory, getRecordsAdapterFactory, getRelatedListActionsAdapterFactory, getRelatedListCountAdapterFactory, getRelatedListInfoAdapterFactory, getRelatedListInfoBatchAdapterFactory, getRelatedListPreferencesAdapterFactory, getRelatedListPreferencesBatchAdapterFactory, getRelatedListRecordActionsAdapterFactory, getRelatedListRecordsAdapterFactory, getRelatedListRecordsBatchAdapterFactory, getRelatedListsActionsAdapterFactory, getRelatedListsCountAdapterFactory, getRelatedListsInfoAdapterFactory, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadataAdapterFactory, getSearchFilterOptionsAdapterFactory, getSearchResultsAdapterFactory, getSelectedAppAdapterFactory, getTypeCacheKeys$1V as getTypeCacheKeysRecord, factory$e as graphqlAdapterFactory, factory$f as graphqlBatchAdapterFactory, ingest$4 as ingestContentDocumentCompositeRepresentation, ingest$1x as ingestDuplicateConfiguration, ingest$1s as ingestDuplicatesRepresentation, ingest$1T as ingestListInfo, ingest$1P as ingestListRecords, ingest$1L as ingestObjectInfo, ingest$1H as ingestQuickActionExecutionRepresentation, ingest$1Q as ingestRecord, ingest$1I as ingestRecordUi, ingest$1k as ingestRelatedListInfo, ingest$2 as ingestRelatedListInfoBatch, ingest$1h as ingestRelatedListRecords, ingest as ingestRelatedListRecordsBatch, ingest$1j as ingestRelatedListSummaryInfoCollection, ingest$7 as ingestUiApiGraphql, instrument, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$y as keyBuilderFromTypeRecordRepresentation, keyBuilder$2S as keyBuilderObjectInfo, keyBuilder$2M as keyBuilderQuickActionExecutionRepresentation, keyBuilder$35 as keyBuilderRecord, factory$c as performQuickActionAdapterFactory, factory$d as performUpdateRecordQuickActionAdapterFactory, untrustedIsObject, factory$b as updateLayoutUserStateAdapterFactory, updateListInfoByNameAdapterFactory, factory$2 as updateRecordAdapterFactory, factory$8 as updateRecordAvatarAdapterFactory, updateRelatedListInfoAdapterFactory, updateRelatedListPreferencesAdapterFactory };
50317
+ export { notifyChangeFactory as GetRecordNotifyChange, InMemoryRecordRepresentationQueryEvaluator, MRU, notifyUpdateAvailableFactory as NotifyListInfoUpdateAvailable, notifyUpdateAvailableFactory$1 as NotifyListViewSummaryUpdateAvailable, notifyUpdateAvailableFactory$2 as NotifyRecordUpdateAvailable, RepresentationType$O as ObjectInfoRepresentationType, RepresentationType$T as RecordRepresentationRepresentationType, TTL$B as RecordRepresentationTTL, RepresentationType$T as RecordRepresentationType, VERSION$2g as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildSelectionFromFields, buildSelectionFromRecord, configuration, factory$1 as createContentDocumentAndVersionAdapterFactory, factory as createContentVersionAdapterFactory, createIngestRecordWithFields, factory$4 as createRecordAdapterFactory, createRecordInputFilteredByEditedFields, factory$3 as deleteRecordAdapterFactory, generateRecordInputForCreate, generateRecordInputForUpdate, getActionOverridesAdapterFactory, getAllAppsAdapterFactory, getAppDetailsAdapterFactory, getDuplicateConfigurationAdapterFactory, getDuplicatesAdapterFactory, getFieldDisplayValue$1 as getFieldDisplayValue, getFieldValue, getGlobalActionsAdapterFactory, getKeywordSearchResultsAdapterFactory, getLayoutAdapterFactory, getLayoutUserStateAdapterFactory, getListInfoByNameAdapterFactory, getListInfosByNameAdapterFactory, getListObjectInfoAdapterFactory, factory$a as getListRecordsByNameAdapterFactory, factory$i as getListUiAdapterFactory, getListUiByApiNameAdapterFactory, getListUiByListViewIdAdapterFactory, getListViewSummaryCollectionAdapterFactory, getLookupActionsAdapterFactory, getLookupMetadataAdapterFactory, factory$9 as getLookupRecordsAdapterFactory, factory$j as getMruListUiAdapterFactory, getNavItemsAdapterFactory, getObjectCreateActionsAdapterFactory, getObjectInfoAdapterFactory, getObjectInfosAdapterFactory, getPicklistValuesAdapterFactory, getPicklistValuesByRecordTypeAdapterFactory, getQuickActionDefaultsAdapterFactory, getQuickActionLayoutAdapterFactory, getRecordActionsAdapterFactory, factory$g as getRecordAdapterFactory, getRecordAvatarsAdapterFactory, factory$7 as getRecordCreateDefaultsAdapterFactory, getRecordEditActionsAdapterFactory, getRecordId18, getRecordInput, createFieldsIngestSuccess$3 as getRecordResourceIngest, factory$6 as getRecordTemplateCloneAdapterFactory, factory$5 as getRecordTemplateCreateAdapterFactory, factory$h as getRecordUiAdapterFactory, getRecordsAdapterFactory, getRelatedListActionsAdapterFactory, getRelatedListCountAdapterFactory, getRelatedListInfoAdapterFactory, getRelatedListInfoBatchAdapterFactory, getRelatedListPreferencesAdapterFactory, getRelatedListPreferencesBatchAdapterFactory, getRelatedListRecordActionsAdapterFactory, getRelatedListRecordsAdapterFactory, getRelatedListRecordsBatchAdapterFactory, getRelatedListsActionsAdapterFactory, getRelatedListsCountAdapterFactory, getRelatedListsInfoAdapterFactory, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadataAdapterFactory, getSearchFilterOptionsAdapterFactory, getSearchResultsAdapterFactory, getSelectedAppAdapterFactory, getTypeCacheKeys$1V as getTypeCacheKeysRecord, factory$e as graphqlAdapterFactory, factory$f as graphqlBatchAdapterFactory, ingest$4 as ingestContentDocumentCompositeRepresentation, ingest$1x as ingestDuplicateConfiguration, ingest$1s as ingestDuplicatesRepresentation, ingest$1T as ingestListInfo, ingest$1P as ingestListRecords, ingest$1L as ingestObjectInfo, ingest$1H as ingestQuickActionExecutionRepresentation, ingest$1Q as ingestRecord, ingest$1I as ingestRecordUi, ingest$1k as ingestRelatedListInfo, ingest$2 as ingestRelatedListInfoBatch, ingest$1h as ingestRelatedListRecords, ingest as ingestRelatedListRecordsBatch, ingest$1j as ingestRelatedListSummaryInfoCollection, ingest$7 as ingestUiApiGraphql, instrument, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$y as keyBuilderFromTypeRecordRepresentation, keyBuilder$2S as keyBuilderObjectInfo, keyBuilder$2M as keyBuilderQuickActionExecutionRepresentation, keyBuilder$35 as keyBuilderRecord, factory$c as performQuickActionAdapterFactory, factory$d as performUpdateRecordQuickActionAdapterFactory, untrustedIsObject, factory$b as updateLayoutUserStateAdapterFactory, updateListInfoByNameAdapterFactory, factory$2 as updateRecordAdapterFactory, factory$8 as updateRecordAvatarAdapterFactory, updateRelatedListInfoAdapterFactory, updateRelatedListPreferencesAdapterFactory };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-uiapi",
3
- "version": "1.216.0",
3
+ "version": "1.218.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",
@@ -18233,4 +18233,4 @@ register({
18233
18233
  });
18234
18234
 
18235
18235
  export { configurationForGraphQLAdapters as configuration, graphql, factory$1 as graphqlAdapterFactory, graphqlBatch, graphqlBatch_imperative, graphql_imperative };
18236
- // version: 1.216.0-1d57d45fe
18236
+ // version: 1.218.0-e350c47e9
package/sfdc/index.js CHANGED
@@ -1532,6 +1532,20 @@ function getTypeCacheKeys$S(rootKeySet, luvio, input, fullPathFactory) {
1532
1532
  mergeable: false
1533
1533
  });
1534
1534
  }
1535
+ const notifyUpdateAvailableFactory$3 = (luvio) => {
1536
+ return function notifyListInfoUpdateAvailable(configs) {
1537
+ if (process.env.NODE_ENV !== 'production') {
1538
+ const requiredKeyParams = ['listViewApiName', 'objectApiName', 'type'];
1539
+ configs.forEach(config => {
1540
+ if (false === requiredKeyParams.every(req => req in config)) {
1541
+ throw new Error(`one of the configs did not contain all required parameters: ${JSONStringify(ObjectKeys(config))}`);
1542
+ }
1543
+ });
1544
+ }
1545
+ const keys = configs.map(c => keyBuilder$1V(luvio, c));
1546
+ return luvio.notifyStoreUpdateAvailable(keys);
1547
+ };
1548
+ };
1535
1549
 
1536
1550
  const RECORD_ID_DECODER = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456';
1537
1551
  /**
@@ -2626,7 +2640,7 @@ function getTypeCacheKeys$O(rootKeySet, luvio, input, fullPathFactory) {
2626
2640
  getTypeCacheKeys$R(rootKeySet, luvio, input_fields[key], () => rootKey + "__fields" + "__" + key);
2627
2641
  }
2628
2642
  }
2629
- const notifyUpdateAvailableFactory$1 = (luvio) => {
2643
+ const notifyUpdateAvailableFactory$2 = (luvio) => {
2630
2644
  return function notifyRecordUpdateAvailable(configs) {
2631
2645
  if (process.env.NODE_ENV !== 'production') {
2632
2646
  const requiredKeyParams = ['recordId'];
@@ -7623,7 +7637,7 @@ function getTypeCacheKeys$K(rootKeySet, luvio, input, fullPathFactory) {
7623
7637
  getTypeCacheKeys$L(rootKeySet, luvio, input.lists[i]);
7624
7638
  }
7625
7639
  }
7626
- const notifyUpdateAvailableFactory = (luvio) => {
7640
+ const notifyUpdateAvailableFactory$1 = (luvio) => {
7627
7641
  return function notifyListViewSummaryUpdateAvailable(configs) {
7628
7642
  if (process.env.NODE_ENV !== 'production') {
7629
7643
  const requiredKeyParams = ['objectApiName', 'queryString', 'recentListsOnly'];
@@ -11773,6 +11787,21 @@ const factory$e = (luvio) => {
11773
11787
  }, { contextId: contextId$4 });
11774
11788
  };
11775
11789
 
11790
+ const notifyUpdateAvailableFactory = (luvio) => {
11791
+ return function notifyListInfoUpdateAvailable(configs) {
11792
+ const generated_notifyUpdateAvailable = notifyUpdateAvailableFactory$3(luvio);
11793
+ // Taken from getUiApiListInfoByListViewApiNameAndObjectApiName/keyBuilder artifact
11794
+ // We automatically set the type based on the listViewApiName, and we need to do the same
11795
+ // here for key matching and validation
11796
+ configs.forEach((config) => {
11797
+ if (!config.type) {
11798
+ config.type = config.listViewApiName === '__Recent' ? 'mru' : 'listView';
11799
+ }
11800
+ });
11801
+ return generated_notifyUpdateAvailable(configs);
11802
+ };
11803
+ };
11804
+
11776
11805
  const VERSION$Z = "7e00c51105cbf56a79ab8fcddf462c1e";
11777
11806
  function validate$1b(obj, path = 'QuickActionExecutionRepresentation') {
11778
11807
  const v_error = (() => {
@@ -32782,6 +32811,7 @@ const updateRelatedListPreferences = (config) => {
32782
32811
  let getRecordNotifyChange;
32783
32812
  let notifyRecordUpdateAvailable;
32784
32813
  let notifyListViewSummaryUpdateAvailable;
32814
+ let notifyListInfoUpdateAvailable;
32785
32815
  withDefaultLuvio((luvio) => {
32786
32816
  bindWireRefresh(luvio);
32787
32817
  baseUpdateLayoutUserState = createLDSAdapter(luvio, 'updateLayoutUserState', factory$b);
@@ -32791,12 +32821,13 @@ withDefaultLuvio((luvio) => {
32791
32821
  allowFunction: instrumentation.getRecordNotifyChangeAllowed,
32792
32822
  dropFunction: instrumentation.getRecordNotifyChangeDropped,
32793
32823
  });
32794
- notifyRecordUpdateAvailable = throttle(60, 60000, createLDSAdapter(luvio, 'notifyRecordUpdateAvailable', notifyUpdateAvailableFactory$1), {
32824
+ notifyRecordUpdateAvailable = throttle(60, 60000, createLDSAdapter(luvio, 'notifyRecordUpdateAvailable', notifyUpdateAvailableFactory$2), {
32795
32825
  allowFunction: instrumentation.notifyRecordUpdateAvailableAllowed,
32796
32826
  dropFunction: instrumentation.notifyRecordUpdateAvailableDropped,
32797
32827
  });
32798
- notifyListViewSummaryUpdateAvailable = throttle(60, 60000, createLDSAdapter(luvio, 'notifyListViewSummaryUpdateAvailable', notifyUpdateAvailableFactory));
32828
+ notifyListViewSummaryUpdateAvailable = throttle(60, 60000, createLDSAdapter(luvio, 'notifyListViewSummaryUpdateAvailable', notifyUpdateAvailableFactory$1));
32829
+ notifyListInfoUpdateAvailable = throttle(60, 60000, createLDSAdapter(luvio, 'notifyListInfoUpdateAvailable', notifyUpdateAvailableFactory));
32799
32830
  });
32800
32831
 
32801
- export { InMemoryRecordRepresentationQueryEvaluator, MRU, RepresentationType$J as ObjectInfoRepresentationType, RepresentationType$O as RecordRepresentationRepresentationType, TTL$w as RecordRepresentationTTL, RepresentationType$O as RecordRepresentationType, VERSION$17 as RecordRepresentationVersion, keyPrefix as UiApiNamespace, configurationForRestAdapters as configuration, createContentDocumentAndVersion, createContentVersion, createIngestRecordWithFields, createRecord, deleteRecord, getActionOverrides, getActionOverrides_imperative, getAllApps, getAllApps_imperative, getAppDetails, getAppDetails_imperative, getDuplicateConfiguration, getDuplicateConfiguration_imperative, getDuplicates, getDuplicates_imperative, getGlobalActions, getGlobalActions_imperative, getKeywordSearchResults, getKeywordSearchResults_imperative, getLayout, getLayoutUserState, getLayoutUserState_imperative, getLayout_imperative, getListInfoByName, getListInfoByName_imperative, getListInfosByName, getListInfosByName_imperative, getListObjectInfo, getListObjectInfo_imperative, getListRecordsByName, getListRecordsByName_imperative, getListUi, getListUi_imperative, getLookupActions, getLookupActions_imperative, getLookupMetadata, getLookupMetadata_imperative, getLookupRecords, getLookupRecords_imperative, getNavItems, getNavItems_imperative, getObjectCreateActions, getObjectCreateActions_imperative, getObjectInfo, getObjectInfoAdapterFactory, getObjectInfo_imperative, getObjectInfos, getObjectInfosAdapterFactory, getObjectInfos_imperative, getPicklistValues, getPicklistValuesByRecordType, getPicklistValuesByRecordType_imperative, getPicklistValues_imperative, getQuickActionDefaults, getQuickActionDefaults_imperative, getQuickActionLayout, getQuickActionLayout_imperative, getRecord, getRecordActions, getRecordActions_imperative, factory$e as getRecordAdapterFactory, getRecordAvatars, getRecordAvatars_imperative, getRecordCreateDefaults, getRecordCreateDefaults_imperative, getRecordEditActions, getRecordEditActions_imperative, getRecordId18, getRecordNotifyChange, getRecordTemplateClone, getRecordTemplateClone_imperative, getRecordTemplateCreate, getRecordTemplateCreate_imperative, getRecordUi, getRecordUi_imperative, getRecord_imperative, getRecords, getRecordsAdapterFactory, getRecords_imperative, getRelatedListActions, getRelatedListActions_imperative, getRelatedListCount, getRelatedListCount_imperative, getRelatedListInfo, getRelatedListInfoBatch, getRelatedListInfoBatch_imperative, getRelatedListInfo_imperative, getRelatedListPreferences, getRelatedListPreferencesBatch, getRelatedListPreferencesBatch_imperative, getRelatedListPreferences_imperative, getRelatedListRecordActions, getRelatedListRecordActions_imperative, getRelatedListRecords, getRelatedListRecordsBatch, getRelatedListRecordsBatch_imperative, getRelatedListRecords_imperative, getRelatedListsActions, getRelatedListsActions_imperative, getRelatedListsCount, getRelatedListsCount_imperative, getRelatedListsInfo, getRelatedListsInfo_imperative, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadata, getSearchFilterMetadata_imperative, getSearchFilterOptions, getSearchFilterOptions_imperative, getSearchResults, getSearchResults_imperative, getTypeCacheKeys$Q as getTypeCacheKeysRecord, ingest as ingestContentDocumentCompositeRepresentation, ingest$C as ingestObjectInfo, ingest$y as ingestQuickActionExecutionRepresentation, ingest$H as ingestRecord, instrument, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$y as keyBuilderFromTypeRecordRepresentation, keyBuilder$1J as keyBuilderObjectInfo, keyBuilder$1D as keyBuilderQuickActionExecutionRepresentation, keyBuilder$1U as keyBuilderRecord, notifyListViewSummaryUpdateAvailable, notifyRecordUpdateAvailable, performQuickAction, performUpdateRecordQuickAction, refresh, updateLayoutUserState, updateListInfoByName, updateRecord, updateRecordAvatar, updateRelatedListInfo, updateRelatedListPreferences };
32802
- // version: 1.216.0-1d57d45fe
32832
+ export { InMemoryRecordRepresentationQueryEvaluator, MRU, RepresentationType$J as ObjectInfoRepresentationType, RepresentationType$O as RecordRepresentationRepresentationType, TTL$w as RecordRepresentationTTL, RepresentationType$O as RecordRepresentationType, VERSION$17 as RecordRepresentationVersion, keyPrefix as UiApiNamespace, configurationForRestAdapters as configuration, createContentDocumentAndVersion, createContentVersion, createIngestRecordWithFields, createRecord, deleteRecord, getActionOverrides, getActionOverrides_imperative, getAllApps, getAllApps_imperative, getAppDetails, getAppDetails_imperative, getDuplicateConfiguration, getDuplicateConfiguration_imperative, getDuplicates, getDuplicates_imperative, getGlobalActions, getGlobalActions_imperative, getKeywordSearchResults, getKeywordSearchResults_imperative, getLayout, getLayoutUserState, getLayoutUserState_imperative, getLayout_imperative, getListInfoByName, getListInfoByName_imperative, getListInfosByName, getListInfosByName_imperative, getListObjectInfo, getListObjectInfo_imperative, getListRecordsByName, getListRecordsByName_imperative, getListUi, getListUi_imperative, getLookupActions, getLookupActions_imperative, getLookupMetadata, getLookupMetadata_imperative, getLookupRecords, getLookupRecords_imperative, getNavItems, getNavItems_imperative, getObjectCreateActions, getObjectCreateActions_imperative, getObjectInfo, getObjectInfoAdapterFactory, getObjectInfo_imperative, getObjectInfos, getObjectInfosAdapterFactory, getObjectInfos_imperative, getPicklistValues, getPicklistValuesByRecordType, getPicklistValuesByRecordType_imperative, getPicklistValues_imperative, getQuickActionDefaults, getQuickActionDefaults_imperative, getQuickActionLayout, getQuickActionLayout_imperative, getRecord, getRecordActions, getRecordActions_imperative, factory$e as getRecordAdapterFactory, getRecordAvatars, getRecordAvatars_imperative, getRecordCreateDefaults, getRecordCreateDefaults_imperative, getRecordEditActions, getRecordEditActions_imperative, getRecordId18, getRecordNotifyChange, getRecordTemplateClone, getRecordTemplateClone_imperative, getRecordTemplateCreate, getRecordTemplateCreate_imperative, getRecordUi, getRecordUi_imperative, getRecord_imperative, getRecords, getRecordsAdapterFactory, getRecords_imperative, getRelatedListActions, getRelatedListActions_imperative, getRelatedListCount, getRelatedListCount_imperative, getRelatedListInfo, getRelatedListInfoBatch, getRelatedListInfoBatch_imperative, getRelatedListInfo_imperative, getRelatedListPreferences, getRelatedListPreferencesBatch, getRelatedListPreferencesBatch_imperative, getRelatedListPreferences_imperative, getRelatedListRecordActions, getRelatedListRecordActions_imperative, getRelatedListRecords, getRelatedListRecordsBatch, getRelatedListRecordsBatch_imperative, getRelatedListRecords_imperative, getRelatedListsActions, getRelatedListsActions_imperative, getRelatedListsCount, getRelatedListsCount_imperative, getRelatedListsInfo, getRelatedListsInfo_imperative, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadata, getSearchFilterMetadata_imperative, getSearchFilterOptions, getSearchFilterOptions_imperative, getSearchResults, getSearchResults_imperative, getTypeCacheKeys$Q as getTypeCacheKeysRecord, ingest as ingestContentDocumentCompositeRepresentation, ingest$C as ingestObjectInfo, ingest$y as ingestQuickActionExecutionRepresentation, ingest$H as ingestRecord, instrument, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$y as keyBuilderFromTypeRecordRepresentation, keyBuilder$1J as keyBuilderObjectInfo, keyBuilder$1D as keyBuilderQuickActionExecutionRepresentation, keyBuilder$1U as keyBuilderRecord, notifyListInfoUpdateAvailable, notifyListViewSummaryUpdateAvailable, notifyRecordUpdateAvailable, performQuickAction, performUpdateRecordQuickAction, refresh, updateLayoutUserState, updateListInfoByName, updateRecord, updateRecordAvatar, updateRelatedListInfo, updateRelatedListPreferences };
32833
+ // version: 1.218.0-e350c47e9
@@ -84,6 +84,12 @@ types:
84
84
  (luvio.ttl): 900000
85
85
  (luvio.private):
86
86
  - eTag
87
+ (luvio.updateAvailable):
88
+ name: notifyListInfoUpdateAvailable
89
+ parameters:
90
+ listViewApiName: listReference.listViewApiName
91
+ objectApiName: listReference.objectApiName
92
+ type: listReference.type
87
93
  ListInfoBatchRepresentation:
88
94
  examples:
89
95
  mockListInfosResponse: !include ../mocks/types/ListInfoBatchRepresentation/list-infos.json