@salesforce/lds-adapters-analytics-unifiedanalytics 1.379.1 → 1.380.0-dev10
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 +2740 -2564
- package/dist/es/es2018/types/src/generated/adapters/createRecordShares.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetDependencies.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getShares.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/publishToMarketplace.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsDependenciesByAssetId.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauRecordsSharesByRecordId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauMarketplaceListings.d.ts +14 -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/DataAssetRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/MarketplaceListingInputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/MarketplaceListingRepresentation.d.ts +38 -0
- 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/dist/es/es2018/types/src/generated/types/SetupRecordShareUserOrGroupRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +2586 -2404
- package/src/raml/api.raml +77 -1
- package/src/raml/luvio.raml +14 -0
package/src/raml/api.raml
CHANGED
|
@@ -1010,6 +1010,17 @@ types:
|
|
|
1010
1010
|
description: Id of the workspace which the DataAsset is part of
|
|
1011
1011
|
type: string
|
|
1012
1012
|
required: false
|
|
1013
|
+
synchronizationStatus:
|
|
1014
|
+
description: Synchronization status of the DataAsset
|
|
1015
|
+
type: string
|
|
1016
|
+
enum:
|
|
1017
|
+
- SYNC
|
|
1018
|
+
- NEW
|
|
1019
|
+
required: false
|
|
1020
|
+
createdWorkspace:
|
|
1021
|
+
description: Workspace where the DataAsset was created
|
|
1022
|
+
type: string
|
|
1023
|
+
required: false
|
|
1013
1024
|
DataAssetRequestCollectionRepresentation:
|
|
1014
1025
|
description: Collection of Data Asset Requests
|
|
1015
1026
|
type: object
|
|
@@ -1040,7 +1051,7 @@ types:
|
|
|
1040
1051
|
type: integer
|
|
1041
1052
|
nextPageUrl:
|
|
1042
1053
|
description: Next page url for pagination.
|
|
1043
|
-
type: string
|
|
1054
|
+
type: string | nil
|
|
1044
1055
|
DataAlertValueInputRepresentation:
|
|
1045
1056
|
description: Abstract input representation for operands
|
|
1046
1057
|
type: object
|
|
@@ -1506,6 +1517,12 @@ types:
|
|
|
1506
1517
|
deliveryConfigurations:
|
|
1507
1518
|
description: Data alert delivery configurations.
|
|
1508
1519
|
type: DataAlertDeliveryConfigurationRepresentation
|
|
1520
|
+
createdDate:
|
|
1521
|
+
description: Creation date of the data alert
|
|
1522
|
+
type: string
|
|
1523
|
+
lastModifiedDate:
|
|
1524
|
+
description: Last modified date of the data alert
|
|
1525
|
+
type: string
|
|
1509
1526
|
schedule:
|
|
1510
1527
|
description: Data alert schedule.
|
|
1511
1528
|
type: DataAlertScheduleRepresentation
|
|
@@ -2075,6 +2092,29 @@ types:
|
|
|
2075
2092
|
id:
|
|
2076
2093
|
description: The ID of template
|
|
2077
2094
|
type: string
|
|
2095
|
+
MarketplaceListingInputRepresentation:
|
|
2096
|
+
description: Input representation to publish asset to Marketplace.
|
|
2097
|
+
type: object
|
|
2098
|
+
properties:
|
|
2099
|
+
assetId:
|
|
2100
|
+
description: The ID of the asset.
|
|
2101
|
+
type: string
|
|
2102
|
+
assetType:
|
|
2103
|
+
description: The type of the asset.
|
|
2104
|
+
type: string
|
|
2105
|
+
enum:
|
|
2106
|
+
- DominoTemplate
|
|
2107
|
+
assetVersion:
|
|
2108
|
+
description: The version of the asset.
|
|
2109
|
+
type: number
|
|
2110
|
+
required: false
|
|
2111
|
+
MarketplaceListingRepresentation:
|
|
2112
|
+
description: The ID of marketplace listings.
|
|
2113
|
+
type: object
|
|
2114
|
+
properties:
|
|
2115
|
+
id:
|
|
2116
|
+
description: The ID of marketplace listings.
|
|
2117
|
+
type: string
|
|
2078
2118
|
OrgCollectionRepresentation:
|
|
2079
2119
|
description: A collection of unified analytics orgs.
|
|
2080
2120
|
type: object
|
|
@@ -2125,6 +2165,10 @@ types:
|
|
|
2125
2165
|
type: array
|
|
2126
2166
|
items:
|
|
2127
2167
|
type: any
|
|
2168
|
+
sendNotificationToRecipients:
|
|
2169
|
+
description: check for sending notification to recipients
|
|
2170
|
+
type: boolean
|
|
2171
|
+
required: false
|
|
2128
2172
|
SetupRecordAccessItemInputRepresentation:
|
|
2129
2173
|
description: Record Access Item Input Representation
|
|
2130
2174
|
type: object
|
|
@@ -2176,6 +2220,10 @@ types:
|
|
|
2176
2220
|
description: Username of the User
|
|
2177
2221
|
type: string
|
|
2178
2222
|
required: false
|
|
2223
|
+
groupMemberCount:
|
|
2224
|
+
description: Count of users in group
|
|
2225
|
+
type: integer
|
|
2226
|
+
required: false
|
|
2179
2227
|
SetupRecordAccessRepresentation:
|
|
2180
2228
|
description: Record Access mapping for specific UserOrGroup
|
|
2181
2229
|
discriminatorValue: RecordAccessMappingForUserOrGroup
|
|
@@ -3081,6 +3129,11 @@ types:
|
|
|
3081
3129
|
get:
|
|
3082
3130
|
displayName: getDataAssetDependencies
|
|
3083
3131
|
description: Gets the dependencies of an Data asset
|
|
3132
|
+
queryParameters:
|
|
3133
|
+
includeSynchronizationInfo:
|
|
3134
|
+
type: boolean
|
|
3135
|
+
required: false
|
|
3136
|
+
description: Include synchronization information in the response
|
|
3084
3137
|
responses:
|
|
3085
3138
|
'200':
|
|
3086
3139
|
description: Success
|
|
@@ -3278,6 +3331,15 @@ types:
|
|
|
3278
3331
|
enum:
|
|
3279
3332
|
- DESC
|
|
3280
3333
|
- ASC
|
|
3334
|
+
filterByRecipientType:
|
|
3335
|
+
description: recipient filter value, default is none
|
|
3336
|
+
type: array
|
|
3337
|
+
required: false
|
|
3338
|
+
items:
|
|
3339
|
+
type: string
|
|
3340
|
+
enum:
|
|
3341
|
+
- User
|
|
3342
|
+
- Group
|
|
3281
3343
|
patch:
|
|
3282
3344
|
displayName: patchSetupRecordShareCollection
|
|
3283
3345
|
description: Update an record share to be associated with a record Item
|
|
@@ -3723,3 +3785,17 @@ types:
|
|
|
3723
3785
|
application/json:
|
|
3724
3786
|
type: MarketplaceTemplateInputRepresentation
|
|
3725
3787
|
(oas-body-name): templateInput
|
|
3788
|
+
/tableau/marketplace/listings:
|
|
3789
|
+
post:
|
|
3790
|
+
displayName: publishToMarketplace
|
|
3791
|
+
description: Publish an asset to Tableau Marketplace.
|
|
3792
|
+
responses:
|
|
3793
|
+
'200':
|
|
3794
|
+
description: Success
|
|
3795
|
+
body:
|
|
3796
|
+
application/json:
|
|
3797
|
+
type: MarketplaceListingRepresentation
|
|
3798
|
+
body:
|
|
3799
|
+
application/json:
|
|
3800
|
+
type: MarketplaceListingInputRepresentation
|
|
3801
|
+
(oas-body-name): marketplaceListingInputRepresentation
|
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
|
|
@@ -140,6 +141,11 @@ types:
|
|
|
140
141
|
(luvio.opaque): true
|
|
141
142
|
(luvio.key):
|
|
142
143
|
id: id
|
|
144
|
+
MarketplaceListingRepresentation:
|
|
145
|
+
(luvio.ttl): 1000
|
|
146
|
+
(luvio.opaque): true
|
|
147
|
+
(luvio.key):
|
|
148
|
+
id: id
|
|
143
149
|
TableauExternalMonitoringEventItemRepresentation:
|
|
144
150
|
(luvio.ttl): 1000
|
|
145
151
|
(luvio.opaque): true
|
|
@@ -150,6 +156,10 @@ types:
|
|
|
150
156
|
(luvio.opaque): true
|
|
151
157
|
(luvio.key):
|
|
152
158
|
recordId: recordId
|
|
159
|
+
(luvio.updateAvailable):
|
|
160
|
+
name: notifySharesUpdateAvailable
|
|
161
|
+
parameters:
|
|
162
|
+
recordId: recordId
|
|
153
163
|
SetupRecordAccessRepresentation:
|
|
154
164
|
(luvio.ttl): 500
|
|
155
165
|
(luvio.opaque): true
|
|
@@ -463,3 +473,7 @@ types:
|
|
|
463
473
|
get:
|
|
464
474
|
(luvio.adapter):
|
|
465
475
|
name: getDataAssetDependencies
|
|
476
|
+
/tableau/marketplace/listings:
|
|
477
|
+
post:
|
|
478
|
+
(luvio.adapter):
|
|
479
|
+
name: publishToMarketplace
|