blue-js-sdk 2.0.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/CHANGELOG.md +446 -0
- package/LICENSE +21 -0
- package/README.md +75 -0
- package/ai-path/ADMIN-ELEVATION.md +116 -0
- package/ai-path/AI-MANIFESTO.md +185 -0
- package/ai-path/BREAKING.md +74 -0
- package/ai-path/CHECKLIST.md +619 -0
- package/ai-path/CONNECTION-STEPS.md +724 -0
- package/ai-path/DECISION-TREE.md +378 -0
- package/ai-path/DEPENDENCIES.md +459 -0
- package/ai-path/E2E-FLOW.md +1555 -0
- package/ai-path/FAILURES.md +403 -0
- package/ai-path/GUIDE.md +1217 -0
- package/ai-path/README.md +558 -0
- package/ai-path/SPLIT-TUNNEL.md +266 -0
- package/ai-path/cli.js +535 -0
- package/ai-path/connect.js +884 -0
- package/ai-path/discover.js +178 -0
- package/ai-path/environment.js +266 -0
- package/ai-path/errors.js +86 -0
- package/ai-path/examples/autonomous-agent.mjs +220 -0
- package/ai-path/examples/multi-region.mjs +174 -0
- package/ai-path/examples/one-shot.mjs +31 -0
- package/ai-path/index.js +60 -0
- package/ai-path/pricing.js +136 -0
- package/ai-path/recommend.js +413 -0
- package/ai-path/run-admin.vbs +25 -0
- package/ai-path/setup.js +291 -0
- package/ai-path/wallet.js +137 -0
- package/app-helpers.js +363 -0
- package/app-settings.js +95 -0
- package/app-types.js +267 -0
- package/audit.js +847 -0
- package/batch.js +293 -0
- package/bin/setup.js +376 -0
- package/chain/authz.js +109 -0
- package/chain/broadcast.js +472 -0
- package/chain/client.js +160 -0
- package/chain/fee-grants.js +305 -0
- package/chain/index.js +891 -0
- package/chain/lcd.js +313 -0
- package/chain/queries.js +547 -0
- package/chain/rpc.js +408 -0
- package/chain/wallet.js +141 -0
- package/cli/config.js +143 -0
- package/cli/index.js +463 -0
- package/cli/output.js +182 -0
- package/cli.js +491 -0
- package/client/index.js +251 -0
- package/client.js +271 -0
- package/config/index.js +255 -0
- package/connection/connect.js +849 -0
- package/connection/disconnect.js +180 -0
- package/connection/discovery.js +321 -0
- package/connection/index.js +76 -0
- package/connection/proxy.js +148 -0
- package/connection/resilience.js +428 -0
- package/connection/security.js +232 -0
- package/connection/state.js +369 -0
- package/connection/tunnel.js +691 -0
- package/consumer.js +132 -0
- package/cosmjs-setup.js +1884 -0
- package/defaults.js +366 -0
- package/disk-cache.js +107 -0
- package/dist/client.d.ts +108 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +400 -0
- package/dist/client.js.map +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -0
- package/errors/index.js +112 -0
- package/errors.js +218 -0
- package/examples/README.md +64 -0
- package/examples/connect-direct.mjs +106 -0
- package/examples/connect-plan.mjs +125 -0
- package/examples/error-handling.mjs +109 -0
- package/examples/query-nodes.mjs +94 -0
- package/examples/wallet-basics.mjs +61 -0
- package/generated/amino/amino.ts +9 -0
- package/generated/cosmos/base/v1beta1/coin.ts +365 -0
- package/generated/cosmos_proto/cosmos.ts +323 -0
- package/generated/gogoproto/gogo.ts +9 -0
- package/generated/google/protobuf/descriptor.ts +7601 -0
- package/generated/google/protobuf/duration.ts +208 -0
- package/generated/google/protobuf/timestamp.ts +238 -0
- package/generated/sentinel/lease/v1/events.ts +924 -0
- package/generated/sentinel/lease/v1/lease.ts +292 -0
- package/generated/sentinel/lease/v1/msg.ts +949 -0
- package/generated/sentinel/lease/v1/params.ts +164 -0
- package/generated/sentinel/node/v3/events.ts +881 -0
- package/generated/sentinel/node/v3/msg.ts +1002 -0
- package/generated/sentinel/node/v3/node.ts +263 -0
- package/generated/sentinel/node/v3/params.ts +183 -0
- package/generated/sentinel/plan/v3/events.ts +675 -0
- package/generated/sentinel/plan/v3/msg.ts +1191 -0
- package/generated/sentinel/plan/v3/plan.ts +283 -0
- package/generated/sentinel/provider/v2/events.ts +171 -0
- package/generated/sentinel/provider/v2/msg.ts +480 -0
- package/generated/sentinel/provider/v2/params.ts +131 -0
- package/generated/sentinel/provider/v2/provider.ts +246 -0
- package/generated/sentinel/session/v3/events.ts +480 -0
- package/generated/sentinel/session/v3/msg.ts +616 -0
- package/generated/sentinel/session/v3/params.ts +260 -0
- package/generated/sentinel/session/v3/proof.ts +180 -0
- package/generated/sentinel/session/v3/session.ts +384 -0
- package/generated/sentinel/subscription/v3/events.ts +1181 -0
- package/generated/sentinel/subscription/v3/msg.ts +1305 -0
- package/generated/sentinel/subscription/v3/params.ts +167 -0
- package/generated/sentinel/subscription/v3/subscription.ts +315 -0
- package/generated/sentinel/types/v1/bandwidth.ts +124 -0
- package/generated/sentinel/types/v1/price.ts +149 -0
- package/generated/sentinel/types/v1/renewal.ts +87 -0
- package/generated/sentinel/types/v1/status.ts +54 -0
- package/generated/typeRegistry.ts +27 -0
- package/index.js +486 -0
- package/node-connect.js +3015 -0
- package/operator.js +134 -0
- package/package.json +113 -0
- package/plan-operations.js +199 -0
- package/preflight.js +352 -0
- package/pricing/index.js +262 -0
- package/proto/amino/amino.proto +84 -0
- package/proto/cosmos/base/v1beta1/coin.proto +61 -0
- package/proto/cosmos_proto/cosmos.proto +112 -0
- package/proto/gogoproto/gogo.proto +145 -0
- package/proto/google/api/annotations.proto +31 -0
- package/proto/google/api/http.proto +370 -0
- package/proto/google/protobuf/any.proto +106 -0
- package/proto/google/protobuf/duration.proto +115 -0
- package/proto/google/protobuf/timestamp.proto +145 -0
- package/proto/sentinel/lease/v1/events.proto +52 -0
- package/proto/sentinel/lease/v1/genesis.proto +15 -0
- package/proto/sentinel/lease/v1/lease.proto +25 -0
- package/proto/sentinel/lease/v1/msg.proto +62 -0
- package/proto/sentinel/lease/v1/params.proto +17 -0
- package/proto/sentinel/node/v3/events.proto +50 -0
- package/proto/sentinel/node/v3/genesis.proto +15 -0
- package/proto/sentinel/node/v3/msg.proto +63 -0
- package/proto/sentinel/node/v3/node.proto +27 -0
- package/proto/sentinel/node/v3/params.proto +21 -0
- package/proto/sentinel/node/v3/querier.proto +63 -0
- package/proto/sentinel/plan/v3/events.proto +41 -0
- package/proto/sentinel/plan/v3/genesis.proto +21 -0
- package/proto/sentinel/plan/v3/msg.proto +83 -0
- package/proto/sentinel/plan/v3/plan.proto +32 -0
- package/proto/sentinel/plan/v3/querier.proto +53 -0
- package/proto/sentinel/provider/v2/events.proto +16 -0
- package/proto/sentinel/provider/v2/genesis.proto +15 -0
- package/proto/sentinel/provider/v2/msg.proto +35 -0
- package/proto/sentinel/provider/v2/params.proto +17 -0
- package/proto/sentinel/provider/v2/provider.proto +24 -0
- package/proto/sentinel/provider/v3/genesis.proto +15 -0
- package/proto/sentinel/provider/v3/params.proto +13 -0
- package/proto/sentinel/session/v3/events.proto +30 -0
- package/proto/sentinel/session/v3/genesis.proto +15 -0
- package/proto/sentinel/session/v3/msg.proto +50 -0
- package/proto/sentinel/session/v3/params.proto +25 -0
- package/proto/sentinel/session/v3/proof.proto +25 -0
- package/proto/sentinel/session/v3/querier.proto +100 -0
- package/proto/sentinel/session/v3/session.proto +50 -0
- package/proto/sentinel/subscription/v2/allocation.proto +21 -0
- package/proto/sentinel/subscription/v2/payout.proto +22 -0
- package/proto/sentinel/subscription/v3/events.proto +65 -0
- package/proto/sentinel/subscription/v3/genesis.proto +17 -0
- package/proto/sentinel/subscription/v3/msg.proto +83 -0
- package/proto/sentinel/subscription/v3/params.proto +21 -0
- package/proto/sentinel/subscription/v3/subscription.proto +33 -0
- package/proto/sentinel/types/v1/bandwidth.proto +19 -0
- package/proto/sentinel/types/v1/price.proto +21 -0
- package/proto/sentinel/types/v1/renewal.proto +21 -0
- package/proto/sentinel/types/v1/status.proto +16 -0
- package/protocol/encoding.js +341 -0
- package/protocol/events.js +361 -0
- package/protocol/handshake.js +297 -0
- package/protocol/index.js +15 -0
- package/protocol/messages.js +346 -0
- package/protocol/plans.js +199 -0
- package/protocol/v2ray.js +268 -0
- package/protocol/v3.js +723 -0
- package/protocol/wireguard.js +125 -0
- package/security/index.js +132 -0
- package/session-manager.js +329 -0
- package/session-tracker.js +80 -0
- package/setup.js +376 -0
- package/speedtest/index.js +528 -0
- package/speedtest.js +567 -0
- package/src/client.ts +502 -0
- package/src/index.ts +20 -0
- package/state/index.js +347 -0
- package/state.js +516 -0
- package/test-all-chain-ops.js +493 -0
- package/test-all-logic.js +199 -0
- package/test-all-msg-types.js +292 -0
- package/test-every-connection.js +208 -0
- package/test-feegrant-connect.js +98 -0
- package/test-logic.js +148 -0
- package/test-mainnet.js +176 -0
- package/test-plan-lifecycle.js +335 -0
- package/tls-trust.js +132 -0
- package/tsconfig.build.json +20 -0
- package/tsconfig.json +34 -0
- package/types/chain.d.ts +746 -0
- package/types/connection.d.ts +425 -0
- package/types/errors.d.ts +174 -0
- package/types/index.d.ts +1380 -0
- package/types/nodes.d.ts +187 -0
- package/types/pricing.d.ts +156 -0
- package/types/protocol.d.ts +332 -0
- package/types/session.d.ts +236 -0
- package/types/settings.d.ts +192 -0
- package/v3protocol.js +1053 -0
- package/wallet/index.js +153 -0
- package/wireguard.js +307 -0
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
|
+
// versions:
|
|
3
|
+
// protoc-gen-ts_proto v2.11.6
|
|
4
|
+
// protoc v7.34.0
|
|
5
|
+
// source: sentinel/session/v3/params.proto
|
|
6
|
+
|
|
7
|
+
/* eslint-disable */
|
|
8
|
+
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
|
|
9
|
+
import { Duration } from "../../../google/protobuf/duration";
|
|
10
|
+
import { messageTypeRegistry } from "../../../typeRegistry";
|
|
11
|
+
|
|
12
|
+
export const protobufPackage = "sentinel.session.v3";
|
|
13
|
+
|
|
14
|
+
export interface Params {
|
|
15
|
+
$type: "sentinel.session.v3.Params";
|
|
16
|
+
maxGigabytes: number;
|
|
17
|
+
minGigabytes: number;
|
|
18
|
+
maxHours: number;
|
|
19
|
+
minHours: number;
|
|
20
|
+
proofVerificationEnabled: boolean;
|
|
21
|
+
stakingShare: string;
|
|
22
|
+
statusTimeout: Duration | undefined;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
function createBaseParams(): Params {
|
|
26
|
+
return {
|
|
27
|
+
$type: "sentinel.session.v3.Params",
|
|
28
|
+
maxGigabytes: 0,
|
|
29
|
+
minGigabytes: 0,
|
|
30
|
+
maxHours: 0,
|
|
31
|
+
minHours: 0,
|
|
32
|
+
proofVerificationEnabled: false,
|
|
33
|
+
stakingShare: "",
|
|
34
|
+
statusTimeout: undefined,
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export const Params: MessageFns<Params, "sentinel.session.v3.Params"> = {
|
|
39
|
+
$type: "sentinel.session.v3.Params" as const,
|
|
40
|
+
|
|
41
|
+
encode(message: Params, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {
|
|
42
|
+
if (message.maxGigabytes !== 0) {
|
|
43
|
+
writer.uint32(8).int64(message.maxGigabytes);
|
|
44
|
+
}
|
|
45
|
+
if (message.minGigabytes !== 0) {
|
|
46
|
+
writer.uint32(16).int64(message.minGigabytes);
|
|
47
|
+
}
|
|
48
|
+
if (message.maxHours !== 0) {
|
|
49
|
+
writer.uint32(24).int64(message.maxHours);
|
|
50
|
+
}
|
|
51
|
+
if (message.minHours !== 0) {
|
|
52
|
+
writer.uint32(32).int64(message.minHours);
|
|
53
|
+
}
|
|
54
|
+
if (message.proofVerificationEnabled !== false) {
|
|
55
|
+
writer.uint32(40).bool(message.proofVerificationEnabled);
|
|
56
|
+
}
|
|
57
|
+
if (message.stakingShare !== "") {
|
|
58
|
+
writer.uint32(50).string(message.stakingShare);
|
|
59
|
+
}
|
|
60
|
+
if (message.statusTimeout !== undefined) {
|
|
61
|
+
Duration.encode(message.statusTimeout, writer.uint32(58).fork()).join();
|
|
62
|
+
}
|
|
63
|
+
return writer;
|
|
64
|
+
},
|
|
65
|
+
|
|
66
|
+
decode(input: BinaryReader | Uint8Array, length?: number): Params {
|
|
67
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
68
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
69
|
+
const message = createBaseParams();
|
|
70
|
+
while (reader.pos < end) {
|
|
71
|
+
const tag = reader.uint32();
|
|
72
|
+
switch (tag >>> 3) {
|
|
73
|
+
case 1: {
|
|
74
|
+
if (tag !== 8) {
|
|
75
|
+
break;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
message.maxGigabytes = longToNumber(reader.int64());
|
|
79
|
+
continue;
|
|
80
|
+
}
|
|
81
|
+
case 2: {
|
|
82
|
+
if (tag !== 16) {
|
|
83
|
+
break;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
message.minGigabytes = longToNumber(reader.int64());
|
|
87
|
+
continue;
|
|
88
|
+
}
|
|
89
|
+
case 3: {
|
|
90
|
+
if (tag !== 24) {
|
|
91
|
+
break;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
message.maxHours = longToNumber(reader.int64());
|
|
95
|
+
continue;
|
|
96
|
+
}
|
|
97
|
+
case 4: {
|
|
98
|
+
if (tag !== 32) {
|
|
99
|
+
break;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
message.minHours = longToNumber(reader.int64());
|
|
103
|
+
continue;
|
|
104
|
+
}
|
|
105
|
+
case 5: {
|
|
106
|
+
if (tag !== 40) {
|
|
107
|
+
break;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
message.proofVerificationEnabled = reader.bool();
|
|
111
|
+
continue;
|
|
112
|
+
}
|
|
113
|
+
case 6: {
|
|
114
|
+
if (tag !== 50) {
|
|
115
|
+
break;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
message.stakingShare = reader.string();
|
|
119
|
+
continue;
|
|
120
|
+
}
|
|
121
|
+
case 7: {
|
|
122
|
+
if (tag !== 58) {
|
|
123
|
+
break;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
message.statusTimeout = Duration.decode(reader, reader.uint32());
|
|
127
|
+
continue;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
131
|
+
break;
|
|
132
|
+
}
|
|
133
|
+
reader.skip(tag & 7);
|
|
134
|
+
}
|
|
135
|
+
return message;
|
|
136
|
+
},
|
|
137
|
+
|
|
138
|
+
fromJSON(object: any): Params {
|
|
139
|
+
return {
|
|
140
|
+
$type: Params.$type,
|
|
141
|
+
maxGigabytes: isSet(object.maxGigabytes)
|
|
142
|
+
? globalThis.Number(object.maxGigabytes)
|
|
143
|
+
: isSet(object.max_gigabytes)
|
|
144
|
+
? globalThis.Number(object.max_gigabytes)
|
|
145
|
+
: 0,
|
|
146
|
+
minGigabytes: isSet(object.minGigabytes)
|
|
147
|
+
? globalThis.Number(object.minGigabytes)
|
|
148
|
+
: isSet(object.min_gigabytes)
|
|
149
|
+
? globalThis.Number(object.min_gigabytes)
|
|
150
|
+
: 0,
|
|
151
|
+
maxHours: isSet(object.maxHours)
|
|
152
|
+
? globalThis.Number(object.maxHours)
|
|
153
|
+
: isSet(object.max_hours)
|
|
154
|
+
? globalThis.Number(object.max_hours)
|
|
155
|
+
: 0,
|
|
156
|
+
minHours: isSet(object.minHours)
|
|
157
|
+
? globalThis.Number(object.minHours)
|
|
158
|
+
: isSet(object.min_hours)
|
|
159
|
+
? globalThis.Number(object.min_hours)
|
|
160
|
+
: 0,
|
|
161
|
+
proofVerificationEnabled: isSet(object.proofVerificationEnabled)
|
|
162
|
+
? globalThis.Boolean(object.proofVerificationEnabled)
|
|
163
|
+
: isSet(object.proof_verification_enabled)
|
|
164
|
+
? globalThis.Boolean(object.proof_verification_enabled)
|
|
165
|
+
: false,
|
|
166
|
+
stakingShare: isSet(object.stakingShare)
|
|
167
|
+
? globalThis.String(object.stakingShare)
|
|
168
|
+
: isSet(object.staking_share)
|
|
169
|
+
? globalThis.String(object.staking_share)
|
|
170
|
+
: "",
|
|
171
|
+
statusTimeout: isSet(object.statusTimeout)
|
|
172
|
+
? Duration.fromJSON(object.statusTimeout)
|
|
173
|
+
: isSet(object.status_timeout)
|
|
174
|
+
? Duration.fromJSON(object.status_timeout)
|
|
175
|
+
: undefined,
|
|
176
|
+
};
|
|
177
|
+
},
|
|
178
|
+
|
|
179
|
+
toJSON(message: Params): unknown {
|
|
180
|
+
const obj: any = {};
|
|
181
|
+
if (message.maxGigabytes !== 0) {
|
|
182
|
+
obj.maxGigabytes = Math.round(message.maxGigabytes);
|
|
183
|
+
}
|
|
184
|
+
if (message.minGigabytes !== 0) {
|
|
185
|
+
obj.minGigabytes = Math.round(message.minGigabytes);
|
|
186
|
+
}
|
|
187
|
+
if (message.maxHours !== 0) {
|
|
188
|
+
obj.maxHours = Math.round(message.maxHours);
|
|
189
|
+
}
|
|
190
|
+
if (message.minHours !== 0) {
|
|
191
|
+
obj.minHours = Math.round(message.minHours);
|
|
192
|
+
}
|
|
193
|
+
if (message.proofVerificationEnabled !== false) {
|
|
194
|
+
obj.proofVerificationEnabled = message.proofVerificationEnabled;
|
|
195
|
+
}
|
|
196
|
+
if (message.stakingShare !== "") {
|
|
197
|
+
obj.stakingShare = message.stakingShare;
|
|
198
|
+
}
|
|
199
|
+
if (message.statusTimeout !== undefined) {
|
|
200
|
+
obj.statusTimeout = Duration.toJSON(message.statusTimeout);
|
|
201
|
+
}
|
|
202
|
+
return obj;
|
|
203
|
+
},
|
|
204
|
+
|
|
205
|
+
create<I extends Exact<DeepPartial<Params>, I>>(base?: I): Params {
|
|
206
|
+
return Params.fromPartial(base ?? ({} as any));
|
|
207
|
+
},
|
|
208
|
+
fromPartial<I extends Exact<DeepPartial<Params>, I>>(object: I): Params {
|
|
209
|
+
const message = createBaseParams();
|
|
210
|
+
message.maxGigabytes = object.maxGigabytes ?? 0;
|
|
211
|
+
message.minGigabytes = object.minGigabytes ?? 0;
|
|
212
|
+
message.maxHours = object.maxHours ?? 0;
|
|
213
|
+
message.minHours = object.minHours ?? 0;
|
|
214
|
+
message.proofVerificationEnabled = object.proofVerificationEnabled ?? false;
|
|
215
|
+
message.stakingShare = object.stakingShare ?? "";
|
|
216
|
+
message.statusTimeout = (object.statusTimeout !== undefined && object.statusTimeout !== null)
|
|
217
|
+
? Duration.fromPartial(object.statusTimeout)
|
|
218
|
+
: undefined;
|
|
219
|
+
return message;
|
|
220
|
+
},
|
|
221
|
+
};
|
|
222
|
+
|
|
223
|
+
messageTypeRegistry.set(Params.$type, Params);
|
|
224
|
+
|
|
225
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
226
|
+
|
|
227
|
+
export type DeepPartial<T> = T extends Builtin ? T
|
|
228
|
+
: T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>>
|
|
229
|
+
: T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>>
|
|
230
|
+
: T extends {} ? { [K in Exclude<keyof T, "$type">]?: DeepPartial<T[K]> }
|
|
231
|
+
: Partial<T>;
|
|
232
|
+
|
|
233
|
+
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
234
|
+
export type Exact<P, I extends P> = P extends Builtin ? P
|
|
235
|
+
: P & { [K in keyof P]: Exact<P[K], I[K]> } & { [K in Exclude<keyof I, KeysOfUnion<P> | "$type">]: never };
|
|
236
|
+
|
|
237
|
+
function longToNumber(int64: { toString(): string }): number {
|
|
238
|
+
const num = globalThis.Number(int64.toString());
|
|
239
|
+
if (num > globalThis.Number.MAX_SAFE_INTEGER) {
|
|
240
|
+
throw new globalThis.Error("Value is larger than Number.MAX_SAFE_INTEGER");
|
|
241
|
+
}
|
|
242
|
+
if (num < globalThis.Number.MIN_SAFE_INTEGER) {
|
|
243
|
+
throw new globalThis.Error("Value is smaller than Number.MIN_SAFE_INTEGER");
|
|
244
|
+
}
|
|
245
|
+
return num;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
function isSet(value: any): boolean {
|
|
249
|
+
return value !== null && value !== undefined;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
export interface MessageFns<T, V extends string> {
|
|
253
|
+
readonly $type: V;
|
|
254
|
+
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
255
|
+
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
256
|
+
fromJSON(object: any): T;
|
|
257
|
+
toJSON(message: T): unknown;
|
|
258
|
+
create<I extends Exact<DeepPartial<T>, I>>(base?: I): T;
|
|
259
|
+
fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
|
|
260
|
+
}
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
|
+
// versions:
|
|
3
|
+
// protoc-gen-ts_proto v2.11.6
|
|
4
|
+
// protoc v7.34.0
|
|
5
|
+
// source: sentinel/session/v3/proof.proto
|
|
6
|
+
|
|
7
|
+
/* eslint-disable */
|
|
8
|
+
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
|
|
9
|
+
import { Duration } from "../../../google/protobuf/duration";
|
|
10
|
+
import { messageTypeRegistry } from "../../../typeRegistry";
|
|
11
|
+
|
|
12
|
+
export const protobufPackage = "sentinel.session.v3";
|
|
13
|
+
|
|
14
|
+
export interface Proof {
|
|
15
|
+
$type: "sentinel.session.v3.Proof";
|
|
16
|
+
id: number;
|
|
17
|
+
downloadBytes: string;
|
|
18
|
+
uploadBytes: string;
|
|
19
|
+
duration: Duration | undefined;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
function createBaseProof(): Proof {
|
|
23
|
+
return { $type: "sentinel.session.v3.Proof", id: 0, downloadBytes: "", uploadBytes: "", duration: undefined };
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export const Proof: MessageFns<Proof, "sentinel.session.v3.Proof"> = {
|
|
27
|
+
$type: "sentinel.session.v3.Proof" as const,
|
|
28
|
+
|
|
29
|
+
encode(message: Proof, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {
|
|
30
|
+
if (message.id !== 0) {
|
|
31
|
+
writer.uint32(8).uint64(message.id);
|
|
32
|
+
}
|
|
33
|
+
if (message.downloadBytes !== "") {
|
|
34
|
+
writer.uint32(18).string(message.downloadBytes);
|
|
35
|
+
}
|
|
36
|
+
if (message.uploadBytes !== "") {
|
|
37
|
+
writer.uint32(26).string(message.uploadBytes);
|
|
38
|
+
}
|
|
39
|
+
if (message.duration !== undefined) {
|
|
40
|
+
Duration.encode(message.duration, writer.uint32(34).fork()).join();
|
|
41
|
+
}
|
|
42
|
+
return writer;
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
decode(input: BinaryReader | Uint8Array, length?: number): Proof {
|
|
46
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
47
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
48
|
+
const message = createBaseProof();
|
|
49
|
+
while (reader.pos < end) {
|
|
50
|
+
const tag = reader.uint32();
|
|
51
|
+
switch (tag >>> 3) {
|
|
52
|
+
case 1: {
|
|
53
|
+
if (tag !== 8) {
|
|
54
|
+
break;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
message.id = longToNumber(reader.uint64());
|
|
58
|
+
continue;
|
|
59
|
+
}
|
|
60
|
+
case 2: {
|
|
61
|
+
if (tag !== 18) {
|
|
62
|
+
break;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
message.downloadBytes = reader.string();
|
|
66
|
+
continue;
|
|
67
|
+
}
|
|
68
|
+
case 3: {
|
|
69
|
+
if (tag !== 26) {
|
|
70
|
+
break;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
message.uploadBytes = reader.string();
|
|
74
|
+
continue;
|
|
75
|
+
}
|
|
76
|
+
case 4: {
|
|
77
|
+
if (tag !== 34) {
|
|
78
|
+
break;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
message.duration = Duration.decode(reader, reader.uint32());
|
|
82
|
+
continue;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
86
|
+
break;
|
|
87
|
+
}
|
|
88
|
+
reader.skip(tag & 7);
|
|
89
|
+
}
|
|
90
|
+
return message;
|
|
91
|
+
},
|
|
92
|
+
|
|
93
|
+
fromJSON(object: any): Proof {
|
|
94
|
+
return {
|
|
95
|
+
$type: Proof.$type,
|
|
96
|
+
id: isSet(object.id) ? globalThis.Number(object.id) : 0,
|
|
97
|
+
downloadBytes: isSet(object.downloadBytes)
|
|
98
|
+
? globalThis.String(object.downloadBytes)
|
|
99
|
+
: isSet(object.download_bytes)
|
|
100
|
+
? globalThis.String(object.download_bytes)
|
|
101
|
+
: "",
|
|
102
|
+
uploadBytes: isSet(object.uploadBytes)
|
|
103
|
+
? globalThis.String(object.uploadBytes)
|
|
104
|
+
: isSet(object.upload_bytes)
|
|
105
|
+
? globalThis.String(object.upload_bytes)
|
|
106
|
+
: "",
|
|
107
|
+
duration: isSet(object.duration) ? Duration.fromJSON(object.duration) : undefined,
|
|
108
|
+
};
|
|
109
|
+
},
|
|
110
|
+
|
|
111
|
+
toJSON(message: Proof): unknown {
|
|
112
|
+
const obj: any = {};
|
|
113
|
+
if (message.id !== 0) {
|
|
114
|
+
obj.id = Math.round(message.id);
|
|
115
|
+
}
|
|
116
|
+
if (message.downloadBytes !== "") {
|
|
117
|
+
obj.downloadBytes = message.downloadBytes;
|
|
118
|
+
}
|
|
119
|
+
if (message.uploadBytes !== "") {
|
|
120
|
+
obj.uploadBytes = message.uploadBytes;
|
|
121
|
+
}
|
|
122
|
+
if (message.duration !== undefined) {
|
|
123
|
+
obj.duration = Duration.toJSON(message.duration);
|
|
124
|
+
}
|
|
125
|
+
return obj;
|
|
126
|
+
},
|
|
127
|
+
|
|
128
|
+
create<I extends Exact<DeepPartial<Proof>, I>>(base?: I): Proof {
|
|
129
|
+
return Proof.fromPartial(base ?? ({} as any));
|
|
130
|
+
},
|
|
131
|
+
fromPartial<I extends Exact<DeepPartial<Proof>, I>>(object: I): Proof {
|
|
132
|
+
const message = createBaseProof();
|
|
133
|
+
message.id = object.id ?? 0;
|
|
134
|
+
message.downloadBytes = object.downloadBytes ?? "";
|
|
135
|
+
message.uploadBytes = object.uploadBytes ?? "";
|
|
136
|
+
message.duration = (object.duration !== undefined && object.duration !== null)
|
|
137
|
+
? Duration.fromPartial(object.duration)
|
|
138
|
+
: undefined;
|
|
139
|
+
return message;
|
|
140
|
+
},
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
messageTypeRegistry.set(Proof.$type, Proof);
|
|
144
|
+
|
|
145
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
146
|
+
|
|
147
|
+
export type DeepPartial<T> = T extends Builtin ? T
|
|
148
|
+
: T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>>
|
|
149
|
+
: T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>>
|
|
150
|
+
: T extends {} ? { [K in Exclude<keyof T, "$type">]?: DeepPartial<T[K]> }
|
|
151
|
+
: Partial<T>;
|
|
152
|
+
|
|
153
|
+
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
154
|
+
export type Exact<P, I extends P> = P extends Builtin ? P
|
|
155
|
+
: P & { [K in keyof P]: Exact<P[K], I[K]> } & { [K in Exclude<keyof I, KeysOfUnion<P> | "$type">]: never };
|
|
156
|
+
|
|
157
|
+
function longToNumber(int64: { toString(): string }): number {
|
|
158
|
+
const num = globalThis.Number(int64.toString());
|
|
159
|
+
if (num > globalThis.Number.MAX_SAFE_INTEGER) {
|
|
160
|
+
throw new globalThis.Error("Value is larger than Number.MAX_SAFE_INTEGER");
|
|
161
|
+
}
|
|
162
|
+
if (num < globalThis.Number.MIN_SAFE_INTEGER) {
|
|
163
|
+
throw new globalThis.Error("Value is smaller than Number.MIN_SAFE_INTEGER");
|
|
164
|
+
}
|
|
165
|
+
return num;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
function isSet(value: any): boolean {
|
|
169
|
+
return value !== null && value !== undefined;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
export interface MessageFns<T, V extends string> {
|
|
173
|
+
readonly $type: V;
|
|
174
|
+
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
175
|
+
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
176
|
+
fromJSON(object: any): T;
|
|
177
|
+
toJSON(message: T): unknown;
|
|
178
|
+
create<I extends Exact<DeepPartial<T>, I>>(base?: I): T;
|
|
179
|
+
fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
|
|
180
|
+
}
|