@@ -409,7 +409,7 @@ type AddData {
409409 Last offset of the previous data slice, if any. Must be equal to the
410410 last non-empty `newData.offsetInterval.end`.
411411 """
412- prevOffset : Int
412+ prevOffset : Uint64
413413 """
414414 Describes output data written during this transaction, if any.
415415 """
@@ -610,7 +610,7 @@ type Checkpoint {
610610 """
611611 Size of checkpoint file in bytes.
612612 """
613- size : Int !
613+ size : Uint64 !
614614}
615615
616616type CliProtocolDesc {
@@ -1070,7 +1070,7 @@ type DataSlice {
10701070 """
10711071 Size of data file in bytes.
10721072 """
1073- size : Int !
1073+ size : Uint64 !
10741074}
10751075
10761076input DataTypeInput {
@@ -1986,7 +1986,7 @@ type ExecuteTransform {
19861986 Last offset of the previous data slice, if any. Must be equal to the
19871987 last non-empty `newData.offsetInterval.end`.
19881988 """
1989- prevOffset : Int
1989+ prevOffset : Uint64
19901990 """
19911991 Describes output data written during this transaction, if any.
19921992 """
@@ -2039,14 +2039,14 @@ type ExecuteTransformInput {
20392039 half-open `(prevOffset, newOffset]` interval of data records that will
20402040 be considered in this transaction.
20412041 """
2042- prevOffset : Int
2042+ prevOffset : Uint64
20432043 """
20442044 Offset of the last data record that will be incorporated into the
20452045 derivative transformation, if any. When present, defines a half-open
20462046 `(prevOffset, newOffset]` interval of data records that will be
20472047 considered in this transaction.
20482048 """
2049- newOffset : Int
2049+ newOffset : Uint64
20502050}
20512051
20522052scalar ExtraAttributes
@@ -2097,7 +2097,7 @@ type FetchStepEthereumLogs {
20972097 for RPC endpoint lookup as well as asserting that provided `nodeUrl`
20982098 corresponds to the expected chain.
20992099 """
2100- chainId : Int
2100+ chainId : Uint64
21012101 """
21022102 Url of the node.
21032103 """
@@ -3261,11 +3261,11 @@ type OffsetInterval {
32613261 """
32623262 Start of the closed interval [start; end].
32633263 """
3264- start : Int !
3264+ start : Uint64 !
32653265 """
32663266 End of the closed interval [start; end].
32673267 """
3268- end : Int !
3268+ end : Uint64 !
32693269}
32703270
32713271enum OrderingDirection {
@@ -4355,6 +4355,8 @@ type TriggerFlowSuccess implements TriggerFlowResult {
43554355
43564356scalar URL
43574357
4358+ scalar Uint64
4359+
43584360interface UnsetRoleResult {
43594361 message : String !
43604362}
0 commit comments