@salesforce/lds-adapters-platform-appexchange 1.362.0 → 1.364.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.
- package/dist/es/es2018/platform-appexchange.js +294 -76
- package/dist/es/es2018/types/src/generated/types/AppExchangeInstalledPackageRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeInstalledPackageVersionRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeListingAdditionalProps.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeListingDetailsRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/AppExchangeSearchListingRepresentation.d.ts +5 -1
- package/package.json +3 -3
- package/sfdc/index.js +305 -87
- package/src/raml/api.raml +57 -1
package/dist/es/es2018/types/src/generated/types/AppExchangeInstalledPackageRepresentation.d.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { AppExchangeInstalledPackageVersionRepresentation as AppExchangeInstalledPackageVersionRepresentation_AppExchangeInstalledPackageVersionRepresentation } from './AppExchangeInstalledPackageVersionRepresentation';
|
|
2
|
+
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';
|
|
3
|
+
export declare const VERSION = "e8559a735513fd85cc19c33c888ba988";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: AppExchangeInstalledPackageRepresentation, existing: AppExchangeInstalledPackageRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AppExchangeInstalledPackageRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: AppExchangeInstalledPackageRepresentationNormalized, incoming: AppExchangeInstalledPackageRepresentationNormalized): boolean;
|
|
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: AppExchangeInstalledPackageRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Represents an AppExchange Installed Package details
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface AppExchangeInstalledPackageRepresentationNormalized {
|
|
18
|
+
version?: AppExchangeInstalledPackageVersionRepresentation_AppExchangeInstalledPackageVersionRepresentation;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Represents an AppExchange Installed Package details
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* (none)
|
|
25
|
+
*/
|
|
26
|
+
export interface AppExchangeInstalledPackageRepresentation {
|
|
27
|
+
version?: AppExchangeInstalledPackageVersionRepresentation_AppExchangeInstalledPackageVersionRepresentation;
|
|
28
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
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';
|
|
2
|
+
export declare const VERSION = "b21cb4fb9076945f34fc98f2365303d1";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: AppExchangeInstalledPackageVersionRepresentation, existing: AppExchangeInstalledPackageVersionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AppExchangeInstalledPackageVersionRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: AppExchangeInstalledPackageVersionRepresentationNormalized, incoming: AppExchangeInstalledPackageVersionRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: AppExchangeInstalledPackageVersionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Represents an AppExchange Installed Package details
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface AppExchangeInstalledPackageVersionRepresentationNormalized {
|
|
17
|
+
/** majorVersion of the installed package */
|
|
18
|
+
majorVersion?: number;
|
|
19
|
+
/** minorVersion of the installed package */
|
|
20
|
+
minorVersion?: number;
|
|
21
|
+
/** patchVersion of the installed package */
|
|
22
|
+
patchVersion?: number;
|
|
23
|
+
/** versionName of the installed package */
|
|
24
|
+
versionName?: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Represents an AppExchange Installed Package details
|
|
28
|
+
*
|
|
29
|
+
* Keys:
|
|
30
|
+
* (none)
|
|
31
|
+
*/
|
|
32
|
+
export interface AppExchangeInstalledPackageVersionRepresentation {
|
|
33
|
+
majorVersion?: number;
|
|
34
|
+
minorVersion?: number;
|
|
35
|
+
patchVersion?: number;
|
|
36
|
+
versionName?: string;
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
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';
|
|
2
|
+
export declare const VERSION = "665189e35b20e3cede6989c78faad07f";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: AppExchangeListingAdditionalProps, existing: AppExchangeListingAdditionalPropsNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AppExchangeListingAdditionalPropsNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: AppExchangeListingAdditionalPropsNormalized, incoming: AppExchangeListingAdditionalPropsNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: AppExchangeListingAdditionalProps, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Represents AdditionalProps of an AppExchange listing
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface AppExchangeListingAdditionalPropsNormalized {
|
|
17
|
+
/** actionCount of an AppExchange listing */
|
|
18
|
+
actionCount?: number;
|
|
19
|
+
/** agentCount of an AppExchange listing */
|
|
20
|
+
agentCount?: number;
|
|
21
|
+
/** agentDescription of an AppExchange listing */
|
|
22
|
+
agentDescription?: string;
|
|
23
|
+
/** topicCount of an AppExchange listing */
|
|
24
|
+
topicCount?: number;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Represents AdditionalProps of an AppExchange listing
|
|
28
|
+
*
|
|
29
|
+
* Keys:
|
|
30
|
+
* (none)
|
|
31
|
+
*/
|
|
32
|
+
export interface AppExchangeListingAdditionalProps {
|
|
33
|
+
actionCount?: number;
|
|
34
|
+
agentCount?: number;
|
|
35
|
+
agentDescription?: string;
|
|
36
|
+
topicCount?: number;
|
|
37
|
+
}
|
package/dist/es/es2018/types/src/generated/types/AppExchangeListingDetailsRepresentation.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { AppExchangeListingCategoriesRepresentation as AppExchangeListingCategoriesRepresentation_AppExchangeListingCategoriesRepresentation } from './AppExchangeListingCategoriesRepresentation';
|
|
2
2
|
import { AppExchangeListingExtensionsRepresentation as AppExchangeListingExtensionsRepresentation_AppExchangeListingExtensionsRepresentation } from './AppExchangeListingExtensionsRepresentation';
|
|
3
|
+
import { AppExchangeInstalledPackageRepresentation as AppExchangeInstalledPackageRepresentation_AppExchangeInstalledPackageRepresentation } from './AppExchangeInstalledPackageRepresentation';
|
|
3
4
|
import { AppExchangeListingPluginsRepresentation as AppExchangeListingPluginsRepresentation_AppExchangeListingPluginsRepresentation } from './AppExchangeListingPluginsRepresentation';
|
|
4
5
|
import { AppExchangePricingRepresentation as AppExchangePricingRepresentation_AppExchangePricingRepresentation } from './AppExchangePricingRepresentation';
|
|
5
6
|
import { AppExchangePublisherRepresentation as AppExchangePublisherRepresentation_AppExchangePublisherRepresentation } from './AppExchangePublisherRepresentation';
|
|
6
7
|
import { AppExchangeListingReviewsSummaryRepresentation as AppExchangeListingReviewsSummaryRepresentation_AppExchangeListingReviewsSummaryRepresentation } from './AppExchangeListingReviewsSummaryRepresentation';
|
|
7
8
|
import { AppExchangeListingSolutionRepresentation as AppExchangeListingSolutionRepresentation_AppExchangeListingSolutionRepresentation } from './AppExchangeListingSolutionRepresentation';
|
|
8
9
|
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';
|
|
9
|
-
export declare const VERSION = "
|
|
10
|
+
export declare const VERSION = "5498b678efe3f405bc661e7613e6872c";
|
|
10
11
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
11
12
|
export declare const RepresentationType: string;
|
|
12
13
|
export declare function normalize(input: AppExchangeListingDetailsRepresentation, existing: AppExchangeListingDetailsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AppExchangeListingDetailsRepresentationNormalized;
|
|
@@ -34,6 +35,8 @@ export interface AppExchangeListingDetailsRepresentationNormalized {
|
|
|
34
35
|
fullDescription?: string;
|
|
35
36
|
/** installPackagingPermission - Permission to install AppExchange listing packages */
|
|
36
37
|
installPackagingPermission?: boolean;
|
|
38
|
+
/** installed Package details of AppExchange listing */
|
|
39
|
+
installedPackage?: AppExchangeInstalledPackageRepresentation_AppExchangeInstalledPackageRepresentation;
|
|
37
40
|
/** Soft delete flag of AppExchange listing */
|
|
38
41
|
isDeleted?: boolean;
|
|
39
42
|
/** The availability of this AppExchange listing on the AppExchange site */
|
|
@@ -79,6 +82,7 @@ export interface AppExchangeListingDetailsRepresentation {
|
|
|
79
82
|
extensions?: AppExchangeListingExtensionsRepresentation_AppExchangeListingExtensionsRepresentation;
|
|
80
83
|
fullDescription?: string;
|
|
81
84
|
installPackagingPermission?: boolean;
|
|
85
|
+
installedPackage?: AppExchangeInstalledPackageRepresentation_AppExchangeInstalledPackageRepresentation;
|
|
82
86
|
isDeleted?: boolean;
|
|
83
87
|
isPublic?: boolean;
|
|
84
88
|
name?: string;
|
package/dist/es/es2018/types/src/generated/types/AppExchangeSearchListingRepresentation.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { AppExchangeListingAdditionalProps as AppExchangeListingAdditionalProps_AppExchangeListingAdditionalProps } from './AppExchangeListingAdditionalProps';
|
|
1
2
|
import { AppExchangeListingLogoRepresentation as AppExchangeListingLogoRepresentation_AppExchangeListingLogoRepresentation } from './AppExchangeListingLogoRepresentation';
|
|
2
3
|
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';
|
|
3
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "ae39583e70758c8083f7680e529f4519";
|
|
4
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
6
|
export declare const RepresentationType: string;
|
|
6
7
|
export declare function normalize(input: AppExchangeSearchListingRepresentation, existing: AppExchangeSearchListingRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AppExchangeSearchListingRepresentationNormalized;
|
|
@@ -15,6 +16,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
15
16
|
* (none)
|
|
16
17
|
*/
|
|
17
18
|
export interface AppExchangeSearchListingRepresentationNormalized {
|
|
19
|
+
/** AdditionalProps of an AppExchange listing */
|
|
20
|
+
additionalProps?: AppExchangeListingAdditionalProps_AppExchangeListingAdditionalProps;
|
|
18
21
|
/** Average Rating of AppExchange listing */
|
|
19
22
|
averageRating?: number;
|
|
20
23
|
/** Collection Name of AppExchange listing */
|
|
@@ -51,6 +54,7 @@ export interface AppExchangeSearchListingRepresentationNormalized {
|
|
|
51
54
|
* (none)
|
|
52
55
|
*/
|
|
53
56
|
export interface AppExchangeSearchListingRepresentation {
|
|
57
|
+
additionalProps?: AppExchangeListingAdditionalProps_AppExchangeListingAdditionalProps;
|
|
54
58
|
averageRating?: number;
|
|
55
59
|
collectionName?: string;
|
|
56
60
|
description?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-appexchange",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.364.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.364.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
52
|
+
"@salesforce/lds-compiler-plugins": "^1.364.0"
|
|
53
53
|
},
|
|
54
54
|
"nx": {
|
|
55
55
|
"targets": {
|