@salesforce/lds-adapters-analytics-unifiedanalytics 1.332.0-dev15 → 1.332.0-dev17
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 +225 -81
- package/dist/es/es2018/types/src/generated/adapters/follow.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/adapters/queryUsers.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauFollowFollowersFollowsByFollowerId.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauUsersQuery.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/types/AnalyticsUsersQueryInputRepresentation.d.ts +10 -1
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/FollowInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/FollowedAssetRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/FollowedTimeRangeRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/FollowerAssetRepresentation.d.ts +5 -1
- package/package.json +3 -3
- package/sfdc/index.js +223 -79
- package/src/raml/api.raml +32 -1
package/src/raml/api.raml
CHANGED
|
@@ -287,9 +287,18 @@ types:
|
|
|
287
287
|
searchTerm:
|
|
288
288
|
description: Search term parameter value
|
|
289
289
|
type: string
|
|
290
|
+
userCapability:
|
|
291
|
+
description: User permission
|
|
292
|
+
type: string
|
|
290
293
|
useAutoSuggest:
|
|
291
294
|
description: Use auto suggest term parameter value
|
|
292
295
|
type: boolean
|
|
296
|
+
limit:
|
|
297
|
+
description: Limit parameter value
|
|
298
|
+
type: integer
|
|
299
|
+
offset:
|
|
300
|
+
description: Offset parameter value
|
|
301
|
+
type: integer
|
|
293
302
|
AnalyticsUsersQueryResultsRepresentation:
|
|
294
303
|
description: Results of Users Query
|
|
295
304
|
type: object
|
|
@@ -327,6 +336,10 @@ types:
|
|
|
327
336
|
enum:
|
|
328
337
|
- Group
|
|
329
338
|
- User
|
|
339
|
+
followedTimeRange:
|
|
340
|
+
description: Time Range filter representation
|
|
341
|
+
type: FollowedTimeRangeRepresentation
|
|
342
|
+
required: false
|
|
330
343
|
FollowedAssetCollectionRepresentation:
|
|
331
344
|
description: Collection of Followed Assets
|
|
332
345
|
type: object
|
|
@@ -393,6 +406,20 @@ types:
|
|
|
393
406
|
enum:
|
|
394
407
|
- SemanticMetricDefinition
|
|
395
408
|
- SemanticSubMetric
|
|
409
|
+
followedTimeRange:
|
|
410
|
+
description: Time Range filter representation
|
|
411
|
+
type: FollowedTimeRangeRepresentation | nil
|
|
412
|
+
required: false
|
|
413
|
+
FollowedTimeRangeRepresentation:
|
|
414
|
+
description: Followed Time Range Representation
|
|
415
|
+
type: object
|
|
416
|
+
properties:
|
|
417
|
+
fieldName: string
|
|
418
|
+
operator: string # SemanticFilterOperatorTypeEnum
|
|
419
|
+
values:
|
|
420
|
+
type: array
|
|
421
|
+
items:
|
|
422
|
+
type: string | number
|
|
396
423
|
FollowerAssetRepresentation:
|
|
397
424
|
description: Represent follower and asset mapping
|
|
398
425
|
type: object
|
|
@@ -421,6 +448,10 @@ types:
|
|
|
421
448
|
createdDate:
|
|
422
449
|
description: Created date
|
|
423
450
|
type: string
|
|
451
|
+
followedTimeRange:
|
|
452
|
+
description: Time Range filter representation
|
|
453
|
+
type: FollowedTimeRangeRepresentation | nil
|
|
454
|
+
required: false
|
|
424
455
|
FollowerCollectionRepresentation:
|
|
425
456
|
description: Collection of Followers
|
|
426
457
|
type: object
|
|
@@ -1138,7 +1169,7 @@ types:
|
|
|
1138
1169
|
type: string | nil
|
|
1139
1170
|
workspaceAssetId:
|
|
1140
1171
|
description: workspaceAssetId in the workspace
|
|
1141
|
-
type: string
|
|
1172
|
+
type: string | nil
|
|
1142
1173
|
|
|
1143
1174
|
TableauMarketplaceListingInstallationProgressResponse:
|
|
1144
1175
|
description: Representation of tableau marketplace's listing installation progress
|