@salesforce/lds-adapters-analytics-unifiedanalytics 1.447.1 → 1.449.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.
- package/dist/es/es2018/analytics-unifiedanalytics.js +194 -131
- package/dist/es/es2018/types/src/generated/adapters/createDataAlert.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/updateDataAlert.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauDataAlerts.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/putTableauDataAlertsByDataAlertId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertBriefContentInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAlertBriefContentRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAlertInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAlertRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestDebugInfo.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +5 -1
- package/package.json +3 -3
- package/sfdc/index.js +175 -112
- package/src/raml/api.raml +36 -0
package/src/raml/api.raml
CHANGED
|
@@ -1506,6 +1506,12 @@ types:
|
|
|
1506
1506
|
skillInstruction:
|
|
1507
1507
|
description: Skill instruction for the brief content
|
|
1508
1508
|
type: string
|
|
1509
|
+
modelApiNameOrIdList:
|
|
1510
|
+
description: Ids or API names of the semantic data models used to generate the brief
|
|
1511
|
+
type: array
|
|
1512
|
+
items:
|
|
1513
|
+
type: string
|
|
1514
|
+
required: false
|
|
1509
1515
|
DataAlertDailyScheduleInputRepresentation:
|
|
1510
1516
|
description: Input representation for daily alert schedule
|
|
1511
1517
|
type: DataAlertScheduleInputRepresentation
|
|
@@ -1557,6 +1563,10 @@ types:
|
|
|
1557
1563
|
description: ID of the associated BotDefinition agent.
|
|
1558
1564
|
type: string | nil
|
|
1559
1565
|
required: false
|
|
1566
|
+
isEnabled:
|
|
1567
|
+
description: Whether this data alert is enabled. Set to false to pause alert execution.
|
|
1568
|
+
type: boolean
|
|
1569
|
+
required: false
|
|
1560
1570
|
DataAlertNotificationRecipientsInputRepresentation:
|
|
1561
1571
|
description: 'List of UNS recipients for Data alerts. May contain user or group
|
|
1562
1572
|
Ids. '
|
|
@@ -1685,6 +1695,12 @@ types:
|
|
|
1685
1695
|
skillInstruction:
|
|
1686
1696
|
description: Skill instruction for the brief content
|
|
1687
1697
|
type: string
|
|
1698
|
+
modelApiNameOrIdList:
|
|
1699
|
+
description: Ids or API names of the semantic data models used to generate the brief
|
|
1700
|
+
type: array
|
|
1701
|
+
items:
|
|
1702
|
+
type: string
|
|
1703
|
+
required: false
|
|
1688
1704
|
DataAlertCronScheduleRepresentation:
|
|
1689
1705
|
description: Represents the cron schedule for a data alert
|
|
1690
1706
|
type: DataAlertScheduleRepresentation
|
|
@@ -1864,6 +1880,10 @@ types:
|
|
|
1864
1880
|
properties?: #Field may be absent
|
|
1865
1881
|
description: Additional properties for the data alert used when sending the query response.
|
|
1866
1882
|
type: DataAlertPropertyFilterOutputRepresentation
|
|
1883
|
+
isEnabled:
|
|
1884
|
+
description: Whether this data alert is enabled. False indicates the alert is paused.
|
|
1885
|
+
type: boolean
|
|
1886
|
+
required: false
|
|
1867
1887
|
DataAlertScheduleRepresentation:
|
|
1868
1888
|
description: Represents the schedule for a data alert
|
|
1869
1889
|
type: object
|
|
@@ -2012,6 +2032,10 @@ types:
|
|
|
2012
2032
|
description: Additional Info
|
|
2013
2033
|
type: DataAssetRequestAdditionalInfoRepresentation | nil
|
|
2014
2034
|
required: false
|
|
2035
|
+
debugInfo:
|
|
2036
|
+
description: debugInfo
|
|
2037
|
+
type: DataAssetRequestDebugInfo | nil
|
|
2038
|
+
required: false
|
|
2015
2039
|
assetId:
|
|
2016
2040
|
description: assetId associated with the request
|
|
2017
2041
|
type: string
|
|
@@ -2173,6 +2197,18 @@ types:
|
|
|
2173
2197
|
dataSpaceDeveloperName:
|
|
2174
2198
|
description: DataSpace developer name.
|
|
2175
2199
|
type: string
|
|
2200
|
+
DataAssetRequestDebugInfo:
|
|
2201
|
+
description: DataAssetRequest Debug Info Representation
|
|
2202
|
+
type: object
|
|
2203
|
+
properties:
|
|
2204
|
+
errorCode:
|
|
2205
|
+
description: errorCode
|
|
2206
|
+
type: string
|
|
2207
|
+
required: false
|
|
2208
|
+
errorMessage:
|
|
2209
|
+
description: errorMessage
|
|
2210
|
+
type: string
|
|
2211
|
+
required: false
|
|
2176
2212
|
DataAssetRequestAdditionalInfoRepresentation:
|
|
2177
2213
|
description: DataAssetRequest Additional Info Representation
|
|
2178
2214
|
type: object
|