@salesforce/lds-adapters-industries-clm 1.260.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,11 +4115,27 @@ 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 };
|
|
4138
|
+
// Notify Update Available
|
|
4123
4139
|
function bindExportsTo(luvio) {
|
|
4124
4140
|
// LDS Adapters
|
|
4125
4141
|
const getContentDocument_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getContentDocument', getContentDocumentAdapterFactory), getContentDocumentMetadata);
|
|
@@ -4131,7 +4147,7 @@ function bindExportsTo(luvio) {
|
|
|
4131
4147
|
const getTemplates_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getTemplates', getTemplatesAdapterFactory), getTemplatesMetadata);
|
|
4132
4148
|
function unwrapSnapshotData(factory) {
|
|
4133
4149
|
const adapter = factory(luvio);
|
|
4134
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
4150
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
4135
4151
|
}
|
|
4136
4152
|
return {
|
|
4137
4153
|
checkIn: unwrapSnapshotData(checkInAdapterFactory),
|
|
@@ -4166,7 +4182,8 @@ function bindExportsTo(luvio) {
|
|
|
4166
4182
|
getContractDocumentVersionReview_imperative: createImperativeAdapter(luvio, getContractDocumentVersionReview_ldsAdapter, getContractDocumentVersionReviewMetadata),
|
|
4167
4183
|
getDocumentGenerationProcessDetails_imperative: createImperativeAdapter(luvio, getDocumentGenerationProcessDetails_ldsAdapter, getDocumentGenerationProcessDetailsMetadata),
|
|
4168
4184
|
getLatestContractDocumentVersionCC_imperative: createImperativeAdapter(luvio, getLatestContractDocumentVersionCC_ldsAdapter, getLatestContractDocumentVersionCCMetadata),
|
|
4169
|
-
getTemplates_imperative: createImperativeAdapter(luvio, getTemplates_ldsAdapter, getTemplatesMetadata)
|
|
4185
|
+
getTemplates_imperative: createImperativeAdapter(luvio, getTemplates_ldsAdapter, getTemplatesMetadata),
|
|
4186
|
+
// Notify Update Availables
|
|
4170
4187
|
};
|
|
4171
4188
|
}
|
|
4172
4189
|
withDefaultLuvio((luvio) => {
|
|
@@ -4202,9 +4219,9 @@ withDefaultLuvio((luvio) => {
|
|
|
4202
4219
|
getContractDocumentVersionReview_imperative,
|
|
4203
4220
|
getDocumentGenerationProcessDetails_imperative,
|
|
4204
4221
|
getLatestContractDocumentVersionCC_imperative,
|
|
4205
|
-
getTemplates_imperative
|
|
4222
|
+
getTemplates_imperative,
|
|
4206
4223
|
} = bindExportsTo(luvio));
|
|
4207
4224
|
});
|
|
4208
4225
|
|
|
4209
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 };
|
|
4210
|
-
// version: 1.
|
|
4227
|
+
// version: 1.262.0-d3c071fdc
|