@salesforce/lds-adapters-cdp-data-clean-room 1.428.0-dev17 → 1.428.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-data-clean-room.js +112 -54
- package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateColumnRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/CustomUseCaseTemplateMatchPolicyRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/UseCaseTemplateAttributeConfigRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/UseCaseTemplateMatchPolicyRepresentation.d.ts +31 -0
- package/package.json +3 -3
- package/sfdc/index.js +131 -73
- package/src/raml/api.raml +33 -0
package/src/raml/api.raml
CHANGED
|
@@ -1307,6 +1307,22 @@ types:
|
|
|
1307
1307
|
description: Text displayed in the UI when the user interacts with the Info icon.
|
|
1308
1308
|
type: string
|
|
1309
1309
|
required: false
|
|
1310
|
+
matchPolicy:
|
|
1311
|
+
description: Match Policy to join multiple match fields.
|
|
1312
|
+
type: CustomUseCaseTemplateMatchPolicyRepresentation
|
|
1313
|
+
required: false
|
|
1314
|
+
|
|
1315
|
+
CustomUseCaseTemplateMatchPolicyRepresentation:
|
|
1316
|
+
description: Represents data clean room custom template match policy
|
|
1317
|
+
properties:
|
|
1318
|
+
type:
|
|
1319
|
+
description: Type of the column being matched.
|
|
1320
|
+
type: string
|
|
1321
|
+
required: true
|
|
1322
|
+
alias:
|
|
1323
|
+
description: The output column name the given column has to be projected/unioned as.
|
|
1324
|
+
type: string
|
|
1325
|
+
required: true
|
|
1310
1326
|
|
|
1311
1327
|
CustomUseCaseTemplateQueryInputRepresentation:
|
|
1312
1328
|
description: Represents data clean room custom template query input
|
|
@@ -1670,6 +1686,23 @@ types:
|
|
|
1670
1686
|
description: Text displayed in the UI when the user interacts with the Info icon.
|
|
1671
1687
|
type: string
|
|
1672
1688
|
required: false
|
|
1689
|
+
matchPolicy:
|
|
1690
|
+
description: Match Policy to join multiple match fields.
|
|
1691
|
+
type: UseCaseTemplateMatchPolicyRepresentation
|
|
1692
|
+
required: false
|
|
1693
|
+
|
|
1694
|
+
UseCaseTemplateMatchPolicyRepresentation:
|
|
1695
|
+
description: Represents usecase template match policy
|
|
1696
|
+
type: object
|
|
1697
|
+
properties:
|
|
1698
|
+
type:
|
|
1699
|
+
description: Type of the column being matched.
|
|
1700
|
+
type: string
|
|
1701
|
+
required: true
|
|
1702
|
+
alias:
|
|
1703
|
+
description: The output column name the given column has to be projected/unioned as.
|
|
1704
|
+
type: string
|
|
1705
|
+
required: true
|
|
1673
1706
|
|
|
1674
1707
|
/ssot:
|
|
1675
1708
|
/data-clean-room:
|