@pagopa/interop-outbound-models 1.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/.eslintrc.cjs +24 -0
- package/.github/workflows/ci.yml +74 -0
- package/.github/workflows/release.yml +26 -0
- package/.prettierignore +2 -0
- package/.vscode/settings.json +11 -0
- package/CODEOWNERS +2 -0
- package/README.md +0 -0
- package/dist/agreement/eventsV1.d.ts +216 -0
- package/dist/agreement/eventsV1.d.ts.map +1 -0
- package/dist/agreement/eventsV1.js +100 -0
- package/dist/agreement/eventsV2.d.ts +405 -0
- package/dist/agreement/eventsV2.d.ts.map +1 -0
- package/dist/agreement/eventsV2.js +181 -0
- package/dist/agreement/index.d.ts +228 -0
- package/dist/agreement/index.d.ts.map +1 -0
- package/dist/agreement/index.js +36 -0
- package/dist/eservice/eventsV1.d.ts +237 -0
- package/dist/eservice/eventsV1.d.ts.map +1 -0
- package/dist/eservice/eventsV1.js +109 -0
- package/dist/eservice/eventsV2.d.ts +405 -0
- package/dist/eservice/eventsV2.d.ts.map +1 -0
- package/dist/eservice/eventsV2.js +181 -0
- package/dist/eservice/index.d.ts +235 -0
- package/dist/eservice/index.d.ts.map +1 -0
- package/dist/eservice/index.js +36 -0
- package/dist/gen/v1/agreement/agreement.d.ts +294 -0
- package/dist/gen/v1/agreement/agreement.d.ts.map +1 -0
- package/dist/gen/v1/agreement/agreement.js +587 -0
- package/dist/gen/v1/agreement/events.d.ts +212 -0
- package/dist/gen/v1/agreement/events.d.ts.map +1 -0
- package/dist/gen/v1/agreement/events.js +492 -0
- package/dist/gen/v1/eservice/eservice.d.ts +338 -0
- package/dist/gen/v1/eservice/eservice.d.ts.map +1 -0
- package/dist/gen/v1/eservice/eservice.js +629 -0
- package/dist/gen/v1/eservice/events.d.ts +272 -0
- package/dist/gen/v1/eservice/events.d.ts.map +1 -0
- package/dist/gen/v1/eservice/events.js +619 -0
- package/dist/gen/v1/purpose/events.d.ts +235 -0
- package/dist/gen/v1/purpose/events.d.ts.map +1 -0
- package/dist/gen/v1/purpose/events.js +546 -0
- package/dist/gen/v1/purpose/purpose.d.ts +155 -0
- package/dist/gen/v1/purpose/purpose.d.ts.map +1 -0
- package/dist/gen/v1/purpose/purpose.js +274 -0
- package/dist/gen/v1/tenant/events.d.ts +66 -0
- package/dist/gen/v1/tenant/events.d.ts.map +1 -0
- package/dist/gen/v1/tenant/events.js +144 -0
- package/dist/gen/v1/tenant/tenant.d.ts +364 -0
- package/dist/gen/v1/tenant/tenant.d.ts.map +1 -0
- package/dist/gen/v1/tenant/tenant.js +727 -0
- package/dist/gen/v2/agreement/agreement.d.ts +290 -0
- package/dist/gen/v2/agreement/agreement.d.ts.map +1 -0
- package/dist/gen/v2/agreement/agreement.js +583 -0
- package/dist/gen/v2/agreement/events.d.ts +378 -0
- package/dist/gen/v2/agreement/events.d.ts.map +1 -0
- package/dist/gen/v2/agreement/events.js +895 -0
- package/dist/gen/v2/eservice/eservice.d.ts +314 -0
- package/dist/gen/v2/eservice/eservice.d.ts.map +1 -0
- package/dist/gen/v2/eservice/eservice.js +603 -0
- package/dist/gen/v2/eservice/events.d.ts +462 -0
- package/dist/gen/v2/eservice/events.d.ts.map +1 -0
- package/dist/gen/v2/eservice/events.js +1062 -0
- package/dist/gen/v2/purpose/events.d.ts +403 -0
- package/dist/gen/v2/purpose/events.d.ts.map +1 -0
- package/dist/gen/v2/purpose/events.js +937 -0
- package/dist/gen/v2/purpose/purpose.d.ts +147 -0
- package/dist/gen/v2/purpose/purpose.d.ts.map +1 -0
- package/dist/gen/v2/purpose/purpose.js +264 -0
- package/dist/gen/v2/tenant/events.d.ts +278 -0
- package/dist/gen/v2/tenant/events.d.ts.map +1 -0
- package/dist/gen/v2/tenant/events.js +638 -0
- package/dist/gen/v2/tenant/tenant.d.ts +356 -0
- package/dist/gen/v2/tenant/tenant.d.ts.map +1 -0
- package/dist/gen/v2/tenant/tenant.js +722 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +20 -0
- package/dist/purpose/eventsV1.d.ts +237 -0
- package/dist/purpose/eventsV1.d.ts.map +1 -0
- package/dist/purpose/eventsV1.js +109 -0
- package/dist/purpose/eventsV2.d.ts +384 -0
- package/dist/purpose/eventsV2.d.ts.map +1 -0
- package/dist/purpose/eventsV2.js +172 -0
- package/dist/purpose/index.d.ts +228 -0
- package/dist/purpose/index.d.ts.map +1 -0
- package/dist/purpose/index.js +36 -0
- package/dist/tenant/eventsV1.d.ts +69 -0
- package/dist/tenant/eventsV1.d.ts.map +1 -0
- package/dist/tenant/eventsV1.js +37 -0
- package/dist/tenant/eventsV2.d.ts +258 -0
- package/dist/tenant/eventsV2.d.ts.map +1 -0
- package/dist/tenant/eventsV2.js +118 -0
- package/dist/tenant/index.d.ts +130 -0
- package/dist/tenant/index.d.ts.map +1 -0
- package/dist/tenant/index.js +36 -0
- package/dist/utils.d.ts +17 -0
- package/dist/utils.d.ts.map +1 -0
- package/dist/utils.js +18 -0
- package/package.json +48 -0
- package/proto/v1/agreement/agreement.proto +70 -0
- package/proto/v1/agreement/events.proto +48 -0
- package/proto/v1/eservice/eservice.proto +84 -0
- package/proto/v1/eservice/events.proto +63 -0
- package/proto/v1/purpose/events.proto +53 -0
- package/proto/v1/purpose/purpose.proto +39 -0
- package/proto/v1/tenant/events.proto +17 -0
- package/proto/v1/tenant/tenant.proto +87 -0
- package/proto/v2/agreement/agreement.proto +70 -0
- package/proto/v2/agreement/events.proto +83 -0
- package/proto/v2/eservice/eservice.proto +82 -0
- package/proto/v2/eservice/events.proto +104 -0
- package/proto/v2/purpose/events.proto +90 -0
- package/proto/v2/purpose/purpose.proto +38 -0
- package/proto/v2/tenant/events.proto +63 -0
- package/proto/v2/tenant/tenant.proto +85 -0
- package/src/agreement/eventsV1.ts +136 -0
- package/src/agreement/eventsV2.ts +246 -0
- package/src/agreement/index.ts +45 -0
- package/src/eservice/eventsV1.ts +149 -0
- package/src/eservice/eventsV2.ts +245 -0
- package/src/eservice/index.ts +45 -0
- package/src/index.ts +22 -0
- package/src/purpose/eventsV1.ts +146 -0
- package/src/purpose/eventsV2.ts +228 -0
- package/src/purpose/index.ts +42 -0
- package/src/tenant/eventsV1.ts +51 -0
- package/src/tenant/eventsV2.ts +159 -0
- package/src/tenant/index.ts +43 -0
- package/src/utils.ts +25 -0
- package/tests/agreement.test.ts +28 -0
- package/tests/eservice.test.ts +28 -0
- package/tests/purpose.test.ts +28 -0
- package/tests/tenant.test.ts +28 -0
- package/tsconfig.check.json +7 -0
- package/tsconfig.eslint.json +11 -0
- package/tsconfig.json +13 -0
|
@@ -0,0 +1,314 @@
|
|
|
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
|
+
/**
|
|
8
|
+
* @generated from protobuf message eservice.v2.EServiceV2
|
|
9
|
+
*/
|
|
10
|
+
export interface EServiceV2 {
|
|
11
|
+
/**
|
|
12
|
+
* @generated from protobuf field: string id = 1;
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
/**
|
|
16
|
+
* @generated from protobuf field: string producerId = 2;
|
|
17
|
+
*/
|
|
18
|
+
producerId: string;
|
|
19
|
+
/**
|
|
20
|
+
* @generated from protobuf field: string name = 3;
|
|
21
|
+
*/
|
|
22
|
+
name: string;
|
|
23
|
+
/**
|
|
24
|
+
* @generated from protobuf field: string description = 4;
|
|
25
|
+
*/
|
|
26
|
+
description: string;
|
|
27
|
+
/**
|
|
28
|
+
* @generated from protobuf field: eservice.v2.EServiceTechnologyV2 technology = 5;
|
|
29
|
+
*/
|
|
30
|
+
technology: EServiceTechnologyV2;
|
|
31
|
+
/**
|
|
32
|
+
* @generated from protobuf field: repeated eservice.v2.EServiceDescriptorV2 descriptors = 6;
|
|
33
|
+
*/
|
|
34
|
+
descriptors: EServiceDescriptorV2[];
|
|
35
|
+
/**
|
|
36
|
+
* @generated from protobuf field: int64 createdAt = 7;
|
|
37
|
+
*/
|
|
38
|
+
createdAt: bigint;
|
|
39
|
+
/**
|
|
40
|
+
* @generated from protobuf field: eservice.v2.EServiceModeV2 mode = 8;
|
|
41
|
+
*/
|
|
42
|
+
mode: EServiceModeV2;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* @generated from protobuf message eservice.v2.EServiceAttributeValueV2
|
|
46
|
+
*/
|
|
47
|
+
export interface EServiceAttributeValueV2 {
|
|
48
|
+
/**
|
|
49
|
+
* @generated from protobuf field: string id = 1;
|
|
50
|
+
*/
|
|
51
|
+
id: string;
|
|
52
|
+
/**
|
|
53
|
+
* @generated from protobuf field: bool explicitAttributeVerification = 2;
|
|
54
|
+
*/
|
|
55
|
+
explicitAttributeVerification: boolean;
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* @generated from protobuf message eservice.v2.EServiceAttributeV2
|
|
59
|
+
*/
|
|
60
|
+
export interface EServiceAttributeV2 {
|
|
61
|
+
/**
|
|
62
|
+
* @generated from protobuf field: repeated eservice.v2.EServiceAttributeValueV2 values = 1;
|
|
63
|
+
*/
|
|
64
|
+
values: EServiceAttributeValueV2[];
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* @generated from protobuf message eservice.v2.EServiceAttributesV2
|
|
68
|
+
*/
|
|
69
|
+
export interface EServiceAttributesV2 {
|
|
70
|
+
/**
|
|
71
|
+
* @generated from protobuf field: repeated eservice.v2.EServiceAttributeV2 certified = 1;
|
|
72
|
+
*/
|
|
73
|
+
certified: EServiceAttributeV2[];
|
|
74
|
+
/**
|
|
75
|
+
* @generated from protobuf field: repeated eservice.v2.EServiceAttributeV2 declared = 2;
|
|
76
|
+
*/
|
|
77
|
+
declared: EServiceAttributeV2[];
|
|
78
|
+
/**
|
|
79
|
+
* @generated from protobuf field: repeated eservice.v2.EServiceAttributeV2 verified = 3;
|
|
80
|
+
*/
|
|
81
|
+
verified: EServiceAttributeV2[];
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* @generated from protobuf message eservice.v2.EServiceDescriptorV2
|
|
85
|
+
*/
|
|
86
|
+
export interface EServiceDescriptorV2 {
|
|
87
|
+
/**
|
|
88
|
+
* @generated from protobuf field: string id = 1;
|
|
89
|
+
*/
|
|
90
|
+
id: string;
|
|
91
|
+
/**
|
|
92
|
+
* @generated from protobuf field: int64 version = 2;
|
|
93
|
+
*/
|
|
94
|
+
version: bigint;
|
|
95
|
+
/**
|
|
96
|
+
* @generated from protobuf field: optional string description = 3;
|
|
97
|
+
*/
|
|
98
|
+
description?: string;
|
|
99
|
+
/**
|
|
100
|
+
* @generated from protobuf field: repeated eservice.v2.EServiceDocumentV2 docs = 4;
|
|
101
|
+
*/
|
|
102
|
+
docs: EServiceDocumentV2[];
|
|
103
|
+
/**
|
|
104
|
+
* @generated from protobuf field: eservice.v2.EServiceDescriptorStateV2 state = 5;
|
|
105
|
+
*/
|
|
106
|
+
state: EServiceDescriptorStateV2;
|
|
107
|
+
/**
|
|
108
|
+
* @generated from protobuf field: optional eservice.v2.EServiceDocumentV2 interface = 6;
|
|
109
|
+
*/
|
|
110
|
+
interface?: EServiceDocumentV2;
|
|
111
|
+
/**
|
|
112
|
+
* @generated from protobuf field: repeated string audience = 7;
|
|
113
|
+
*/
|
|
114
|
+
audience: string[];
|
|
115
|
+
/**
|
|
116
|
+
* @generated from protobuf field: int32 voucherLifespan = 8;
|
|
117
|
+
*/
|
|
118
|
+
voucherLifespan: number;
|
|
119
|
+
/**
|
|
120
|
+
* @generated from protobuf field: int32 dailyCallsPerConsumer = 9;
|
|
121
|
+
*/
|
|
122
|
+
dailyCallsPerConsumer: number;
|
|
123
|
+
/**
|
|
124
|
+
* @generated from protobuf field: int32 dailyCallsTotal = 10;
|
|
125
|
+
*/
|
|
126
|
+
dailyCallsTotal: number;
|
|
127
|
+
/**
|
|
128
|
+
* @generated from protobuf field: eservice.v2.AgreementApprovalPolicyV2 agreementApprovalPolicy = 11;
|
|
129
|
+
*/
|
|
130
|
+
agreementApprovalPolicy: AgreementApprovalPolicyV2;
|
|
131
|
+
/**
|
|
132
|
+
* @generated from protobuf field: int64 createdAt = 12;
|
|
133
|
+
*/
|
|
134
|
+
createdAt: bigint;
|
|
135
|
+
/**
|
|
136
|
+
* @generated from protobuf field: optional int64 publishedAt = 13;
|
|
137
|
+
*/
|
|
138
|
+
publishedAt?: bigint;
|
|
139
|
+
/**
|
|
140
|
+
* @generated from protobuf field: repeated string serverUrls = 14;
|
|
141
|
+
*/
|
|
142
|
+
serverUrls: string[];
|
|
143
|
+
/**
|
|
144
|
+
* @generated from protobuf field: optional int64 suspendedAt = 15;
|
|
145
|
+
*/
|
|
146
|
+
suspendedAt?: bigint;
|
|
147
|
+
/**
|
|
148
|
+
* @generated from protobuf field: optional int64 deprecatedAt = 16;
|
|
149
|
+
*/
|
|
150
|
+
deprecatedAt?: bigint;
|
|
151
|
+
/**
|
|
152
|
+
* @generated from protobuf field: optional int64 archivedAt = 17;
|
|
153
|
+
*/
|
|
154
|
+
archivedAt?: bigint;
|
|
155
|
+
/**
|
|
156
|
+
* @generated from protobuf field: eservice.v2.EServiceAttributesV2 attributes = 18;
|
|
157
|
+
*/
|
|
158
|
+
attributes?: EServiceAttributesV2;
|
|
159
|
+
}
|
|
160
|
+
/**
|
|
161
|
+
* @generated from protobuf message eservice.v2.EServiceDocumentV2
|
|
162
|
+
*/
|
|
163
|
+
export interface EServiceDocumentV2 {
|
|
164
|
+
/**
|
|
165
|
+
* @generated from protobuf field: string id = 1;
|
|
166
|
+
*/
|
|
167
|
+
id: string;
|
|
168
|
+
/**
|
|
169
|
+
* @generated from protobuf field: string name = 2;
|
|
170
|
+
*/
|
|
171
|
+
name: string;
|
|
172
|
+
/**
|
|
173
|
+
* @generated from protobuf field: string contentType = 3;
|
|
174
|
+
*/
|
|
175
|
+
contentType: string;
|
|
176
|
+
/**
|
|
177
|
+
* @generated from protobuf field: string checksum = 4;
|
|
178
|
+
*/
|
|
179
|
+
checksum: string;
|
|
180
|
+
/**
|
|
181
|
+
* @generated from protobuf field: string uploadDate = 5;
|
|
182
|
+
*/
|
|
183
|
+
uploadDate: string;
|
|
184
|
+
/**
|
|
185
|
+
* @generated from protobuf field: string prettyName = 6;
|
|
186
|
+
*/
|
|
187
|
+
prettyName: string;
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* @generated from protobuf enum eservice.v2.EServiceDescriptorStateV2
|
|
191
|
+
*/
|
|
192
|
+
export declare enum EServiceDescriptorStateV2 {
|
|
193
|
+
/**
|
|
194
|
+
* @generated from protobuf enum value: DRAFT = 0;
|
|
195
|
+
*/
|
|
196
|
+
DRAFT = 0,
|
|
197
|
+
/**
|
|
198
|
+
* @generated from protobuf enum value: PUBLISHED = 1;
|
|
199
|
+
*/
|
|
200
|
+
PUBLISHED = 1,
|
|
201
|
+
/**
|
|
202
|
+
* @generated from protobuf enum value: DEPRECATED = 2;
|
|
203
|
+
*/
|
|
204
|
+
DEPRECATED = 2,
|
|
205
|
+
/**
|
|
206
|
+
* @generated from protobuf enum value: SUSPENDED = 3;
|
|
207
|
+
*/
|
|
208
|
+
SUSPENDED = 3,
|
|
209
|
+
/**
|
|
210
|
+
* @generated from protobuf enum value: ARCHIVED = 4;
|
|
211
|
+
*/
|
|
212
|
+
ARCHIVED = 4
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* @generated from protobuf enum eservice.v2.EServiceTechnologyV2
|
|
216
|
+
*/
|
|
217
|
+
export declare enum EServiceTechnologyV2 {
|
|
218
|
+
/**
|
|
219
|
+
* @generated from protobuf enum value: REST = 0;
|
|
220
|
+
*/
|
|
221
|
+
REST = 0,
|
|
222
|
+
/**
|
|
223
|
+
* @generated from protobuf enum value: SOAP = 1;
|
|
224
|
+
*/
|
|
225
|
+
SOAP = 1
|
|
226
|
+
}
|
|
227
|
+
/**
|
|
228
|
+
* @generated from protobuf enum eservice.v2.AgreementApprovalPolicyV2
|
|
229
|
+
*/
|
|
230
|
+
export declare enum AgreementApprovalPolicyV2 {
|
|
231
|
+
/**
|
|
232
|
+
* @generated from protobuf enum value: AUTOMATIC = 0;
|
|
233
|
+
*/
|
|
234
|
+
AUTOMATIC = 0,
|
|
235
|
+
/**
|
|
236
|
+
* @generated from protobuf enum value: MANUAL = 1;
|
|
237
|
+
*/
|
|
238
|
+
MANUAL = 1
|
|
239
|
+
}
|
|
240
|
+
/**
|
|
241
|
+
* @generated from protobuf enum eservice.v2.EServiceModeV2
|
|
242
|
+
*/
|
|
243
|
+
export declare enum EServiceModeV2 {
|
|
244
|
+
/**
|
|
245
|
+
* @generated from protobuf enum value: RECEIVE = 0;
|
|
246
|
+
*/
|
|
247
|
+
RECEIVE = 0,
|
|
248
|
+
/**
|
|
249
|
+
* @generated from protobuf enum value: DELIVER = 1;
|
|
250
|
+
*/
|
|
251
|
+
DELIVER = 1
|
|
252
|
+
}
|
|
253
|
+
declare class EServiceV2$Type extends MessageType<EServiceV2> {
|
|
254
|
+
constructor();
|
|
255
|
+
create(value?: PartialMessage<EServiceV2>): EServiceV2;
|
|
256
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: EServiceV2): EServiceV2;
|
|
257
|
+
internalBinaryWrite(message: EServiceV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
258
|
+
}
|
|
259
|
+
/**
|
|
260
|
+
* @generated MessageType for protobuf message eservice.v2.EServiceV2
|
|
261
|
+
*/
|
|
262
|
+
export declare const EServiceV2: EServiceV2$Type;
|
|
263
|
+
declare class EServiceAttributeValueV2$Type extends MessageType<EServiceAttributeValueV2> {
|
|
264
|
+
constructor();
|
|
265
|
+
create(value?: PartialMessage<EServiceAttributeValueV2>): EServiceAttributeValueV2;
|
|
266
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: EServiceAttributeValueV2): EServiceAttributeValueV2;
|
|
267
|
+
internalBinaryWrite(message: EServiceAttributeValueV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
268
|
+
}
|
|
269
|
+
/**
|
|
270
|
+
* @generated MessageType for protobuf message eservice.v2.EServiceAttributeValueV2
|
|
271
|
+
*/
|
|
272
|
+
export declare const EServiceAttributeValueV2: EServiceAttributeValueV2$Type;
|
|
273
|
+
declare class EServiceAttributeV2$Type extends MessageType<EServiceAttributeV2> {
|
|
274
|
+
constructor();
|
|
275
|
+
create(value?: PartialMessage<EServiceAttributeV2>): EServiceAttributeV2;
|
|
276
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: EServiceAttributeV2): EServiceAttributeV2;
|
|
277
|
+
internalBinaryWrite(message: EServiceAttributeV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* @generated MessageType for protobuf message eservice.v2.EServiceAttributeV2
|
|
281
|
+
*/
|
|
282
|
+
export declare const EServiceAttributeV2: EServiceAttributeV2$Type;
|
|
283
|
+
declare class EServiceAttributesV2$Type extends MessageType<EServiceAttributesV2> {
|
|
284
|
+
constructor();
|
|
285
|
+
create(value?: PartialMessage<EServiceAttributesV2>): EServiceAttributesV2;
|
|
286
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: EServiceAttributesV2): EServiceAttributesV2;
|
|
287
|
+
internalBinaryWrite(message: EServiceAttributesV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
288
|
+
}
|
|
289
|
+
/**
|
|
290
|
+
* @generated MessageType for protobuf message eservice.v2.EServiceAttributesV2
|
|
291
|
+
*/
|
|
292
|
+
export declare const EServiceAttributesV2: EServiceAttributesV2$Type;
|
|
293
|
+
declare class EServiceDescriptorV2$Type extends MessageType<EServiceDescriptorV2> {
|
|
294
|
+
constructor();
|
|
295
|
+
create(value?: PartialMessage<EServiceDescriptorV2>): EServiceDescriptorV2;
|
|
296
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: EServiceDescriptorV2): EServiceDescriptorV2;
|
|
297
|
+
internalBinaryWrite(message: EServiceDescriptorV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* @generated MessageType for protobuf message eservice.v2.EServiceDescriptorV2
|
|
301
|
+
*/
|
|
302
|
+
export declare const EServiceDescriptorV2: EServiceDescriptorV2$Type;
|
|
303
|
+
declare class EServiceDocumentV2$Type extends MessageType<EServiceDocumentV2> {
|
|
304
|
+
constructor();
|
|
305
|
+
create(value?: PartialMessage<EServiceDocumentV2>): EServiceDocumentV2;
|
|
306
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: EServiceDocumentV2): EServiceDocumentV2;
|
|
307
|
+
internalBinaryWrite(message: EServiceDocumentV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
308
|
+
}
|
|
309
|
+
/**
|
|
310
|
+
* @generated MessageType for protobuf message eservice.v2.EServiceDocumentV2
|
|
311
|
+
*/
|
|
312
|
+
export declare const EServiceDocumentV2: EServiceDocumentV2$Type;
|
|
313
|
+
export {};
|
|
314
|
+
//# sourceMappingURL=eservice.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"eservice.d.ts","sourceRoot":"","sources":["../../../../src/gen/v2/eservice/eservice.ts"],"names":[],"mappings":"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"}
|