@salesforce/lds-ads-bridge 1.279.0 → 1.280.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/ads-bridge-perf.js +11 -1
- package/dist/adsBridge.js +1 -1
- package/package.json +3 -3
package/dist/ads-bridge-perf.js
CHANGED
|
@@ -479,7 +479,7 @@ const callbacks$1 = [];
|
|
|
479
479
|
function register(r) {
|
|
480
480
|
callbacks$1.forEach((callback) => callback(r));
|
|
481
481
|
}
|
|
482
|
-
// version: 1.
|
|
482
|
+
// version: 1.280.0-92c104b03
|
|
483
483
|
|
|
484
484
|
/**
|
|
485
485
|
* Returns true if the value acts like a Promise, i.e. has a "then" function,
|
|
@@ -4431,6 +4431,10 @@ keyMap(specifiedScalarTypes.concat(introspectionTypes), function (type) {
|
|
|
4431
4431
|
/**
|
|
4432
4432
|
* Defines configuration for the module with a default value which can be overridden by the runtime environment.
|
|
4433
4433
|
*/
|
|
4434
|
+
/**
|
|
4435
|
+
* Environment Aware GraphQLBatch adapter
|
|
4436
|
+
*/
|
|
4437
|
+
let environmentAwareGraphQLBatchAdapter = undefined;
|
|
4434
4438
|
/**
|
|
4435
4439
|
* Draft-aware GraphQL adapter
|
|
4436
4440
|
*/
|
|
@@ -4557,6 +4561,12 @@ const configurationForGraphQLAdapters = {
|
|
|
4557
4561
|
getDraftAwareGraphQLAdapter: function () {
|
|
4558
4562
|
return draftAwareGraphQLAdapter;
|
|
4559
4563
|
},
|
|
4564
|
+
setEnvironmentAwareGraphQLBatchAdapter: function (adapter) {
|
|
4565
|
+
environmentAwareGraphQLBatchAdapter = adapter;
|
|
4566
|
+
},
|
|
4567
|
+
getEnvironmentAwareGraphQLBatchAdapter: function () {
|
|
4568
|
+
return environmentAwareGraphQLBatchAdapter;
|
|
4569
|
+
},
|
|
4560
4570
|
};
|
|
4561
4571
|
const registrations = new Set();
|
|
4562
4572
|
/**
|
package/dist/adsBridge.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-ads-bridge",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.280.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Bridge to sync data between LDS and ADS",
|
|
6
6
|
"main": "dist/adsBridge.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-ads-bridge"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@salesforce/lds-adapters-uiapi": "^1.
|
|
33
|
-
"@salesforce/lds-uiapi-record-utils": "^1.
|
|
32
|
+
"@salesforce/lds-adapters-uiapi": "^1.280.0",
|
|
33
|
+
"@salesforce/lds-uiapi-record-utils": "^1.280.0"
|
|
34
34
|
}
|
|
35
35
|
}
|