@salesforce/lds-adapters-platform-appexchange 1.354.0-dev2 → 1.354.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 +2 -0
- package/dist/es/es2018/types/src/generated/adapters/searchListings.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectAppexchangeSearchListings.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeSearchListingsInputRepresentation.d.ts +7 -1
- package/package.json +3 -3
- package/sfdc/index.js +3 -1
- package/src/raml/api.raml +8 -0
|
@@ -4332,9 +4332,11 @@ const searchListings_ConfigPropertyMetadata = [
|
|
|
4332
4332
|
generateParamConfigMetadata('page', false, 2 /* Body */, 3 /* Integer */),
|
|
4333
4333
|
generateParamConfigMetadata('pageSize', false, 2 /* Body */, 3 /* Integer */),
|
|
4334
4334
|
generateParamConfigMetadata('persona', false, 2 /* Body */, 0 /* String */, true),
|
|
4335
|
+
generateParamConfigMetadata('prevSearchQueryId', false, 2 /* Body */, 0 /* String */),
|
|
4335
4336
|
generateParamConfigMetadata('price', false, 2 /* Body */, 0 /* String */, true),
|
|
4336
4337
|
generateParamConfigMetadata('product', false, 2 /* Body */, 0 /* String */),
|
|
4337
4338
|
generateParamConfigMetadata('rating', false, 2 /* Body */, 3 /* Integer */),
|
|
4339
|
+
generateParamConfigMetadata('searchQueryId', false, 2 /* Body */, 0 /* String */),
|
|
4338
4340
|
generateParamConfigMetadata('sort', false, 2 /* Body */, 0 /* String */),
|
|
4339
4341
|
generateParamConfigMetadata('tech', false, 2 /* Body */, 0 /* String */, true),
|
|
4340
4342
|
generateParamConfigMetadata('type', false, 2 /* Body */, 0 /* String */),
|
|
@@ -18,9 +18,11 @@ export interface SearchListingsConfig {
|
|
|
18
18
|
page?: number;
|
|
19
19
|
pageSize?: number;
|
|
20
20
|
persona?: Array<string>;
|
|
21
|
+
prevSearchQueryId?: string;
|
|
21
22
|
price?: Array<string>;
|
|
22
23
|
product?: string;
|
|
23
24
|
rating?: number;
|
|
25
|
+
searchQueryId?: string;
|
|
24
26
|
sort?: string;
|
|
25
27
|
tech?: Array<string>;
|
|
26
28
|
type?: string;
|
package/dist/es/es2018/types/src/generated/resources/postConnectAppexchangeSearchListings.d.ts
CHANGED
|
@@ -14,9 +14,11 @@ export interface ResourceRequestConfig {
|
|
|
14
14
|
page?: number;
|
|
15
15
|
pageSize?: number;
|
|
16
16
|
persona?: Array<string>;
|
|
17
|
+
prevSearchQueryId?: string;
|
|
17
18
|
price?: Array<string>;
|
|
18
19
|
product?: string;
|
|
19
20
|
rating?: number;
|
|
21
|
+
searchQueryId?: string;
|
|
20
22
|
sort?: string;
|
|
21
23
|
tech?: Array<string>;
|
|
22
24
|
type?: string;
|
package/dist/es/es2018/types/src/generated/types/AppExchangeSearchListingsInputRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
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 = "
|
|
2
|
+
export declare const VERSION = "7c382f854e32e62e92c9e716b159e2e5";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export declare function normalize(input: AppExchangeSearchListingsInputRepresentation, existing: AppExchangeSearchListingsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AppExchangeSearchListingsInputRepresentationNormalized;
|
|
@@ -38,12 +38,16 @@ export interface AppExchangeSearchListingsInputRepresentationNormalized {
|
|
|
38
38
|
pageSize?: number;
|
|
39
39
|
/** The persona of the AppExchange listings */
|
|
40
40
|
persona?: Array<string>;
|
|
41
|
+
/** Previous SearchQueryId of listings */
|
|
42
|
+
prevSearchQueryId?: string;
|
|
41
43
|
/** The price of the AppExchange listing */
|
|
42
44
|
price?: Array<string>;
|
|
43
45
|
/** The product of the AppExchange listings */
|
|
44
46
|
product?: string;
|
|
45
47
|
/** The rating of the AppExchange listing */
|
|
46
48
|
rating?: number;
|
|
49
|
+
/** SearchQueryId of current listings */
|
|
50
|
+
searchQueryId?: string;
|
|
47
51
|
/** The sort order of AppExchange listing */
|
|
48
52
|
sort?: string;
|
|
49
53
|
/** The tech of the AppExchange listings */
|
|
@@ -70,9 +74,11 @@ export interface AppExchangeSearchListingsInputRepresentation {
|
|
|
70
74
|
page?: number;
|
|
71
75
|
pageSize?: number;
|
|
72
76
|
persona?: Array<string>;
|
|
77
|
+
prevSearchQueryId?: string;
|
|
73
78
|
price?: Array<string>;
|
|
74
79
|
product?: string;
|
|
75
80
|
rating?: number;
|
|
81
|
+
searchQueryId?: string;
|
|
76
82
|
sort?: string;
|
|
77
83
|
tech?: Array<string>;
|
|
78
84
|
type?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-appexchange",
|
|
3
|
-
"version": "1.354.0-
|
|
3
|
+
"version": "1.354.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.354.0-
|
|
49
|
+
"@salesforce/lds-bindings": "^1.354.0-dev20"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@salesforce/lds-compiler-plugins": "^1.354.0-
|
|
52
|
+
"@salesforce/lds-compiler-plugins": "^1.354.0-dev20"
|
|
53
53
|
},
|
|
54
54
|
"nx": {
|
|
55
55
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -4541,9 +4541,11 @@ const searchListings_ConfigPropertyMetadata = [
|
|
|
4541
4541
|
generateParamConfigMetadata('page', false, 2 /* Body */, 3 /* Integer */),
|
|
4542
4542
|
generateParamConfigMetadata('pageSize', false, 2 /* Body */, 3 /* Integer */),
|
|
4543
4543
|
generateParamConfigMetadata('persona', false, 2 /* Body */, 0 /* String */, true),
|
|
4544
|
+
generateParamConfigMetadata('prevSearchQueryId', false, 2 /* Body */, 0 /* String */),
|
|
4544
4545
|
generateParamConfigMetadata('price', false, 2 /* Body */, 0 /* String */, true),
|
|
4545
4546
|
generateParamConfigMetadata('product', false, 2 /* Body */, 0 /* String */),
|
|
4546
4547
|
generateParamConfigMetadata('rating', false, 2 /* Body */, 3 /* Integer */),
|
|
4548
|
+
generateParamConfigMetadata('searchQueryId', false, 2 /* Body */, 0 /* String */),
|
|
4547
4549
|
generateParamConfigMetadata('sort', false, 2 /* Body */, 0 /* String */),
|
|
4548
4550
|
generateParamConfigMetadata('tech', false, 2 /* Body */, 0 /* String */, true),
|
|
4549
4551
|
generateParamConfigMetadata('type', false, 2 /* Body */, 0 /* String */),
|
|
@@ -4631,4 +4633,4 @@ withDefaultLuvio((luvio) => {
|
|
|
4631
4633
|
});
|
|
4632
4634
|
|
|
4633
4635
|
export { getListingDetails, getListingDetails_imperative, postAppExchangeUserEvents, searchListings };
|
|
4634
|
-
// version: 1.354.0-
|
|
4636
|
+
// version: 1.354.0-dev20-c23c23e6bf
|
package/src/raml/api.raml
CHANGED
|
@@ -2433,6 +2433,10 @@ types:
|
|
|
2433
2433
|
- Sales
|
|
2434
2434
|
- ServiceAgentOrSupervisor
|
|
2435
2435
|
- Student
|
|
2436
|
+
prevSearchQueryId:
|
|
2437
|
+
description: Previous SearchQueryId of listings
|
|
2438
|
+
required: false #Hand-rolled
|
|
2439
|
+
type: string
|
|
2436
2440
|
price:
|
|
2437
2441
|
description: The price of the AppExchange listing
|
|
2438
2442
|
type: array
|
|
@@ -2489,6 +2493,10 @@ types:
|
|
|
2489
2493
|
description: The rating of the AppExchange listing
|
|
2490
2494
|
required: false #Hand-rolled
|
|
2491
2495
|
type: integer
|
|
2496
|
+
searchQueryId:
|
|
2497
|
+
description: SearchQueryId of current listings
|
|
2498
|
+
required: false #Hand-rolled
|
|
2499
|
+
type: string
|
|
2492
2500
|
sort:
|
|
2493
2501
|
description: The sort order of AppExchange listing
|
|
2494
2502
|
required: false #Hand-rolled
|