@salesforce/lds-adapters-platform-admin-success-guidance 1.260.0 → 1.261.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/package.json +4 -4
- package/sfdc/index.js +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-admin-success-guidance",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Guidance Center Questionnaire and Assistant APIs",
|
|
6
6
|
"main": "dist/es/es2018/platform-admin-success-guidance.js",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-platform-admin-success-guidance"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@salesforce/lds-bindings": "^1.
|
|
49
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
53
|
-
"@salesforce/lds-karma": "^1.
|
|
52
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
53
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
54
54
|
},
|
|
55
55
|
"nx": {
|
|
56
56
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -4096,6 +4096,7 @@ const getAssistantListMetadata = { apiFamily: 'LEAP', name: 'getAssistantList' }
|
|
|
4096
4096
|
const getAssistantTargetMetadata = { apiFamily: 'LEAP', name: 'getAssistantTarget' };
|
|
4097
4097
|
const getQuestionnaireMetadata = { apiFamily: 'LEAP', name: 'getQuestionnaire' };
|
|
4098
4098
|
const getQuestionnairesMetadata = { apiFamily: 'LEAP', name: 'getQuestionnaires' };
|
|
4099
|
+
// Notify Update Available
|
|
4099
4100
|
function bindExportsTo(luvio) {
|
|
4100
4101
|
// LDS Adapters
|
|
4101
4102
|
const getAssistant_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getAssistant', getAssistantAdapterFactory), getAssistantMetadata);
|
|
@@ -4132,7 +4133,8 @@ function bindExportsTo(luvio) {
|
|
|
4132
4133
|
getAssistantList_imperative: createImperativeAdapter(luvio, getAssistantList_ldsAdapter, getAssistantListMetadata),
|
|
4133
4134
|
getAssistantTarget_imperative: createImperativeAdapter(luvio, getAssistantTarget_ldsAdapter, getAssistantTargetMetadata),
|
|
4134
4135
|
getQuestionnaire_imperative: createImperativeAdapter(luvio, getQuestionnaire_ldsAdapter, getQuestionnaireMetadata),
|
|
4135
|
-
getQuestionnaires_imperative: createImperativeAdapter(luvio, getQuestionnaires_ldsAdapter, getQuestionnairesMetadata)
|
|
4136
|
+
getQuestionnaires_imperative: createImperativeAdapter(luvio, getQuestionnaires_ldsAdapter, getQuestionnairesMetadata),
|
|
4137
|
+
// Notify Update Availables
|
|
4136
4138
|
};
|
|
4137
4139
|
}
|
|
4138
4140
|
withDefaultLuvio((luvio) => {
|
|
@@ -4159,9 +4161,9 @@ withDefaultLuvio((luvio) => {
|
|
|
4159
4161
|
getAssistantList_imperative,
|
|
4160
4162
|
getAssistantTarget_imperative,
|
|
4161
4163
|
getQuestionnaire_imperative,
|
|
4162
|
-
getQuestionnaires_imperative
|
|
4164
|
+
getQuestionnaires_imperative,
|
|
4163
4165
|
} = bindExportsTo(luvio));
|
|
4164
4166
|
});
|
|
4165
4167
|
|
|
4166
4168
|
export { evaluateStep, getAssistant, getAssistantInfoList, getAssistantInfoListNotifyChange, getAssistantInfoList_imperative, getAssistantList, getAssistantListNotifyChange, getAssistantList_imperative, getAssistantNotifyChange, getAssistantTarget, getAssistantTargetNotifyChange, getAssistantTarget_imperative, getAssistant_imperative, getQuestionnaire, getQuestionnaireNotifyChange, getQuestionnaire_imperative, getQuestionnaires, getQuestionnairesNotifyChange, getQuestionnaires_imperative, initialize, saveAssistant, saveAssistantList, saveQuestionnaire };
|
|
4167
|
-
// version: 1.
|
|
4169
|
+
// version: 1.261.0-10ee630e7
|