@salesforce/lds-adapters-analytics-unifiedanalytics 1.332.0-dev16 → 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 +222 -81
- package/dist/es/es2018/types/src/generated/adapters/follow.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauFollowFollowersFollowsByFollowerId.d.ts +2 -0
- 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 +220 -79
- package/src/raml/api.raml +23 -1
package/src/raml/api.raml
CHANGED
|
@@ -336,6 +336,10 @@ types:
|
|
|
336
336
|
enum:
|
|
337
337
|
- Group
|
|
338
338
|
- User
|
|
339
|
+
followedTimeRange:
|
|
340
|
+
description: Time Range filter representation
|
|
341
|
+
type: FollowedTimeRangeRepresentation
|
|
342
|
+
required: false
|
|
339
343
|
FollowedAssetCollectionRepresentation:
|
|
340
344
|
description: Collection of Followed Assets
|
|
341
345
|
type: object
|
|
@@ -402,6 +406,20 @@ types:
|
|
|
402
406
|
enum:
|
|
403
407
|
- SemanticMetricDefinition
|
|
404
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
|
|
405
423
|
FollowerAssetRepresentation:
|
|
406
424
|
description: Represent follower and asset mapping
|
|
407
425
|
type: object
|
|
@@ -430,6 +448,10 @@ types:
|
|
|
430
448
|
createdDate:
|
|
431
449
|
description: Created date
|
|
432
450
|
type: string
|
|
451
|
+
followedTimeRange:
|
|
452
|
+
description: Time Range filter representation
|
|
453
|
+
type: FollowedTimeRangeRepresentation | nil
|
|
454
|
+
required: false
|
|
433
455
|
FollowerCollectionRepresentation:
|
|
434
456
|
description: Collection of Followers
|
|
435
457
|
type: object
|
|
@@ -1147,7 +1169,7 @@ types:
|
|
|
1147
1169
|
type: string | nil
|
|
1148
1170
|
workspaceAssetId:
|
|
1149
1171
|
description: workspaceAssetId in the workspace
|
|
1150
|
-
type: string
|
|
1172
|
+
type: string | nil
|
|
1151
1173
|
|
|
1152
1174
|
TableauMarketplaceListingInstallationProgressResponse:
|
|
1153
1175
|
description: Representation of tableau marketplace's listing installation progress
|