@salesforce/lds-adapters-platform-appexchange 1.416.1 → 1.418.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.
|
@@ -984,6 +984,13 @@ function validate$C(obj, path = 'AppExchangeAssetListingDetailsRepresentation')
|
|
|
984
984
|
return new TypeError(message);
|
|
985
985
|
}
|
|
986
986
|
}
|
|
987
|
+
if (obj.searchBlurb !== undefined) {
|
|
988
|
+
const obj_searchBlurb = obj.searchBlurb;
|
|
989
|
+
const path_searchBlurb = path + '.searchBlurb';
|
|
990
|
+
if (typeof obj_searchBlurb !== 'string') {
|
|
991
|
+
return new TypeError('Expected "string" but received "' + typeof obj_searchBlurb + '" (at "' + path_searchBlurb + '")');
|
|
992
|
+
}
|
|
993
|
+
}
|
|
987
994
|
if (obj.title !== undefined) {
|
|
988
995
|
const obj_title = obj.title;
|
|
989
996
|
const path_title = path + '.title';
|
package/dist/es/es2018/types/src/generated/types/AppExchangeAssetListingDetailsRepresentation.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { AppExchangePublisherRepresentation as AppExchangePublisherRepresentatio
|
|
|
7
7
|
import { AppExchangeListingReviewsSummaryRepresentation as AppExchangeListingReviewsSummaryRepresentation_AppExchangeListingReviewsSummaryRepresentation } from './AppExchangeListingReviewsSummaryRepresentation';
|
|
8
8
|
import { AppExchangeTopicInfoRepresentation as AppExchangeTopicInfoRepresentation_AppExchangeTopicInfoRepresentation } from './AppExchangeTopicInfoRepresentation';
|
|
9
9
|
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';
|
|
10
|
-
export declare const VERSION = "
|
|
10
|
+
export declare const VERSION = "4b3c61f98143c9c810210cf672a43246";
|
|
11
11
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
12
12
|
export declare const RepresentationType: string;
|
|
13
13
|
export declare function normalize(input: AppExchangeAssetListingDetailsRepresentation, existing: AppExchangeAssetListingDetailsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AppExchangeAssetListingDetailsRepresentationNormalized;
|
|
@@ -49,6 +49,8 @@ export interface AppExchangeAssetListingDetailsRepresentationNormalized {
|
|
|
49
49
|
pricing?: AppExchangePricingRepresentation_AppExchangePricingRepresentation;
|
|
50
50
|
publisher?: AppExchangePublisherRepresentation_AppExchangePublisherRepresentation;
|
|
51
51
|
reviewsSummary?: AppExchangeListingReviewsSummaryRepresentation_AppExchangeListingReviewsSummaryRepresentation;
|
|
52
|
+
/** The search blurb of the listing */
|
|
53
|
+
searchBlurb?: string;
|
|
52
54
|
/** The title of the listing */
|
|
53
55
|
title?: string;
|
|
54
56
|
/** Map of topics keyed by topic ID */
|
|
@@ -81,6 +83,7 @@ export interface AppExchangeAssetListingDetailsRepresentation {
|
|
|
81
83
|
pricing?: AppExchangePricingRepresentation_AppExchangePricingRepresentation;
|
|
82
84
|
publisher?: AppExchangePublisherRepresentation_AppExchangePublisherRepresentation;
|
|
83
85
|
reviewsSummary?: AppExchangeListingReviewsSummaryRepresentation_AppExchangeListingReviewsSummaryRepresentation;
|
|
86
|
+
searchBlurb?: string;
|
|
84
87
|
title?: string;
|
|
85
88
|
topics?: {
|
|
86
89
|
[key: string]: AppExchangeTopicInfoRepresentation_AppExchangeTopicInfoRepresentation;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-appexchange",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.418.0",
|
|
4
4
|
"description": "This API Family is owned by AppExchange Everywhere team, aimed at integrating AppExchange with Core.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/platform-appexchange.js",
|
|
@@ -46,10 +46,10 @@
|
|
|
46
46
|
"test:unit": "jest"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@salesforce/lds-bindings": "^1.
|
|
49
|
+
"@salesforce/lds-bindings": "^1.418.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
52
|
+
"@salesforce/lds-compiler-plugins": "^1.418.0"
|
|
53
53
|
},
|
|
54
54
|
"nx": {
|
|
55
55
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -994,6 +994,13 @@ function validate$C(obj, path = 'AppExchangeAssetListingDetailsRepresentation')
|
|
|
994
994
|
return new TypeError(message);
|
|
995
995
|
}
|
|
996
996
|
}
|
|
997
|
+
if (obj.searchBlurb !== undefined) {
|
|
998
|
+
const obj_searchBlurb = obj.searchBlurb;
|
|
999
|
+
const path_searchBlurb = path + '.searchBlurb';
|
|
1000
|
+
if (typeof obj_searchBlurb !== 'string') {
|
|
1001
|
+
return new TypeError('Expected "string" but received "' + typeof obj_searchBlurb + '" (at "' + path_searchBlurb + '")');
|
|
1002
|
+
}
|
|
1003
|
+
}
|
|
997
1004
|
if (obj.title !== undefined) {
|
|
998
1005
|
const obj_title = obj.title;
|
|
999
1006
|
const path_title = path + '.title';
|
|
@@ -6256,4 +6263,4 @@ withDefaultLuvio((luvio) => {
|
|
|
6256
6263
|
});
|
|
6257
6264
|
|
|
6258
6265
|
export { getActionDetails, getActionDetails_imperative, getAssetActions, getAssetActions_imperative, getAssetTopics, getAssetTopics_imperative, getListingDetails, getListingDetails_imperative, getTopicDetails, getTopicDetails_imperative, postAppExchangeUserEvents, searchListings };
|
|
6259
|
-
// version: 1.
|
|
6266
|
+
// version: 1.418.0-68f5961c99
|
package/src/raml/api.raml
CHANGED
|
@@ -222,6 +222,10 @@ types:
|
|
|
222
222
|
description: The reviews summary
|
|
223
223
|
type: AppExchangeListingReviewsSummaryRepresentation
|
|
224
224
|
required: false # hand-rolled
|
|
225
|
+
searchBlurb:
|
|
226
|
+
description: The search blurb of the listing
|
|
227
|
+
type: string
|
|
228
|
+
required: false # hand-rolled
|
|
225
229
|
title:
|
|
226
230
|
description: The title of the listing
|
|
227
231
|
type: string
|