@salesforce/lds-adapters-experience-model 1.276.0 → 1.277.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 = "e31b48cae90b342e04cec82fe0300808";
|
|
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;
|
|
@@ -19,7 +19,7 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
19
19
|
*/
|
|
20
20
|
export interface ManagedContentDocumentRepresentationNormalized {
|
|
21
21
|
/** The api name of the managed content. */
|
|
22
|
-
apiName
|
|
22
|
+
apiName?: string | null;
|
|
23
23
|
/** Body contains fields defined in the managed content type schema of this managed content. */
|
|
24
24
|
contentBody: {
|
|
25
25
|
[key: string]: {};
|
|
@@ -55,7 +55,7 @@ export interface ManagedContentDocumentRepresentationNormalized {
|
|
|
55
55
|
* (none)
|
|
56
56
|
*/
|
|
57
57
|
export interface ManagedContentDocumentRepresentation {
|
|
58
|
-
apiName
|
|
58
|
+
apiName?: string | null;
|
|
59
59
|
contentBody: {
|
|
60
60
|
[key: string]: {};
|
|
61
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.277.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.277.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.277.0",
|
|
51
|
+
"@salesforce/lds-karma": "^1.277.0"
|
|
52
52
|
},
|
|
53
53
|
"nx": {
|
|
54
54
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -2285,4 +2285,4 @@ withDefaultLuvio((luvio) => {
|
|
|
2285
2285
|
});
|
|
2286
2286
|
|
|
2287
2287
|
export { getBlockType, getBlockType_imperative, getBlockTypes, getBlockTypes_imperative, getContentType, getContentType_imperative, getContentTypes, getContentTypes_imperative, getPropertyType, getPropertyType_imperative, getPropertyTypes, getPropertyTypes_imperative, getTypes, getTypes_imperative };
|
|
2288
|
-
// version: 1.
|
|
2288
|
+
// version: 1.277.0-02e43c524
|
package/src/raml/api.raml
CHANGED
|
@@ -1042,6 +1042,7 @@ types:
|
|
|
1042
1042
|
apiName:
|
|
1043
1043
|
description: The api name of the managed content.
|
|
1044
1044
|
type: string | nil
|
|
1045
|
+
required: false
|
|
1045
1046
|
contentBody:
|
|
1046
1047
|
description: Body contains fields defined in the managed content type schema
|
|
1047
1048
|
of this managed content.
|