@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,364 @@
|
|
|
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 tenant.TenantV1
|
|
9
|
+
*/
|
|
10
|
+
export interface TenantV1 {
|
|
11
|
+
/**
|
|
12
|
+
* @generated from protobuf field: string id = 1;
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
/**
|
|
16
|
+
* @generated from protobuf field: optional string selfcareId = 2;
|
|
17
|
+
*/
|
|
18
|
+
selfcareId?: string;
|
|
19
|
+
/**
|
|
20
|
+
* @generated from protobuf field: tenant.ExternalIdV1 externalId = 3;
|
|
21
|
+
*/
|
|
22
|
+
externalId?: ExternalIdV1;
|
|
23
|
+
/**
|
|
24
|
+
* @generated from protobuf field: repeated tenant.TenantFeatureV1 features = 4;
|
|
25
|
+
*/
|
|
26
|
+
features: TenantFeatureV1[];
|
|
27
|
+
/**
|
|
28
|
+
* @generated from protobuf field: repeated tenant.TenantAttributeV1 attributes = 5;
|
|
29
|
+
*/
|
|
30
|
+
attributes: TenantAttributeV1[];
|
|
31
|
+
/**
|
|
32
|
+
* @generated from protobuf field: int64 createdAt = 6;
|
|
33
|
+
*/
|
|
34
|
+
createdAt: bigint;
|
|
35
|
+
/**
|
|
36
|
+
* @generated from protobuf field: optional int64 updatedAt = 7;
|
|
37
|
+
*/
|
|
38
|
+
updatedAt?: bigint;
|
|
39
|
+
/**
|
|
40
|
+
* @generated from protobuf field: optional string name = 8;
|
|
41
|
+
*/
|
|
42
|
+
name?: string;
|
|
43
|
+
/**
|
|
44
|
+
* @generated from protobuf field: optional tenant.TenantKindV1 kind = 9;
|
|
45
|
+
*/
|
|
46
|
+
kind?: TenantKindV1;
|
|
47
|
+
/**
|
|
48
|
+
* @generated from protobuf field: optional int64 onboardedAt = 10;
|
|
49
|
+
*/
|
|
50
|
+
onboardedAt?: bigint;
|
|
51
|
+
/**
|
|
52
|
+
* @generated from protobuf field: optional tenant.TenantUnitTypeV1 subUnitType = 11;
|
|
53
|
+
*/
|
|
54
|
+
subUnitType?: TenantUnitTypeV1;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* @generated from protobuf message tenant.TenantFeatureV1
|
|
58
|
+
*/
|
|
59
|
+
export interface TenantFeatureV1 {
|
|
60
|
+
/**
|
|
61
|
+
* @generated from protobuf oneof: sealed_value
|
|
62
|
+
*/
|
|
63
|
+
sealedValue: {
|
|
64
|
+
oneofKind: "certifier";
|
|
65
|
+
/**
|
|
66
|
+
* @generated from protobuf field: tenant.CertifierV1 certifier = 1;
|
|
67
|
+
*/
|
|
68
|
+
certifier: CertifierV1;
|
|
69
|
+
} | {
|
|
70
|
+
oneofKind: undefined;
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* @generated from protobuf message tenant.CertifierV1
|
|
75
|
+
*/
|
|
76
|
+
export interface CertifierV1 {
|
|
77
|
+
/**
|
|
78
|
+
* @generated from protobuf field: string certifierId = 1;
|
|
79
|
+
*/
|
|
80
|
+
certifierId: string;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* @generated from protobuf message tenant.TenantVerifierV1
|
|
84
|
+
*/
|
|
85
|
+
export interface TenantVerifierV1 {
|
|
86
|
+
/**
|
|
87
|
+
* @generated from protobuf field: string id = 1;
|
|
88
|
+
*/
|
|
89
|
+
id: string;
|
|
90
|
+
/**
|
|
91
|
+
* @generated from protobuf field: int64 verificationDate = 2;
|
|
92
|
+
*/
|
|
93
|
+
verificationDate: bigint;
|
|
94
|
+
/**
|
|
95
|
+
* @generated from protobuf field: optional int64 expirationDate = 4;
|
|
96
|
+
*/
|
|
97
|
+
expirationDate?: bigint;
|
|
98
|
+
/**
|
|
99
|
+
* @generated from protobuf field: optional int64 extensionDate = 5;
|
|
100
|
+
*/
|
|
101
|
+
extensionDate?: bigint;
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* @generated from protobuf message tenant.TenantRevokerV1
|
|
105
|
+
*/
|
|
106
|
+
export interface TenantRevokerV1 {
|
|
107
|
+
/**
|
|
108
|
+
* @generated from protobuf field: string id = 1;
|
|
109
|
+
*/
|
|
110
|
+
id: string;
|
|
111
|
+
/**
|
|
112
|
+
* @generated from protobuf field: int64 verificationDate = 2;
|
|
113
|
+
*/
|
|
114
|
+
verificationDate: bigint;
|
|
115
|
+
/**
|
|
116
|
+
* @generated from protobuf field: optional int64 expirationDate = 4;
|
|
117
|
+
*/
|
|
118
|
+
expirationDate?: bigint;
|
|
119
|
+
/**
|
|
120
|
+
* @generated from protobuf field: optional int64 extensionDate = 5;
|
|
121
|
+
*/
|
|
122
|
+
extensionDate?: bigint;
|
|
123
|
+
/**
|
|
124
|
+
* @generated from protobuf field: int64 revocationDate = 6;
|
|
125
|
+
*/
|
|
126
|
+
revocationDate: bigint;
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* @generated from protobuf message tenant.ExternalIdV1
|
|
130
|
+
*/
|
|
131
|
+
export interface ExternalIdV1 {
|
|
132
|
+
/**
|
|
133
|
+
* @generated from protobuf field: string origin = 1;
|
|
134
|
+
*/
|
|
135
|
+
origin: string;
|
|
136
|
+
/**
|
|
137
|
+
* @generated from protobuf field: string value = 2;
|
|
138
|
+
*/
|
|
139
|
+
value: string;
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* @generated from protobuf message tenant.TenantCertifiedAttributeV1
|
|
143
|
+
*/
|
|
144
|
+
export interface TenantCertifiedAttributeV1 {
|
|
145
|
+
/**
|
|
146
|
+
* @generated from protobuf field: string id = 1;
|
|
147
|
+
*/
|
|
148
|
+
id: string;
|
|
149
|
+
/**
|
|
150
|
+
* @generated from protobuf field: int64 assignmentTimestamp = 2;
|
|
151
|
+
*/
|
|
152
|
+
assignmentTimestamp: bigint;
|
|
153
|
+
/**
|
|
154
|
+
* @generated from protobuf field: optional int64 revocationTimestamp = 3;
|
|
155
|
+
*/
|
|
156
|
+
revocationTimestamp?: bigint;
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* @generated from protobuf message tenant.TenantDeclaredAttributeV1
|
|
160
|
+
*/
|
|
161
|
+
export interface TenantDeclaredAttributeV1 {
|
|
162
|
+
/**
|
|
163
|
+
* @generated from protobuf field: string id = 1;
|
|
164
|
+
*/
|
|
165
|
+
id: string;
|
|
166
|
+
/**
|
|
167
|
+
* @generated from protobuf field: int64 assignmentTimestamp = 2;
|
|
168
|
+
*/
|
|
169
|
+
assignmentTimestamp: bigint;
|
|
170
|
+
/**
|
|
171
|
+
* @generated from protobuf field: optional int64 revocationTimestamp = 3;
|
|
172
|
+
*/
|
|
173
|
+
revocationTimestamp?: bigint;
|
|
174
|
+
}
|
|
175
|
+
/**
|
|
176
|
+
* @generated from protobuf message tenant.TenantVerifiedAttributeV1
|
|
177
|
+
*/
|
|
178
|
+
export interface TenantVerifiedAttributeV1 {
|
|
179
|
+
/**
|
|
180
|
+
* @generated from protobuf field: string id = 1;
|
|
181
|
+
*/
|
|
182
|
+
id: string;
|
|
183
|
+
/**
|
|
184
|
+
* @generated from protobuf field: int64 assignmentTimestamp = 2;
|
|
185
|
+
*/
|
|
186
|
+
assignmentTimestamp: bigint;
|
|
187
|
+
/**
|
|
188
|
+
* @generated from protobuf field: repeated tenant.TenantVerifierV1 verifiedBy = 3;
|
|
189
|
+
*/
|
|
190
|
+
verifiedBy: TenantVerifierV1[];
|
|
191
|
+
/**
|
|
192
|
+
* @generated from protobuf field: repeated tenant.TenantRevokerV1 revokedBy = 4;
|
|
193
|
+
*/
|
|
194
|
+
revokedBy: TenantRevokerV1[];
|
|
195
|
+
}
|
|
196
|
+
/**
|
|
197
|
+
* @generated from protobuf message tenant.TenantAttributeV1
|
|
198
|
+
*/
|
|
199
|
+
export interface TenantAttributeV1 {
|
|
200
|
+
/**
|
|
201
|
+
* @generated from protobuf oneof: sealed_value
|
|
202
|
+
*/
|
|
203
|
+
sealedValue: {
|
|
204
|
+
oneofKind: "certifiedAttribute";
|
|
205
|
+
/**
|
|
206
|
+
* @generated from protobuf field: tenant.TenantCertifiedAttributeV1 certifiedAttribute = 1;
|
|
207
|
+
*/
|
|
208
|
+
certifiedAttribute: TenantCertifiedAttributeV1;
|
|
209
|
+
} | {
|
|
210
|
+
oneofKind: "declaredAttribute";
|
|
211
|
+
/**
|
|
212
|
+
* @generated from protobuf field: tenant.TenantDeclaredAttributeV1 declaredAttribute = 2;
|
|
213
|
+
*/
|
|
214
|
+
declaredAttribute: TenantDeclaredAttributeV1;
|
|
215
|
+
} | {
|
|
216
|
+
oneofKind: "verifiedAttribute";
|
|
217
|
+
/**
|
|
218
|
+
* @generated from protobuf field: tenant.TenantVerifiedAttributeV1 verifiedAttribute = 3;
|
|
219
|
+
*/
|
|
220
|
+
verifiedAttribute: TenantVerifiedAttributeV1;
|
|
221
|
+
} | {
|
|
222
|
+
oneofKind: undefined;
|
|
223
|
+
};
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* @generated from protobuf enum tenant.TenantKindV1
|
|
227
|
+
*/
|
|
228
|
+
export declare enum TenantKindV1 {
|
|
229
|
+
/**
|
|
230
|
+
* @generated synthetic value - protobuf-ts requires all enums to have a 0 value
|
|
231
|
+
*/
|
|
232
|
+
UNSPECIFIED$ = 0,
|
|
233
|
+
/**
|
|
234
|
+
* @generated from protobuf enum value: PA = 1;
|
|
235
|
+
*/
|
|
236
|
+
PA = 1,
|
|
237
|
+
/**
|
|
238
|
+
* @generated from protobuf enum value: GSP = 2;
|
|
239
|
+
*/
|
|
240
|
+
GSP = 2,
|
|
241
|
+
/**
|
|
242
|
+
* @generated from protobuf enum value: PRIVATE = 3;
|
|
243
|
+
*/
|
|
244
|
+
PRIVATE = 3
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
* @generated from protobuf enum tenant.TenantUnitTypeV1
|
|
248
|
+
*/
|
|
249
|
+
export declare enum TenantUnitTypeV1 {
|
|
250
|
+
/**
|
|
251
|
+
* @generated synthetic value - protobuf-ts requires all enums to have a 0 value
|
|
252
|
+
*/
|
|
253
|
+
UNSPECIFIED$ = 0,
|
|
254
|
+
/**
|
|
255
|
+
* @generated from protobuf enum value: AOO = 1;
|
|
256
|
+
*/
|
|
257
|
+
AOO = 1,
|
|
258
|
+
/**
|
|
259
|
+
* @generated from protobuf enum value: UO = 2;
|
|
260
|
+
*/
|
|
261
|
+
UO = 2
|
|
262
|
+
}
|
|
263
|
+
declare class TenantV1$Type extends MessageType<TenantV1> {
|
|
264
|
+
constructor();
|
|
265
|
+
create(value?: PartialMessage<TenantV1>): TenantV1;
|
|
266
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantV1): TenantV1;
|
|
267
|
+
internalBinaryWrite(message: TenantV1, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
268
|
+
}
|
|
269
|
+
/**
|
|
270
|
+
* @generated MessageType for protobuf message tenant.TenantV1
|
|
271
|
+
*/
|
|
272
|
+
export declare const TenantV1: TenantV1$Type;
|
|
273
|
+
declare class TenantFeatureV1$Type extends MessageType<TenantFeatureV1> {
|
|
274
|
+
constructor();
|
|
275
|
+
create(value?: PartialMessage<TenantFeatureV1>): TenantFeatureV1;
|
|
276
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantFeatureV1): TenantFeatureV1;
|
|
277
|
+
internalBinaryWrite(message: TenantFeatureV1, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* @generated MessageType for protobuf message tenant.TenantFeatureV1
|
|
281
|
+
*/
|
|
282
|
+
export declare const TenantFeatureV1: TenantFeatureV1$Type;
|
|
283
|
+
declare class CertifierV1$Type extends MessageType<CertifierV1> {
|
|
284
|
+
constructor();
|
|
285
|
+
create(value?: PartialMessage<CertifierV1>): CertifierV1;
|
|
286
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CertifierV1): CertifierV1;
|
|
287
|
+
internalBinaryWrite(message: CertifierV1, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
288
|
+
}
|
|
289
|
+
/**
|
|
290
|
+
* @generated MessageType for protobuf message tenant.CertifierV1
|
|
291
|
+
*/
|
|
292
|
+
export declare const CertifierV1: CertifierV1$Type;
|
|
293
|
+
declare class TenantVerifierV1$Type extends MessageType<TenantVerifierV1> {
|
|
294
|
+
constructor();
|
|
295
|
+
create(value?: PartialMessage<TenantVerifierV1>): TenantVerifierV1;
|
|
296
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantVerifierV1): TenantVerifierV1;
|
|
297
|
+
internalBinaryWrite(message: TenantVerifierV1, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* @generated MessageType for protobuf message tenant.TenantVerifierV1
|
|
301
|
+
*/
|
|
302
|
+
export declare const TenantVerifierV1: TenantVerifierV1$Type;
|
|
303
|
+
declare class TenantRevokerV1$Type extends MessageType<TenantRevokerV1> {
|
|
304
|
+
constructor();
|
|
305
|
+
create(value?: PartialMessage<TenantRevokerV1>): TenantRevokerV1;
|
|
306
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantRevokerV1): TenantRevokerV1;
|
|
307
|
+
internalBinaryWrite(message: TenantRevokerV1, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
308
|
+
}
|
|
309
|
+
/**
|
|
310
|
+
* @generated MessageType for protobuf message tenant.TenantRevokerV1
|
|
311
|
+
*/
|
|
312
|
+
export declare const TenantRevokerV1: TenantRevokerV1$Type;
|
|
313
|
+
declare class ExternalIdV1$Type extends MessageType<ExternalIdV1> {
|
|
314
|
+
constructor();
|
|
315
|
+
create(value?: PartialMessage<ExternalIdV1>): ExternalIdV1;
|
|
316
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ExternalIdV1): ExternalIdV1;
|
|
317
|
+
internalBinaryWrite(message: ExternalIdV1, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
318
|
+
}
|
|
319
|
+
/**
|
|
320
|
+
* @generated MessageType for protobuf message tenant.ExternalIdV1
|
|
321
|
+
*/
|
|
322
|
+
export declare const ExternalIdV1: ExternalIdV1$Type;
|
|
323
|
+
declare class TenantCertifiedAttributeV1$Type extends MessageType<TenantCertifiedAttributeV1> {
|
|
324
|
+
constructor();
|
|
325
|
+
create(value?: PartialMessage<TenantCertifiedAttributeV1>): TenantCertifiedAttributeV1;
|
|
326
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantCertifiedAttributeV1): TenantCertifiedAttributeV1;
|
|
327
|
+
internalBinaryWrite(message: TenantCertifiedAttributeV1, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
328
|
+
}
|
|
329
|
+
/**
|
|
330
|
+
* @generated MessageType for protobuf message tenant.TenantCertifiedAttributeV1
|
|
331
|
+
*/
|
|
332
|
+
export declare const TenantCertifiedAttributeV1: TenantCertifiedAttributeV1$Type;
|
|
333
|
+
declare class TenantDeclaredAttributeV1$Type extends MessageType<TenantDeclaredAttributeV1> {
|
|
334
|
+
constructor();
|
|
335
|
+
create(value?: PartialMessage<TenantDeclaredAttributeV1>): TenantDeclaredAttributeV1;
|
|
336
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantDeclaredAttributeV1): TenantDeclaredAttributeV1;
|
|
337
|
+
internalBinaryWrite(message: TenantDeclaredAttributeV1, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
338
|
+
}
|
|
339
|
+
/**
|
|
340
|
+
* @generated MessageType for protobuf message tenant.TenantDeclaredAttributeV1
|
|
341
|
+
*/
|
|
342
|
+
export declare const TenantDeclaredAttributeV1: TenantDeclaredAttributeV1$Type;
|
|
343
|
+
declare class TenantVerifiedAttributeV1$Type extends MessageType<TenantVerifiedAttributeV1> {
|
|
344
|
+
constructor();
|
|
345
|
+
create(value?: PartialMessage<TenantVerifiedAttributeV1>): TenantVerifiedAttributeV1;
|
|
346
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantVerifiedAttributeV1): TenantVerifiedAttributeV1;
|
|
347
|
+
internalBinaryWrite(message: TenantVerifiedAttributeV1, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
348
|
+
}
|
|
349
|
+
/**
|
|
350
|
+
* @generated MessageType for protobuf message tenant.TenantVerifiedAttributeV1
|
|
351
|
+
*/
|
|
352
|
+
export declare const TenantVerifiedAttributeV1: TenantVerifiedAttributeV1$Type;
|
|
353
|
+
declare class TenantAttributeV1$Type extends MessageType<TenantAttributeV1> {
|
|
354
|
+
constructor();
|
|
355
|
+
create(value?: PartialMessage<TenantAttributeV1>): TenantAttributeV1;
|
|
356
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantAttributeV1): TenantAttributeV1;
|
|
357
|
+
internalBinaryWrite(message: TenantAttributeV1, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
358
|
+
}
|
|
359
|
+
/**
|
|
360
|
+
* @generated MessageType for protobuf message tenant.TenantAttributeV1
|
|
361
|
+
*/
|
|
362
|
+
export declare const TenantAttributeV1: TenantAttributeV1$Type;
|
|
363
|
+
export {};
|
|
364
|
+
//# sourceMappingURL=tenant.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tenant.d.ts","sourceRoot":"","sources":["../../../../src/gen/v1/tenant/tenant.ts"],"names":[],"mappings":"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"}
|