@salesforce/lds-network-aura 1.121.0 → 1.122.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.
@@ -470,6 +470,7 @@ const WAVE_TEMPLATES_PATH = new RegExp(`${WAVE_BASE_URI}/templates$`, 'i');
470
470
  const WAVE_TEMPLATE_PATH = new RegExp(`${WAVE_BASE_URI}/templates/([A-Z0-9_]){1,80}$`, 'i');
471
471
  const WAVE_TEMPLATE_CONFIG_PATH = new RegExp(`${WAVE_BASE_URI}/templates/([A-Z0-9_]){1,80}/configuration$`, 'i');
472
472
  const WAVE_TEMPLATE_RELEASE_NOTES_PATH = new RegExp(`${WAVE_BASE_URI}/templates/([A-Z0-9_]){1,80}/releasenotes$`, 'i');
473
+ const WAVE_TEMPLATE_VALIDATE_PATH = new RegExp(`${WAVE_BASE_URI}/templates/([A-Z0-9_]){1,80}/validate$`, 'i');
473
474
  const GET_COLLECTION_ITEMS_PATH = new RegExp(`${CMS_BASE_URI}/collections/([A-Z0-9_]){1,28}$`, 'i');
474
475
  const GET_MANAGED_CONTENT_VARIANT_VERSIONS_PATH = new RegExp(`${CMS_BASE_URI}/contents/variants/([A-Z0-9_]){1,80}/versions$`, 'i');
475
476
  const GET_CONTENT_TYPE_INTERNAL_PATH = new RegExp(`${CMS_BASE_URI}/content-types/([A-Z0-9_]){1,80}$`, 'i');
@@ -1017,6 +1018,7 @@ const analytics = [
1017
1018
  generateAdapter('get', WAVE_BASE_URI, WAVE_TEMPLATE_PATH, 'WaveController.getWaveTemplate'),
1018
1019
  generateAdapter('get', WAVE_BASE_URI, WAVE_TEMPLATE_CONFIG_PATH, 'WaveController.getWaveTemplateConfig'),
1019
1020
  generateAdapter('get', WAVE_BASE_URI, WAVE_TEMPLATE_RELEASE_NOTES_PATH, 'WaveController.getWaveTemplateReleaseNotes'),
1021
+ generateAdapter('post', WAVE_BASE_URI, WAVE_TEMPLATE_VALIDATE_PATH, 'WaveController.validateWaveTemplate'),
1020
1022
  ];
1021
1023
  const connectInternal = [
1022
1024
  generateAdapter('get', CMS_BASE_URI, GET_CONTENT_TYPE_INTERNAL_PATH, 'ManagedContentTypeController.getContentTypeSchema'),
@@ -2900,4 +2902,4 @@ function auraNetworkAdapter(resourceRequest) {
2900
2902
  var main = platformNetworkAdapter(auraNetworkAdapter);
2901
2903
 
2902
2904
  export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
2903
- // version: 1.121.0-f722acdeb
2905
+ // version: 1.122.0-aa6cc75e0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-network-aura",
3
- "version": "1.121.0",
3
+ "version": "1.122.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS Network Adapter for Aura Runtime",
6
6
  "main": "dist/ldsNetwork.js",