@salesforce/lds-adapters-experience-model 1.272.0 → 1.273.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.
|
@@ -3,7 +3,7 @@ import { ManagedContentTypeSummaryRepresentation as ManagedContentTypeSummaryRep
|
|
|
3
3
|
import { ManagedContentUserSummaryRepresentation as ManagedContentUserSummaryRepresentation_ManagedContentUserSummaryRepresentation } from './ManagedContentUserSummaryRepresentation';
|
|
4
4
|
import { ManagedContentFolderSummaryRepresentation as ManagedContentFolderSummaryRepresentation_ManagedContentFolderSummaryRepresentation } from './ManagedContentFolderSummaryRepresentation';
|
|
5
5
|
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';
|
|
6
|
-
export declare const VERSION = "
|
|
6
|
+
export declare const VERSION = "f94d70b13e2a0f24ecf099944955df3b";
|
|
7
7
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
8
8
|
export declare const RepresentationType: string;
|
|
9
9
|
export declare function normalize(input: ManagedContentDocumentRepresentation, existing: ManagedContentDocumentRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ManagedContentDocumentRepresentationNormalized;
|
|
@@ -18,6 +18,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
18
18
|
* (none)
|
|
19
19
|
*/
|
|
20
20
|
export interface ManagedContentDocumentRepresentationNormalized {
|
|
21
|
+
/** The api name of the managed content. */
|
|
22
|
+
apiName: string | null;
|
|
21
23
|
/** Body contains fields defined in the managed content type schema of this managed content. */
|
|
22
24
|
contentBody: {
|
|
23
25
|
[key: string]: {};
|
|
@@ -53,6 +55,7 @@ export interface ManagedContentDocumentRepresentationNormalized {
|
|
|
53
55
|
* (none)
|
|
54
56
|
*/
|
|
55
57
|
export interface ManagedContentDocumentRepresentation {
|
|
58
|
+
apiName: string | null;
|
|
56
59
|
contentBody: {
|
|
57
60
|
[key: string]: {};
|
|
58
61
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-experience-model",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.273.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "APIs to read and query all the 'types' in the Unified Experience Model",
|
|
6
6
|
"main": "dist/es/es2018/experience-model.js",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"test:unit": "jest"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
47
|
+
"@salesforce/lds-bindings": "^1.273.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.273.0",
|
|
51
|
+
"@salesforce/lds-karma": "^1.273.0"
|
|
52
52
|
},
|
|
53
53
|
"nx": {
|
|
54
54
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -2259,4 +2259,4 @@ withDefaultLuvio((luvio) => {
|
|
|
2259
2259
|
});
|
|
2260
2260
|
|
|
2261
2261
|
export { getBlockType, getBlockType_imperative, getBlockTypes, getBlockTypes_imperative, getContentType, getContentType_imperative, getContentTypes, getContentTypes_imperative, getPropertyType, getPropertyType_imperative, getPropertyTypes, getPropertyTypes_imperative, getTypes, getTypes_imperative };
|
|
2262
|
-
// version: 1.
|
|
2262
|
+
// version: 1.273.0-daa4f720d
|
package/src/raml/api.raml
CHANGED
|
@@ -1027,6 +1027,9 @@ types:
|
|
|
1027
1027
|
description: Information about a managed content in authoring space.
|
|
1028
1028
|
type: object
|
|
1029
1029
|
properties:
|
|
1030
|
+
apiName:
|
|
1031
|
+
description: The api name of the managed content.
|
|
1032
|
+
type: string | nil
|
|
1030
1033
|
contentBody:
|
|
1031
1034
|
description: Body contains fields defined in the managed content type schema
|
|
1032
1035
|
of this managed content.
|