@pagopa/interop-outbound-models 1.1.0 → 1.3.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 +24 -0
- package/dist/delegation/eventsV2.d.ts +174 -0
- package/dist/delegation/eventsV2.d.ts.map +1 -0
- package/dist/delegation/eventsV2.js +82 -0
- package/dist/delegation/index.d.ts +81 -0
- package/dist/delegation/index.d.ts.map +1 -0
- package/dist/delegation/index.js +36 -0
- package/dist/eservice/eventsV2.d.ts +148 -1
- package/dist/eservice/eventsV2.d.ts.map +1 -1
- package/dist/eservice/eventsV2.js +64 -1
- package/dist/eservice/index.d.ts +49 -0
- package/dist/eservice/index.d.ts.map +1 -1
- package/dist/gen/v2/agreement/agreement.d.ts +4 -0
- package/dist/gen/v2/agreement/agreement.d.ts.map +1 -1
- package/dist/gen/v2/agreement/agreement.js +8 -1
- package/dist/gen/v2/delegation/delegation.d.ts +202 -0
- package/dist/gen/v2/delegation/delegation.d.ts.map +1 -0
- package/dist/gen/v2/delegation/delegation.js +385 -0
- package/dist/gen/v2/delegation/events.d.ts +161 -0
- package/dist/gen/v2/delegation/events.d.ts.map +1 -0
- package/dist/gen/v2/delegation/events.js +373 -0
- package/dist/gen/v2/eservice/eservice.d.ts +12 -0
- package/dist/gen/v2/eservice/eservice.d.ts.map +1 -1
- package/dist/gen/v2/eservice/eservice.js +24 -2
- package/dist/gen/v2/eservice/events.d.ts +145 -0
- package/dist/gen/v2/eservice/events.d.ts.map +1 -1
- package/dist/gen/v2/eservice/events.js +346 -0
- package/dist/gen/v2/purpose/purpose.d.ts +4 -0
- package/dist/gen/v2/purpose/purpose.d.ts.map +1 -1
- package/dist/gen/v2/purpose/purpose.js +8 -1
- package/dist/gen/v2/tenant/events.d.ts +38 -0
- package/dist/gen/v2/tenant/events.d.ts.map +1 -1
- package/dist/gen/v2/tenant/events.js +92 -0
- package/dist/gen/v2/tenant/tenant.d.ts +25 -0
- package/dist/gen/v2/tenant/tenant.d.ts.map +1 -1
- package/dist/gen/v2/tenant/tenant.js +58 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/tenant/eventsV2.d.ts +43 -1
- package/dist/tenant/eventsV2.d.ts.map +1 -1
- package/dist/tenant/eventsV2.js +19 -1
- package/dist/tenant/index.d.ts +14 -0
- package/dist/tenant/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/proto/v2/agreement/agreement.proto +1 -0
- package/proto/v2/delegation/delegation.proto +52 -0
- package/proto/v2/delegation/events.proto +37 -0
- package/proto/v2/eservice/eservice.proto +3 -0
- package/proto/v2/eservice/events.proto +30 -0
- package/proto/v2/purpose/purpose.proto +2 -0
- package/proto/v2/tenant/events.proto +8 -0
- package/proto/v2/tenant/tenant.proto +5 -0
- package/src/delegation/eventsV2.ts +113 -0
- package/src/delegation/index.ts +49 -0
- package/src/eservice/eventsV2.ts +84 -0
- package/src/index.ts +3 -0
- package/src/tenant/eventsV2.ts +24 -0
- package/tests/eservice.test.ts +1 -0
|
@@ -0,0 +1,385 @@
|
|
|
1
|
+
import { WireType } from "@protobuf-ts/runtime";
|
|
2
|
+
import { UnknownFieldHandler } from "@protobuf-ts/runtime";
|
|
3
|
+
import { reflectionMergePartial } from "@protobuf-ts/runtime";
|
|
4
|
+
import { MessageType } from "@protobuf-ts/runtime";
|
|
5
|
+
/**
|
|
6
|
+
* @generated from protobuf enum delegation.v2.DelegationStateV2
|
|
7
|
+
*/
|
|
8
|
+
export var DelegationStateV2;
|
|
9
|
+
(function (DelegationStateV2) {
|
|
10
|
+
/**
|
|
11
|
+
* @generated from protobuf enum value: WAITING_FOR_APPROVAL = 0;
|
|
12
|
+
*/
|
|
13
|
+
DelegationStateV2[DelegationStateV2["WAITING_FOR_APPROVAL"] = 0] = "WAITING_FOR_APPROVAL";
|
|
14
|
+
/**
|
|
15
|
+
* @generated from protobuf enum value: ACTIVE = 1;
|
|
16
|
+
*/
|
|
17
|
+
DelegationStateV2[DelegationStateV2["ACTIVE"] = 1] = "ACTIVE";
|
|
18
|
+
/**
|
|
19
|
+
* @generated from protobuf enum value: REJECTED = 2;
|
|
20
|
+
*/
|
|
21
|
+
DelegationStateV2[DelegationStateV2["REJECTED"] = 2] = "REJECTED";
|
|
22
|
+
/**
|
|
23
|
+
* @generated from protobuf enum value: REVOKED = 3;
|
|
24
|
+
*/
|
|
25
|
+
DelegationStateV2[DelegationStateV2["REVOKED"] = 3] = "REVOKED";
|
|
26
|
+
})(DelegationStateV2 || (DelegationStateV2 = {}));
|
|
27
|
+
/**
|
|
28
|
+
* @generated from protobuf enum delegation.v2.DelegationKindV2
|
|
29
|
+
*/
|
|
30
|
+
export var DelegationKindV2;
|
|
31
|
+
(function (DelegationKindV2) {
|
|
32
|
+
/**
|
|
33
|
+
* @generated from protobuf enum value: DELEGATED_PRODUCER = 0;
|
|
34
|
+
*/
|
|
35
|
+
DelegationKindV2[DelegationKindV2["DELEGATED_PRODUCER"] = 0] = "DELEGATED_PRODUCER";
|
|
36
|
+
/**
|
|
37
|
+
* @generated from protobuf enum value: DELEGATED_CONSUMER = 1;
|
|
38
|
+
*/
|
|
39
|
+
DelegationKindV2[DelegationKindV2["DELEGATED_CONSUMER"] = 1] = "DELEGATED_CONSUMER";
|
|
40
|
+
})(DelegationKindV2 || (DelegationKindV2 = {}));
|
|
41
|
+
// @generated message type with reflection information, may provide speed optimized methods
|
|
42
|
+
class DelegationV2$Type extends MessageType {
|
|
43
|
+
constructor() {
|
|
44
|
+
super("delegation.v2.DelegationV2", [
|
|
45
|
+
{ no: 1, name: "id", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
46
|
+
{ no: 2, name: "delegatorId", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
47
|
+
{ no: 3, name: "delegateId", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
48
|
+
{ no: 4, name: "eserviceId", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
49
|
+
{ no: 5, name: "createdAt", kind: "scalar", T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/ },
|
|
50
|
+
{ no: 6, name: "submittedAt", kind: "scalar", T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/ },
|
|
51
|
+
{ no: 7, name: "approvedAt", kind: "scalar", opt: true, T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/ },
|
|
52
|
+
{ no: 8, name: "rejectedAt", kind: "scalar", opt: true, T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/ },
|
|
53
|
+
{ no: 9, name: "rejectionReason", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ },
|
|
54
|
+
{ no: 10, name: "revokedAt", kind: "scalar", opt: true, T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/ },
|
|
55
|
+
{ no: 11, name: "state", kind: "enum", T: () => ["delegation.v2.DelegationStateV2", DelegationStateV2] },
|
|
56
|
+
{ no: 12, name: "kind", kind: "enum", T: () => ["delegation.v2.DelegationKindV2", DelegationKindV2] },
|
|
57
|
+
{ no: 13, name: "stamps", kind: "message", T: () => DelegationStampsV2 },
|
|
58
|
+
{ no: 14, name: "activationContract", kind: "message", T: () => DelegationContractDocumentV2 },
|
|
59
|
+
{ no: 15, name: "revocationContract", kind: "message", T: () => DelegationContractDocumentV2 }
|
|
60
|
+
]);
|
|
61
|
+
}
|
|
62
|
+
create(value) {
|
|
63
|
+
const message = globalThis.Object.create((this.messagePrototype));
|
|
64
|
+
message.id = "";
|
|
65
|
+
message.delegatorId = "";
|
|
66
|
+
message.delegateId = "";
|
|
67
|
+
message.eserviceId = "";
|
|
68
|
+
message.createdAt = 0n;
|
|
69
|
+
message.submittedAt = 0n;
|
|
70
|
+
message.state = 0;
|
|
71
|
+
message.kind = 0;
|
|
72
|
+
if (value !== undefined)
|
|
73
|
+
reflectionMergePartial(this, message, value);
|
|
74
|
+
return message;
|
|
75
|
+
}
|
|
76
|
+
internalBinaryRead(reader, length, options, target) {
|
|
77
|
+
let message = target ?? this.create(), end = reader.pos + length;
|
|
78
|
+
while (reader.pos < end) {
|
|
79
|
+
let [fieldNo, wireType] = reader.tag();
|
|
80
|
+
switch (fieldNo) {
|
|
81
|
+
case /* string id */ 1:
|
|
82
|
+
message.id = reader.string();
|
|
83
|
+
break;
|
|
84
|
+
case /* string delegatorId */ 2:
|
|
85
|
+
message.delegatorId = reader.string();
|
|
86
|
+
break;
|
|
87
|
+
case /* string delegateId */ 3:
|
|
88
|
+
message.delegateId = reader.string();
|
|
89
|
+
break;
|
|
90
|
+
case /* string eserviceId */ 4:
|
|
91
|
+
message.eserviceId = reader.string();
|
|
92
|
+
break;
|
|
93
|
+
case /* int64 createdAt */ 5:
|
|
94
|
+
message.createdAt = reader.int64().toBigInt();
|
|
95
|
+
break;
|
|
96
|
+
case /* int64 submittedAt */ 6:
|
|
97
|
+
message.submittedAt = reader.int64().toBigInt();
|
|
98
|
+
break;
|
|
99
|
+
case /* optional int64 approvedAt */ 7:
|
|
100
|
+
message.approvedAt = reader.int64().toBigInt();
|
|
101
|
+
break;
|
|
102
|
+
case /* optional int64 rejectedAt */ 8:
|
|
103
|
+
message.rejectedAt = reader.int64().toBigInt();
|
|
104
|
+
break;
|
|
105
|
+
case /* optional string rejectionReason */ 9:
|
|
106
|
+
message.rejectionReason = reader.string();
|
|
107
|
+
break;
|
|
108
|
+
case /* optional int64 revokedAt */ 10:
|
|
109
|
+
message.revokedAt = reader.int64().toBigInt();
|
|
110
|
+
break;
|
|
111
|
+
case /* delegation.v2.DelegationStateV2 state */ 11:
|
|
112
|
+
message.state = reader.int32();
|
|
113
|
+
break;
|
|
114
|
+
case /* delegation.v2.DelegationKindV2 kind */ 12:
|
|
115
|
+
message.kind = reader.int32();
|
|
116
|
+
break;
|
|
117
|
+
case /* delegation.v2.DelegationStampsV2 stamps */ 13:
|
|
118
|
+
message.stamps = DelegationStampsV2.internalBinaryRead(reader, reader.uint32(), options, message.stamps);
|
|
119
|
+
break;
|
|
120
|
+
case /* optional delegation.v2.DelegationContractDocumentV2 activationContract */ 14:
|
|
121
|
+
message.activationContract = DelegationContractDocumentV2.internalBinaryRead(reader, reader.uint32(), options, message.activationContract);
|
|
122
|
+
break;
|
|
123
|
+
case /* optional delegation.v2.DelegationContractDocumentV2 revocationContract */ 15:
|
|
124
|
+
message.revocationContract = DelegationContractDocumentV2.internalBinaryRead(reader, reader.uint32(), options, message.revocationContract);
|
|
125
|
+
break;
|
|
126
|
+
default:
|
|
127
|
+
let u = options.readUnknownField;
|
|
128
|
+
if (u === "throw")
|
|
129
|
+
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
130
|
+
let d = reader.skip(wireType);
|
|
131
|
+
if (u !== false)
|
|
132
|
+
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
return message;
|
|
136
|
+
}
|
|
137
|
+
internalBinaryWrite(message, writer, options) {
|
|
138
|
+
/* string id = 1; */
|
|
139
|
+
if (message.id !== "")
|
|
140
|
+
writer.tag(1, WireType.LengthDelimited).string(message.id);
|
|
141
|
+
/* string delegatorId = 2; */
|
|
142
|
+
if (message.delegatorId !== "")
|
|
143
|
+
writer.tag(2, WireType.LengthDelimited).string(message.delegatorId);
|
|
144
|
+
/* string delegateId = 3; */
|
|
145
|
+
if (message.delegateId !== "")
|
|
146
|
+
writer.tag(3, WireType.LengthDelimited).string(message.delegateId);
|
|
147
|
+
/* string eserviceId = 4; */
|
|
148
|
+
if (message.eserviceId !== "")
|
|
149
|
+
writer.tag(4, WireType.LengthDelimited).string(message.eserviceId);
|
|
150
|
+
/* int64 createdAt = 5; */
|
|
151
|
+
if (message.createdAt !== 0n)
|
|
152
|
+
writer.tag(5, WireType.Varint).int64(message.createdAt);
|
|
153
|
+
/* int64 submittedAt = 6; */
|
|
154
|
+
if (message.submittedAt !== 0n)
|
|
155
|
+
writer.tag(6, WireType.Varint).int64(message.submittedAt);
|
|
156
|
+
/* optional int64 approvedAt = 7; */
|
|
157
|
+
if (message.approvedAt !== undefined)
|
|
158
|
+
writer.tag(7, WireType.Varint).int64(message.approvedAt);
|
|
159
|
+
/* optional int64 rejectedAt = 8; */
|
|
160
|
+
if (message.rejectedAt !== undefined)
|
|
161
|
+
writer.tag(8, WireType.Varint).int64(message.rejectedAt);
|
|
162
|
+
/* optional string rejectionReason = 9; */
|
|
163
|
+
if (message.rejectionReason !== undefined)
|
|
164
|
+
writer.tag(9, WireType.LengthDelimited).string(message.rejectionReason);
|
|
165
|
+
/* optional int64 revokedAt = 10; */
|
|
166
|
+
if (message.revokedAt !== undefined)
|
|
167
|
+
writer.tag(10, WireType.Varint).int64(message.revokedAt);
|
|
168
|
+
/* delegation.v2.DelegationStateV2 state = 11; */
|
|
169
|
+
if (message.state !== 0)
|
|
170
|
+
writer.tag(11, WireType.Varint).int32(message.state);
|
|
171
|
+
/* delegation.v2.DelegationKindV2 kind = 12; */
|
|
172
|
+
if (message.kind !== 0)
|
|
173
|
+
writer.tag(12, WireType.Varint).int32(message.kind);
|
|
174
|
+
/* delegation.v2.DelegationStampsV2 stamps = 13; */
|
|
175
|
+
if (message.stamps)
|
|
176
|
+
DelegationStampsV2.internalBinaryWrite(message.stamps, writer.tag(13, WireType.LengthDelimited).fork(), options).join();
|
|
177
|
+
/* optional delegation.v2.DelegationContractDocumentV2 activationContract = 14; */
|
|
178
|
+
if (message.activationContract)
|
|
179
|
+
DelegationContractDocumentV2.internalBinaryWrite(message.activationContract, writer.tag(14, WireType.LengthDelimited).fork(), options).join();
|
|
180
|
+
/* optional delegation.v2.DelegationContractDocumentV2 revocationContract = 15; */
|
|
181
|
+
if (message.revocationContract)
|
|
182
|
+
DelegationContractDocumentV2.internalBinaryWrite(message.revocationContract, writer.tag(15, WireType.LengthDelimited).fork(), options).join();
|
|
183
|
+
let u = options.writeUnknownFields;
|
|
184
|
+
if (u !== false)
|
|
185
|
+
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
186
|
+
return writer;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* @generated MessageType for protobuf message delegation.v2.DelegationV2
|
|
191
|
+
*/
|
|
192
|
+
export const DelegationV2 = new DelegationV2$Type();
|
|
193
|
+
// @generated message type with reflection information, may provide speed optimized methods
|
|
194
|
+
class DelegationContractDocumentV2$Type extends MessageType {
|
|
195
|
+
constructor() {
|
|
196
|
+
super("delegation.v2.DelegationContractDocumentV2", [
|
|
197
|
+
{ no: 1, name: "id", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
198
|
+
{ no: 2, name: "name", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
199
|
+
{ no: 3, name: "prettyName", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
200
|
+
{ no: 4, name: "contentType", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
201
|
+
{ no: 5, name: "createdAt", kind: "scalar", T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/ }
|
|
202
|
+
]);
|
|
203
|
+
}
|
|
204
|
+
create(value) {
|
|
205
|
+
const message = globalThis.Object.create((this.messagePrototype));
|
|
206
|
+
message.id = "";
|
|
207
|
+
message.name = "";
|
|
208
|
+
message.prettyName = "";
|
|
209
|
+
message.contentType = "";
|
|
210
|
+
message.createdAt = 0n;
|
|
211
|
+
if (value !== undefined)
|
|
212
|
+
reflectionMergePartial(this, message, value);
|
|
213
|
+
return message;
|
|
214
|
+
}
|
|
215
|
+
internalBinaryRead(reader, length, options, target) {
|
|
216
|
+
let message = target ?? this.create(), end = reader.pos + length;
|
|
217
|
+
while (reader.pos < end) {
|
|
218
|
+
let [fieldNo, wireType] = reader.tag();
|
|
219
|
+
switch (fieldNo) {
|
|
220
|
+
case /* string id */ 1:
|
|
221
|
+
message.id = reader.string();
|
|
222
|
+
break;
|
|
223
|
+
case /* string name */ 2:
|
|
224
|
+
message.name = reader.string();
|
|
225
|
+
break;
|
|
226
|
+
case /* string prettyName */ 3:
|
|
227
|
+
message.prettyName = reader.string();
|
|
228
|
+
break;
|
|
229
|
+
case /* string contentType */ 4:
|
|
230
|
+
message.contentType = reader.string();
|
|
231
|
+
break;
|
|
232
|
+
case /* int64 createdAt */ 5:
|
|
233
|
+
message.createdAt = reader.int64().toBigInt();
|
|
234
|
+
break;
|
|
235
|
+
default:
|
|
236
|
+
let u = options.readUnknownField;
|
|
237
|
+
if (u === "throw")
|
|
238
|
+
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
239
|
+
let d = reader.skip(wireType);
|
|
240
|
+
if (u !== false)
|
|
241
|
+
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
return message;
|
|
245
|
+
}
|
|
246
|
+
internalBinaryWrite(message, writer, options) {
|
|
247
|
+
/* string id = 1; */
|
|
248
|
+
if (message.id !== "")
|
|
249
|
+
writer.tag(1, WireType.LengthDelimited).string(message.id);
|
|
250
|
+
/* string name = 2; */
|
|
251
|
+
if (message.name !== "")
|
|
252
|
+
writer.tag(2, WireType.LengthDelimited).string(message.name);
|
|
253
|
+
/* string prettyName = 3; */
|
|
254
|
+
if (message.prettyName !== "")
|
|
255
|
+
writer.tag(3, WireType.LengthDelimited).string(message.prettyName);
|
|
256
|
+
/* string contentType = 4; */
|
|
257
|
+
if (message.contentType !== "")
|
|
258
|
+
writer.tag(4, WireType.LengthDelimited).string(message.contentType);
|
|
259
|
+
/* int64 createdAt = 5; */
|
|
260
|
+
if (message.createdAt !== 0n)
|
|
261
|
+
writer.tag(5, WireType.Varint).int64(message.createdAt);
|
|
262
|
+
let u = options.writeUnknownFields;
|
|
263
|
+
if (u !== false)
|
|
264
|
+
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
265
|
+
return writer;
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
/**
|
|
269
|
+
* @generated MessageType for protobuf message delegation.v2.DelegationContractDocumentV2
|
|
270
|
+
*/
|
|
271
|
+
export const DelegationContractDocumentV2 = new DelegationContractDocumentV2$Type();
|
|
272
|
+
// @generated message type with reflection information, may provide speed optimized methods
|
|
273
|
+
class DelegationStampV2$Type extends MessageType {
|
|
274
|
+
constructor() {
|
|
275
|
+
super("delegation.v2.DelegationStampV2", [
|
|
276
|
+
{ no: 1, name: "when", kind: "scalar", T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/ }
|
|
277
|
+
]);
|
|
278
|
+
}
|
|
279
|
+
create(value) {
|
|
280
|
+
const message = globalThis.Object.create((this.messagePrototype));
|
|
281
|
+
message.when = 0n;
|
|
282
|
+
if (value !== undefined)
|
|
283
|
+
reflectionMergePartial(this, message, value);
|
|
284
|
+
return message;
|
|
285
|
+
}
|
|
286
|
+
internalBinaryRead(reader, length, options, target) {
|
|
287
|
+
let message = target ?? this.create(), end = reader.pos + length;
|
|
288
|
+
while (reader.pos < end) {
|
|
289
|
+
let [fieldNo, wireType] = reader.tag();
|
|
290
|
+
switch (fieldNo) {
|
|
291
|
+
case /* int64 when */ 1:
|
|
292
|
+
message.when = reader.int64().toBigInt();
|
|
293
|
+
break;
|
|
294
|
+
default:
|
|
295
|
+
let u = options.readUnknownField;
|
|
296
|
+
if (u === "throw")
|
|
297
|
+
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
298
|
+
let d = reader.skip(wireType);
|
|
299
|
+
if (u !== false)
|
|
300
|
+
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
return message;
|
|
304
|
+
}
|
|
305
|
+
internalBinaryWrite(message, writer, options) {
|
|
306
|
+
/* int64 when = 1; */
|
|
307
|
+
if (message.when !== 0n)
|
|
308
|
+
writer.tag(1, WireType.Varint).int64(message.when);
|
|
309
|
+
let u = options.writeUnknownFields;
|
|
310
|
+
if (u !== false)
|
|
311
|
+
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
312
|
+
return writer;
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
/**
|
|
316
|
+
* @generated MessageType for protobuf message delegation.v2.DelegationStampV2
|
|
317
|
+
*/
|
|
318
|
+
export const DelegationStampV2 = new DelegationStampV2$Type();
|
|
319
|
+
// @generated message type with reflection information, may provide speed optimized methods
|
|
320
|
+
class DelegationStampsV2$Type extends MessageType {
|
|
321
|
+
constructor() {
|
|
322
|
+
super("delegation.v2.DelegationStampsV2", [
|
|
323
|
+
{ no: 1, name: "submission", kind: "message", T: () => DelegationStampV2 },
|
|
324
|
+
{ no: 2, name: "activation", kind: "message", T: () => DelegationStampV2 },
|
|
325
|
+
{ no: 3, name: "rejection", kind: "message", T: () => DelegationStampV2 },
|
|
326
|
+
{ no: 4, name: "revocation", kind: "message", T: () => DelegationStampV2 }
|
|
327
|
+
]);
|
|
328
|
+
}
|
|
329
|
+
create(value) {
|
|
330
|
+
const message = globalThis.Object.create((this.messagePrototype));
|
|
331
|
+
if (value !== undefined)
|
|
332
|
+
reflectionMergePartial(this, message, value);
|
|
333
|
+
return message;
|
|
334
|
+
}
|
|
335
|
+
internalBinaryRead(reader, length, options, target) {
|
|
336
|
+
let message = target ?? this.create(), end = reader.pos + length;
|
|
337
|
+
while (reader.pos < end) {
|
|
338
|
+
let [fieldNo, wireType] = reader.tag();
|
|
339
|
+
switch (fieldNo) {
|
|
340
|
+
case /* delegation.v2.DelegationStampV2 submission */ 1:
|
|
341
|
+
message.submission = DelegationStampV2.internalBinaryRead(reader, reader.uint32(), options, message.submission);
|
|
342
|
+
break;
|
|
343
|
+
case /* optional delegation.v2.DelegationStampV2 activation */ 2:
|
|
344
|
+
message.activation = DelegationStampV2.internalBinaryRead(reader, reader.uint32(), options, message.activation);
|
|
345
|
+
break;
|
|
346
|
+
case /* optional delegation.v2.DelegationStampV2 rejection */ 3:
|
|
347
|
+
message.rejection = DelegationStampV2.internalBinaryRead(reader, reader.uint32(), options, message.rejection);
|
|
348
|
+
break;
|
|
349
|
+
case /* optional delegation.v2.DelegationStampV2 revocation */ 4:
|
|
350
|
+
message.revocation = DelegationStampV2.internalBinaryRead(reader, reader.uint32(), options, message.revocation);
|
|
351
|
+
break;
|
|
352
|
+
default:
|
|
353
|
+
let u = options.readUnknownField;
|
|
354
|
+
if (u === "throw")
|
|
355
|
+
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
356
|
+
let d = reader.skip(wireType);
|
|
357
|
+
if (u !== false)
|
|
358
|
+
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
return message;
|
|
362
|
+
}
|
|
363
|
+
internalBinaryWrite(message, writer, options) {
|
|
364
|
+
/* delegation.v2.DelegationStampV2 submission = 1; */
|
|
365
|
+
if (message.submission)
|
|
366
|
+
DelegationStampV2.internalBinaryWrite(message.submission, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
367
|
+
/* optional delegation.v2.DelegationStampV2 activation = 2; */
|
|
368
|
+
if (message.activation)
|
|
369
|
+
DelegationStampV2.internalBinaryWrite(message.activation, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
|
370
|
+
/* optional delegation.v2.DelegationStampV2 rejection = 3; */
|
|
371
|
+
if (message.rejection)
|
|
372
|
+
DelegationStampV2.internalBinaryWrite(message.rejection, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
|
|
373
|
+
/* optional delegation.v2.DelegationStampV2 revocation = 4; */
|
|
374
|
+
if (message.revocation)
|
|
375
|
+
DelegationStampV2.internalBinaryWrite(message.revocation, writer.tag(4, WireType.LengthDelimited).fork(), options).join();
|
|
376
|
+
let u = options.writeUnknownFields;
|
|
377
|
+
if (u !== false)
|
|
378
|
+
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
379
|
+
return writer;
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
/**
|
|
383
|
+
* @generated MessageType for protobuf message delegation.v2.DelegationStampsV2
|
|
384
|
+
*/
|
|
385
|
+
export const DelegationStampsV2 = new DelegationStampsV2$Type();
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
2
|
+
import type { IBinaryWriter } from "@protobuf-ts/runtime";
|
|
3
|
+
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
|
|
4
|
+
import type { IBinaryReader } from "@protobuf-ts/runtime";
|
|
5
|
+
import type { PartialMessage } from "@protobuf-ts/runtime";
|
|
6
|
+
import { MessageType } from "@protobuf-ts/runtime";
|
|
7
|
+
import { DelegationV2 } from "./delegation.js";
|
|
8
|
+
/**
|
|
9
|
+
* @generated from protobuf message delegation.v2.ProducerDelegationSubmittedV2
|
|
10
|
+
*/
|
|
11
|
+
export interface ProducerDelegationSubmittedV2 {
|
|
12
|
+
/**
|
|
13
|
+
* @generated from protobuf field: delegation.v2.DelegationV2 delegation = 1;
|
|
14
|
+
*/
|
|
15
|
+
delegation?: DelegationV2;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @generated from protobuf message delegation.v2.ProducerDelegationApprovedV2
|
|
19
|
+
*/
|
|
20
|
+
export interface ProducerDelegationApprovedV2 {
|
|
21
|
+
/**
|
|
22
|
+
* @generated from protobuf field: delegation.v2.DelegationV2 delegation = 1;
|
|
23
|
+
*/
|
|
24
|
+
delegation?: DelegationV2;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* @generated from protobuf message delegation.v2.ProducerDelegationRejectedV2
|
|
28
|
+
*/
|
|
29
|
+
export interface ProducerDelegationRejectedV2 {
|
|
30
|
+
/**
|
|
31
|
+
* @generated from protobuf field: delegation.v2.DelegationV2 delegation = 1;
|
|
32
|
+
*/
|
|
33
|
+
delegation?: DelegationV2;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* @generated from protobuf message delegation.v2.ProducerDelegationRevokedV2
|
|
37
|
+
*/
|
|
38
|
+
export interface ProducerDelegationRevokedV2 {
|
|
39
|
+
/**
|
|
40
|
+
* @generated from protobuf field: delegation.v2.DelegationV2 delegation = 1;
|
|
41
|
+
*/
|
|
42
|
+
delegation?: DelegationV2;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* @generated from protobuf message delegation.v2.ConsumerDelegationSubmittedV2
|
|
46
|
+
*/
|
|
47
|
+
export interface ConsumerDelegationSubmittedV2 {
|
|
48
|
+
/**
|
|
49
|
+
* @generated from protobuf field: delegation.v2.DelegationV2 delegation = 1;
|
|
50
|
+
*/
|
|
51
|
+
delegation?: DelegationV2;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* @generated from protobuf message delegation.v2.ConsumerDelegationApprovedV2
|
|
55
|
+
*/
|
|
56
|
+
export interface ConsumerDelegationApprovedV2 {
|
|
57
|
+
/**
|
|
58
|
+
* @generated from protobuf field: delegation.v2.DelegationV2 delegation = 1;
|
|
59
|
+
*/
|
|
60
|
+
delegation?: DelegationV2;
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* @generated from protobuf message delegation.v2.ConsumerDelegationRejectedV2
|
|
64
|
+
*/
|
|
65
|
+
export interface ConsumerDelegationRejectedV2 {
|
|
66
|
+
/**
|
|
67
|
+
* @generated from protobuf field: delegation.v2.DelegationV2 delegation = 1;
|
|
68
|
+
*/
|
|
69
|
+
delegation?: DelegationV2;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* @generated from protobuf message delegation.v2.ConsumerDelegationRevokedV2
|
|
73
|
+
*/
|
|
74
|
+
export interface ConsumerDelegationRevokedV2 {
|
|
75
|
+
/**
|
|
76
|
+
* @generated from protobuf field: delegation.v2.DelegationV2 delegation = 1;
|
|
77
|
+
*/
|
|
78
|
+
delegation?: DelegationV2;
|
|
79
|
+
}
|
|
80
|
+
declare class ProducerDelegationSubmittedV2$Type extends MessageType<ProducerDelegationSubmittedV2> {
|
|
81
|
+
constructor();
|
|
82
|
+
create(value?: PartialMessage<ProducerDelegationSubmittedV2>): ProducerDelegationSubmittedV2;
|
|
83
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ProducerDelegationSubmittedV2): ProducerDelegationSubmittedV2;
|
|
84
|
+
internalBinaryWrite(message: ProducerDelegationSubmittedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* @generated MessageType for protobuf message delegation.v2.ProducerDelegationSubmittedV2
|
|
88
|
+
*/
|
|
89
|
+
export declare const ProducerDelegationSubmittedV2: ProducerDelegationSubmittedV2$Type;
|
|
90
|
+
declare class ProducerDelegationApprovedV2$Type extends MessageType<ProducerDelegationApprovedV2> {
|
|
91
|
+
constructor();
|
|
92
|
+
create(value?: PartialMessage<ProducerDelegationApprovedV2>): ProducerDelegationApprovedV2;
|
|
93
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ProducerDelegationApprovedV2): ProducerDelegationApprovedV2;
|
|
94
|
+
internalBinaryWrite(message: ProducerDelegationApprovedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* @generated MessageType for protobuf message delegation.v2.ProducerDelegationApprovedV2
|
|
98
|
+
*/
|
|
99
|
+
export declare const ProducerDelegationApprovedV2: ProducerDelegationApprovedV2$Type;
|
|
100
|
+
declare class ProducerDelegationRejectedV2$Type extends MessageType<ProducerDelegationRejectedV2> {
|
|
101
|
+
constructor();
|
|
102
|
+
create(value?: PartialMessage<ProducerDelegationRejectedV2>): ProducerDelegationRejectedV2;
|
|
103
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ProducerDelegationRejectedV2): ProducerDelegationRejectedV2;
|
|
104
|
+
internalBinaryWrite(message: ProducerDelegationRejectedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* @generated MessageType for protobuf message delegation.v2.ProducerDelegationRejectedV2
|
|
108
|
+
*/
|
|
109
|
+
export declare const ProducerDelegationRejectedV2: ProducerDelegationRejectedV2$Type;
|
|
110
|
+
declare class ProducerDelegationRevokedV2$Type extends MessageType<ProducerDelegationRevokedV2> {
|
|
111
|
+
constructor();
|
|
112
|
+
create(value?: PartialMessage<ProducerDelegationRevokedV2>): ProducerDelegationRevokedV2;
|
|
113
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ProducerDelegationRevokedV2): ProducerDelegationRevokedV2;
|
|
114
|
+
internalBinaryWrite(message: ProducerDelegationRevokedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* @generated MessageType for protobuf message delegation.v2.ProducerDelegationRevokedV2
|
|
118
|
+
*/
|
|
119
|
+
export declare const ProducerDelegationRevokedV2: ProducerDelegationRevokedV2$Type;
|
|
120
|
+
declare class ConsumerDelegationSubmittedV2$Type extends MessageType<ConsumerDelegationSubmittedV2> {
|
|
121
|
+
constructor();
|
|
122
|
+
create(value?: PartialMessage<ConsumerDelegationSubmittedV2>): ConsumerDelegationSubmittedV2;
|
|
123
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ConsumerDelegationSubmittedV2): ConsumerDelegationSubmittedV2;
|
|
124
|
+
internalBinaryWrite(message: ConsumerDelegationSubmittedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* @generated MessageType for protobuf message delegation.v2.ConsumerDelegationSubmittedV2
|
|
128
|
+
*/
|
|
129
|
+
export declare const ConsumerDelegationSubmittedV2: ConsumerDelegationSubmittedV2$Type;
|
|
130
|
+
declare class ConsumerDelegationApprovedV2$Type extends MessageType<ConsumerDelegationApprovedV2> {
|
|
131
|
+
constructor();
|
|
132
|
+
create(value?: PartialMessage<ConsumerDelegationApprovedV2>): ConsumerDelegationApprovedV2;
|
|
133
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ConsumerDelegationApprovedV2): ConsumerDelegationApprovedV2;
|
|
134
|
+
internalBinaryWrite(message: ConsumerDelegationApprovedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* @generated MessageType for protobuf message delegation.v2.ConsumerDelegationApprovedV2
|
|
138
|
+
*/
|
|
139
|
+
export declare const ConsumerDelegationApprovedV2: ConsumerDelegationApprovedV2$Type;
|
|
140
|
+
declare class ConsumerDelegationRejectedV2$Type extends MessageType<ConsumerDelegationRejectedV2> {
|
|
141
|
+
constructor();
|
|
142
|
+
create(value?: PartialMessage<ConsumerDelegationRejectedV2>): ConsumerDelegationRejectedV2;
|
|
143
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ConsumerDelegationRejectedV2): ConsumerDelegationRejectedV2;
|
|
144
|
+
internalBinaryWrite(message: ConsumerDelegationRejectedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
145
|
+
}
|
|
146
|
+
/**
|
|
147
|
+
* @generated MessageType for protobuf message delegation.v2.ConsumerDelegationRejectedV2
|
|
148
|
+
*/
|
|
149
|
+
export declare const ConsumerDelegationRejectedV2: ConsumerDelegationRejectedV2$Type;
|
|
150
|
+
declare class ConsumerDelegationRevokedV2$Type extends MessageType<ConsumerDelegationRevokedV2> {
|
|
151
|
+
constructor();
|
|
152
|
+
create(value?: PartialMessage<ConsumerDelegationRevokedV2>): ConsumerDelegationRevokedV2;
|
|
153
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ConsumerDelegationRevokedV2): ConsumerDelegationRevokedV2;
|
|
154
|
+
internalBinaryWrite(message: ConsumerDelegationRevokedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* @generated MessageType for protobuf message delegation.v2.ConsumerDelegationRevokedV2
|
|
158
|
+
*/
|
|
159
|
+
export declare const ConsumerDelegationRevokedV2: ConsumerDelegationRevokedV2$Type;
|
|
160
|
+
export {};
|
|
161
|
+
//# sourceMappingURL=events.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"events.d.ts","sourceRoot":"","sources":["../../../../src/gen/v2/delegation/events.ts"],"names":[],"mappings":"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"}
|