@salesforce/lds-adapters-analytics-wave 1.457.0 → 1.458.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-wave.js +1699 -1261
- package/dist/es/es2018/types/src/generated/types/ReplicatedDatasetRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/ReplicatedObjectScheduleRepresentation.d.ts +68 -0
- package/package.json +3 -3
- package/sfdc/index.js +1216 -778
- package/src/raml/api.raml +114 -0
package/src/raml/api.raml
CHANGED
|
@@ -3624,6 +3624,10 @@ types:
|
|
|
3624
3624
|
filterApplied:
|
|
3625
3625
|
description: Indicates if filters have been applied to the replicated dataset
|
|
3626
3626
|
type: boolean
|
|
3627
|
+
ingestionSchedule:
|
|
3628
|
+
description: Per-object ingestion schedule for the replicated object; absent when the object has no own schedule.
|
|
3629
|
+
required: false # TODO Hand-rolled W-23933588
|
|
3630
|
+
type: ReplicatedObjectScheduleRepresentation
|
|
3627
3631
|
lastRefreshedDate:
|
|
3628
3632
|
description: Indicates the date when the dataset was last run
|
|
3629
3633
|
required: false # TODO Hand-rolled W-8253396
|
|
@@ -3926,6 +3930,116 @@ types:
|
|
|
3926
3930
|
description: Hour and timezone in which this schedule is run.
|
|
3927
3931
|
required: false # TODO Hand-rolled W-8253396
|
|
3928
3932
|
type: TimeRepresentation
|
|
3933
|
+
ReplicatedObjectScheduleRepresentation:
|
|
3934
|
+
# TODO Hand-rolled W-23933588
|
|
3935
|
+
# Flat, non-discriminated superset of ScheduleRepresentation and all its frequency
|
|
3936
|
+
# subtypes (Daily/Weekly/Hourly/Minutely/Monthly/MonthlyRelative/EventDriven/None).
|
|
3937
|
+
# Every field is optional so any frequency's payload passes through unchanged.
|
|
3938
|
+
# It carries no (luvio.key), so it is stored inline instead of normalized. That lets
|
|
3939
|
+
# the object-level field be optional (required: false) without tripping the Luvio
|
|
3940
|
+
# "Unsupported optional link" rule, which forbids an optional link to a keyed
|
|
3941
|
+
# (normalizable) type. Inheriting ScheduleRepresentation instead re-introduces the
|
|
3942
|
+
# link to the keyed base and fails, so the fields are copied flat here.
|
|
3943
|
+
# The connector-level ScheduleRepresentation stays keyed/normalized and is untouched.
|
|
3944
|
+
description: Per-object ingestion schedule for a replicated object (stored inline, not normalized).
|
|
3945
|
+
type: object
|
|
3946
|
+
properties:
|
|
3947
|
+
assetId:
|
|
3948
|
+
description: The 18 character ID of the asset.
|
|
3949
|
+
type: string
|
|
3950
|
+
required: false
|
|
3951
|
+
events:
|
|
3952
|
+
description: Schedule event information
|
|
3953
|
+
required: false
|
|
3954
|
+
type: JobEventCollectionRepresentation
|
|
3955
|
+
frequency:
|
|
3956
|
+
description: Frequency on which this schedule is run.
|
|
3957
|
+
type: string
|
|
3958
|
+
required: false
|
|
3959
|
+
enum:
|
|
3960
|
+
- Daily
|
|
3961
|
+
- EventDriven
|
|
3962
|
+
- Hourly
|
|
3963
|
+
- Minutely
|
|
3964
|
+
- Monthly
|
|
3965
|
+
- MonthlyRelative
|
|
3966
|
+
- None
|
|
3967
|
+
- Weekly
|
|
3968
|
+
nextScheduledDate:
|
|
3969
|
+
description: Next scheduled time (in UTC) for this schedule.
|
|
3970
|
+
required: false
|
|
3971
|
+
type: string
|
|
3972
|
+
notificationLevel:
|
|
3973
|
+
description: Email notification level of dataflow associated with this schedule.
|
|
3974
|
+
required: false
|
|
3975
|
+
type: string
|
|
3976
|
+
enum:
|
|
3977
|
+
- Always
|
|
3978
|
+
- Failures
|
|
3979
|
+
- Never
|
|
3980
|
+
- Warnings
|
|
3981
|
+
time:
|
|
3982
|
+
description: Hour and timezone in which this schedule is run.
|
|
3983
|
+
required: false
|
|
3984
|
+
type: TimeRepresentation
|
|
3985
|
+
daysOfWeek:
|
|
3986
|
+
description: Days of the week on which the schedule will run.
|
|
3987
|
+
required: false
|
|
3988
|
+
type: array
|
|
3989
|
+
items:
|
|
3990
|
+
type: string
|
|
3991
|
+
enum:
|
|
3992
|
+
- Friday
|
|
3993
|
+
- Monday
|
|
3994
|
+
- Saturday
|
|
3995
|
+
- Sunday
|
|
3996
|
+
- Thursday
|
|
3997
|
+
- Tuesday
|
|
3998
|
+
- Wednesday
|
|
3999
|
+
daysOfMonth:
|
|
4000
|
+
description: Days of the month on which the schedule will run (-1, 1-31).
|
|
4001
|
+
required: false
|
|
4002
|
+
type: array
|
|
4003
|
+
items:
|
|
4004
|
+
type: integer
|
|
4005
|
+
hourlyInterval:
|
|
4006
|
+
description: Hours in between each queueing of task.
|
|
4007
|
+
required: false
|
|
4008
|
+
type: integer
|
|
4009
|
+
minutelyInterval:
|
|
4010
|
+
description: Minutes in between each queueing of task.
|
|
4011
|
+
required: false
|
|
4012
|
+
type: integer
|
|
4013
|
+
lastHour:
|
|
4014
|
+
description: Hour at which schedule stops queueing.
|
|
4015
|
+
required: false
|
|
4016
|
+
type: integer
|
|
4017
|
+
dayInWeek:
|
|
4018
|
+
description: Day within a week.
|
|
4019
|
+
required: false
|
|
4020
|
+
type: string
|
|
4021
|
+
enum:
|
|
4022
|
+
- Friday
|
|
4023
|
+
- Monday
|
|
4024
|
+
- Saturday
|
|
4025
|
+
- Sunday
|
|
4026
|
+
- Thursday
|
|
4027
|
+
- Tuesday
|
|
4028
|
+
- Wednesday
|
|
4029
|
+
weekInMonth:
|
|
4030
|
+
description: Week within a month.
|
|
4031
|
+
required: false
|
|
4032
|
+
type: string
|
|
4033
|
+
enum:
|
|
4034
|
+
- First
|
|
4035
|
+
- Fourth
|
|
4036
|
+
- Last
|
|
4037
|
+
- Second
|
|
4038
|
+
- Third
|
|
4039
|
+
triggerRule:
|
|
4040
|
+
description: The event based trigger rule that will cause assetId to run.
|
|
4041
|
+
required: false
|
|
4042
|
+
type: string
|
|
3929
4043
|
SchemaFormatSymbolsInputRepresentation:
|
|
3930
4044
|
description: Format for symbols
|
|
3931
4045
|
type: object
|