@sentio/runtime 2.39.3 → 2.39.4-rc.2
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/db-context.d.ts +55 -2
- package/lib/db-context.d.ts.map +1 -1
- package/lib/db-context.js +1 -4
- package/lib/db-context.js.map +1 -1
- package/lib/full-service.d.ts +55 -2
- package/lib/full-service.d.ts.map +1 -1
- package/lib/gen/processor/protos/processor.d.ts +32 -15
- package/lib/gen/processor/protos/processor.d.ts.map +1 -1
- package/lib/gen/processor/protos/processor.js +226 -88
- package/lib/gen/processor/protos/processor.js.map +1 -1
- package/lib/gen/service/common/protos/common.d.ts +97 -0
- package/lib/gen/service/common/protos/common.d.ts.map +1 -1
- package/lib/gen/service/common/protos/common.js +624 -0
- package/lib/gen/service/common/protos/common.js.map +1 -1
- package/lib/service.d.ts +55 -2
- package/lib/service.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/db-context.ts +1 -3
- package/src/gen/processor/protos/processor.ts +251 -103
- package/src/gen/service/common/protos/common.ts +727 -0
@@ -4,7 +4,7 @@ import _m0 from "protobufjs/minimal.js";
|
|
4
4
|
import { Empty } from "../../google/protobuf/empty.js";
|
5
5
|
import { ListValue, Struct } from "../../google/protobuf/struct.js";
|
6
6
|
import { Timestamp } from "../../google/protobuf/timestamp.js";
|
7
|
-
import { CoinID } from "../../service/common/protos/common.js";
|
7
|
+
import { BigInteger, CoinID, RichStruct, RichStructList, RichValueList } from "../../service/common/protos/common.js";
|
8
8
|
export var MetricType;
|
9
9
|
(function (MetricType) {
|
10
10
|
MetricType[MetricType["UNKNOWN_TYPE"] = 0] = "UNKNOWN_TYPE";
|
@@ -421,6 +421,73 @@ export function eventLogConfig_BasicFieldTypeToJSON(object) {
|
|
421
421
|
return "UNRECOGNIZED";
|
422
422
|
}
|
423
423
|
}
|
424
|
+
export var DBRequest_DBOperator;
|
425
|
+
(function (DBRequest_DBOperator) {
|
426
|
+
DBRequest_DBOperator[DBRequest_DBOperator["EQ"] = 0] = "EQ";
|
427
|
+
DBRequest_DBOperator[DBRequest_DBOperator["NE"] = 1] = "NE";
|
428
|
+
DBRequest_DBOperator[DBRequest_DBOperator["GT"] = 2] = "GT";
|
429
|
+
DBRequest_DBOperator[DBRequest_DBOperator["GE"] = 3] = "GE";
|
430
|
+
DBRequest_DBOperator[DBRequest_DBOperator["LT"] = 4] = "LT";
|
431
|
+
DBRequest_DBOperator[DBRequest_DBOperator["LE"] = 5] = "LE";
|
432
|
+
DBRequest_DBOperator[DBRequest_DBOperator["IN"] = 6] = "IN";
|
433
|
+
DBRequest_DBOperator[DBRequest_DBOperator["NOT_IN"] = 7] = "NOT_IN";
|
434
|
+
DBRequest_DBOperator[DBRequest_DBOperator["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
435
|
+
})(DBRequest_DBOperator || (DBRequest_DBOperator = {}));
|
436
|
+
export function dBRequest_DBOperatorFromJSON(object) {
|
437
|
+
switch (object) {
|
438
|
+
case 0:
|
439
|
+
case "EQ":
|
440
|
+
return DBRequest_DBOperator.EQ;
|
441
|
+
case 1:
|
442
|
+
case "NE":
|
443
|
+
return DBRequest_DBOperator.NE;
|
444
|
+
case 2:
|
445
|
+
case "GT":
|
446
|
+
return DBRequest_DBOperator.GT;
|
447
|
+
case 3:
|
448
|
+
case "GE":
|
449
|
+
return DBRequest_DBOperator.GE;
|
450
|
+
case 4:
|
451
|
+
case "LT":
|
452
|
+
return DBRequest_DBOperator.LT;
|
453
|
+
case 5:
|
454
|
+
case "LE":
|
455
|
+
return DBRequest_DBOperator.LE;
|
456
|
+
case 6:
|
457
|
+
case "IN":
|
458
|
+
return DBRequest_DBOperator.IN;
|
459
|
+
case 7:
|
460
|
+
case "NOT_IN":
|
461
|
+
return DBRequest_DBOperator.NOT_IN;
|
462
|
+
case -1:
|
463
|
+
case "UNRECOGNIZED":
|
464
|
+
default:
|
465
|
+
return DBRequest_DBOperator.UNRECOGNIZED;
|
466
|
+
}
|
467
|
+
}
|
468
|
+
export function dBRequest_DBOperatorToJSON(object) {
|
469
|
+
switch (object) {
|
470
|
+
case DBRequest_DBOperator.EQ:
|
471
|
+
return "EQ";
|
472
|
+
case DBRequest_DBOperator.NE:
|
473
|
+
return "NE";
|
474
|
+
case DBRequest_DBOperator.GT:
|
475
|
+
return "GT";
|
476
|
+
case DBRequest_DBOperator.GE:
|
477
|
+
return "GE";
|
478
|
+
case DBRequest_DBOperator.LT:
|
479
|
+
return "LT";
|
480
|
+
case DBRequest_DBOperator.LE:
|
481
|
+
return "LE";
|
482
|
+
case DBRequest_DBOperator.IN:
|
483
|
+
return "IN";
|
484
|
+
case DBRequest_DBOperator.NOT_IN:
|
485
|
+
return "NOT_IN";
|
486
|
+
case DBRequest_DBOperator.UNRECOGNIZED:
|
487
|
+
default:
|
488
|
+
return "UNRECOGNIZED";
|
489
|
+
}
|
490
|
+
}
|
424
491
|
function createBaseProjectConfig() {
|
425
492
|
return { name: "", version: "" };
|
426
493
|
}
|
@@ -4773,7 +4840,14 @@ export const ProcessStreamResponse = {
|
|
4773
4840
|
},
|
4774
4841
|
};
|
4775
4842
|
function createBaseDBResponse() {
|
4776
|
-
return {
|
4843
|
+
return {
|
4844
|
+
opId: BigInt("0"),
|
4845
|
+
data: undefined,
|
4846
|
+
list: undefined,
|
4847
|
+
error: undefined,
|
4848
|
+
entities: undefined,
|
4849
|
+
nextCursor: undefined,
|
4850
|
+
};
|
4777
4851
|
}
|
4778
4852
|
export const DBResponse = {
|
4779
4853
|
encode(message, writer = _m0.Writer.create()) {
|
@@ -4792,6 +4866,12 @@ export const DBResponse = {
|
|
4792
4866
|
if (message.error !== undefined) {
|
4793
4867
|
writer.uint32(26).string(message.error);
|
4794
4868
|
}
|
4869
|
+
if (message.entities !== undefined) {
|
4870
|
+
RichStructList.encode(message.entities, writer.uint32(50).fork()).ldelim();
|
4871
|
+
}
|
4872
|
+
if (message.nextCursor !== undefined) {
|
4873
|
+
writer.uint32(42).string(message.nextCursor);
|
4874
|
+
}
|
4795
4875
|
return writer;
|
4796
4876
|
},
|
4797
4877
|
decode(input, length) {
|
@@ -4825,6 +4905,18 @@ export const DBResponse = {
|
|
4825
4905
|
}
|
4826
4906
|
message.error = reader.string();
|
4827
4907
|
continue;
|
4908
|
+
case 6:
|
4909
|
+
if (tag !== 50) {
|
4910
|
+
break;
|
4911
|
+
}
|
4912
|
+
message.entities = RichStructList.decode(reader, reader.uint32());
|
4913
|
+
continue;
|
4914
|
+
case 5:
|
4915
|
+
if (tag !== 42) {
|
4916
|
+
break;
|
4917
|
+
}
|
4918
|
+
message.nextCursor = reader.string();
|
4919
|
+
continue;
|
4828
4920
|
}
|
4829
4921
|
if ((tag & 7) === 4 || tag === 0) {
|
4830
4922
|
break;
|
@@ -4839,6 +4931,8 @@ export const DBResponse = {
|
|
4839
4931
|
data: isObject(object.data) ? object.data : undefined,
|
4840
4932
|
list: globalThis.Array.isArray(object.list) ? [...object.list] : undefined,
|
4841
4933
|
error: isSet(object.error) ? globalThis.String(object.error) : undefined,
|
4934
|
+
entities: isSet(object.entities) ? RichStructList.fromJSON(object.entities) : undefined,
|
4935
|
+
nextCursor: isSet(object.nextCursor) ? globalThis.String(object.nextCursor) : undefined,
|
4842
4936
|
};
|
4843
4937
|
},
|
4844
4938
|
toJSON(message) {
|
@@ -4855,6 +4949,12 @@ export const DBResponse = {
|
|
4855
4949
|
if (message.error !== undefined) {
|
4856
4950
|
obj.error = message.error;
|
4857
4951
|
}
|
4952
|
+
if (message.entities !== undefined) {
|
4953
|
+
obj.entities = RichStructList.toJSON(message.entities);
|
4954
|
+
}
|
4955
|
+
if (message.nextCursor !== undefined) {
|
4956
|
+
obj.nextCursor = message.nextCursor;
|
4957
|
+
}
|
4858
4958
|
return obj;
|
4859
4959
|
},
|
4860
4960
|
create(base) {
|
@@ -4866,6 +4966,10 @@ export const DBResponse = {
|
|
4866
4966
|
message.data = object.data ?? undefined;
|
4867
4967
|
message.list = object.list ?? undefined;
|
4868
4968
|
message.error = object.error ?? undefined;
|
4969
|
+
message.entities = (object.entities !== undefined && object.entities !== null)
|
4970
|
+
? RichStructList.fromPartial(object.entities)
|
4971
|
+
: undefined;
|
4972
|
+
message.nextCursor = object.nextCursor ?? undefined;
|
4869
4973
|
return message;
|
4870
4974
|
},
|
4871
4975
|
};
|
@@ -5055,18 +5159,18 @@ export const DBRequest_DBGet = {
|
|
5055
5159
|
},
|
5056
5160
|
};
|
5057
5161
|
function createBaseDBRequest_DBList() {
|
5058
|
-
return { entity: "",
|
5162
|
+
return { entity: "", filters: [], cursor: "" };
|
5059
5163
|
}
|
5060
5164
|
export const DBRequest_DBList = {
|
5061
5165
|
encode(message, writer = _m0.Writer.create()) {
|
5062
5166
|
if (message.entity !== "") {
|
5063
5167
|
writer.uint32(10).string(message.entity);
|
5064
5168
|
}
|
5065
|
-
|
5066
|
-
writer.uint32(
|
5169
|
+
for (const v of message.filters) {
|
5170
|
+
DBRequest_DBFilter.encode(v, writer.uint32(34).fork()).ldelim();
|
5067
5171
|
}
|
5068
|
-
if (message.
|
5069
|
-
writer.uint32(
|
5172
|
+
if (message.cursor !== "") {
|
5173
|
+
writer.uint32(42).string(message.cursor);
|
5070
5174
|
}
|
5071
5175
|
return writer;
|
5072
5176
|
},
|
@@ -5083,17 +5187,17 @@ export const DBRequest_DBList = {
|
|
5083
5187
|
}
|
5084
5188
|
message.entity = reader.string();
|
5085
5189
|
continue;
|
5086
|
-
case
|
5087
|
-
if (tag !==
|
5190
|
+
case 4:
|
5191
|
+
if (tag !== 34) {
|
5088
5192
|
break;
|
5089
5193
|
}
|
5090
|
-
message.
|
5194
|
+
message.filters.push(DBRequest_DBFilter.decode(reader, reader.uint32()));
|
5091
5195
|
continue;
|
5092
|
-
case
|
5093
|
-
if (tag !==
|
5196
|
+
case 5:
|
5197
|
+
if (tag !== 42) {
|
5094
5198
|
break;
|
5095
5199
|
}
|
5096
|
-
message.
|
5200
|
+
message.cursor = reader.string();
|
5097
5201
|
continue;
|
5098
5202
|
}
|
5099
5203
|
if ((tag & 7) === 4 || tag === 0) {
|
@@ -5106,8 +5210,10 @@ export const DBRequest_DBList = {
|
|
5106
5210
|
fromJSON(object) {
|
5107
5211
|
return {
|
5108
5212
|
entity: isSet(object.entity) ? globalThis.String(object.entity) : "",
|
5109
|
-
|
5110
|
-
|
5213
|
+
filters: globalThis.Array.isArray(object?.filters)
|
5214
|
+
? object.filters.map((e) => DBRequest_DBFilter.fromJSON(e))
|
5215
|
+
: [],
|
5216
|
+
cursor: isSet(object.cursor) ? globalThis.String(object.cursor) : "",
|
5111
5217
|
};
|
5112
5218
|
},
|
5113
5219
|
toJSON(message) {
|
@@ -5115,11 +5221,11 @@ export const DBRequest_DBList = {
|
|
5115
5221
|
if (message.entity !== "") {
|
5116
5222
|
obj.entity = message.entity;
|
5117
5223
|
}
|
5118
|
-
if (message.
|
5119
|
-
obj.
|
5224
|
+
if (message.filters?.length) {
|
5225
|
+
obj.filters = message.filters.map((e) => DBRequest_DBFilter.toJSON(e));
|
5120
5226
|
}
|
5121
|
-
if (message.
|
5122
|
-
obj.
|
5227
|
+
if (message.cursor !== "") {
|
5228
|
+
obj.cursor = message.cursor;
|
5123
5229
|
}
|
5124
5230
|
return obj;
|
5125
5231
|
},
|
@@ -5129,13 +5235,13 @@ export const DBRequest_DBList = {
|
|
5129
5235
|
fromPartial(object) {
|
5130
5236
|
const message = createBaseDBRequest_DBList();
|
5131
5237
|
message.entity = object.entity ?? "";
|
5132
|
-
message.
|
5133
|
-
message.
|
5238
|
+
message.filters = object.filters?.map((e) => DBRequest_DBFilter.fromPartial(e)) || [];
|
5239
|
+
message.cursor = object.cursor ?? "";
|
5134
5240
|
return message;
|
5135
5241
|
},
|
5136
5242
|
};
|
5137
5243
|
function createBaseDBRequest_DBUpsert() {
|
5138
|
-
return { entity: [], id: [], data: [] };
|
5244
|
+
return { entity: [], id: [], data: [], entityData: [] };
|
5139
5245
|
}
|
5140
5246
|
export const DBRequest_DBUpsert = {
|
5141
5247
|
encode(message, writer = _m0.Writer.create()) {
|
@@ -5148,6 +5254,9 @@ export const DBRequest_DBUpsert = {
|
|
5148
5254
|
for (const v of message.data) {
|
5149
5255
|
Struct.encode(Struct.wrap(v), writer.uint32(26).fork()).ldelim();
|
5150
5256
|
}
|
5257
|
+
for (const v of message.entityData) {
|
5258
|
+
RichStruct.encode(v, writer.uint32(34).fork()).ldelim();
|
5259
|
+
}
|
5151
5260
|
return writer;
|
5152
5261
|
},
|
5153
5262
|
decode(input, length) {
|
@@ -5175,6 +5284,12 @@ export const DBRequest_DBUpsert = {
|
|
5175
5284
|
}
|
5176
5285
|
message.data.push(Struct.unwrap(Struct.decode(reader, reader.uint32())));
|
5177
5286
|
continue;
|
5287
|
+
case 4:
|
5288
|
+
if (tag !== 34) {
|
5289
|
+
break;
|
5290
|
+
}
|
5291
|
+
message.entityData.push(RichStruct.decode(reader, reader.uint32()));
|
5292
|
+
continue;
|
5178
5293
|
}
|
5179
5294
|
if ((tag & 7) === 4 || tag === 0) {
|
5180
5295
|
break;
|
@@ -5188,6 +5303,9 @@ export const DBRequest_DBUpsert = {
|
|
5188
5303
|
entity: globalThis.Array.isArray(object?.entity) ? object.entity.map((e) => globalThis.String(e)) : [],
|
5189
5304
|
id: globalThis.Array.isArray(object?.id) ? object.id.map((e) => globalThis.String(e)) : [],
|
5190
5305
|
data: globalThis.Array.isArray(object?.data) ? [...object.data] : [],
|
5306
|
+
entityData: globalThis.Array.isArray(object?.entityData)
|
5307
|
+
? object.entityData.map((e) => RichStruct.fromJSON(e))
|
5308
|
+
: [],
|
5191
5309
|
};
|
5192
5310
|
},
|
5193
5311
|
toJSON(message) {
|
@@ -5201,6 +5319,9 @@ export const DBRequest_DBUpsert = {
|
|
5201
5319
|
if (message.data?.length) {
|
5202
5320
|
obj.data = message.data;
|
5203
5321
|
}
|
5322
|
+
if (message.entityData?.length) {
|
5323
|
+
obj.entityData = message.entityData.map((e) => RichStruct.toJSON(e));
|
5324
|
+
}
|
5204
5325
|
return obj;
|
5205
5326
|
},
|
5206
5327
|
create(base) {
|
@@ -5211,6 +5332,7 @@ export const DBRequest_DBUpsert = {
|
|
5211
5332
|
message.entity = object.entity?.map((e) => e) || [];
|
5212
5333
|
message.id = object.id?.map((e) => e) || [];
|
5213
5334
|
message.data = object.data?.map((e) => e) || [];
|
5335
|
+
message.entityData = object.entityData?.map((e) => RichStruct.fromPartial(e)) || [];
|
5214
5336
|
return message;
|
5215
5337
|
},
|
5216
5338
|
};
|
@@ -5280,6 +5402,88 @@ export const DBRequest_DBDelete = {
|
|
5280
5402
|
return message;
|
5281
5403
|
},
|
5282
5404
|
};
|
5405
|
+
function createBaseDBRequest_DBFilter() {
|
5406
|
+
return { field: "", op: 0, value: undefined };
|
5407
|
+
}
|
5408
|
+
export const DBRequest_DBFilter = {
|
5409
|
+
encode(message, writer = _m0.Writer.create()) {
|
5410
|
+
if (message.field !== "") {
|
5411
|
+
writer.uint32(10).string(message.field);
|
5412
|
+
}
|
5413
|
+
if (message.op !== 0) {
|
5414
|
+
writer.uint32(16).int32(message.op);
|
5415
|
+
}
|
5416
|
+
if (message.value !== undefined) {
|
5417
|
+
RichValueList.encode(message.value, writer.uint32(26).fork()).ldelim();
|
5418
|
+
}
|
5419
|
+
return writer;
|
5420
|
+
},
|
5421
|
+
decode(input, length) {
|
5422
|
+
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
5423
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
5424
|
+
const message = createBaseDBRequest_DBFilter();
|
5425
|
+
while (reader.pos < end) {
|
5426
|
+
const tag = reader.uint32();
|
5427
|
+
switch (tag >>> 3) {
|
5428
|
+
case 1:
|
5429
|
+
if (tag !== 10) {
|
5430
|
+
break;
|
5431
|
+
}
|
5432
|
+
message.field = reader.string();
|
5433
|
+
continue;
|
5434
|
+
case 2:
|
5435
|
+
if (tag !== 16) {
|
5436
|
+
break;
|
5437
|
+
}
|
5438
|
+
message.op = reader.int32();
|
5439
|
+
continue;
|
5440
|
+
case 3:
|
5441
|
+
if (tag !== 26) {
|
5442
|
+
break;
|
5443
|
+
}
|
5444
|
+
message.value = RichValueList.decode(reader, reader.uint32());
|
5445
|
+
continue;
|
5446
|
+
}
|
5447
|
+
if ((tag & 7) === 4 || tag === 0) {
|
5448
|
+
break;
|
5449
|
+
}
|
5450
|
+
reader.skipType(tag & 7);
|
5451
|
+
}
|
5452
|
+
return message;
|
5453
|
+
},
|
5454
|
+
fromJSON(object) {
|
5455
|
+
return {
|
5456
|
+
field: isSet(object.field) ? globalThis.String(object.field) : "",
|
5457
|
+
op: isSet(object.op) ? dBRequest_DBOperatorFromJSON(object.op) : 0,
|
5458
|
+
value: isSet(object.value) ? RichValueList.fromJSON(object.value) : undefined,
|
5459
|
+
};
|
5460
|
+
},
|
5461
|
+
toJSON(message) {
|
5462
|
+
const obj = {};
|
5463
|
+
if (message.field !== "") {
|
5464
|
+
obj.field = message.field;
|
5465
|
+
}
|
5466
|
+
if (message.op !== 0) {
|
5467
|
+
obj.op = dBRequest_DBOperatorToJSON(message.op);
|
5468
|
+
}
|
5469
|
+
if (message.value !== undefined) {
|
5470
|
+
obj.value = RichValueList.toJSON(message.value);
|
5471
|
+
}
|
5472
|
+
return obj;
|
5473
|
+
},
|
5474
|
+
create(base) {
|
5475
|
+
return DBRequest_DBFilter.fromPartial(base ?? {});
|
5476
|
+
},
|
5477
|
+
fromPartial(object) {
|
5478
|
+
const message = createBaseDBRequest_DBFilter();
|
5479
|
+
message.field = object.field ?? "";
|
5480
|
+
message.op = object.op ?? 0;
|
5481
|
+
message.value = (object.value !== undefined && object.value !== null)
|
5482
|
+
? RichValueList.fromPartial(object.value)
|
5483
|
+
: undefined;
|
5484
|
+
return message;
|
5485
|
+
},
|
5486
|
+
};
|
5283
5487
|
function createBaseData() {
|
5284
5488
|
return {
|
5285
5489
|
raw: new Uint8Array(0),
|
@@ -7386,72 +7590,6 @@ export const MetricValue = {
|
|
7386
7590
|
return message;
|
7387
7591
|
},
|
7388
7592
|
};
|
7389
|
-
function createBaseBigInteger() {
|
7390
|
-
return { negative: false, data: new Uint8Array(0) };
|
7391
|
-
}
|
7392
|
-
export const BigInteger = {
|
7393
|
-
encode(message, writer = _m0.Writer.create()) {
|
7394
|
-
if (message.negative !== false) {
|
7395
|
-
writer.uint32(8).bool(message.negative);
|
7396
|
-
}
|
7397
|
-
if (message.data.length !== 0) {
|
7398
|
-
writer.uint32(18).bytes(message.data);
|
7399
|
-
}
|
7400
|
-
return writer;
|
7401
|
-
},
|
7402
|
-
decode(input, length) {
|
7403
|
-
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
7404
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
7405
|
-
const message = createBaseBigInteger();
|
7406
|
-
while (reader.pos < end) {
|
7407
|
-
const tag = reader.uint32();
|
7408
|
-
switch (tag >>> 3) {
|
7409
|
-
case 1:
|
7410
|
-
if (tag !== 8) {
|
7411
|
-
break;
|
7412
|
-
}
|
7413
|
-
message.negative = reader.bool();
|
7414
|
-
continue;
|
7415
|
-
case 2:
|
7416
|
-
if (tag !== 18) {
|
7417
|
-
break;
|
7418
|
-
}
|
7419
|
-
message.data = reader.bytes();
|
7420
|
-
continue;
|
7421
|
-
}
|
7422
|
-
if ((tag & 7) === 4 || tag === 0) {
|
7423
|
-
break;
|
7424
|
-
}
|
7425
|
-
reader.skipType(tag & 7);
|
7426
|
-
}
|
7427
|
-
return message;
|
7428
|
-
},
|
7429
|
-
fromJSON(object) {
|
7430
|
-
return {
|
7431
|
-
negative: isSet(object.negative) ? globalThis.Boolean(object.negative) : false,
|
7432
|
-
data: isSet(object.data) ? bytesFromBase64(object.data) : new Uint8Array(0),
|
7433
|
-
};
|
7434
|
-
},
|
7435
|
-
toJSON(message) {
|
7436
|
-
const obj = {};
|
7437
|
-
if (message.negative !== false) {
|
7438
|
-
obj.negative = message.negative;
|
7439
|
-
}
|
7440
|
-
if (message.data.length !== 0) {
|
7441
|
-
obj.data = base64FromBytes(message.data);
|
7442
|
-
}
|
7443
|
-
return obj;
|
7444
|
-
},
|
7445
|
-
create(base) {
|
7446
|
-
return BigInteger.fromPartial(base ?? {});
|
7447
|
-
},
|
7448
|
-
fromPartial(object) {
|
7449
|
-
const message = createBaseBigInteger();
|
7450
|
-
message.negative = object.negative ?? false;
|
7451
|
-
message.data = object.data ?? new Uint8Array(0);
|
7452
|
-
return message;
|
7453
|
-
},
|
7454
|
-
};
|
7455
7593
|
function createBaseRuntimeInfo() {
|
7456
7594
|
return { from: 0 };
|
7457
7595
|
}
|