@salesforce/lds-runtime-mobile 1.340.0 → 1.341.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/main.js +3 -2
- package/dist/types/main.d.ts +2 -0
- package/package.json +14 -14
- package/sfdc/main.js +3 -2
- package/sfdc/types/main.d.ts +2 -0
package/dist/main.js
CHANGED
|
@@ -55316,6 +55316,7 @@ function getRuntime() {
|
|
|
55316
55316
|
configuration.setGetRelatedListRecordsAdapterFactory(getRelatedListRecordsAdapterFactory);
|
|
55317
55317
|
configuration.setGetRelatedListRecordsBatchAdapterFactory(getRelatedListRecordsBatchAdapterFactory);
|
|
55318
55318
|
configuration.setGetSearchResultsAdapterFactory(getSearchResultsAdapterFactory);
|
|
55319
|
+
configuration.setRecordRepresentationIngestionOverride(ingest$1o);
|
|
55319
55320
|
configureUIAPIGraphQL(registration);
|
|
55320
55321
|
});
|
|
55321
55322
|
withRegistration('@salesforce/lds-adapters-uiapi/graphql', configureUIAPIGraphQL);
|
|
@@ -55352,5 +55353,5 @@ register({
|
|
|
55352
55353
|
instrument: instrument,
|
|
55353
55354
|
});
|
|
55354
55355
|
|
|
55355
|
-
export { O11Y_NAMESPACE_LDS_MOBILE, getRuntime, registerReportObserver, reportGraphqlQueryParseError };
|
|
55356
|
-
// version: 1.
|
|
55356
|
+
export { O11Y_NAMESPACE_LDS_MOBILE, getRuntime, ingest$1o as ingestDenormalizedRecordRepresentation, registerReportObserver, reportGraphqlQueryParseError };
|
|
55357
|
+
// version: 1.341.0-3e459abc99
|
package/dist/types/main.d.ts
CHANGED
|
@@ -6,3 +6,5 @@ export type { ObservabilityContext } from '@salesforce/nimbus-plugin-lds';
|
|
|
6
6
|
export { registerReportObserver } from './instrumentation/instrumentMobileAdapter';
|
|
7
7
|
export { reportGraphqlQueryParseError } from './instrumentation/metrics';
|
|
8
8
|
export type { PrimingSession } from './priming';
|
|
9
|
+
export { ingest as ingestDenormalizedRecordRepresentation } from './adapters/raml-artifacts/types/RecordRepresentation/ingest';
|
|
10
|
+
export type { RecordRepresentation, RecordRepresentationNormalized, } from './adapters/types/RecordRepresentation';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-runtime-mobile",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.341.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS runtime for mobile/hybrid environments.",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -32,23 +32,23 @@
|
|
|
32
32
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-runtime-mobile"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@salesforce/lds-adapters-uiapi": "^1.
|
|
36
|
-
"@salesforce/lds-bindings": "^1.
|
|
37
|
-
"@salesforce/lds-instrumentation": "^1.
|
|
35
|
+
"@salesforce/lds-adapters-uiapi": "^1.341.0",
|
|
36
|
+
"@salesforce/lds-bindings": "^1.341.0",
|
|
37
|
+
"@salesforce/lds-instrumentation": "^1.341.0",
|
|
38
38
|
"@salesforce/user": "0.0.21",
|
|
39
39
|
"o11y": "250.7.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@salesforce/lds-adapters-graphql": "^1.
|
|
43
|
-
"@salesforce/lds-drafts": "^1.
|
|
44
|
-
"@salesforce/lds-durable-records": "^1.
|
|
45
|
-
"@salesforce/lds-network-adapter": "^1.
|
|
46
|
-
"@salesforce/lds-network-nimbus": "^1.
|
|
47
|
-
"@salesforce/lds-store-binary": "^1.
|
|
48
|
-
"@salesforce/lds-store-nimbus": "^1.
|
|
49
|
-
"@salesforce/lds-store-sql": "^1.
|
|
50
|
-
"@salesforce/lds-utils-adapters": "^1.
|
|
51
|
-
"@salesforce/nimbus-plugin-lds": "^1.
|
|
42
|
+
"@salesforce/lds-adapters-graphql": "^1.341.0",
|
|
43
|
+
"@salesforce/lds-drafts": "^1.341.0",
|
|
44
|
+
"@salesforce/lds-durable-records": "^1.341.0",
|
|
45
|
+
"@salesforce/lds-network-adapter": "^1.341.0",
|
|
46
|
+
"@salesforce/lds-network-nimbus": "^1.341.0",
|
|
47
|
+
"@salesforce/lds-store-binary": "^1.341.0",
|
|
48
|
+
"@salesforce/lds-store-nimbus": "^1.341.0",
|
|
49
|
+
"@salesforce/lds-store-sql": "^1.341.0",
|
|
50
|
+
"@salesforce/lds-utils-adapters": "^1.341.0",
|
|
51
|
+
"@salesforce/nimbus-plugin-lds": "^1.341.0",
|
|
52
52
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
53
53
|
"wait-for-expect": "^3.0.2"
|
|
54
54
|
},
|
package/sfdc/main.js
CHANGED
|
@@ -55316,6 +55316,7 @@ function getRuntime() {
|
|
|
55316
55316
|
configuration.setGetRelatedListRecordsAdapterFactory(getRelatedListRecordsAdapterFactory);
|
|
55317
55317
|
configuration.setGetRelatedListRecordsBatchAdapterFactory(getRelatedListRecordsBatchAdapterFactory);
|
|
55318
55318
|
configuration.setGetSearchResultsAdapterFactory(getSearchResultsAdapterFactory);
|
|
55319
|
+
configuration.setRecordRepresentationIngestionOverride(ingest$1o);
|
|
55319
55320
|
configureUIAPIGraphQL(registration);
|
|
55320
55321
|
});
|
|
55321
55322
|
withRegistration('@salesforce/lds-adapters-uiapi/graphql', configureUIAPIGraphQL);
|
|
@@ -55352,5 +55353,5 @@ register({
|
|
|
55352
55353
|
instrument: instrument,
|
|
55353
55354
|
});
|
|
55354
55355
|
|
|
55355
|
-
export { O11Y_NAMESPACE_LDS_MOBILE, getRuntime, registerReportObserver, reportGraphqlQueryParseError };
|
|
55356
|
-
// version: 1.
|
|
55356
|
+
export { O11Y_NAMESPACE_LDS_MOBILE, getRuntime, ingest$1o as ingestDenormalizedRecordRepresentation, registerReportObserver, reportGraphqlQueryParseError };
|
|
55357
|
+
// version: 1.341.0-3e459abc99
|
package/sfdc/types/main.d.ts
CHANGED
|
@@ -6,3 +6,5 @@ export type { ObservabilityContext } from '@salesforce/nimbus-plugin-lds';
|
|
|
6
6
|
export { registerReportObserver } from './instrumentation/instrumentMobileAdapter';
|
|
7
7
|
export { reportGraphqlQueryParseError } from './instrumentation/metrics';
|
|
8
8
|
export type { PrimingSession } from './priming';
|
|
9
|
+
export { ingest as ingestDenormalizedRecordRepresentation } from './adapters/raml-artifacts/types/RecordRepresentation/ingest';
|
|
10
|
+
export type { RecordRepresentation, RecordRepresentationNormalized, } from './adapters/types/RecordRepresentation';
|