@salesforce/lds-adapters-industries-clm 1.261.0 → 1.262.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.
|
@@ -30,4 +30,4 @@ declare let getContractDocumentVersionReview_imperative: any;
|
|
|
30
30
|
declare let getDocumentGenerationProcessDetails_imperative: any;
|
|
31
31
|
declare let getLatestContractDocumentVersionCC_imperative: any;
|
|
32
32
|
declare let getTemplates_imperative: any;
|
|
33
|
-
export { checkIn, checkoutContractDocumentVersion, createContractDocumentVersionAndInitializeGenerateDocumentProcess, createContractDocumentVersionReview, createExternalReviewDocument, deleteAttachment, deleteContractDocumentVersionReview, executeContractAction, getContentDocument, getContentDocumentNotifyChange, getContractActions, getContractActionsNotifyChange, getContractDocumentVersion, getContractDocumentVersionReview, getContractDocumentVersionReviewNotifyChange, getDocumentGenerationProcessDetails, getLatestContractDocumentVersionCC, getLatestContractDocumentVersionCCNotifyChange, getTemplates, lockContractDocumentVersion, saveExternalDocument, unlock, updateContractDocumentVersionReview, updateContractDocumentVersionWithTemplate, updateSharingOnAttachment, getContentDocument_imperative, getContractActions_imperative, getContractDocumentVersion_imperative, getContractDocumentVersionReview_imperative, getDocumentGenerationProcessDetails_imperative, getLatestContractDocumentVersionCC_imperative, getTemplates_imperative };
|
|
33
|
+
export { checkIn, checkoutContractDocumentVersion, createContractDocumentVersionAndInitializeGenerateDocumentProcess, createContractDocumentVersionReview, createExternalReviewDocument, deleteAttachment, deleteContractDocumentVersionReview, executeContractAction, getContentDocument, getContentDocumentNotifyChange, getContractActions, getContractActionsNotifyChange, getContractDocumentVersion, getContractDocumentVersionReview, getContractDocumentVersionReviewNotifyChange, getDocumentGenerationProcessDetails, getLatestContractDocumentVersionCC, getLatestContractDocumentVersionCCNotifyChange, getTemplates, lockContractDocumentVersion, saveExternalDocument, unlock, updateContractDocumentVersionReview, updateContractDocumentVersionWithTemplate, updateSharingOnAttachment, getContentDocument_imperative, getContractActions_imperative, getContractDocumentVersion_imperative, getContractDocumentVersionReview_imperative, getDocumentGenerationProcessDetails_imperative, getLatestContractDocumentVersionCC_imperative, getTemplates_imperative, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-clm",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.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",
|
|
@@ -36,15 +36,14 @@
|
|
|
36
36
|
"release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-industries-clm",
|
|
37
37
|
"start": "nx build:karma && karma start",
|
|
38
38
|
"test": "nx build:karma && karma start --single-run",
|
|
39
|
-
"test:compat": "nx build:karma && karma start --single-run --compat",
|
|
40
39
|
"test:unit": "jest"
|
|
41
40
|
},
|
|
42
41
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
42
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
44
43
|
},
|
|
45
44
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
47
|
-
"@salesforce/lds-karma": "^1.
|
|
45
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
46
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
48
47
|
},
|
|
49
48
|
"nx": {
|
|
50
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -4115,10 +4115,25 @@ let getLatestContractDocumentVersionCC_imperative;
|
|
|
4115
4115
|
let getTemplates_imperative;
|
|
4116
4116
|
const getContentDocumentMetadata = { apiFamily: 'clm', name: 'getContentDocument', ttl: 60000 };
|
|
4117
4117
|
const getContractActionsMetadata = { apiFamily: 'clm', name: 'getContractActions', ttl: 60000 };
|
|
4118
|
-
const getContractDocumentVersionMetadata = {
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4118
|
+
const getContractDocumentVersionMetadata = {
|
|
4119
|
+
apiFamily: 'clm',
|
|
4120
|
+
name: 'getContractDocumentVersion',
|
|
4121
|
+
ttl: 60000,
|
|
4122
|
+
};
|
|
4123
|
+
const getContractDocumentVersionReviewMetadata = {
|
|
4124
|
+
apiFamily: 'clm',
|
|
4125
|
+
name: 'getContractDocumentVersionReview',
|
|
4126
|
+
ttl: 60000,
|
|
4127
|
+
};
|
|
4128
|
+
const getDocumentGenerationProcessDetailsMetadata = {
|
|
4129
|
+
apiFamily: 'clm',
|
|
4130
|
+
name: 'getDocumentGenerationProcessDetails',
|
|
4131
|
+
};
|
|
4132
|
+
const getLatestContractDocumentVersionCCMetadata = {
|
|
4133
|
+
apiFamily: 'clm',
|
|
4134
|
+
name: 'getLatestContractDocumentVersionCC',
|
|
4135
|
+
ttl: 60000,
|
|
4136
|
+
};
|
|
4122
4137
|
const getTemplatesMetadata = { apiFamily: 'clm', name: 'getTemplates', ttl: 60000 };
|
|
4123
4138
|
// Notify Update Available
|
|
4124
4139
|
function bindExportsTo(luvio) {
|
|
@@ -4132,7 +4147,7 @@ function bindExportsTo(luvio) {
|
|
|
4132
4147
|
const getTemplates_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getTemplates', getTemplatesAdapterFactory), getTemplatesMetadata);
|
|
4133
4148
|
function unwrapSnapshotData(factory) {
|
|
4134
4149
|
const adapter = factory(luvio);
|
|
4135
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
4150
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
4136
4151
|
}
|
|
4137
4152
|
return {
|
|
4138
4153
|
checkIn: unwrapSnapshotData(checkInAdapterFactory),
|
|
@@ -4209,4 +4224,4 @@ withDefaultLuvio((luvio) => {
|
|
|
4209
4224
|
});
|
|
4210
4225
|
|
|
4211
4226
|
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 };
|
|
4212
|
-
// version: 1.
|
|
4227
|
+
// version: 1.262.0-d3c071fdc
|