@salesforce/lds-adapters-uiapi 1.334.0 → 1.336.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.
@@ -212,6 +212,10 @@ let oneStoreGetObjectInfosAdapter = undefined;
212
212
  * Determines when to include PDL strategies for Related Lists
213
213
  */
214
214
  let relatedListsPredictionsEnabled = false;
215
+ /**
216
+ * Determines whether to include additional PDL strategies for Related Lists
217
+ */
218
+ let relatedListsPlusPredictionsEnabled = false;
215
219
  /**
216
220
  * Defines the configuration API and is exposed internally as well as externally.
217
221
  * Configuration for one store enabled REST adapters only.
@@ -311,6 +315,12 @@ const configurationForEnvironmentFactoryOverrides = {
311
315
  areRelatedListsPredictionsEnabled: function () {
312
316
  return relatedListsPredictionsEnabled === true;
313
317
  },
318
+ setRelatedListsPlusPredictionsEnabled: function (f) {
319
+ relatedListsPlusPredictionsEnabled = f;
320
+ },
321
+ areRelatedListsPlusPredictionsEnabled: function () {
322
+ return relatedListsPlusPredictionsEnabled === true;
323
+ },
314
324
  // createRecord
315
325
  getDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter.getAdapter,
316
326
  setDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter.setAdapter,
package/src/raml/api.raml CHANGED
@@ -6,7 +6,7 @@ version: '63.0'
6
6
  mediaType: application/json
7
7
  protocols:
8
8
  - https
9
- baseUri: /services/data/v63.0
9
+ baseUri: /services/data/v64.0
10
10
  securitySchemes:
11
11
  OAuth2:
12
12
  type: OAuth 2.0