@salesforce/lds-adapters-analytics-unifiedanalytics 1.383.0 → 1.385.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 +120 -122
- package/dist/es/es2018/types/src/generated/adapters/createRecordShares.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getShares.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauRecordsSharesByRecordId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauRecordsSharesByRecordId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertCollectionRepresentation.d.ts +5 -14
- package/dist/es/es2018/types/src/generated/types/DataAlertRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SetupRecordAccessCollectionRepresentation.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/SetupRecordAccessInputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +124 -123
- package/src/raml/api.raml +21 -2
- package/src/raml/luvio.raml +5 -0
package/src/raml/api.raml
CHANGED
|
@@ -6,7 +6,7 @@ version: '62.0'
|
|
|
6
6
|
mediaType: application/json
|
|
7
7
|
protocols:
|
|
8
8
|
- https
|
|
9
|
-
baseUri: /services/data/
|
|
9
|
+
baseUri: /services/data/v66.0
|
|
10
10
|
securitySchemes:
|
|
11
11
|
OAuth2:
|
|
12
12
|
type: OAuth 2.0
|
|
@@ -1040,7 +1040,7 @@ types:
|
|
|
1040
1040
|
type: integer
|
|
1041
1041
|
nextPageUrl:
|
|
1042
1042
|
description: Next page url for pagination.
|
|
1043
|
-
type: string
|
|
1043
|
+
type: string | nil
|
|
1044
1044
|
DataAlertValueInputRepresentation:
|
|
1045
1045
|
description: Abstract input representation for operands
|
|
1046
1046
|
type: object
|
|
@@ -1506,6 +1506,12 @@ types:
|
|
|
1506
1506
|
deliveryConfigurations:
|
|
1507
1507
|
description: Data alert delivery configurations.
|
|
1508
1508
|
type: DataAlertDeliveryConfigurationRepresentation
|
|
1509
|
+
createdDate:
|
|
1510
|
+
description: Creation date of the data alert
|
|
1511
|
+
type: string
|
|
1512
|
+
lastModifiedDate:
|
|
1513
|
+
description: Last modified date of the data alert
|
|
1514
|
+
type: string
|
|
1509
1515
|
schedule:
|
|
1510
1516
|
description: Data alert schedule.
|
|
1511
1517
|
type: DataAlertScheduleRepresentation
|
|
@@ -2148,6 +2154,10 @@ types:
|
|
|
2148
2154
|
type: array
|
|
2149
2155
|
items:
|
|
2150
2156
|
type: any
|
|
2157
|
+
sendNotificationToRecipients:
|
|
2158
|
+
description: check for sending notification to recipients
|
|
2159
|
+
type: boolean
|
|
2160
|
+
required: false
|
|
2151
2161
|
SetupRecordAccessItemInputRepresentation:
|
|
2152
2162
|
description: Record Access Item Input Representation
|
|
2153
2163
|
type: object
|
|
@@ -3301,6 +3311,15 @@ types:
|
|
|
3301
3311
|
enum:
|
|
3302
3312
|
- DESC
|
|
3303
3313
|
- ASC
|
|
3314
|
+
filterByRecipientType:
|
|
3315
|
+
description: recipient filter value, default is none
|
|
3316
|
+
type: array
|
|
3317
|
+
required: false
|
|
3318
|
+
items:
|
|
3319
|
+
type: string
|
|
3320
|
+
enum:
|
|
3321
|
+
- User
|
|
3322
|
+
- Group
|
|
3304
3323
|
patch:
|
|
3305
3324
|
displayName: patchSetupRecordShareCollection
|
|
3306
3325
|
description: Update an record share to be associated with a record Item
|
package/src/raml/luvio.raml
CHANGED
|
@@ -36,6 +36,7 @@ types:
|
|
|
36
36
|
(luvio.opaque): true
|
|
37
37
|
DataAlertCollectionRepresentation:
|
|
38
38
|
(luvio.ttl): 500
|
|
39
|
+
(luvio.opaque): true
|
|
39
40
|
DataAlertRepresentation:
|
|
40
41
|
(luvio.ttl): 500
|
|
41
42
|
(luvio.opaque): true
|
|
@@ -155,6 +156,10 @@ types:
|
|
|
155
156
|
(luvio.opaque): true
|
|
156
157
|
(luvio.key):
|
|
157
158
|
recordId: recordId
|
|
159
|
+
(luvio.updateAvailable):
|
|
160
|
+
name: notifySharesUpdateAvailable
|
|
161
|
+
parameters:
|
|
162
|
+
recordId: recordId
|
|
158
163
|
SetupRecordAccessRepresentation:
|
|
159
164
|
(luvio.ttl): 500
|
|
160
165
|
(luvio.opaque): true
|