@salesforce/lds-adapters-industries-externaldocument 1.227.2 → 1.228.1
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/dist/es/es2018/types/src/generated/types/ExternalDocumentMetadataRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/{ReviewerMetadataRepresentation.d.ts → ReviewerRepresentation.d.ts} +10 -10
- package/package.json +1 -1
- package/sfdc/index.js +1 -1
- package/src/raml/api.raml +5 -5
- package/src/raml/luvio.raml +1 -1
package/dist/es/es2018/types/src/generated/types/ExternalDocumentMetadataRepresentation.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
2
|
export declare const TTL = 60000;
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "105382b7f126c6646740e5d5e78510ab";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export declare function normalize(input: ExternalDocumentMetadataRepresentation, existing: ExternalDocumentMetadataRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExternalDocumentMetadataRepresentationNormalized;
|
|
@@ -20,7 +20,7 @@ export interface ExternalDocumentMetadataRepresentationNormalized {
|
|
|
20
20
|
/** ObjectReferences List */
|
|
21
21
|
objectReferences: Array<{}>;
|
|
22
22
|
/** Metadata of document reviewers */
|
|
23
|
-
|
|
23
|
+
reviewers: Array<{}>;
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
26
26
|
* Input representation of external document metadata
|
|
@@ -31,5 +31,5 @@ export interface ExternalDocumentMetadataRepresentationNormalized {
|
|
|
31
31
|
export interface ExternalDocumentMetadataRepresentation {
|
|
32
32
|
documentAuthoredContents: Array<{}>;
|
|
33
33
|
objectReferences: Array<{}>;
|
|
34
|
-
|
|
34
|
+
reviewers: Array<{}>;
|
|
35
35
|
}
|
|
@@ -1,36 +1,36 @@
|
|
|
1
1
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
2
|
export declare const TTL = 60000;
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "ead3daaf8e081a83457ad756dd4a144c";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
|
-
export declare function normalize(input:
|
|
6
|
+
export declare function normalize(input: ReviewerRepresentation, existing: ReviewerRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ReviewerRepresentationNormalized;
|
|
7
7
|
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
8
|
-
export declare function equals(existing:
|
|
8
|
+
export declare function equals(existing: ReviewerRepresentationNormalized, incoming: ReviewerRepresentationNormalized): boolean;
|
|
9
9
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input:
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ReviewerRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
11
|
/**
|
|
12
|
-
* Input representation of a
|
|
12
|
+
* Input representation of a reviewer
|
|
13
13
|
*
|
|
14
14
|
* Keys:
|
|
15
15
|
* (none)
|
|
16
16
|
*/
|
|
17
|
-
export interface
|
|
17
|
+
export interface ReviewerRepresentationNormalized {
|
|
18
18
|
/** Update in user consent for storing data in SF */
|
|
19
19
|
externalUserConsentUpdate: string;
|
|
20
20
|
/** Review Status */
|
|
21
21
|
reviewStatus: string;
|
|
22
|
-
/**
|
|
22
|
+
/** Reviewer Id */
|
|
23
23
|
reviewerId: string;
|
|
24
|
-
/** No.of unresolved comments by the reviewer */
|
|
24
|
+
/** No. of unresolved comments by the reviewer */
|
|
25
25
|
unresolvedCommentsCount: number;
|
|
26
26
|
}
|
|
27
27
|
/**
|
|
28
|
-
* Input representation of a
|
|
28
|
+
* Input representation of a reviewer
|
|
29
29
|
*
|
|
30
30
|
* Keys:
|
|
31
31
|
* (none)
|
|
32
32
|
*/
|
|
33
|
-
export interface
|
|
33
|
+
export interface ReviewerRepresentation {
|
|
34
34
|
externalUserConsentUpdate: string;
|
|
35
35
|
reviewStatus: string;
|
|
36
36
|
reviewerId: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-externaldocument",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.228.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "This External Document API family will allow to create, edit or read the information about the document which is present in the external editor outside Salesforce. ",
|
|
6
6
|
"main": "dist/es/es2018/industries-externaldocument.js",
|
package/sfdc/index.js
CHANGED
|
@@ -985,4 +985,4 @@ withDefaultLuvio((luvio) => {
|
|
|
985
985
|
});
|
|
986
986
|
|
|
987
987
|
export { createExternalDocument, getExternalDocument, getExternalDocumentUsers, getExternalDocumentUsers_imperative, getExternalDocument_imperative, saveExternalDocument };
|
|
988
|
-
// version: 1.
|
|
988
|
+
// version: 1.228.1-0cb6f94f1
|
package/src/raml/api.raml
CHANGED
|
@@ -93,7 +93,7 @@ types:
|
|
|
93
93
|
type: array
|
|
94
94
|
items:
|
|
95
95
|
type: object
|
|
96
|
-
|
|
96
|
+
reviewers:
|
|
97
97
|
description: Metadata of document reviewers
|
|
98
98
|
type: array
|
|
99
99
|
items:
|
|
@@ -179,8 +179,8 @@ types:
|
|
|
179
179
|
objectType:
|
|
180
180
|
description: ObjectType
|
|
181
181
|
type: string
|
|
182
|
-
|
|
183
|
-
description: Input representation of a
|
|
182
|
+
ReviewerRepresentation:
|
|
183
|
+
description: Input representation of a reviewer
|
|
184
184
|
type: object
|
|
185
185
|
properties:
|
|
186
186
|
externalUserConsentUpdate:
|
|
@@ -190,10 +190,10 @@ types:
|
|
|
190
190
|
description: Review Status
|
|
191
191
|
type: string
|
|
192
192
|
reviewerId:
|
|
193
|
-
description:
|
|
193
|
+
description: Reviewer Id
|
|
194
194
|
type: string
|
|
195
195
|
unresolvedCommentsCount:
|
|
196
|
-
description: No.of unresolved comments by the reviewer
|
|
196
|
+
description: No. of unresolved comments by the reviewer
|
|
197
197
|
type: integer
|
|
198
198
|
SaveExternalDocumentInputRepresentation:
|
|
199
199
|
description: Input representation to save external document to salesforce
|
package/src/raml/luvio.raml
CHANGED