@salesforce/lds-runtime-mobile 1.389.0 → 1.389.1
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/main.js +8 -8
- package/package.json +32 -32
- package/sfdc/main.js +8 -8
package/dist/main.js
CHANGED
|
@@ -56578,14 +56578,14 @@ let AuraCacheControlCommand$1 = class AuraCacheControlCommand extends CacheContr
|
|
|
56578
56578
|
if (this.shouldUseAuraNetwork()) {
|
|
56579
56579
|
return this.convertAuraResponseToData(
|
|
56580
56580
|
this.services.auraNetwork(this.endpoint, this.auraParams, this.actionConfig),
|
|
56581
|
-
(errs) => this.
|
|
56581
|
+
(errs) => this.coerceAuraErrors(errs)
|
|
56582
56582
|
);
|
|
56583
56583
|
} else if (this.shouldUseFetch()) {
|
|
56584
56584
|
return this.convertFetchResponseToData(this.services.fetch(...this.fetchParams));
|
|
56585
56585
|
}
|
|
56586
56586
|
return resolvedPromiseLike$3(err$1(toError("Aura/Fetch network services not found")));
|
|
56587
56587
|
}
|
|
56588
|
-
|
|
56588
|
+
coerceAuraErrors(auraErrors) {
|
|
56589
56589
|
return toError(auraErrors[0]);
|
|
56590
56590
|
}
|
|
56591
56591
|
async coerceFetchError(errorResponse) {
|
|
@@ -56717,14 +56717,14 @@ class AuraCacheControlCommand extends CacheControlCommand {
|
|
|
56717
56717
|
if (this.shouldUseAuraNetwork()) {
|
|
56718
56718
|
return this.convertAuraResponseToData(
|
|
56719
56719
|
this.services.auraNetwork(this.endpoint, this.auraParams, this.actionConfig),
|
|
56720
|
-
(errs) => this.
|
|
56720
|
+
(errs) => this.coerceAuraErrors(errs)
|
|
56721
56721
|
);
|
|
56722
56722
|
} else if (this.shouldUseFetch()) {
|
|
56723
56723
|
return this.convertFetchResponseToData(this.services.fetch(...this.fetchParams));
|
|
56724
56724
|
}
|
|
56725
56725
|
return resolvedPromiseLike$3(err$1(toError("Aura/Fetch network services not found")));
|
|
56726
56726
|
}
|
|
56727
|
-
|
|
56727
|
+
coerceAuraErrors(auraErrors) {
|
|
56728
56728
|
return toError(auraErrors[0]);
|
|
56729
56729
|
}
|
|
56730
56730
|
async coerceFetchError(errorResponse) {
|
|
@@ -57979,7 +57979,7 @@ function buildServiceDescriptor$5(luvio) {
|
|
|
57979
57979
|
},
|
|
57980
57980
|
};
|
|
57981
57981
|
}
|
|
57982
|
-
// version: 1.389.
|
|
57982
|
+
// version: 1.389.1-c0c26cd070
|
|
57983
57983
|
|
|
57984
57984
|
/**
|
|
57985
57985
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -58005,7 +58005,7 @@ function buildServiceDescriptor$4(notifyRecordUpdateAvailable, getNormalizedLuvi
|
|
|
58005
58005
|
},
|
|
58006
58006
|
};
|
|
58007
58007
|
}
|
|
58008
|
-
// version: 1.389.
|
|
58008
|
+
// version: 1.389.1-c0c26cd070
|
|
58009
58009
|
|
|
58010
58010
|
/*!
|
|
58011
58011
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -59040,7 +59040,7 @@ class AuraGraphQLNormalizedCacheControlCommand extends AuraNormalizedCacheContro
|
|
|
59040
59040
|
this.originalAuraParams,
|
|
59041
59041
|
this.actionConfig
|
|
59042
59042
|
),
|
|
59043
|
-
(errs) => this.
|
|
59043
|
+
(errs) => this.coerceAuraErrors(errs)
|
|
59044
59044
|
).then((result) => {
|
|
59045
59045
|
return buildSubscribableResult$1(result, this.buildSubscribe(), () => this.refresh());
|
|
59046
59046
|
});
|
|
@@ -60201,4 +60201,4 @@ register({
|
|
|
60201
60201
|
});
|
|
60202
60202
|
|
|
60203
60203
|
export { O11Y_NAMESPACE_LDS_MOBILE, getRuntime, ingest$1o as ingestDenormalizedRecordRepresentation, initializeOneStore, registerReportObserver, reportGraphqlQueryParseError };
|
|
60204
|
-
// version: 1.389.
|
|
60204
|
+
// version: 1.389.1-55a7286110
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-runtime-mobile",
|
|
3
|
-
"version": "1.389.
|
|
3
|
+
"version": "1.389.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS runtime for mobile/hybrid environments.",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -32,42 +32,42 @@
|
|
|
32
32
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-runtime-mobile"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@luvio/service-provisioner": "5.61.
|
|
36
|
-
"@salesforce/lds-adapters-uiapi": "^1.389.
|
|
37
|
-
"@salesforce/lds-bindings": "^1.389.
|
|
38
|
-
"@salesforce/lds-instrumentation": "^1.389.
|
|
39
|
-
"@salesforce/lds-luvio-service": "^1.389.
|
|
40
|
-
"@salesforce/lds-luvio-uiapi-records-service": "^1.389.
|
|
35
|
+
"@luvio/service-provisioner": "5.61.1",
|
|
36
|
+
"@salesforce/lds-adapters-uiapi": "^1.389.1",
|
|
37
|
+
"@salesforce/lds-bindings": "^1.389.1",
|
|
38
|
+
"@salesforce/lds-instrumentation": "^1.389.1",
|
|
39
|
+
"@salesforce/lds-luvio-service": "^1.389.1",
|
|
40
|
+
"@salesforce/lds-luvio-uiapi-records-service": "^1.389.1",
|
|
41
41
|
"@salesforce/user": "0.0.21",
|
|
42
42
|
"o11y": "250.7.0",
|
|
43
43
|
"o11y_schema": "256.126.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@luvio/command-aura-network": "5.61.
|
|
47
|
-
"@luvio/command-aura-normalized-cache-control": "5.61.
|
|
48
|
-
"@luvio/command-aura-resource-cache-control": "5.61.
|
|
49
|
-
"@luvio/command-fetch-network": "5.61.
|
|
50
|
-
"@luvio/command-http-normalized-cache-control": "5.61.
|
|
51
|
-
"@luvio/command-network": "5.61.
|
|
52
|
-
"@luvio/service-cache": "5.61.
|
|
53
|
-
"@luvio/service-cache-control": "5.61.
|
|
54
|
-
"@luvio/service-cache-inclusion-policy": "5.61.
|
|
55
|
-
"@luvio/service-fetch-network": "5.61.
|
|
56
|
-
"@luvio/service-instrument-command": "5.61.
|
|
57
|
-
"@luvio/service-instrumentation": "5.61.
|
|
58
|
-
"@luvio/service-pubsub": "5.61.
|
|
59
|
-
"@luvio/service-store": "5.61.
|
|
60
|
-
"@luvio/utils": "5.61.
|
|
61
|
-
"@salesforce/lds-adapters-graphql": "^1.389.
|
|
62
|
-
"@salesforce/lds-drafts": "^1.389.
|
|
63
|
-
"@salesforce/lds-durable-records": "^1.389.
|
|
64
|
-
"@salesforce/lds-network-adapter": "^1.389.
|
|
65
|
-
"@salesforce/lds-network-nimbus": "^1.389.
|
|
66
|
-
"@salesforce/lds-store-binary": "^1.389.
|
|
67
|
-
"@salesforce/lds-store-nimbus": "^1.389.
|
|
68
|
-
"@salesforce/lds-store-sql": "^1.389.
|
|
69
|
-
"@salesforce/lds-utils-adapters": "^1.389.
|
|
70
|
-
"@salesforce/nimbus-plugin-lds": "^1.389.
|
|
46
|
+
"@luvio/command-aura-network": "5.61.1",
|
|
47
|
+
"@luvio/command-aura-normalized-cache-control": "5.61.1",
|
|
48
|
+
"@luvio/command-aura-resource-cache-control": "5.61.1",
|
|
49
|
+
"@luvio/command-fetch-network": "5.61.1",
|
|
50
|
+
"@luvio/command-http-normalized-cache-control": "5.61.1",
|
|
51
|
+
"@luvio/command-network": "5.61.1",
|
|
52
|
+
"@luvio/service-cache": "5.61.1",
|
|
53
|
+
"@luvio/service-cache-control": "5.61.1",
|
|
54
|
+
"@luvio/service-cache-inclusion-policy": "5.61.1",
|
|
55
|
+
"@luvio/service-fetch-network": "5.61.1",
|
|
56
|
+
"@luvio/service-instrument-command": "5.61.1",
|
|
57
|
+
"@luvio/service-instrumentation": "5.61.1",
|
|
58
|
+
"@luvio/service-pubsub": "5.61.1",
|
|
59
|
+
"@luvio/service-store": "5.61.1",
|
|
60
|
+
"@luvio/utils": "5.61.1",
|
|
61
|
+
"@salesforce/lds-adapters-graphql": "^1.389.1",
|
|
62
|
+
"@salesforce/lds-drafts": "^1.389.1",
|
|
63
|
+
"@salesforce/lds-durable-records": "^1.389.1",
|
|
64
|
+
"@salesforce/lds-network-adapter": "^1.389.1",
|
|
65
|
+
"@salesforce/lds-network-nimbus": "^1.389.1",
|
|
66
|
+
"@salesforce/lds-store-binary": "^1.389.1",
|
|
67
|
+
"@salesforce/lds-store-nimbus": "^1.389.1",
|
|
68
|
+
"@salesforce/lds-store-sql": "^1.389.1",
|
|
69
|
+
"@salesforce/lds-utils-adapters": "^1.389.1",
|
|
70
|
+
"@salesforce/nimbus-plugin-lds": "^1.389.1",
|
|
71
71
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
72
72
|
"wait-for-expect": "^3.0.2"
|
|
73
73
|
},
|
package/sfdc/main.js
CHANGED
|
@@ -56578,14 +56578,14 @@ let AuraCacheControlCommand$1 = class AuraCacheControlCommand extends CacheContr
|
|
|
56578
56578
|
if (this.shouldUseAuraNetwork()) {
|
|
56579
56579
|
return this.convertAuraResponseToData(
|
|
56580
56580
|
this.services.auraNetwork(this.endpoint, this.auraParams, this.actionConfig),
|
|
56581
|
-
(errs) => this.
|
|
56581
|
+
(errs) => this.coerceAuraErrors(errs)
|
|
56582
56582
|
);
|
|
56583
56583
|
} else if (this.shouldUseFetch()) {
|
|
56584
56584
|
return this.convertFetchResponseToData(this.services.fetch(...this.fetchParams));
|
|
56585
56585
|
}
|
|
56586
56586
|
return resolvedPromiseLike$3(err$1(toError("Aura/Fetch network services not found")));
|
|
56587
56587
|
}
|
|
56588
|
-
|
|
56588
|
+
coerceAuraErrors(auraErrors) {
|
|
56589
56589
|
return toError(auraErrors[0]);
|
|
56590
56590
|
}
|
|
56591
56591
|
async coerceFetchError(errorResponse) {
|
|
@@ -56717,14 +56717,14 @@ class AuraCacheControlCommand extends CacheControlCommand {
|
|
|
56717
56717
|
if (this.shouldUseAuraNetwork()) {
|
|
56718
56718
|
return this.convertAuraResponseToData(
|
|
56719
56719
|
this.services.auraNetwork(this.endpoint, this.auraParams, this.actionConfig),
|
|
56720
|
-
(errs) => this.
|
|
56720
|
+
(errs) => this.coerceAuraErrors(errs)
|
|
56721
56721
|
);
|
|
56722
56722
|
} else if (this.shouldUseFetch()) {
|
|
56723
56723
|
return this.convertFetchResponseToData(this.services.fetch(...this.fetchParams));
|
|
56724
56724
|
}
|
|
56725
56725
|
return resolvedPromiseLike$3(err$1(toError("Aura/Fetch network services not found")));
|
|
56726
56726
|
}
|
|
56727
|
-
|
|
56727
|
+
coerceAuraErrors(auraErrors) {
|
|
56728
56728
|
return toError(auraErrors[0]);
|
|
56729
56729
|
}
|
|
56730
56730
|
async coerceFetchError(errorResponse) {
|
|
@@ -57979,7 +57979,7 @@ function buildServiceDescriptor$5(luvio) {
|
|
|
57979
57979
|
},
|
|
57980
57980
|
};
|
|
57981
57981
|
}
|
|
57982
|
-
// version: 1.389.
|
|
57982
|
+
// version: 1.389.1-c0c26cd070
|
|
57983
57983
|
|
|
57984
57984
|
/**
|
|
57985
57985
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -58005,7 +58005,7 @@ function buildServiceDescriptor$4(notifyRecordUpdateAvailable, getNormalizedLuvi
|
|
|
58005
58005
|
},
|
|
58006
58006
|
};
|
|
58007
58007
|
}
|
|
58008
|
-
// version: 1.389.
|
|
58008
|
+
// version: 1.389.1-c0c26cd070
|
|
58009
58009
|
|
|
58010
58010
|
/*!
|
|
58011
58011
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -59040,7 +59040,7 @@ class AuraGraphQLNormalizedCacheControlCommand extends AuraNormalizedCacheContro
|
|
|
59040
59040
|
this.originalAuraParams,
|
|
59041
59041
|
this.actionConfig
|
|
59042
59042
|
),
|
|
59043
|
-
(errs) => this.
|
|
59043
|
+
(errs) => this.coerceAuraErrors(errs)
|
|
59044
59044
|
).then((result) => {
|
|
59045
59045
|
return buildSubscribableResult$1(result, this.buildSubscribe(), () => this.refresh());
|
|
59046
59046
|
});
|
|
@@ -60201,4 +60201,4 @@ register({
|
|
|
60201
60201
|
});
|
|
60202
60202
|
|
|
60203
60203
|
export { O11Y_NAMESPACE_LDS_MOBILE, getRuntime, ingest$1o as ingestDenormalizedRecordRepresentation, initializeOneStore, registerReportObserver, reportGraphqlQueryParseError };
|
|
60204
|
-
// version: 1.389.
|
|
60204
|
+
// version: 1.389.1-55a7286110
|