@sentio/runtime 2.28.3-rc.1 → 2.28.3
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/lib/gen/processor/protos/processor.d.ts +1 -0
- package/lib/gen/processor/protos/processor.d.ts.map +1 -1
- package/lib/gen/processor/protos/processor.js +10 -1
- package/lib/gen/processor/protos/processor.js.map +1 -1
- package/package.json +3 -3
- package/src/gen/processor/protos/processor.ts +11 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@sentio/runtime",
|
3
|
-
"version": "2.28.3
|
3
|
+
"version": "2.28.3",
|
4
4
|
"license": "Apache-2.0",
|
5
5
|
"type": "module",
|
6
6
|
"exports": {
|
@@ -30,10 +30,10 @@
|
|
30
30
|
"protobufjs": "^7.2.5",
|
31
31
|
"utility-types": "^3.10.0",
|
32
32
|
"winston": "^3.10.0",
|
33
|
-
"@sentio/protos": "2.28.3
|
33
|
+
"@sentio/protos": "2.28.3"
|
34
34
|
},
|
35
35
|
"peerDependencies": {
|
36
|
-
"@sentio/sdk": "^2.28.3
|
36
|
+
"@sentio/sdk": "^2.28.3"
|
37
37
|
},
|
38
38
|
"devDependencies": {
|
39
39
|
"@types/command-line-args": "^5.2.0",
|
@@ -692,6 +692,7 @@ export interface Data_SuiObject {
|
|
692
692
|
export interface Data_SuiObjectChange {
|
693
693
|
changes: { [key: string]: any }[];
|
694
694
|
timestamp: Date | undefined;
|
695
|
+
txDigest: string;
|
695
696
|
slot: bigint;
|
696
697
|
}
|
697
698
|
|
@@ -4844,7 +4845,7 @@ export const Data_SuiObject = {
|
|
4844
4845
|
};
|
4845
4846
|
|
4846
4847
|
function createBaseData_SuiObjectChange(): Data_SuiObjectChange {
|
4847
|
-
return { changes: [], timestamp: undefined, slot: BigInt("0") };
|
4848
|
+
return { changes: [], timestamp: undefined, txDigest: "", slot: BigInt("0") };
|
4848
4849
|
}
|
4849
4850
|
|
4850
4851
|
export const Data_SuiObjectChange = {
|
@@ -4855,6 +4856,9 @@ export const Data_SuiObjectChange = {
|
|
4855
4856
|
if (message.timestamp !== undefined) {
|
4856
4857
|
Timestamp.encode(toTimestamp(message.timestamp), writer.uint32(18).fork()).ldelim();
|
4857
4858
|
}
|
4859
|
+
if (message.txDigest !== "") {
|
4860
|
+
writer.uint32(34).string(message.txDigest);
|
4861
|
+
}
|
4858
4862
|
if (message.slot !== BigInt("0")) {
|
4859
4863
|
writer.uint32(24).uint64(message.slot.toString());
|
4860
4864
|
}
|
@@ -4874,6 +4878,9 @@ export const Data_SuiObjectChange = {
|
|
4874
4878
|
case 2:
|
4875
4879
|
message.timestamp = fromTimestamp(Timestamp.decode(reader, reader.uint32()));
|
4876
4880
|
break;
|
4881
|
+
case 4:
|
4882
|
+
message.txDigest = reader.string();
|
4883
|
+
break;
|
4877
4884
|
case 3:
|
4878
4885
|
message.slot = longToBigint(reader.uint64() as Long);
|
4879
4886
|
break;
|
@@ -4889,6 +4896,7 @@ export const Data_SuiObjectChange = {
|
|
4889
4896
|
return {
|
4890
4897
|
changes: Array.isArray(object?.changes) ? [...object.changes] : [],
|
4891
4898
|
timestamp: isSet(object.timestamp) ? fromJsonTimestamp(object.timestamp) : undefined,
|
4899
|
+
txDigest: isSet(object.txDigest) ? String(object.txDigest) : "",
|
4892
4900
|
slot: isSet(object.slot) ? BigInt(object.slot) : BigInt("0"),
|
4893
4901
|
};
|
4894
4902
|
},
|
@@ -4901,6 +4909,7 @@ export const Data_SuiObjectChange = {
|
|
4901
4909
|
obj.changes = [];
|
4902
4910
|
}
|
4903
4911
|
message.timestamp !== undefined && (obj.timestamp = message.timestamp.toISOString());
|
4912
|
+
message.txDigest !== undefined && (obj.txDigest = message.txDigest);
|
4904
4913
|
message.slot !== undefined && (obj.slot = message.slot.toString());
|
4905
4914
|
return obj;
|
4906
4915
|
},
|
@@ -4913,6 +4922,7 @@ export const Data_SuiObjectChange = {
|
|
4913
4922
|
const message = createBaseData_SuiObjectChange();
|
4914
4923
|
message.changes = object.changes?.map((e) => e) || [];
|
4915
4924
|
message.timestamp = object.timestamp ?? undefined;
|
4925
|
+
message.txDigest = object.txDigest ?? "";
|
4916
4926
|
message.slot = object.slot ?? BigInt("0");
|
4917
4927
|
return message;
|
4918
4928
|
},
|