@salesforce/lwc-adapters-uiapi 1.100.2

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.
@@ -0,0 +1,57 @@
1
+ declare let createContentDocumentAndVersion: any;
2
+ declare let createContentVersion: any;
3
+ declare let createRecord: any;
4
+ declare let deleteRecord: any;
5
+ declare let getActionOverrides: any;
6
+ declare let getAllApps: any;
7
+ declare let getAppDetails: any;
8
+ declare let getDuplicateConfiguration: any;
9
+ declare let getDuplicates: any;
10
+ declare let getGlobalActions: any;
11
+ declare let getKeywordSearchResults: any;
12
+ declare let getLayout: any;
13
+ declare let getLayoutUserState: any;
14
+ declare let getListInfoByName: any;
15
+ declare let getListInfosByName: any;
16
+ declare let getListUi: any;
17
+ declare let getLookupActions: any;
18
+ declare let getLookupMetadata: any;
19
+ declare let getLookupRecords: any;
20
+ declare let getNavItems: any;
21
+ declare let getObjectCreateActions: any;
22
+ declare let getObjectInfo: any;
23
+ declare let getObjectInfos: any;
24
+ declare let getPicklistValues: any;
25
+ declare let getPicklistValuesByRecordType: any;
26
+ declare let getQuickActionDefaults: any;
27
+ declare let getRecord: any;
28
+ declare let getRecordActions: any;
29
+ declare let getRecordAvatars: any;
30
+ declare let getRecordCreateDefaults: any;
31
+ declare let getRecordEditActions: any;
32
+ declare let getRecordTemplateClone: any;
33
+ declare let getRecordTemplateCreate: any;
34
+ declare let getRecordUi: any;
35
+ declare let getRecords: any;
36
+ declare let getRelatedListActions: any;
37
+ declare let getRelatedListCount: any;
38
+ declare let getRelatedListInfo: any;
39
+ declare let getRelatedListInfoBatch: any;
40
+ declare let getRelatedListPreferences: any;
41
+ declare let getRelatedListPreferencesBatch: any;
42
+ declare let getRelatedListRecordActions: any;
43
+ declare let getRelatedListRecords: any;
44
+ declare let getRelatedListRecordsBatch: any;
45
+ declare let getRelatedListsActions: any;
46
+ declare let getRelatedListsCount: any;
47
+ declare let getRelatedListsInfo: any;
48
+ declare let getSearchFilterMetadata: any;
49
+ declare let getSearchFilterOptions: any;
50
+ declare let getSearchResults: any;
51
+ declare let graphql: any;
52
+ declare let graphqlBatch: any;
53
+ declare let performQuickAction: any;
54
+ declare let performUpdateRecordQuickAction: any;
55
+ declare let updateRecord: any;
56
+ declare let updateRecordAvatar: any;
57
+ export { createContentDocumentAndVersion, createContentVersion, createRecord, deleteRecord, getActionOverrides, getAllApps, getAppDetails, getDuplicateConfiguration, getDuplicates, getGlobalActions, getKeywordSearchResults, getLayout, getLayoutUserState, getListInfoByName, getListInfosByName, getListUi, getLookupActions, getLookupMetadata, getLookupRecords, getNavItems, getObjectCreateActions, getObjectInfo, getObjectInfos, getPicklistValues, getPicklistValuesByRecordType, getQuickActionDefaults, getRecord, getRecordActions, getRecordAvatars, getRecordCreateDefaults, getRecordEditActions, getRecordTemplateClone, getRecordTemplateCreate, getRecordUi, getRecords, getRelatedListActions, getRelatedListCount, getRelatedListInfo, getRelatedListInfoBatch, getRelatedListPreferences, getRelatedListPreferencesBatch, getRelatedListRecordActions, getRelatedListRecords, getRelatedListRecordsBatch, getRelatedListsActions, getRelatedListsCount, getRelatedListsInfo, getSearchFilterMetadata, getSearchFilterOptions, getSearchResults, graphql, graphqlBatch, performQuickAction, performUpdateRecordQuickAction, updateRecord, updateRecordAvatar };
@@ -0,0 +1,3 @@
1
+ export { createRecordInputFilteredByEditedFields, generateRecordInputForCreate, generateRecordInputForUpdate, getFieldDisplayValue, getRecordInput, getFieldValue, MRU, } from '@salesforce/lds-adapters-uiapi';
2
+ export declare let getRecordNotifyChange: any, refresh: any, notifyRecordUpdateAvailable: any;
3
+ export * from './generated/artifacts/bound-adapters';
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@salesforce/lwc-adapters-uiapi",
3
+ "version": "1.100.2",
4
+ "license": "SEE LICENSE IN LICENSE.txt",
5
+ "description": "UIAPI adapters with LWC bindings",
6
+ "module": "dist/main.js",
7
+ "types": "dist/src/main.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/main.js",
14
+ "types": "./dist/src/main.d.ts",
15
+ "default": "./dist/main.js"
16
+ }
17
+ },
18
+ "lwc": {
19
+ "modules": [
20
+ {
21
+ "name": "force/ldsAdaptersUiapi",
22
+ "path": "dist/main.js"
23
+ }
24
+ ],
25
+ "expose": [
26
+ "force/ldsAdaptersUiapi"
27
+ ]
28
+ },
29
+ "scripts": {
30
+ "build": "node ./scripts/generate.js && rollup --config rollup.config.js",
31
+ "clean": "rm -rf dist src/generated"
32
+ },
33
+ "devDependencies": {
34
+ "@luvio/engine": "0.135.4",
35
+ "@salesforce/lds-adapters-uiapi": "^1.100.2"
36
+ },
37
+ "dependencies": {
38
+ "@luvio/lwc-luvio": "0.135.4",
39
+ "@salesforce/lds-default-luvio": "^1.100.2"
40
+ }
41
+ }