@salesforce/lds-adapters-platform-appexchange 1.419.0 → 1.421.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.
|
@@ -954,6 +954,13 @@ function validate$C(obj, path = 'AppExchangeAssetListingDetailsRepresentation')
|
|
|
954
954
|
if (typeof obj_name !== 'string') {
|
|
955
955
|
return new TypeError('Expected "string" but received "' + typeof obj_name + '" (at "' + path_name + '")');
|
|
956
956
|
}
|
|
957
|
+
if (obj.packageVersionId !== undefined) {
|
|
958
|
+
const obj_packageVersionId = obj.packageVersionId;
|
|
959
|
+
const path_packageVersionId = path + '.packageVersionId';
|
|
960
|
+
if (typeof obj_packageVersionId !== 'string') {
|
|
961
|
+
return new TypeError('Expected "string" but received "' + typeof obj_packageVersionId + '" (at "' + path_packageVersionId + '")');
|
|
962
|
+
}
|
|
963
|
+
}
|
|
957
964
|
if (obj.pricing !== undefined) {
|
|
958
965
|
const obj_pricing = obj.pricing;
|
|
959
966
|
const path_pricing = path + '.pricing';
|
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 = "01e92fd9b7a65ed763c3f4b660ab51f6";
|
|
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;
|
|
@@ -46,6 +46,8 @@ export interface AppExchangeAssetListingDetailsRepresentationNormalized {
|
|
|
46
46
|
logoUrl?: string;
|
|
47
47
|
/** The name of the listing */
|
|
48
48
|
name: string;
|
|
49
|
+
/** The package version ID for the private app package that is associated with the AppListing */
|
|
50
|
+
packageVersionId?: string;
|
|
49
51
|
pricing?: AppExchangePricingRepresentation_AppExchangePricingRepresentation;
|
|
50
52
|
publisher?: AppExchangePublisherRepresentation_AppExchangePublisherRepresentation;
|
|
51
53
|
reviewsSummary?: AppExchangeListingReviewsSummaryRepresentation_AppExchangeListingReviewsSummaryRepresentation;
|
|
@@ -80,6 +82,7 @@ export interface AppExchangeAssetListingDetailsRepresentation {
|
|
|
80
82
|
latestVersion?: AppExchangeInstalledPackageRepresentation_AppExchangeInstalledPackageRepresentation;
|
|
81
83
|
logoUrl?: string;
|
|
82
84
|
name: string;
|
|
85
|
+
packageVersionId?: string;
|
|
83
86
|
pricing?: AppExchangePricingRepresentation_AppExchangePricingRepresentation;
|
|
84
87
|
publisher?: AppExchangePublisherRepresentation_AppExchangePublisherRepresentation;
|
|
85
88
|
reviewsSummary?: AppExchangeListingReviewsSummaryRepresentation_AppExchangeListingReviewsSummaryRepresentation;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-appexchange",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.421.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.421.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
52
|
+
"@salesforce/lds-compiler-plugins": "^1.421.0"
|
|
53
53
|
},
|
|
54
54
|
"nx": {
|
|
55
55
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -964,6 +964,13 @@ function validate$C(obj, path = 'AppExchangeAssetListingDetailsRepresentation')
|
|
|
964
964
|
if (typeof obj_name !== 'string') {
|
|
965
965
|
return new TypeError('Expected "string" but received "' + typeof obj_name + '" (at "' + path_name + '")');
|
|
966
966
|
}
|
|
967
|
+
if (obj.packageVersionId !== undefined) {
|
|
968
|
+
const obj_packageVersionId = obj.packageVersionId;
|
|
969
|
+
const path_packageVersionId = path + '.packageVersionId';
|
|
970
|
+
if (typeof obj_packageVersionId !== 'string') {
|
|
971
|
+
return new TypeError('Expected "string" but received "' + typeof obj_packageVersionId + '" (at "' + path_packageVersionId + '")');
|
|
972
|
+
}
|
|
973
|
+
}
|
|
967
974
|
if (obj.pricing !== undefined) {
|
|
968
975
|
const obj_pricing = obj.pricing;
|
|
969
976
|
const path_pricing = path + '.pricing';
|
|
@@ -6263,4 +6270,4 @@ withDefaultLuvio((luvio) => {
|
|
|
6263
6270
|
});
|
|
6264
6271
|
|
|
6265
6272
|
export { getActionDetails, getActionDetails_imperative, getAssetActions, getAssetActions_imperative, getAssetTopics, getAssetTopics_imperative, getListingDetails, getListingDetails_imperative, getTopicDetails, getTopicDetails_imperative, postAppExchangeUserEvents, searchListings };
|
|
6266
|
-
// version: 1.
|
|
6273
|
+
// version: 1.421.0-45320a2742
|
package/src/raml/api.raml
CHANGED
|
@@ -207,6 +207,10 @@ types:
|
|
|
207
207
|
description: The logo URL
|
|
208
208
|
type: string
|
|
209
209
|
required: false # hand-rolled
|
|
210
|
+
packageVersionId:
|
|
211
|
+
description: The package version ID for the private app package that is associated with the AppListing
|
|
212
|
+
type: string
|
|
213
|
+
required: false # hand-rolled
|
|
210
214
|
name:
|
|
211
215
|
description: The name of the listing
|
|
212
216
|
type: string
|