@salesforce/lds-adapters-uiapi 1.243.0 → 1.245.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 +6 -4
- package/dist/es/es2018/types/src/generated/resources/{getUiApiLookupsByFieldApiNameAndObjectApiName.d.ts → postUiApiLookupsByFieldApiNameAndObjectApiName.d.ts} +4 -0
- package/dist/es/es2018/types/src/generated/types/ListColumnRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/ListInfoRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/ListScopeInputRepresentation.d.ts +5 -5
- package/dist/es/es2018/types/src/generated/types/LookupPOSTRequestBodyRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/raml-artifacts/adapters/getLookupRecords/validateAdapterConfig.d.ts +2 -0
- package/dist/es/es2018/types/src/raml-artifacts/resources/{getUiApiLookupsByFieldApiNameAndObjectApiName → postUiApiLookupsByFieldApiNameAndObjectApiName}/ingestSuccess.d.ts +1 -1
- package/dist/es/es2018/types/src/raml-artifacts/resources/{getUiApiLookupsByFieldApiNameAndObjectApiName → postUiApiLookupsByFieldApiNameAndObjectApiName}/select.d.ts +1 -1
- package/dist/es/es2018/types/src/util/language.d.ts +2 -2
- package/dist/es/es2018/uiapi-records-service.js +427 -293
- package/package.json +18 -3
- package/sfdc/graphqlAdapters.js +2 -2
- package/sfdc/index.js +428 -294
- package/sfdc/uiapi-static-functions.js +2 -2
- package/src/raml/api.raml +26 -2
- package/src/raml/luvio.raml +2 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-uiapi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.245.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",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
32
|
"clean": "rm -rf dist sfdc src/generated karma/dist src/__performance__/data/*/",
|
|
33
|
-
"build": "yarn build:
|
|
33
|
+
"build": "yarn build:services && yarn build:karma",
|
|
34
34
|
"build:karma": "rollup --bundleConfigAsCjs --config rollup.config.karma.js",
|
|
35
35
|
"build:raml": "luvio generate src/raml/luvio.raml src/generated -p './scripts/lds-uiapi-plugin.js'",
|
|
36
36
|
"build:services": "rollup --bundleConfigAsCjs --config rollup.config.js --no-makeAbsoluteExternalsRelative",
|
|
@@ -102,7 +102,22 @@
|
|
|
102
102
|
"outputs": [
|
|
103
103
|
"{projectRoot}/dist",
|
|
104
104
|
"{projectRoot}/karma/dist",
|
|
105
|
-
"{projectRoot}/sfdc"
|
|
105
|
+
"{projectRoot}/sfdc"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
"build:raml": {
|
|
109
|
+
"inputs": [
|
|
110
|
+
{
|
|
111
|
+
"externalDependencies": [
|
|
112
|
+
"@luvio/compiler",
|
|
113
|
+
"@luvio/cli"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
"{projectRoot}/**/*.raml",
|
|
117
|
+
"{projectRoot}/scripts/**",
|
|
118
|
+
"{projectRoot}/src/sfdc-module.json"
|
|
119
|
+
],
|
|
120
|
+
"outputs": [
|
|
106
121
|
"{projectRoot}/src/generated"
|
|
107
122
|
]
|
|
108
123
|
}
|
package/sfdc/graphqlAdapters.js
CHANGED
|
@@ -4446,7 +4446,7 @@ function getFieldType$M(field) {
|
|
|
4446
4446
|
}
|
|
4447
4447
|
}
|
|
4448
4448
|
|
|
4449
|
-
const { assign, create, freeze, keys } = Object;
|
|
4449
|
+
const { assign, create, freeze, isFrozen, keys } = Object;
|
|
4450
4450
|
const { isArray } = Array;
|
|
4451
4451
|
const { concat, filter, includes, push, reduce } = Array.prototype;
|
|
4452
4452
|
|
|
@@ -18142,4 +18142,4 @@ register({
|
|
|
18142
18142
|
});
|
|
18143
18143
|
|
|
18144
18144
|
export { configurationForGraphQLAdapters as configuration, graphql, factory$1 as graphqlAdapterFactory, graphqlBatch, graphqlBatch_imperative, graphql_imperative };
|
|
18145
|
-
// version: 1.
|
|
18145
|
+
// version: 1.245.0-df5596041
|