@salesforce/lds-adapters-platform-appexchange 1.404.0-dev2 → 1.404.0-dev20
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 +3168 -1797
- package/dist/es/es2018/types/src/generated/adapters/getActionDetails.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getAssetActions.d.ts +36 -0
- package/dist/es/es2018/types/src/generated/adapters/getAssetTopics.d.ts +36 -0
- package/dist/es/es2018/types/src/generated/adapters/getTopicDetails.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +4 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +9 -1
- package/dist/es/es2018/types/src/generated/resources/getConnectAppexchangeAssetsActions.d.ts +24 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectAppexchangeAssetsListingsActionsByActionIdAndListingId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectAppexchangeAssetsListingsTopicsByListingIdAndTopicId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectAppexchangeAssetsTopics.d.ts +24 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeActionDetailsRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeActionInfoRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAgentInfoRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetActionRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetActionsCollectionRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetListingDetailsRepresentation.d.ts +99 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetListingRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetNodeRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetTopicRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetTopicsCollectionRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeTopicDetailsRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeTopicInfoRepresentation.d.ts +34 -0
- package/package.json +3 -3
- package/sfdc/index.js +3053 -1650
- package/src/raml/api.raml +679 -0
- package/src/raml/luvio.raml +26 -0
|
@@ -0,0 +1,34 @@
|
|
|
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 = "b80b6fdff9bd034ec944504aad76d058";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: AppExchangeAssetNodeRepresentation, existing: AppExchangeAssetNodeRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AppExchangeAssetNodeRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: AppExchangeAssetNodeRepresentationNormalized, incoming: AppExchangeAssetNodeRepresentationNormalized): 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: AppExchangeAssetNodeRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Represents an AppExchange asset node with hierarchical structure
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface AppExchangeAssetNodeRepresentationNormalized {
|
|
17
|
+
/** The type of the asset (agent, topic, action) */
|
|
18
|
+
assetType?: string;
|
|
19
|
+
/** The child assets */
|
|
20
|
+
children?: Array<AppExchangeAssetNodeRepresentation>;
|
|
21
|
+
/** The unique identifier of the asset */
|
|
22
|
+
id?: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Represents an AppExchange asset node with hierarchical structure
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface AppExchangeAssetNodeRepresentation {
|
|
31
|
+
assetType?: string;
|
|
32
|
+
children?: Array<AppExchangeAssetNodeRepresentation>;
|
|
33
|
+
id?: string;
|
|
34
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
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 = "addf3387f2fd5dc7b856b56d7d5cd27b";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: AppExchangeAssetTopicRepresentation, existing: AppExchangeAssetTopicRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AppExchangeAssetTopicRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: AppExchangeAssetTopicRepresentationNormalized, incoming: AppExchangeAssetTopicRepresentationNormalized): 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: AppExchangeAssetTopicRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Represents an AppExchange asset topic
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface AppExchangeAssetTopicRepresentationNormalized {
|
|
17
|
+
/** The description of the asset topic */
|
|
18
|
+
description?: string;
|
|
19
|
+
/** The unique identifier of the asset topic */
|
|
20
|
+
id?: string;
|
|
21
|
+
/** The listing ID associated with the asset topic */
|
|
22
|
+
listingId?: string;
|
|
23
|
+
/** The number of actions for the asset topic */
|
|
24
|
+
numActions?: number;
|
|
25
|
+
/** The title of the asset topic */
|
|
26
|
+
title?: string;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Represents an AppExchange asset topic
|
|
30
|
+
*
|
|
31
|
+
* Keys:
|
|
32
|
+
* (none)
|
|
33
|
+
*/
|
|
34
|
+
export interface AppExchangeAssetTopicRepresentation {
|
|
35
|
+
description?: string;
|
|
36
|
+
id?: string;
|
|
37
|
+
listingId?: string;
|
|
38
|
+
numActions?: number;
|
|
39
|
+
title?: string;
|
|
40
|
+
}
|
package/dist/es/es2018/types/src/generated/types/AppExchangeAssetTopicsCollectionRepresentation.d.ts
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { AppExchangeAssetListingRepresentation as AppExchangeAssetListingRepresentation_AppExchangeAssetListingRepresentation } from './AppExchangeAssetListingRepresentation';
|
|
2
|
+
import { AppExchangeAssetTopicRepresentation as AppExchangeAssetTopicRepresentation_AppExchangeAssetTopicRepresentation } from './AppExchangeAssetTopicRepresentation';
|
|
3
|
+
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';
|
|
4
|
+
export declare const VERSION = "aefe06fcb606b3a2200f85c8f3838a68";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: AppExchangeAssetTopicsCollectionRepresentation, existing: AppExchangeAssetTopicsCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AppExchangeAssetTopicsCollectionRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: AppExchangeAssetTopicsCollectionRepresentationNormalized, incoming: AppExchangeAssetTopicsCollectionRepresentationNormalized): boolean;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: AppExchangeAssetTopicsCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* Represents an AppExchange asset topics collection
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface AppExchangeAssetTopicsCollectionRepresentationNormalized {
|
|
19
|
+
/** The map of listings keyed by listing ID */
|
|
20
|
+
listings?: {
|
|
21
|
+
[key: string]: AppExchangeAssetListingRepresentation_AppExchangeAssetListingRepresentation;
|
|
22
|
+
};
|
|
23
|
+
/** The search query ID */
|
|
24
|
+
searchQueryId?: string;
|
|
25
|
+
/** The list of asset topics */
|
|
26
|
+
topics?: Array<AppExchangeAssetTopicRepresentation_AppExchangeAssetTopicRepresentation>;
|
|
27
|
+
/** The total count of asset topics */
|
|
28
|
+
totalCount?: number;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Represents an AppExchange asset topics collection
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* (none)
|
|
35
|
+
*/
|
|
36
|
+
export interface AppExchangeAssetTopicsCollectionRepresentation {
|
|
37
|
+
listings?: {
|
|
38
|
+
[key: string]: AppExchangeAssetListingRepresentation_AppExchangeAssetListingRepresentation;
|
|
39
|
+
};
|
|
40
|
+
searchQueryId?: string;
|
|
41
|
+
topics?: Array<AppExchangeAssetTopicRepresentation_AppExchangeAssetTopicRepresentation>;
|
|
42
|
+
totalCount?: number;
|
|
43
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { AppExchangeAssetListingDetailsRepresentation as AppExchangeAssetListingDetailsRepresentation_AppExchangeAssetListingDetailsRepresentation } from './AppExchangeAssetListingDetailsRepresentation';
|
|
2
|
+
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';
|
|
3
|
+
export declare const VERSION = "9941ed3324d4ffe246794cbd5c4302f6";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: AppExchangeTopicDetailsRepresentation, existing: AppExchangeTopicDetailsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AppExchangeTopicDetailsRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
8
|
+
export declare function equals(existing: AppExchangeTopicDetailsRepresentationNormalized, incoming: AppExchangeTopicDetailsRepresentationNormalized): 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: AppExchangeTopicDetailsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Represents an AppExchange topic details
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface AppExchangeTopicDetailsRepresentationNormalized {
|
|
18
|
+
/** List of action IDs that belong to this topic */
|
|
19
|
+
actions?: Array<string>;
|
|
20
|
+
/** The description of the topic */
|
|
21
|
+
description?: string;
|
|
22
|
+
/** The unique identifier of the topic asset */
|
|
23
|
+
id?: string;
|
|
24
|
+
/** The listing details containing this topic */
|
|
25
|
+
listingDetails?: AppExchangeAssetListingDetailsRepresentation_AppExchangeAssetListingDetailsRepresentation;
|
|
26
|
+
/** The name of the topic */
|
|
27
|
+
name?: string;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Represents an AppExchange topic details
|
|
31
|
+
*
|
|
32
|
+
* Keys:
|
|
33
|
+
* (none)
|
|
34
|
+
*/
|
|
35
|
+
export interface AppExchangeTopicDetailsRepresentation {
|
|
36
|
+
actions?: Array<string>;
|
|
37
|
+
description?: string;
|
|
38
|
+
id?: string;
|
|
39
|
+
listingDetails?: AppExchangeAssetListingDetailsRepresentation_AppExchangeAssetListingDetailsRepresentation;
|
|
40
|
+
name?: string;
|
|
41
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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 = "d0de97c42fc4e951044e51413ec4bf55";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: AppExchangeTopicInfoRepresentation, existing: AppExchangeTopicInfoRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AppExchangeTopicInfoRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: AppExchangeTopicInfoRepresentationNormalized, incoming: AppExchangeTopicInfoRepresentationNormalized): 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: AppExchangeTopicInfoRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Represents an AppExchange topic info
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface AppExchangeTopicInfoRepresentationNormalized {
|
|
17
|
+
/** The description of the topic */
|
|
18
|
+
description?: string;
|
|
19
|
+
/** The unique identifier of the topic */
|
|
20
|
+
id?: string;
|
|
21
|
+
/** The name of the topic */
|
|
22
|
+
name?: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Represents an AppExchange topic info
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface AppExchangeTopicInfoRepresentation {
|
|
31
|
+
description?: string;
|
|
32
|
+
id?: string;
|
|
33
|
+
name?: string;
|
|
34
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-appexchange",
|
|
3
|
-
"version": "1.404.0-
|
|
3
|
+
"version": "1.404.0-dev20",
|
|
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.404.0-
|
|
49
|
+
"@salesforce/lds-bindings": "^1.404.0-dev20"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@salesforce/lds-compiler-plugins": "^1.404.0-
|
|
52
|
+
"@salesforce/lds-compiler-plugins": "^1.404.0-dev20"
|
|
53
53
|
},
|
|
54
54
|
"nx": {
|
|
55
55
|
"targets": {
|