@salesforce/lds-adapters-industries-clm 1.280.0 → 1.281.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.
@@ -560,6 +560,13 @@ function validate$k(obj, path = 'RecipientOutputRepresentation') {
560
560
  if (typeof obj_status !== 'string') {
561
561
  return new TypeError('Expected "string" but received "' + typeof obj_status + '" (at "' + path_status + '")');
562
562
  }
563
+ if (obj.type !== undefined) {
564
+ const obj_type = obj.type;
565
+ const path_type = path + '.type';
566
+ if (typeof obj_type !== 'string') {
567
+ return new TypeError('Expected "string" but received "' + typeof obj_type + '" (at "' + path_type + '")');
568
+ }
569
+ }
563
570
  })();
564
571
  return v_error === undefined ? null : v_error;
565
572
  }
@@ -1,5 +1,5 @@
1
1
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
- export declare const VERSION = "cf80f0674534cbbc7ffe8dcfea35822d";
2
+ export declare const VERSION = "d78ba536d6cc3f67134a7a16cc843dc4";
3
3
  export declare function validate(obj: any, path?: string): TypeError | null;
4
4
  export declare const RepresentationType: string;
5
5
  export declare function normalize(input: RecipientOutputRepresentation, existing: RecipientOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): RecipientOutputRepresentationNormalized;
@@ -24,6 +24,8 @@ export interface RecipientOutputRepresentationNormalized {
24
24
  name: string;
25
25
  /** The status of the recipient */
26
26
  status: string;
27
+ /** The type of the recipient */
28
+ type?: string;
27
29
  }
28
30
  /**
29
31
  * Document Recipient Details
@@ -37,4 +39,5 @@ export interface RecipientOutputRepresentation {
37
39
  finalStatusDateTime: string;
38
40
  name: string;
39
41
  status: string;
42
+ type?: string;
40
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-industries-clm",
3
- "version": "1.280.0",
3
+ "version": "1.281.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",
@@ -39,11 +39,11 @@
39
39
  "test:unit": "jest"
40
40
  },
41
41
  "dependencies": {
42
- "@salesforce/lds-bindings": "^1.280.0"
42
+ "@salesforce/lds-bindings": "^1.281.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@salesforce/lds-compiler-plugins": "^1.280.0",
46
- "@salesforce/lds-karma": "^1.280.0"
45
+ "@salesforce/lds-compiler-plugins": "^1.281.0",
46
+ "@salesforce/lds-karma": "^1.281.0"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {
package/sfdc/index.js CHANGED
@@ -2913,6 +2913,13 @@ function validate$7(obj, path = 'RecipientOutputRepresentation') {
2913
2913
  if (typeof obj_status !== 'string') {
2914
2914
  return new TypeError('Expected "string" but received "' + typeof obj_status + '" (at "' + path_status + '")');
2915
2915
  }
2916
+ if (obj.type !== undefined) {
2917
+ const obj_type = obj.type;
2918
+ const path_type = path + '.type';
2919
+ if (typeof obj_type !== 'string') {
2920
+ return new TypeError('Expected "string" but received "' + typeof obj_type + '" (at "' + path_type + '")');
2921
+ }
2922
+ }
2916
2923
  })();
2917
2924
  return v_error === undefined ? null : v_error;
2918
2925
  }
@@ -4760,4 +4767,4 @@ withDefaultLuvio((luvio) => {
4760
4767
  });
4761
4768
 
4762
4769
  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, getDocumentRecipientAndStatus, getDocumentRecipientAndStatus_imperative, getExternalDocumentReviewCC, getExternalDocumentReviewCC_imperative, getLatestContractDocumentVersionCC, getLatestContractDocumentVersionCCNotifyChange, getLatestContractDocumentVersionCC_imperative, getTemplates, getTemplates_imperative, lockContractDocumentVersion, saveExternalDocument, unlock, updateContractDocumentVersionReview, updateContractDocumentVersionWithTemplate, updateSharingOnAttachment };
4763
- // version: 1.280.0-09f980816
4770
+ // version: 1.281.0-bcef40769
package/src/raml/api.raml CHANGED
@@ -566,6 +566,10 @@ types:
566
566
  status:
567
567
  description: The status of the recipient
568
568
  type: string
569
+ type:
570
+ description: The type of the recipient
571
+ required: false
572
+ type: string
569
573
  ExternalDocumentReviewCCRepresentation:
570
574
  description: External Document Version Review
571
575
  type: object