@salesforce/lds-adapters-platform-external-services 1.260.0 → 1.262.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.
|
@@ -11,4 +11,4 @@ declare let getOpenApiSpec_imperative: any;
|
|
|
11
11
|
declare let getStatistics_imperative: any;
|
|
12
12
|
declare let getStatisticsForService_imperative: any;
|
|
13
13
|
declare let sendTestConnectionRequest_imperative: any;
|
|
14
|
-
export { getActionDetailsForService, getDataShape, getOpenApiSpec, getStatistics, getStatisticsForService, sendTestConnectionRequest, validateSchema, getActionDetailsForService_imperative, getDataShape_imperative, getOpenApiSpec_imperative, getStatistics_imperative, getStatisticsForService_imperative, sendTestConnectionRequest_imperative };
|
|
14
|
+
export { getActionDetailsForService, getDataShape, getOpenApiSpec, getStatistics, getStatisticsForService, sendTestConnectionRequest, validateSchema, getActionDetailsForService_imperative, getDataShape_imperative, getOpenApiSpec_imperative, getStatistics_imperative, getStatisticsForService_imperative, sendTestConnectionRequest_imperative, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-external-services",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "External Services Connect API Family",
|
|
6
6
|
"main": "dist/es/es2018/platform-external-services.js",
|
|
@@ -39,15 +39,14 @@
|
|
|
39
39
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-platform-external-services",
|
|
40
40
|
"release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-platform-external-services",
|
|
41
41
|
"start": "nx build:karma && karma start",
|
|
42
|
-
"test": "nx build:karma && karma start --single-run"
|
|
43
|
-
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
42
|
+
"test": "nx build:karma && karma start --single-run"
|
|
44
43
|
},
|
|
45
44
|
"dependencies": {
|
|
46
|
-
"@salesforce/lds-bindings": "^1.
|
|
45
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
47
46
|
},
|
|
48
47
|
"devDependencies": {
|
|
49
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
50
|
-
"@salesforce/lds-karma": "^1.
|
|
48
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
49
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
51
50
|
},
|
|
52
51
|
"nx": {
|
|
53
52
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -2761,12 +2761,23 @@ let getStatistics_imperative;
|
|
|
2761
2761
|
let getStatisticsForService_imperative;
|
|
2762
2762
|
let sendTestConnectionRequest_imperative;
|
|
2763
2763
|
// Adapter Metadata
|
|
2764
|
-
const getActionDetailsForServiceMetadata = {
|
|
2764
|
+
const getActionDetailsForServiceMetadata = {
|
|
2765
|
+
apiFamily: 'externalservices',
|
|
2766
|
+
name: 'getActionDetailsForService',
|
|
2767
|
+
};
|
|
2765
2768
|
const getDataShapeMetadata = { apiFamily: 'externalservices', name: 'getDataShape' };
|
|
2766
2769
|
const getOpenApiSpecMetadata = { apiFamily: 'externalservices', name: 'getOpenApiSpec', ttl: 500 };
|
|
2767
2770
|
const getStatisticsMetadata = { apiFamily: 'externalservices', name: 'getStatistics' };
|
|
2768
|
-
const getStatisticsForServiceMetadata = {
|
|
2769
|
-
|
|
2771
|
+
const getStatisticsForServiceMetadata = {
|
|
2772
|
+
apiFamily: 'externalservices',
|
|
2773
|
+
name: 'getStatisticsForService',
|
|
2774
|
+
};
|
|
2775
|
+
const sendTestConnectionRequestMetadata = {
|
|
2776
|
+
apiFamily: 'externalservices',
|
|
2777
|
+
name: 'sendTestConnectionRequest',
|
|
2778
|
+
ttl: 100,
|
|
2779
|
+
};
|
|
2780
|
+
// Notify Update Available
|
|
2770
2781
|
function bindExportsTo(luvio) {
|
|
2771
2782
|
// LDS Adapters
|
|
2772
2783
|
const getActionDetailsForService_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getActionDetailsForService', getActionDetailsForServiceAdapterFactory), getActionDetailsForServiceMetadata);
|
|
@@ -2777,7 +2788,7 @@ function bindExportsTo(luvio) {
|
|
|
2777
2788
|
const sendTestConnectionRequest_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'sendTestConnectionRequest', sendTestConnectionRequestAdapterFactory), sendTestConnectionRequestMetadata);
|
|
2778
2789
|
function unwrapSnapshotData(factory) {
|
|
2779
2790
|
const adapter = factory(luvio);
|
|
2780
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
2791
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
2781
2792
|
}
|
|
2782
2793
|
return {
|
|
2783
2794
|
getActionDetailsForService: createWireAdapterConstructor(luvio, getActionDetailsForService_ldsAdapter, getActionDetailsForServiceMetadata),
|
|
@@ -2793,7 +2804,8 @@ function bindExportsTo(luvio) {
|
|
|
2793
2804
|
getOpenApiSpec_imperative: createImperativeAdapter(luvio, getOpenApiSpec_ldsAdapter, getOpenApiSpecMetadata),
|
|
2794
2805
|
getStatistics_imperative: createImperativeAdapter(luvio, getStatistics_ldsAdapter, getStatisticsMetadata),
|
|
2795
2806
|
getStatisticsForService_imperative: createImperativeAdapter(luvio, getStatisticsForService_ldsAdapter, getStatisticsForServiceMetadata),
|
|
2796
|
-
sendTestConnectionRequest_imperative: createImperativeAdapter(luvio, sendTestConnectionRequest_ldsAdapter, sendTestConnectionRequestMetadata)
|
|
2807
|
+
sendTestConnectionRequest_imperative: createImperativeAdapter(luvio, sendTestConnectionRequest_ldsAdapter, sendTestConnectionRequestMetadata),
|
|
2808
|
+
// Notify Update Availables
|
|
2797
2809
|
};
|
|
2798
2810
|
}
|
|
2799
2811
|
withDefaultLuvio((luvio) => {
|
|
@@ -2810,9 +2822,9 @@ withDefaultLuvio((luvio) => {
|
|
|
2810
2822
|
getOpenApiSpec_imperative,
|
|
2811
2823
|
getStatistics_imperative,
|
|
2812
2824
|
getStatisticsForService_imperative,
|
|
2813
|
-
sendTestConnectionRequest_imperative
|
|
2825
|
+
sendTestConnectionRequest_imperative,
|
|
2814
2826
|
} = bindExportsTo(luvio));
|
|
2815
2827
|
});
|
|
2816
2828
|
|
|
2817
2829
|
export { getActionDetailsForService, getActionDetailsForService_imperative, getDataShape, getDataShape_imperative, getOpenApiSpec, getOpenApiSpec_imperative, getStatistics, getStatisticsForService, getStatisticsForService_imperative, getStatistics_imperative, sendTestConnectionRequest, sendTestConnectionRequest_imperative, validateSchema };
|
|
2818
|
-
// version: 1.
|
|
2830
|
+
// version: 1.262.0-d3c071fdc
|