@salesforce/lds-network-aura 1.387.0 → 1.389.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 +5 -1
- package/package.json +6 -6
package/dist/ldsNetwork.js
CHANGED
|
@@ -752,6 +752,7 @@ const REVENUE_INIT_SALES_TRANSACTION_PATH = new RegExp(`${CONNECT_BASE_URI}/rev/
|
|
|
752
752
|
const REVENUE_PLACE_SALES_TRANSACTION_PATH = new RegExp(`${CONNECT_BASE_URI}/rev/sales-transaction/actions/place$`, 'i');
|
|
753
753
|
const REVENUE_PLACE_SUPPLEMENTAL_TRANSACTION_PATH = new RegExp(`${CONNECT_BASE_URI}/rev/sales-transaction/actions/place-supplemental-transaction`, 'i');
|
|
754
754
|
const REVENUE_READ_SALES_TRANSACTION_PATH = new RegExp(`${CONNECT_BASE_URI}/revenue/transaction-management/sales-transactions/actions/read`, 'i');
|
|
755
|
+
const DISCARD_CHANGELIST_PATH = new RegExp(`${CONNECT_BASE_URI}/revenue/transaction-management/sales-transactions/actions/discard-changelist`, 'i');
|
|
755
756
|
const REVENUE_CLONE_SALES_TRANSACTION_PATH = new RegExp(`${CONNECT_BASE_URI}/rev/sales-transaction/actions/clone`, 'i');
|
|
756
757
|
const POST_BATCH_PAYMENTS_SCHEDULERS_PATH = new RegExp(`${COMMERCE_BASE_URI}/payments/payment-schedulers`, 'i');
|
|
757
758
|
const POST_BATCH_INVOICES_SCHEDULERS_PATH = new RegExp(`${COMMERCE_BASE_URI}/invoicing/invoice-schedulers`, 'i');
|
|
@@ -1050,6 +1051,7 @@ const SA_CATALOG_ITEM_BY_ID_PATH = new RegExp(`${CONNECT_BASE_URI}/service-autom
|
|
|
1050
1051
|
const SA_GEN_AI_PATH = new RegExp(`${CONNECT_BASE_URI}/service-automation/gen-ai/actions`, 'i');
|
|
1051
1052
|
const SA_AGENT_FLOW_PATH = new RegExp(`${CONNECT_BASE_URI}/service-automation/agent/autolaunched-flow`, 'i');
|
|
1052
1053
|
const SA_SERVICE_PROCESS_GET_ALL_TEMPLATES_PATH = new RegExp(`${CONNECT_BASE_URI}/service-automation/service-process/get-all-templates`, 'i');
|
|
1054
|
+
const SA_SERVICE_PROCESS_TEMPLATE_DOWNLOAD_PATH = new RegExp(`${CONNECT_BASE_URI}/service-automation/service-process/download/([A-Za-z0-9_]){1,255}$`, 'i');
|
|
1053
1055
|
const SA_TEMPLATE_DEPLOYMENT_PATH = new RegExp(`${CONNECT_BASE_URI}/service-automation/template/deploy/([A-Za-z0-9_]){1,255}$`, 'i');
|
|
1054
1056
|
const NOTIFICATION_SERVICE_CONFIG_PATH = new RegExp(`${CONNECT_BASE_URI}/notification_service/config`, 'i');
|
|
1055
1057
|
const GET_PEOPLE_API_PATH = new RegExp(`${PEOPLE_API_BASE_URI}`, 'i');
|
|
@@ -2114,6 +2116,7 @@ const connect = [
|
|
|
2114
2116
|
generateAdapter('post', CONNECT_BASE_URI, SA_GEN_AI_PATH, 'ServiceAutomationFamilyController.createAgentAction', 'AgentActionInput'),
|
|
2115
2117
|
generateAdapter('post', CONNECT_BASE_URI, SA_AGENT_FLOW_PATH, 'ServiceAutomationFamilyController.createAgentFlow', 'AgentAutolaunchedFlowInput'),
|
|
2116
2118
|
generateAdapter('get', CONNECT_BASE_URI, SA_SERVICE_PROCESS_GET_ALL_TEMPLATES_PATH, 'ServiceAutomationFamilyController.getAllServiceProcessTemplate'),
|
|
2119
|
+
generateAdapter('get', CONNECT_BASE_URI, SA_SERVICE_PROCESS_TEMPLATE_DOWNLOAD_PATH, 'ServiceAutomationFamilyController.downloadServiceProcessTemplate'),
|
|
2117
2120
|
generateAdapter('get', CONNECT_BASE_URI, SA_CATALOG_ITEM_BY_ID_PATH, 'ServiceAutomationFamilyController.getCatalogItem'),
|
|
2118
2121
|
generateAdapter('patch', CONNECT_BASE_URI, SA_CATALOG_ITEM_BY_ID_PATH, 'ServiceAutomationFamilyController.updateCatalogItem', 'catalogItemUpdateInput'),
|
|
2119
2122
|
// eslint-disable-next-line @salesforce/lds/oas-body-name-required
|
|
@@ -3000,6 +3003,7 @@ const salesTransaction = [
|
|
|
3000
3003
|
// eslint-disable-next-line @salesforce/lds/oas-body-name-required
|
|
3001
3004
|
generateAdapter('post', CONNECT_BASE_URI, REVENUE_PLACE_SUPPLEMENTAL_TRANSACTION_PATH, 'SalesTransactionContextController.placeSupplementalTransaction'),
|
|
3002
3005
|
generateAdapter('post', CONNECT_BASE_URI, REVENUE_READ_SALES_TRANSACTION_PATH, 'SalesTransactionContextController.readSalesTrxnContext', 'ReadSalesTransactionInput'),
|
|
3006
|
+
generateAdapter('post', CONNECT_BASE_URI, DISCARD_CHANGELIST_PATH, 'SalesTransactionContextController.discardChangelist', 'DiscardChangelistInput'),
|
|
3003
3007
|
];
|
|
3004
3008
|
const cloneSalesTransaction = [
|
|
3005
3009
|
generateAdapter('post', CONNECT_BASE_URI, REVENUE_CLONE_SALES_TRANSACTION_PATH, 'CloneSalesTransactionConnectController.cloneSalesTransaction', 'cloneSalesTransactionInputRepresentation'),
|
|
@@ -5786,4 +5790,4 @@ function auraNetworkAdapter(resourceRequest, resourceRequestContext) {
|
|
|
5786
5790
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
5787
5791
|
|
|
5788
5792
|
export { CrudEventState, CrudEventType, UIAPI_GET_LAYOUT, UIAPI_GET_LAYOUT_USER_STATE, UIAPI_OBJECT_INFO_BATCH_PATH, UIAPI_OBJECT_INFO_PATH, UIAPI_RECORDS_PATH$1 as UIAPI_RECORDS_PATH, UIAPI_RELATED_LIST_RECORDS_BATCH_PATH, UIAPI_RELATED_LIST_RECORDS_PATH, createOkResponse$1 as createOkResponse, main as default, defaultActionConfig, dispatchAction as dispatchAuraAction, forceRecordTransactionsDisabled, getTransactionKey, instrument$1 as instrument, layoutStorage, layoutStorageStatsLogger, layoutUserStateStorage, layoutUserStateStorageStatsLogger, instrument as ldsNetworkAdapterInstrument, objectInfoStorage, objectInfoStorageStatsLogger, shouldForceRefresh };
|
|
5789
|
-
// version: 1.
|
|
5793
|
+
// version: 1.389.0-a312a201ad
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-network-aura",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.389.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS Network Adapter for Aura Runtime",
|
|
6
6
|
"main": "dist/ldsNetwork.js",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"@luvio/engine": "0.158.7"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@salesforce/lds-adapters-uiapi": "^1.
|
|
41
|
-
"@salesforce/lds-aura-storage": "^1.
|
|
42
|
-
"@salesforce/lds-environment-settings": "^1.
|
|
43
|
-
"@salesforce/lds-instrumentation": "^1.
|
|
44
|
-
"@salesforce/lds-network-adapter": "^1.
|
|
40
|
+
"@salesforce/lds-adapters-uiapi": "^1.389.0",
|
|
41
|
+
"@salesforce/lds-aura-storage": "^1.389.0",
|
|
42
|
+
"@salesforce/lds-environment-settings": "^1.389.0",
|
|
43
|
+
"@salesforce/lds-instrumentation": "^1.389.0",
|
|
44
|
+
"@salesforce/lds-network-adapter": "^1.389.0"
|
|
45
45
|
},
|
|
46
46
|
"volta": {
|
|
47
47
|
"extends": "../../package.json"
|