@salesforce/lds-adapters-industries-clm 1.178.0 → 1.179.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 +1 -1
- package/sfdc/index.js +1 -1
- package/src/raml/api.raml +18 -0
- package/src/raml/luvio.raml +6 -0
package/package.json
CHANGED
package/sfdc/index.js
CHANGED
|
@@ -4167,4 +4167,4 @@ withDefaultLuvio((luvio) => {
|
|
|
4167
4167
|
});
|
|
4168
4168
|
|
|
4169
4169
|
export { checkIn, checkoutContractDocumentVersion, createContractDocumentVersionAndInitializeGenerateDocumentProcess, deleteAttachment, deleteContractDocumentVersionReview, executeContractAction, getContentDocument, getContentDocumentNotifyChange, getContentDocument_imperative, getContractActions, getContractActionsNotifyChange, getContractActions_imperative, getContractDocumentVersion, getContractDocumentVersionReview, getContractDocumentVersionReviewNotifyChange, getContractDocumentVersionReview_imperative, getContractDocumentVersion_imperative, getDocumentGenerationProcessDetails, getDocumentGenerationProcessDetails_imperative, getTemplates, getTemplates_imperative, lockContractDocumentVersion, patchContractDocumentVersionReview, postContractDocumentVersionReview, saveExternalDocument, unlock, updateContractDocumentVersionWithTemplate };
|
|
4170
|
-
// version: 1.
|
|
4170
|
+
// version: 1.179.0-98165b745
|
package/src/raml/api.raml
CHANGED
|
@@ -355,6 +355,10 @@ types:
|
|
|
355
355
|
description: Input representation to get TemplateId
|
|
356
356
|
type: object
|
|
357
357
|
properties:
|
|
358
|
+
isExternalReviewImport:
|
|
359
|
+
description: Flag for whether the checkout is for external review import
|
|
360
|
+
type: boolean
|
|
361
|
+
required: false
|
|
358
362
|
templateId:
|
|
359
363
|
description: Template Id with Key Prefix 2dt
|
|
360
364
|
type: string
|
|
@@ -654,6 +658,20 @@ types:
|
|
|
654
658
|
contractDocumentVersionId:
|
|
655
659
|
type: string
|
|
656
660
|
required: true
|
|
661
|
+
/externalReviewDocument:
|
|
662
|
+
get:
|
|
663
|
+
displayName: getContractExternalReviewDocument
|
|
664
|
+
description: Contract document version for external review
|
|
665
|
+
responses:
|
|
666
|
+
'200':
|
|
667
|
+
description: Success
|
|
668
|
+
body:
|
|
669
|
+
application/json:
|
|
670
|
+
type: GenericOutputRepresentation
|
|
671
|
+
uriParameters:
|
|
672
|
+
contractDocumentVersionId:
|
|
673
|
+
type: string
|
|
674
|
+
required: true
|
|
657
675
|
/review:
|
|
658
676
|
delete:
|
|
659
677
|
displayName: deleteContractDocumentVersionReview
|
package/src/raml/luvio.raml
CHANGED
|
@@ -139,6 +139,12 @@ types:
|
|
|
139
139
|
name: postContractDocumentVersionReview
|
|
140
140
|
uriParameters:
|
|
141
141
|
contractDocumentVersionId:
|
|
142
|
+
/externalReviewDocument:
|
|
143
|
+
get:
|
|
144
|
+
(luvio.adapter):
|
|
145
|
+
name: getExternalReviewDocument
|
|
146
|
+
uriParameters:
|
|
147
|
+
contractDocumentVersionId:
|
|
142
148
|
/contract/{contractId}/contract-document-version:
|
|
143
149
|
get:
|
|
144
150
|
(luvio.adapter):
|