@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.
Files changed (135) hide show
  1. package/.eslintrc.cjs +24 -0
  2. package/.github/workflows/ci.yml +74 -0
  3. package/.github/workflows/release.yml +26 -0
  4. package/.prettierignore +2 -0
  5. package/.vscode/settings.json +11 -0
  6. package/CODEOWNERS +2 -0
  7. package/README.md +0 -0
  8. package/dist/agreement/eventsV1.d.ts +216 -0
  9. package/dist/agreement/eventsV1.d.ts.map +1 -0
  10. package/dist/agreement/eventsV1.js +100 -0
  11. package/dist/agreement/eventsV2.d.ts +405 -0
  12. package/dist/agreement/eventsV2.d.ts.map +1 -0
  13. package/dist/agreement/eventsV2.js +181 -0
  14. package/dist/agreement/index.d.ts +228 -0
  15. package/dist/agreement/index.d.ts.map +1 -0
  16. package/dist/agreement/index.js +36 -0
  17. package/dist/eservice/eventsV1.d.ts +237 -0
  18. package/dist/eservice/eventsV1.d.ts.map +1 -0
  19. package/dist/eservice/eventsV1.js +109 -0
  20. package/dist/eservice/eventsV2.d.ts +405 -0
  21. package/dist/eservice/eventsV2.d.ts.map +1 -0
  22. package/dist/eservice/eventsV2.js +181 -0
  23. package/dist/eservice/index.d.ts +235 -0
  24. package/dist/eservice/index.d.ts.map +1 -0
  25. package/dist/eservice/index.js +36 -0
  26. package/dist/gen/v1/agreement/agreement.d.ts +294 -0
  27. package/dist/gen/v1/agreement/agreement.d.ts.map +1 -0
  28. package/dist/gen/v1/agreement/agreement.js +587 -0
  29. package/dist/gen/v1/agreement/events.d.ts +212 -0
  30. package/dist/gen/v1/agreement/events.d.ts.map +1 -0
  31. package/dist/gen/v1/agreement/events.js +492 -0
  32. package/dist/gen/v1/eservice/eservice.d.ts +338 -0
  33. package/dist/gen/v1/eservice/eservice.d.ts.map +1 -0
  34. package/dist/gen/v1/eservice/eservice.js +629 -0
  35. package/dist/gen/v1/eservice/events.d.ts +272 -0
  36. package/dist/gen/v1/eservice/events.d.ts.map +1 -0
  37. package/dist/gen/v1/eservice/events.js +619 -0
  38. package/dist/gen/v1/purpose/events.d.ts +235 -0
  39. package/dist/gen/v1/purpose/events.d.ts.map +1 -0
  40. package/dist/gen/v1/purpose/events.js +546 -0
  41. package/dist/gen/v1/purpose/purpose.d.ts +155 -0
  42. package/dist/gen/v1/purpose/purpose.d.ts.map +1 -0
  43. package/dist/gen/v1/purpose/purpose.js +274 -0
  44. package/dist/gen/v1/tenant/events.d.ts +66 -0
  45. package/dist/gen/v1/tenant/events.d.ts.map +1 -0
  46. package/dist/gen/v1/tenant/events.js +144 -0
  47. package/dist/gen/v1/tenant/tenant.d.ts +364 -0
  48. package/dist/gen/v1/tenant/tenant.d.ts.map +1 -0
  49. package/dist/gen/v1/tenant/tenant.js +727 -0
  50. package/dist/gen/v2/agreement/agreement.d.ts +290 -0
  51. package/dist/gen/v2/agreement/agreement.d.ts.map +1 -0
  52. package/dist/gen/v2/agreement/agreement.js +583 -0
  53. package/dist/gen/v2/agreement/events.d.ts +378 -0
  54. package/dist/gen/v2/agreement/events.d.ts.map +1 -0
  55. package/dist/gen/v2/agreement/events.js +895 -0
  56. package/dist/gen/v2/eservice/eservice.d.ts +314 -0
  57. package/dist/gen/v2/eservice/eservice.d.ts.map +1 -0
  58. package/dist/gen/v2/eservice/eservice.js +603 -0
  59. package/dist/gen/v2/eservice/events.d.ts +462 -0
  60. package/dist/gen/v2/eservice/events.d.ts.map +1 -0
  61. package/dist/gen/v2/eservice/events.js +1062 -0
  62. package/dist/gen/v2/purpose/events.d.ts +403 -0
  63. package/dist/gen/v2/purpose/events.d.ts.map +1 -0
  64. package/dist/gen/v2/purpose/events.js +937 -0
  65. package/dist/gen/v2/purpose/purpose.d.ts +147 -0
  66. package/dist/gen/v2/purpose/purpose.d.ts.map +1 -0
  67. package/dist/gen/v2/purpose/purpose.js +264 -0
  68. package/dist/gen/v2/tenant/events.d.ts +278 -0
  69. package/dist/gen/v2/tenant/events.d.ts.map +1 -0
  70. package/dist/gen/v2/tenant/events.js +638 -0
  71. package/dist/gen/v2/tenant/tenant.d.ts +356 -0
  72. package/dist/gen/v2/tenant/tenant.d.ts.map +1 -0
  73. package/dist/gen/v2/tenant/tenant.js +722 -0
  74. package/dist/index.d.ts +21 -0
  75. package/dist/index.d.ts.map +1 -0
  76. package/dist/index.js +20 -0
  77. package/dist/purpose/eventsV1.d.ts +237 -0
  78. package/dist/purpose/eventsV1.d.ts.map +1 -0
  79. package/dist/purpose/eventsV1.js +109 -0
  80. package/dist/purpose/eventsV2.d.ts +384 -0
  81. package/dist/purpose/eventsV2.d.ts.map +1 -0
  82. package/dist/purpose/eventsV2.js +172 -0
  83. package/dist/purpose/index.d.ts +228 -0
  84. package/dist/purpose/index.d.ts.map +1 -0
  85. package/dist/purpose/index.js +36 -0
  86. package/dist/tenant/eventsV1.d.ts +69 -0
  87. package/dist/tenant/eventsV1.d.ts.map +1 -0
  88. package/dist/tenant/eventsV1.js +37 -0
  89. package/dist/tenant/eventsV2.d.ts +258 -0
  90. package/dist/tenant/eventsV2.d.ts.map +1 -0
  91. package/dist/tenant/eventsV2.js +118 -0
  92. package/dist/tenant/index.d.ts +130 -0
  93. package/dist/tenant/index.d.ts.map +1 -0
  94. package/dist/tenant/index.js +36 -0
  95. package/dist/utils.d.ts +17 -0
  96. package/dist/utils.d.ts.map +1 -0
  97. package/dist/utils.js +18 -0
  98. package/package.json +48 -0
  99. package/proto/v1/agreement/agreement.proto +70 -0
  100. package/proto/v1/agreement/events.proto +48 -0
  101. package/proto/v1/eservice/eservice.proto +84 -0
  102. package/proto/v1/eservice/events.proto +63 -0
  103. package/proto/v1/purpose/events.proto +53 -0
  104. package/proto/v1/purpose/purpose.proto +39 -0
  105. package/proto/v1/tenant/events.proto +17 -0
  106. package/proto/v1/tenant/tenant.proto +87 -0
  107. package/proto/v2/agreement/agreement.proto +70 -0
  108. package/proto/v2/agreement/events.proto +83 -0
  109. package/proto/v2/eservice/eservice.proto +82 -0
  110. package/proto/v2/eservice/events.proto +104 -0
  111. package/proto/v2/purpose/events.proto +90 -0
  112. package/proto/v2/purpose/purpose.proto +38 -0
  113. package/proto/v2/tenant/events.proto +63 -0
  114. package/proto/v2/tenant/tenant.proto +85 -0
  115. package/src/agreement/eventsV1.ts +136 -0
  116. package/src/agreement/eventsV2.ts +246 -0
  117. package/src/agreement/index.ts +45 -0
  118. package/src/eservice/eventsV1.ts +149 -0
  119. package/src/eservice/eventsV2.ts +245 -0
  120. package/src/eservice/index.ts +45 -0
  121. package/src/index.ts +22 -0
  122. package/src/purpose/eventsV1.ts +146 -0
  123. package/src/purpose/eventsV2.ts +228 -0
  124. package/src/purpose/index.ts +42 -0
  125. package/src/tenant/eventsV1.ts +51 -0
  126. package/src/tenant/eventsV2.ts +159 -0
  127. package/src/tenant/index.ts +43 -0
  128. package/src/utils.ts +25 -0
  129. package/tests/agreement.test.ts +28 -0
  130. package/tests/eservice.test.ts +28 -0
  131. package/tests/purpose.test.ts +28 -0
  132. package/tests/tenant.test.ts +28 -0
  133. package/tsconfig.check.json +7 -0
  134. package/tsconfig.eslint.json +11 -0
  135. package/tsconfig.json +13 -0
