Interface: SyncIncremental<SyncContinuationT, CheckpointContinuationT>¶
Defined in: api_types.ts:976
Information about the current incremental sync.
Extends¶
Type Parameters¶
| Type Parameter |
|---|
SyncContinuationT |
CheckpointContinuationT |
Properties¶
continuation?¶
optionalcontinuation:SyncContinuationT
Defined in: api_types.ts:981
The continuation that was returned from the prior sync invocation. The is the exact
value returned in the continuation property of result of the prior sync.
dynamicUrl?¶
optionaldynamicUrl:string
Defined in: api_types.ts:1003
The dynamic URL that backs this sync table, if this is a dynamic sync table. The dynamic URL is likely necessary for determining which API resources to fetch.
Inherited from¶
parameters?¶
readonlyoptionalparameters:MetadataContext
Defined in: api_types.ts:1008
core.MetadataContext The parameters of the sync formula for the sync table.
Inherited from¶
previousCompletion¶
previousCompletion:
SyncCompletionMetadata<CheckpointContinuationT>
Defined in: api_types.ts:987
The completion that was returned from the prior sync invocation. If this is present, use the inner continuation to perform an incremental sync.
schema?¶
optionalschema:ArraySchema<Schema>
Defined in: api_types.ts:997
The schema of this sync table, if this is a dynamic sync table. It may be useful to have
access to the dynamically-generated schema of the table instance in order to construct
the response for a dynamic sync table's execute function.