@salesforce/lds-adapters-uiapi 1.314.0 → 1.316.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/es/es2018/types/src/generated/adapters/getLookupRecords.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/resources/postUiApiLookupsByFieldApiNameAndObjectApiName.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/types/LookupPOSTRequestBodyRepresentation.d.ts +7 -4
- package/dist/es/es2018/types/src/main.d.ts +2 -0
- package/dist/es/es2018/types/src/primitives/SortedStringArrayTitleCase/coerce.d.ts +1 -0
- package/dist/es/es2018/types/src/validation/utils.d.ts +5 -0
- package/dist/es/es2018/types/src/wire/createContentDocumentAndVersion/configurationTypes.d.ts +2 -3
- package/dist/es/es2018/types/src/wire/createRecord/configurationTypes.d.ts +2 -3
- package/dist/es/es2018/types/src/wire/deleteRecord/configurationTypes.d.ts +3 -2
- package/dist/es/es2018/types/src/wire/getLookupRecords/index.d.ts +3 -1
- package/dist/es/es2018/types/src/wire/graphql/configurationTypes.d.ts +3 -3
- package/dist/es/es2018/types/src/wire/graphqlBatch/configurationTypes.d.ts +2 -3
- package/dist/es/es2018/types/src/wire/performQuickAction/index.d.ts +1 -1
- package/dist/es/es2018/types/src/wire/performUpdateRecordQuickAction/index.d.ts +1 -1
- package/dist/es/es2018/types/src/wire/updateRecord/configurationTypes.d.ts +2 -3
- package/dist/es/es2018/uiapi-records-service.js +698 -752
- package/package.json +6 -6
- package/sfdc/graphqlAdapters.js +3 -3
- package/sfdc/index.js +720 -774
- package/src/raml/api.raml +7 -3
- package/src/raml/luvio.raml +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-uiapi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.316.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Wire adapters for record related UI API endpoints",
|
|
6
6
|
"main": "dist/es/es2018/uiapi-records-service.js",
|
|
@@ -68,14 +68,14 @@
|
|
|
68
68
|
}
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"@salesforce/lds-bindings": "^1.
|
|
72
|
-
"@salesforce/lds-default-luvio": "^1.
|
|
71
|
+
"@salesforce/lds-bindings": "^1.316.0",
|
|
72
|
+
"@salesforce/lds-default-luvio": "^1.316.0"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@databases/sqlite": "^3.0.0",
|
|
76
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
77
|
-
"@salesforce/lds-jest": "^1.
|
|
78
|
-
"@salesforce/lds-store-binary": "^1.
|
|
76
|
+
"@salesforce/lds-compiler-plugins": "^1.316.0",
|
|
77
|
+
"@salesforce/lds-jest": "^1.316.0",
|
|
78
|
+
"@salesforce/lds-store-binary": "^1.316.0"
|
|
79
79
|
},
|
|
80
80
|
"luvioBundlesize": [
|
|
81
81
|
{
|
package/sfdc/graphqlAdapters.js
CHANGED
|
@@ -21271,7 +21271,7 @@ const factory$1 = (luvio) => function graphql(untrustedConfig, requestContext) {
|
|
|
21271
21271
|
const { getDraftAwareGraphQLAdapter } = configurationForGraphQLAdapters;
|
|
21272
21272
|
const adapter = getDraftAwareGraphQLAdapter();
|
|
21273
21273
|
if (adapter !== undefined) {
|
|
21274
|
-
return adapter(config,
|
|
21274
|
+
return adapter(config, requestContext);
|
|
21275
21275
|
}
|
|
21276
21276
|
return luvio.applyCachePolicy(requestContext || {}, { config, luvio }, buildCachedSnapshotCachePolicy$1, buildNetworkSnapshotCachePolicy$1);
|
|
21277
21277
|
};
|
|
@@ -21630,7 +21630,7 @@ const factory = (luvio) => function UiApi__graphqlBatch(untrustedConfig, request
|
|
|
21630
21630
|
const { getEnvironmentAwareGraphQLBatchAdapter } = configurationForGraphQLAdapters;
|
|
21631
21631
|
const adapter = getEnvironmentAwareGraphQLBatchAdapter();
|
|
21632
21632
|
if (adapter !== undefined) {
|
|
21633
|
-
return adapter(config,
|
|
21633
|
+
return adapter(config, requestContext);
|
|
21634
21634
|
}
|
|
21635
21635
|
return luvio.applyCachePolicy(requestContext || {}, { config, luvio }, // BuildSnapshotContext
|
|
21636
21636
|
buildCachedSnapshotCachePolicy, buildNetworkSnapshotCachePolicy);
|
|
@@ -22263,4 +22263,4 @@ register({
|
|
|
22263
22263
|
});
|
|
22264
22264
|
|
|
22265
22265
|
export { configurationForGraphQLAdapters as configuration, graphql, factory$1 as graphqlAdapterFactory, graphqlBatch, graphqlBatch_imperative, graphql_imperative };
|
|
22266
|
-
// version: 1.
|
|
22266
|
+
// version: 1.316.0-4453f1e2b6
|