@salesforce/lds-adapters-industries-clm 1.259.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-industries-clm",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Contract Life Cycle Management",
|
|
6
6
|
"main": "dist/es/es2018/industries-clm.js",
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
47
|
-
"@salesforce/lds-karma": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
47
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
48
48
|
},
|
|
49
49
|
"nx": {
|
|
50
50
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -4120,6 +4120,7 @@ const getContractDocumentVersionReviewMetadata = { apiFamily: 'clm', name: 'getC
|
|
|
4120
4120
|
const getDocumentGenerationProcessDetailsMetadata = { apiFamily: 'clm', name: 'getDocumentGenerationProcessDetails' };
|
|
4121
4121
|
const getLatestContractDocumentVersionCCMetadata = { apiFamily: 'clm', name: 'getLatestContractDocumentVersionCC', ttl: 60000 };
|
|
4122
4122
|
const getTemplatesMetadata = { apiFamily: 'clm', name: 'getTemplates', ttl: 60000 };
|
|
4123
|
+
// Notify Update Available
|
|
4123
4124
|
function bindExportsTo(luvio) {
|
|
4124
4125
|
// LDS Adapters
|
|
4125
4126
|
const getContentDocument_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getContentDocument', getContentDocumentAdapterFactory), getContentDocumentMetadata);
|
|
@@ -4166,7 +4167,8 @@ function bindExportsTo(luvio) {
|
|
|
4166
4167
|
getContractDocumentVersionReview_imperative: createImperativeAdapter(luvio, getContractDocumentVersionReview_ldsAdapter, getContractDocumentVersionReviewMetadata),
|
|
4167
4168
|
getDocumentGenerationProcessDetails_imperative: createImperativeAdapter(luvio, getDocumentGenerationProcessDetails_ldsAdapter, getDocumentGenerationProcessDetailsMetadata),
|
|
4168
4169
|
getLatestContractDocumentVersionCC_imperative: createImperativeAdapter(luvio, getLatestContractDocumentVersionCC_ldsAdapter, getLatestContractDocumentVersionCCMetadata),
|
|
4169
|
-
getTemplates_imperative: createImperativeAdapter(luvio, getTemplates_ldsAdapter, getTemplatesMetadata)
|
|
4170
|
+
getTemplates_imperative: createImperativeAdapter(luvio, getTemplates_ldsAdapter, getTemplatesMetadata),
|
|
4171
|
+
// Notify Update Availables
|
|
4170
4172
|
};
|
|
4171
4173
|
}
|
|
4172
4174
|
withDefaultLuvio((luvio) => {
|
|
@@ -4202,9 +4204,9 @@ withDefaultLuvio((luvio) => {
|
|
|
4202
4204
|
getContractDocumentVersionReview_imperative,
|
|
4203
4205
|
getDocumentGenerationProcessDetails_imperative,
|
|
4204
4206
|
getLatestContractDocumentVersionCC_imperative,
|
|
4205
|
-
getTemplates_imperative
|
|
4207
|
+
getTemplates_imperative,
|
|
4206
4208
|
} = bindExportsTo(luvio));
|
|
4207
4209
|
});
|
|
4208
4210
|
|
|
4209
4211
|
export { checkIn, checkoutContractDocumentVersion, createContractDocumentVersionAndInitializeGenerateDocumentProcess, createContractDocumentVersionReview, createExternalReviewDocument, deleteAttachment, deleteContractDocumentVersionReview, executeContractAction, getContentDocument, getContentDocumentNotifyChange, getContentDocument_imperative, getContractActions, getContractActionsNotifyChange, getContractActions_imperative, getContractDocumentVersion, getContractDocumentVersionReview, getContractDocumentVersionReviewNotifyChange, getContractDocumentVersionReview_imperative, getContractDocumentVersion_imperative, getDocumentGenerationProcessDetails, getDocumentGenerationProcessDetails_imperative, getLatestContractDocumentVersionCC, getLatestContractDocumentVersionCCNotifyChange, getLatestContractDocumentVersionCC_imperative, getTemplates, getTemplates_imperative, lockContractDocumentVersion, saveExternalDocument, unlock, updateContractDocumentVersionReview, updateContractDocumentVersionWithTemplate, updateSharingOnAttachment };
|
|
4210
|
-
// version: 1.
|
|
4212
|
+
// version: 1.261.0-10ee630e7
|