@salesforce/lds-network-aura 1.288.0 → 1.289.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
|
@@ -1123,6 +1123,8 @@ const GET_USER_PERMISSIONS_PATH = new RegExp(`${SHARING_BASE_URI}/userPermission
|
|
|
1123
1123
|
const MFG_PRODUCT_SERVICE_CAMPAIGN_ITEMS_PATH = new RegExp(`${CONNECT_BASE_URI}/industries-field-service/product-service-campaign/items-from-list`, 'i');
|
|
1124
1124
|
const WORK_ORDER_ESTIMATION_PRICE_ITEM_PATH = new RegExp(`${CONNECT_BASE_URI}/industries-field-service/work-order-estimation/price-item`, 'i');
|
|
1125
1125
|
const OMNI_DESIGNER_FETCH_ENTITY_INFO = new RegExp(`${OMNI_DESIGNER_BASE_URI}/entity-info`, 'i');
|
|
1126
|
+
const OMNI_DESIGNER_GET_EXPRESSION_GRAMMAR = new RegExp(`${OMNI_DESIGNER_BASE_URI}/expression-grammar`, 'i');
|
|
1127
|
+
const OMNI_DESIGNER_PATCH_SIMULATE_DATARAPTOR = new RegExp(`${OMNI_DESIGNER_BASE_URI}/dataraptor-simulate`, 'i');
|
|
1126
1128
|
const OMNI_DESIGNER_GET_FILE_CARDS_URI = new RegExp(`${OMNI_DESIGNER_BASE_URI}/card/get-file-cards`, 'i');
|
|
1127
1129
|
const OMNI_DESIGNER_ADD_ATTACHMENT_URI = new RegExp(`${OMNI_DESIGNER_BASE_URI}/card/add-attachment`, 'i');
|
|
1128
1130
|
const OMNI_DESIGNER_GET_CARD_BY_ID_URI = new RegExp(`${OMNI_DESIGNER_BASE_URI}/card/([A-Za-z0-9_]){1,255}`, 'i');
|
|
@@ -2381,6 +2383,8 @@ const sharingFamily = [
|
|
|
2381
2383
|
];
|
|
2382
2384
|
const omnidesigner = [
|
|
2383
2385
|
generateAdapter('get', CONNECT_BASE_URI, OMNI_DESIGNER_FETCH_ENTITY_INFO, 'OmniDesignerController.fetchEntityInfo'),
|
|
2386
|
+
generateAdapter('get', CONNECT_BASE_URI, OMNI_DESIGNER_GET_EXPRESSION_GRAMMAR, 'OmniDesignerController.getExpressionGrammar'),
|
|
2387
|
+
generateAdapter('patch', CONNECT_BASE_URI, OMNI_DESIGNER_PATCH_SIMULATE_DATARAPTOR, 'OmniDesignerController.simulateDataraptor', 'dataraptorSimualateInputParams'),
|
|
2384
2388
|
generateAdapter('get', CONNECT_BASE_URI, OMNI_DESIGNER_GET_FILE_CARDS_URI, 'OmniDesignerController.getFileBasedCards'),
|
|
2385
2389
|
generateAdapter('post', CONNECT_BASE_URI, OMNI_DESIGNER_ADD_ATTACHMENT_URI, 'OmniDesignerController.cardUpsertAttachment', 'cardUpsertAttachmentInput'),
|
|
2386
2390
|
generateAdapter('get', CONNECT_BASE_URI, OMNI_DESIGNER_GET_CARD_BY_ID_URI, 'OmniDesignerController.getCardById'),
|
|
@@ -4358,4 +4362,4 @@ function auraNetworkAdapter(resourceRequest, resourceRequestContext) {
|
|
|
4358
4362
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
4359
4363
|
|
|
4360
4364
|
export { main as default, defaultActionConfig, dispatchAction as dispatchAuraAction, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
4361
|
-
// version: 1.
|
|
4365
|
+
// version: 1.289.0-5ba45a0a4
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-network-aura",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.289.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.154.18"
|
|
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.289.0",
|
|
41
|
+
"@salesforce/lds-aura-storage": "^1.289.0",
|
|
42
|
+
"@salesforce/lds-environment-settings": "^1.289.0",
|
|
43
|
+
"@salesforce/lds-instrumentation": "^1.289.0",
|
|
44
|
+
"@salesforce/lds-network-adapter": "^1.289.0"
|
|
45
45
|
},
|
|
46
46
|
"volta": {
|
|
47
47
|
"extends": "../../package.json"
|