@salesforce/lds-adapters-platform-appexchange 1.377.0 → 1.378.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.
@@ -4484,9 +4484,11 @@ const searchListings_ConfigPropertyMetadata = [
4484
4484
  generateParamConfigMetadata('page', false, 2 /* Body */, 3 /* Integer */),
4485
4485
  generateParamConfigMetadata('pageSize', false, 2 /* Body */, 3 /* Integer */),
4486
4486
  generateParamConfigMetadata('persona', false, 2 /* Body */, 0 /* String */, true),
4487
+ generateParamConfigMetadata('prevSearchQueryId', false, 2 /* Body */, 0 /* String */),
4487
4488
  generateParamConfigMetadata('price', false, 2 /* Body */, 0 /* String */, true),
4488
4489
  generateParamConfigMetadata('product', false, 2 /* Body */, 0 /* String */),
4489
4490
  generateParamConfigMetadata('rating', false, 2 /* Body */, 3 /* Integer */),
4491
+ generateParamConfigMetadata('searchQueryId', false, 2 /* Body */, 0 /* String */),
4490
4492
  generateParamConfigMetadata('sort', false, 2 /* Body */, 0 /* String */),
4491
4493
  generateParamConfigMetadata('tech', false, 2 /* Body */, 0 /* String */, true),
4492
4494
  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;
@@ -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;
@@ -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 = "ddfe3ab8f556fe83e27d6324c0d8561e";
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.377.0",
3
+ "version": "1.378.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.377.0"
49
+ "@salesforce/lds-bindings": "^1.378.0"
50
50
  },
51
51
  "devDependencies": {
52
- "@salesforce/lds-compiler-plugins": "^1.377.0"
52
+ "@salesforce/lds-compiler-plugins": "^1.378.0"
53
53
  },
54
54
  "nx": {
55
55
  "targets": {
package/sfdc/index.js CHANGED
@@ -4693,9 +4693,11 @@ const searchListings_ConfigPropertyMetadata = [
4693
4693
  generateParamConfigMetadata('page', false, 2 /* Body */, 3 /* Integer */),
4694
4694
  generateParamConfigMetadata('pageSize', false, 2 /* Body */, 3 /* Integer */),
4695
4695
  generateParamConfigMetadata('persona', false, 2 /* Body */, 0 /* String */, true),
4696
+ generateParamConfigMetadata('prevSearchQueryId', false, 2 /* Body */, 0 /* String */),
4696
4697
  generateParamConfigMetadata('price', false, 2 /* Body */, 0 /* String */, true),
4697
4698
  generateParamConfigMetadata('product', false, 2 /* Body */, 0 /* String */),
4698
4699
  generateParamConfigMetadata('rating', false, 2 /* Body */, 3 /* Integer */),
4700
+ generateParamConfigMetadata('searchQueryId', false, 2 /* Body */, 0 /* String */),
4699
4701
  generateParamConfigMetadata('sort', false, 2 /* Body */, 0 /* String */),
4700
4702
  generateParamConfigMetadata('tech', false, 2 /* Body */, 0 /* String */, true),
4701
4703
  generateParamConfigMetadata('type', false, 2 /* Body */, 0 /* String */),
@@ -4783,4 +4785,4 @@ withDefaultLuvio((luvio) => {
4783
4785
  });
4784
4786
 
4785
4787
  export { getListingDetails, getListingDetails_imperative, postAppExchangeUserEvents, searchListings };
4786
- // version: 1.377.0-b0d5c49e07
4788
+ // version: 1.378.0-63d7c07562
package/src/raml/api.raml CHANGED
@@ -2457,6 +2457,10 @@ types:
2457
2457
  - Sales
2458
2458
  - ServiceAgentOrSupervisor
2459
2459
  - Student
2460
+ prevSearchQueryId:
2461
+ description: Previous SearchQueryId of listings
2462
+ required: false #Hand-rolled
2463
+ type: string
2460
2464
  price:
2461
2465
  description: The price of the AppExchange listing
2462
2466
  type: array
@@ -2513,6 +2517,10 @@ types:
2513
2517
  description: The rating of the AppExchange listing
2514
2518
  required: false #Hand-rolled
2515
2519
  type: integer
2520
+ searchQueryId:
2521
+ description: SearchQueryId of current listings
2522
+ required: false #Hand-rolled
2523
+ type: string
2516
2524
  sort:
2517
2525
  description: The sort order of AppExchange listing
2518
2526
  required: false #Hand-rolled