@salesforce/lds-network-aura 1.236.0 → 1.237.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.
- package/dist/ldsNetwork.js +4 -3
- package/package.json +1 -1
package/dist/ldsNetwork.js
CHANGED
|
@@ -720,8 +720,8 @@ const OAUTH_CREDENTIAL_AUTH_URL_PATH = new RegExp(`${NAMED_CREDENTIAL_BASE_URI}/
|
|
|
720
720
|
const EXTERNAL_CREDENTIAL_PATH = new RegExp(`${NAMED_CREDENTIAL_BASE_URI}/external-credentials$`, 'i');
|
|
721
721
|
const EXTERNAL_SERVICES_DATA_SHAPE_PATH = new RegExp(`${EXTERNAL_SERVICES_BASE_URI}/inference/datashape/([A-Za-z0-9]){1,15}$`, 'i');
|
|
722
722
|
const EXTERNAL_SERVICES_OPENAPI_SPEC_PATH = new RegExp(`${EXTERNAL_SERVICES_BASE_URI}/inference/openapispec/([A-Za-z0-9_]){1,15}$`, 'i');
|
|
723
|
-
// actionName = externalServiceRegistrationName.operationName. Up to 510 characters, with a minimum of 3 characters.
|
|
724
|
-
const EXTERNAL_SERVICES_ACTION_DETAILS_PATH = new RegExp(`${EXTERNAL_SERVICES_BASE_URI}/actions/services/(
|
|
723
|
+
// actionName = externalServiceRegistrationName.operationName. Up to 510 characters, with a minimum of 3 characters., the operation name can have special characters that aren't escpaed so have to match everything.
|
|
724
|
+
const EXTERNAL_SERVICES_ACTION_DETAILS_PATH = new RegExp(`${EXTERNAL_SERVICES_BASE_URI}/actions/services/(.){3,510}$`, 'i');
|
|
725
725
|
const EXTERNAL_SERVICES_STATISTICS_PATH = new RegExp(`${EXTERNAL_SERVICES_BASE_URI}/statistics/services$`, 'i');
|
|
726
726
|
// upper limit for registrationName is 97 = 15 (namespace prefix) + 2 ("__" separator) + 80 (external service developer name)
|
|
727
727
|
const EXTERNAL_SERVICES_STATISTICS_FOR_SERVICE_PATH = new RegExp(`${EXTERNAL_SERVICES_BASE_URI}/statistics/services/([A-Z0-9_]){1,97}$`, 'i');
|
|
@@ -2333,6 +2333,7 @@ function updateListInfoByName(resourceRequest) {
|
|
|
2333
2333
|
label: body.label,
|
|
2334
2334
|
scope: body.scope,
|
|
2335
2335
|
visibility: body.visibility,
|
|
2336
|
+
displayColumns: body.displayColumns,
|
|
2336
2337
|
},
|
|
2337
2338
|
}, resourceRequest);
|
|
2338
2339
|
return dispatchAction(UiApiListsController.UpdateListInfoByName, params);
|
|
@@ -3257,4 +3258,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
3257
3258
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
3258
3259
|
|
|
3259
3260
|
export { main as default, defaultActionConfig, dispatchAction as dispatchAuraAction, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
3260
|
-
// version: 1.
|
|
3261
|
+
// version: 1.237.0-5cc894ce9
|