@salesforce/lds-adapters-cdp-personalization-service 1.404.0-dev15 → 1.404.0-dev18
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/cdp-personalization-service.js +133 -149
- package/dist/es/es2018/types/src/generated/adapters/getPersonalizationExperiencesConfigs.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/getPersonalizationExternalAppsPersonalizationExperienceConfigsByIdOrAppSourceIdOrName.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/types/PersonalizationExperienceConfigCollectionRepresentation.d.ts +12 -4
- package/dist/es/es2018/types/src/generated/types/PersonalizationPaginatedResponseBaseRepresentation.d.ts +3 -3
- package/package.json +3 -3
- package/sfdc/index.js +116 -132
- package/src/raml/api.raml +23 -3
- package/src/raml/luvio.raml +1 -0
package/src/raml/api.raml
CHANGED
|
@@ -1245,8 +1245,19 @@ types:
|
|
|
1245
1245
|
type: object
|
|
1246
1246
|
PersonalizationExperienceConfigCollectionRepresentation:
|
|
1247
1247
|
description: Personalization Experience Config Collection Output Representation
|
|
1248
|
-
|
|
1248
|
+
# Hand-rolled: flatten pagination fields so nextPageUrl can be omitted on the last page
|
|
1249
|
+
type: object
|
|
1249
1250
|
properties:
|
|
1251
|
+
currentPageUrl:
|
|
1252
|
+
description: Current page url
|
|
1253
|
+
type: string
|
|
1254
|
+
nextPageUrl:
|
|
1255
|
+
description: Next page url if it exists
|
|
1256
|
+
type: string | nil
|
|
1257
|
+
required: false
|
|
1258
|
+
totalSize:
|
|
1259
|
+
description: Total size of collection
|
|
1260
|
+
type: integer
|
|
1250
1261
|
personalizationExperienceConfigs:
|
|
1251
1262
|
description: List of Personalization Experience Configs
|
|
1252
1263
|
type: array
|
|
@@ -1299,14 +1310,14 @@ types:
|
|
|
1299
1310
|
PersonalizationPaginatedResponseBaseRepresentation:
|
|
1300
1311
|
description: Base paginated response representation
|
|
1301
1312
|
type: object
|
|
1302
|
-
discriminator: nextPageUrl
|
|
1303
1313
|
properties:
|
|
1304
1314
|
currentPageUrl:
|
|
1305
1315
|
description: Current page url
|
|
1306
1316
|
type: string
|
|
1307
1317
|
nextPageUrl:
|
|
1308
1318
|
description: Next page url if it exists
|
|
1309
|
-
type: string
|
|
1319
|
+
type: string | nil
|
|
1320
|
+
required: false
|
|
1310
1321
|
totalSize:
|
|
1311
1322
|
description: Total size of collection
|
|
1312
1323
|
type: integer
|
|
@@ -1549,12 +1560,21 @@ types:
|
|
|
1549
1560
|
application/json:
|
|
1550
1561
|
type: PersonalizationExperienceConfigCollectionRepresentation
|
|
1551
1562
|
queryParameters:
|
|
1563
|
+
dataSpaceIdOrName:
|
|
1564
|
+
type: string
|
|
1565
|
+
required: false
|
|
1552
1566
|
limit:
|
|
1553
1567
|
type: integer
|
|
1554
1568
|
required: false
|
|
1555
1569
|
offset:
|
|
1556
1570
|
type: integer
|
|
1557
1571
|
required: false
|
|
1572
|
+
personalizationPointNameOrId:
|
|
1573
|
+
type: string
|
|
1574
|
+
required: false
|
|
1575
|
+
transformerNameOrId:
|
|
1576
|
+
type: string
|
|
1577
|
+
required: false
|
|
1558
1578
|
post:
|
|
1559
1579
|
displayName: postPersonalizationExperienceConfigCollection
|
|
1560
1580
|
description: Create a Personalization Experience Config
|