@salesforce/lds-adapters-uiapi 1.310.0 → 1.311.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/es/es2018/types/src/generated/adapters/getActionOverrides.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/resources/getUiApiActionsOverridesByObjectApiName.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/types/ListInfoRepresentation.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/types/SearchAnswersResultRepresentation.d.ts +5 -5
- package/dist/es/es2018/types/src/generated/types/SearchIntentActionRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/SearchIntentComponentRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/SearchIntentOutputRepresentation.d.ts +29 -0
- package/dist/es/es2018/uiapi-records-service.js +129 -87
- package/package.json +6 -6
- package/sfdc/graphqlAdapters.js +3 -3
- package/sfdc/index.js +127 -85
- package/sfdc/uiapi-static-functions.js +1 -1
- package/src/raml/api.raml +189 -77
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-uiapi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.311.1",
|
|
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.311.1",
|
|
72
|
+
"@salesforce/lds-default-luvio": "^1.311.1"
|
|
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.311.1",
|
|
77
|
+
"@salesforce/lds-jest": "^1.311.1",
|
|
78
|
+
"@salesforce/lds-store-binary": "^1.311.1"
|
|
79
79
|
},
|
|
80
80
|
"luvioBundlesize": [
|
|
81
81
|
{
|
package/sfdc/graphqlAdapters.js
CHANGED
|
@@ -20867,7 +20867,7 @@ function ingestError$1(luvio, config, params, error, snapshotRefresh) {
|
|
|
20867
20867
|
function createResourceRequest$2(config) {
|
|
20868
20868
|
const headers = {};
|
|
20869
20869
|
return {
|
|
20870
|
-
baseUri: '/services/data/
|
|
20870
|
+
baseUri: '/services/data/v63.0',
|
|
20871
20871
|
basePath: '/graphql',
|
|
20872
20872
|
method: 'post',
|
|
20873
20873
|
body: { ...config.body,
|
|
@@ -21261,7 +21261,7 @@ function createResourceRequest(config) {
|
|
|
21261
21261
|
const headers = {};
|
|
21262
21262
|
const transformedConfig = stripDocumentsOfMetaschema(config);
|
|
21263
21263
|
return {
|
|
21264
|
-
baseUri: '/services/data/
|
|
21264
|
+
baseUri: '/services/data/v63.0',
|
|
21265
21265
|
basePath: '/graphql/batch',
|
|
21266
21266
|
method: 'post',
|
|
21267
21267
|
body: transformedConfig.body,
|
|
@@ -22244,4 +22244,4 @@ register({
|
|
|
22244
22244
|
});
|
|
22245
22245
|
|
|
22246
22246
|
export { configurationForGraphQLAdapters as configuration, graphql, factory$1 as graphqlAdapterFactory, graphqlBatch, graphqlBatch_imperative, graphql_imperative };
|
|
22247
|
-
// version: 1.
|
|
22247
|
+
// version: 1.311.1-f99d2bc85e
|