@@ -0,0 +1,278 @@
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 { TenantKindV2 } from "./tenant.js";
8
+ import { TenantV2 } from "./tenant.js";
9
+ /**
10
+ * @generated from protobuf message tenant.v2.TenantOnboardedV2
11
+ */
12
+ export interface TenantOnboardedV2 {
13
+ /**
14
+ * @generated from protobuf field: tenant.v2.TenantV2 tenant = 1;
15
+ */
16
+ tenant?: TenantV2;
17
+ }
18
+ /**
19
+ * @generated from protobuf message tenant.v2.TenantOnboardDetailsUpdatedV2
20
+ */
21
+ export interface TenantOnboardDetailsUpdatedV2 {
22
+ /**
23
+ * @generated from protobuf field: tenant.v2.TenantV2 tenant = 1;
24
+ */
25
+ tenant?: TenantV2;
26
+ }
27
+ /**
28
+ * @generated from protobuf message tenant.v2.TenantCertifiedAttributeAssignedV2
29
+ */
30
+ export interface TenantCertifiedAttributeAssignedV2 {
31
+ /**
32
+ * @generated from protobuf field: string attributeId = 1;
33
+ */
34
+ attributeId: string;
35
+ /**
36
+ * @generated from protobuf field: tenant.v2.TenantV2 tenant = 2;
37
+ */
38
+ tenant?: TenantV2;
39
+ }
40
+ /**
41
+ * @generated from protobuf message tenant.v2.TenantCertifiedAttributeRevokedV2
42
+ */
43
+ export interface TenantCertifiedAttributeRevokedV2 {
44
+ /**
45
+ * @generated from protobuf field: string attributeId = 1;
46
+ */
47
+ attributeId: string;
48
+ /**
49
+ * @generated from protobuf field: tenant.v2.TenantV2 tenant = 2;
50
+ */
51
+ tenant?: TenantV2;
52
+ }
53
+ /**
54
+ * @generated from protobuf message tenant.v2.TenantDeclaredAttributeAssignedV2
55
+ */
56
+ export interface TenantDeclaredAttributeAssignedV2 {
57
+ /**
58
+ * @generated from protobuf field: string attributeId = 1;
59
+ */
60
+ attributeId: string;
61
+ /**
62
+ * @generated from protobuf field: tenant.v2.TenantV2 tenant = 2;
63
+ */
64
+ tenant?: TenantV2;
65
+ }
66
+ /**
67
+ * @generated from protobuf message tenant.v2.TenantDeclaredAttributeRevokedV2
68
+ */
69
+ export interface TenantDeclaredAttributeRevokedV2 {
70
+ /**
71
+ * @generated from protobuf field: string attributeId = 1;
72
+ */
73
+ attributeId: string;
74
+ /**
75
+ * @generated from protobuf field: tenant.v2.TenantV2 tenant = 2;
76
+ */
77
+ tenant?: TenantV2;
78
+ }
79
+ /**
80
+ * @generated from protobuf message tenant.v2.TenantVerifiedAttributeAssignedV2
81
+ */
82
+ export interface TenantVerifiedAttributeAssignedV2 {
83
+ /**
84
+ * @generated from protobuf field: string attributeId = 1;
85
+ */
86
+ attributeId: string;
87
+ /**
88
+ * @generated from protobuf field: tenant.v2.TenantV2 tenant = 2;
89
+ */
90
+ tenant?: TenantV2;
91
+ }
92
+ /**
93
+ * @generated from protobuf message tenant.v2.TenantVerifiedAttributeRevokedV2
94
+ */
95
+ export interface TenantVerifiedAttributeRevokedV2 {
96
+ /**
97
+ * @generated from protobuf field: string attributeId = 1;
98
+ */
99
+ attributeId: string;
100
+ /**
101
+ * @generated from protobuf field: tenant.v2.TenantV2 tenant = 2;
102
+ */
103
+ tenant?: TenantV2;
104
+ }
105
+ /**
106
+ * @generated from protobuf message tenant.v2.TenantVerifiedAttributeExpirationUpdatedV2
107
+ */
108
+ export interface TenantVerifiedAttributeExpirationUpdatedV2 {
109
+ /**
110
+ * @generated from protobuf field: string attributeId = 1;
111
+ */
112
+ attributeId: string;
113
+ /**
114
+ * @generated from protobuf field: tenant.v2.TenantV2 tenant = 2;
115
+ */
116
+ tenant?: TenantV2;
117
+ }
118
+ /**
119
+ * @generated from protobuf message tenant.v2.TenantVerifiedAttributeExtensionUpdatedV2
120
+ */
121
+ export interface TenantVerifiedAttributeExtensionUpdatedV2 {
122
+ /**
123
+ * @generated from protobuf field: string attributeId = 1;
124
+ */
125
+ attributeId: string;
126
+ /**
127
+ * @generated from protobuf field: tenant.v2.TenantV2 tenant = 2;
128
+ */
129
+ tenant?: TenantV2;
130
+ }
131
+ /**
132
+ * @generated from protobuf message tenant.v2.MaintenanceTenantDeletedV2
133
+ */
134
+ export interface MaintenanceTenantDeletedV2 {
135
+ /**
136
+ * @generated from protobuf field: string tenantId = 1;
137
+ */
138
+ tenantId: string;
139
+ /**
140
+ * @generated from protobuf field: tenant.v2.TenantV2 tenant = 2;
141
+ */
142
+ tenant?: TenantV2;
143
+ }
144
+ /**
145
+ * @generated from protobuf message tenant.v2.TenantKindUpdatedV2
146
+ */
147
+ export interface TenantKindUpdatedV2 {
148
+ /**
149
+ * @generated from protobuf field: tenant.v2.TenantKindV2 oldKind = 1;
150
+ */
151
+ oldKind: TenantKindV2;
152
+ /**
153
+ * @generated from protobuf field: tenant.v2.TenantV2 tenant = 2;
154
+ */
155
+ tenant?: TenantV2;
156
+ }
157
+ declare class TenantOnboardedV2$Type extends MessageType<TenantOnboardedV2> {
158
+ constructor();
159
+ create(value?: PartialMessage<TenantOnboardedV2>): TenantOnboardedV2;
160
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantOnboardedV2): TenantOnboardedV2;
161
+ internalBinaryWrite(message: TenantOnboardedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
162
+ }
163
+ /**
164
+ * @generated MessageType for protobuf message tenant.v2.TenantOnboardedV2
165
+ */
166
+ export declare const TenantOnboardedV2: TenantOnboardedV2$Type;
167
+ declare class TenantOnboardDetailsUpdatedV2$Type extends MessageType<TenantOnboardDetailsUpdatedV2> {
168
+ constructor();
169
+ create(value?: PartialMessage<TenantOnboardDetailsUpdatedV2>): TenantOnboardDetailsUpdatedV2;
170
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantOnboardDetailsUpdatedV2): TenantOnboardDetailsUpdatedV2;
171
+ internalBinaryWrite(message: TenantOnboardDetailsUpdatedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
172
+ }
173
+ /**
174
+ * @generated MessageType for protobuf message tenant.v2.TenantOnboardDetailsUpdatedV2
175
+ */
176
+ export declare const TenantOnboardDetailsUpdatedV2: TenantOnboardDetailsUpdatedV2$Type;
177
+ declare class TenantCertifiedAttributeAssignedV2$Type extends MessageType<TenantCertifiedAttributeAssignedV2> {
178
+ constructor();
179
+ create(value?: PartialMessage<TenantCertifiedAttributeAssignedV2>): TenantCertifiedAttributeAssignedV2;
180
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantCertifiedAttributeAssignedV2): TenantCertifiedAttributeAssignedV2;
181
+ internalBinaryWrite(message: TenantCertifiedAttributeAssignedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
182
+ }
183
+ /**
184
+ * @generated MessageType for protobuf message tenant.v2.TenantCertifiedAttributeAssignedV2
185
+ */
186
+ export declare const TenantCertifiedAttributeAssignedV2: TenantCertifiedAttributeAssignedV2$Type;
187
+ declare class TenantCertifiedAttributeRevokedV2$Type extends MessageType<TenantCertifiedAttributeRevokedV2> {
188
+ constructor();
189
+ create(value?: PartialMessage<TenantCertifiedAttributeRevokedV2>): TenantCertifiedAttributeRevokedV2;
190
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantCertifiedAttributeRevokedV2): TenantCertifiedAttributeRevokedV2;
191
+ internalBinaryWrite(message: TenantCertifiedAttributeRevokedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
192
+ }
193
+ /**
194
+ * @generated MessageType for protobuf message tenant.v2.TenantCertifiedAttributeRevokedV2
195
+ */
196
+ export declare const TenantCertifiedAttributeRevokedV2: TenantCertifiedAttributeRevokedV2$Type;
197
+ declare class TenantDeclaredAttributeAssignedV2$Type extends MessageType<TenantDeclaredAttributeAssignedV2> {
198
+ constructor();
199
+ create(value?: PartialMessage<TenantDeclaredAttributeAssignedV2>): TenantDeclaredAttributeAssignedV2;
200
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantDeclaredAttributeAssignedV2): TenantDeclaredAttributeAssignedV2;
201
+ internalBinaryWrite(message: TenantDeclaredAttributeAssignedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
202
+ }
203
+ /**
204
+ * @generated MessageType for protobuf message tenant.v2.TenantDeclaredAttributeAssignedV2
205
+ */
206
+ export declare const TenantDeclaredAttributeAssignedV2: TenantDeclaredAttributeAssignedV2$Type;
207
+ declare class TenantDeclaredAttributeRevokedV2$Type extends MessageType<TenantDeclaredAttributeRevokedV2> {
208
+ constructor();
209
+ create(value?: PartialMessage<TenantDeclaredAttributeRevokedV2>): TenantDeclaredAttributeRevokedV2;
210
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantDeclaredAttributeRevokedV2): TenantDeclaredAttributeRevokedV2;
211
+ internalBinaryWrite(message: TenantDeclaredAttributeRevokedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
212
+ }
213
+ /**
214
+ * @generated MessageType for protobuf message tenant.v2.TenantDeclaredAttributeRevokedV2
215
+ */
216
+ export declare const TenantDeclaredAttributeRevokedV2: TenantDeclaredAttributeRevokedV2$Type;
217
+ declare class TenantVerifiedAttributeAssignedV2$Type extends MessageType<TenantVerifiedAttributeAssignedV2> {
218
+ constructor();
219
+ create(value?: PartialMessage<TenantVerifiedAttributeAssignedV2>): TenantVerifiedAttributeAssignedV2;
220
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantVerifiedAttributeAssignedV2): TenantVerifiedAttributeAssignedV2;
221
+ internalBinaryWrite(message: TenantVerifiedAttributeAssignedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
222
+ }
223
+ /**
224
+ * @generated MessageType for protobuf message tenant.v2.TenantVerifiedAttributeAssignedV2
225
+ */
226
+ export declare const TenantVerifiedAttributeAssignedV2: TenantVerifiedAttributeAssignedV2$Type;
227
+ declare class TenantVerifiedAttributeRevokedV2$Type extends MessageType<TenantVerifiedAttributeRevokedV2> {
228
+ constructor();
229
+ create(value?: PartialMessage<TenantVerifiedAttributeRevokedV2>): TenantVerifiedAttributeRevokedV2;
230
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantVerifiedAttributeRevokedV2): TenantVerifiedAttributeRevokedV2;
231
+ internalBinaryWrite(message: TenantVerifiedAttributeRevokedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
232
+ }
233
+ /**
234
+ * @generated MessageType for protobuf message tenant.v2.TenantVerifiedAttributeRevokedV2
235
+ */
236
+ export declare const TenantVerifiedAttributeRevokedV2: TenantVerifiedAttributeRevokedV2$Type;
237
+ declare class TenantVerifiedAttributeExpirationUpdatedV2$Type extends MessageType<TenantVerifiedAttributeExpirationUpdatedV2> {
238
+ constructor();
239
+ create(value?: PartialMessage<TenantVerifiedAttributeExpirationUpdatedV2>): TenantVerifiedAttributeExpirationUpdatedV2;
240
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantVerifiedAttributeExpirationUpdatedV2): TenantVerifiedAttributeExpirationUpdatedV2;
241
+ internalBinaryWrite(message: TenantVerifiedAttributeExpirationUpdatedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
242
+ }
243
+ /**
244
+ * @generated MessageType for protobuf message tenant.v2.TenantVerifiedAttributeExpirationUpdatedV2
245
+ */
246
+ export declare const TenantVerifiedAttributeExpirationUpdatedV2: TenantVerifiedAttributeExpirationUpdatedV2$Type;
247
+ declare class TenantVerifiedAttributeExtensionUpdatedV2$Type extends MessageType<TenantVerifiedAttributeExtensionUpdatedV2> {
248
+ constructor();
249
+ create(value?: PartialMessage<TenantVerifiedAttributeExtensionUpdatedV2>): TenantVerifiedAttributeExtensionUpdatedV2;
250
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantVerifiedAttributeExtensionUpdatedV2): TenantVerifiedAttributeExtensionUpdatedV2;
251
+ internalBinaryWrite(message: TenantVerifiedAttributeExtensionUpdatedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
252
+ }
253
+ /**
254
+ * @generated MessageType for protobuf message tenant.v2.TenantVerifiedAttributeExtensionUpdatedV2
255
+ */
256
+ export declare const TenantVerifiedAttributeExtensionUpdatedV2: TenantVerifiedAttributeExtensionUpdatedV2$Type;
257
+ declare class MaintenanceTenantDeletedV2$Type extends MessageType<MaintenanceTenantDeletedV2> {
258
+ constructor();
259
+ create(value?: PartialMessage<MaintenanceTenantDeletedV2>): MaintenanceTenantDeletedV2;
260
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MaintenanceTenantDeletedV2): MaintenanceTenantDeletedV2;
261
+ internalBinaryWrite(message: MaintenanceTenantDeletedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
262
+ }
263
+ /**
264
+ * @generated MessageType for protobuf message tenant.v2.MaintenanceTenantDeletedV2
265
+ */
266
+ export declare const MaintenanceTenantDeletedV2: MaintenanceTenantDeletedV2$Type;
267
+ declare class TenantKindUpdatedV2$Type extends MessageType<TenantKindUpdatedV2> {
268
+ constructor();
269
+ create(value?: PartialMessage<TenantKindUpdatedV2>): TenantKindUpdatedV2;
270
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantKindUpdatedV2): TenantKindUpdatedV2;
271
+ internalBinaryWrite(message: TenantKindUpdatedV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
272
+ }
273
+ /**
274
+ * @generated MessageType for protobuf message tenant.v2.TenantKindUpdatedV2
275
+ */
276
+ export declare const TenantKindUpdatedV2: TenantKindUpdatedV2$Type;
277
+ export {};
278
+ //# sourceMappingURL=events.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"events.d.ts","sourceRoot":"","sources":["../../../../src/gen/v2/tenant/events.ts"],"names":[],"mappings":"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"}