@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,356 @@
|
|
|
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.v2.TenantV2
|
|
9
|
+
*/
|
|
10
|
+
export interface TenantV2 {
|
|
11
|
+
/**
|
|
12
|
+
* @generated from protobuf field: string id = 1;
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
/**
|
|
16
|
+
* @generated from protobuf field: string selfcareId = 2;
|
|
17
|
+
*/
|
|
18
|
+
selfcareId: string;
|
|
19
|
+
/**
|
|
20
|
+
* @generated from protobuf field: tenant.v2.ExternalIdV2 externalId = 3;
|
|
21
|
+
*/
|
|
22
|
+
externalId?: ExternalIdV2;
|
|
23
|
+
/**
|
|
24
|
+
* @generated from protobuf field: repeated tenant.v2.TenantFeatureV2 features = 4;
|
|
25
|
+
*/
|
|
26
|
+
features: TenantFeatureV2[];
|
|
27
|
+
/**
|
|
28
|
+
* @generated from protobuf field: repeated tenant.v2.TenantAttributeV2 attributes = 5;
|
|
29
|
+
*/
|
|
30
|
+
attributes: TenantAttributeV2[];
|
|
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: string name = 8;
|
|
41
|
+
*/
|
|
42
|
+
name: string;
|
|
43
|
+
/**
|
|
44
|
+
* @generated from protobuf field: optional tenant.v2.TenantKindV2 kind = 9;
|
|
45
|
+
*/
|
|
46
|
+
kind?: TenantKindV2;
|
|
47
|
+
/**
|
|
48
|
+
* @generated from protobuf field: int64 onboardedAt = 10;
|
|
49
|
+
*/
|
|
50
|
+
onboardedAt: bigint;
|
|
51
|
+
/**
|
|
52
|
+
* @generated from protobuf field: optional tenant.v2.TenantUnitTypeV2 subUnitType = 11;
|
|
53
|
+
*/
|
|
54
|
+
subUnitType?: TenantUnitTypeV2;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* @generated from protobuf message tenant.v2.TenantFeatureV2
|
|
58
|
+
*/
|
|
59
|
+
export interface TenantFeatureV2 {
|
|
60
|
+
/**
|
|
61
|
+
* @generated from protobuf oneof: sealed_value
|
|
62
|
+
*/
|
|
63
|
+
sealedValue: {
|
|
64
|
+
oneofKind: "certifier";
|
|
65
|
+
/**
|
|
66
|
+
* @generated from protobuf field: tenant.v2.CertifierV2 certifier = 1;
|
|
67
|
+
*/
|
|
68
|
+
certifier: CertifierV2;
|
|
69
|
+
} | {
|
|
70
|
+
oneofKind: undefined;
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* @generated from protobuf message tenant.v2.CertifierV2
|
|
75
|
+
*/
|
|
76
|
+
export interface CertifierV2 {
|
|
77
|
+
/**
|
|
78
|
+
* @generated from protobuf field: string certifierId = 1;
|
|
79
|
+
*/
|
|
80
|
+
certifierId: string;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* @generated from protobuf message tenant.v2.TenantVerifierV2
|
|
84
|
+
*/
|
|
85
|
+
export interface TenantVerifierV2 {
|
|
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 = 3;
|
|
96
|
+
*/
|
|
97
|
+
expirationDate?: bigint;
|
|
98
|
+
/**
|
|
99
|
+
* @generated from protobuf field: optional int64 extensionDate = 4;
|
|
100
|
+
*/
|
|
101
|
+
extensionDate?: bigint;
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* @generated from protobuf message tenant.v2.TenantRevokerV2
|
|
105
|
+
*/
|
|
106
|
+
export interface TenantRevokerV2 {
|
|
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 = 3;
|
|
117
|
+
*/
|
|
118
|
+
expirationDate?: bigint;
|
|
119
|
+
/**
|
|
120
|
+
* @generated from protobuf field: optional int64 extensionDate = 4;
|
|
121
|
+
*/
|
|
122
|
+
extensionDate?: bigint;
|
|
123
|
+
/**
|
|
124
|
+
* @generated from protobuf field: int64 revocationDate = 5;
|
|
125
|
+
*/
|
|
126
|
+
revocationDate: bigint;
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* @generated from protobuf message tenant.v2.ExternalIdV2
|
|
130
|
+
*/
|
|
131
|
+
export interface ExternalIdV2 {
|
|
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.v2.TenantCertifiedAttributeV2
|
|
143
|
+
*/
|
|
144
|
+
export interface TenantCertifiedAttributeV2 {
|
|
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.v2.TenantDeclaredAttributeV2
|
|
160
|
+
*/
|
|
161
|
+
export interface TenantDeclaredAttributeV2 {
|
|
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.v2.TenantVerifiedAttributeV2
|
|
177
|
+
*/
|
|
178
|
+
export interface TenantVerifiedAttributeV2 {
|
|
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.v2.TenantVerifierV2 verifiedBy = 3;
|
|
189
|
+
*/
|
|
190
|
+
verifiedBy: TenantVerifierV2[];
|
|
191
|
+
/**
|
|
192
|
+
* @generated from protobuf field: repeated tenant.v2.TenantRevokerV2 revokedBy = 4;
|
|
193
|
+
*/
|
|
194
|
+
revokedBy: TenantRevokerV2[];
|
|
195
|
+
}
|
|
196
|
+
/**
|
|
197
|
+
* @generated from protobuf message tenant.v2.TenantAttributeV2
|
|
198
|
+
*/
|
|
199
|
+
export interface TenantAttributeV2 {
|
|
200
|
+
/**
|
|
201
|
+
* @generated from protobuf oneof: sealed_value
|
|
202
|
+
*/
|
|
203
|
+
sealedValue: {
|
|
204
|
+
oneofKind: "certifiedAttribute";
|
|
205
|
+
/**
|
|
206
|
+
* @generated from protobuf field: tenant.v2.TenantCertifiedAttributeV2 certifiedAttribute = 1;
|
|
207
|
+
*/
|
|
208
|
+
certifiedAttribute: TenantCertifiedAttributeV2;
|
|
209
|
+
} | {
|
|
210
|
+
oneofKind: "declaredAttribute";
|
|
211
|
+
/**
|
|
212
|
+
* @generated from protobuf field: tenant.v2.TenantDeclaredAttributeV2 declaredAttribute = 2;
|
|
213
|
+
*/
|
|
214
|
+
declaredAttribute: TenantDeclaredAttributeV2;
|
|
215
|
+
} | {
|
|
216
|
+
oneofKind: "verifiedAttribute";
|
|
217
|
+
/**
|
|
218
|
+
* @generated from protobuf field: tenant.v2.TenantVerifiedAttributeV2 verifiedAttribute = 3;
|
|
219
|
+
*/
|
|
220
|
+
verifiedAttribute: TenantVerifiedAttributeV2;
|
|
221
|
+
} | {
|
|
222
|
+
oneofKind: undefined;
|
|
223
|
+
};
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* @generated from protobuf enum tenant.v2.TenantKindV2
|
|
227
|
+
*/
|
|
228
|
+
export declare enum TenantKindV2 {
|
|
229
|
+
/**
|
|
230
|
+
* @generated from protobuf enum value: PA = 0;
|
|
231
|
+
*/
|
|
232
|
+
PA = 0,
|
|
233
|
+
/**
|
|
234
|
+
* @generated from protobuf enum value: GSP = 1;
|
|
235
|
+
*/
|
|
236
|
+
GSP = 1,
|
|
237
|
+
/**
|
|
238
|
+
* @generated from protobuf enum value: PRIVATE = 2;
|
|
239
|
+
*/
|
|
240
|
+
PRIVATE = 2
|
|
241
|
+
}
|
|
242
|
+
/**
|
|
243
|
+
* @generated from protobuf enum tenant.v2.TenantUnitTypeV2
|
|
244
|
+
*/
|
|
245
|
+
export declare enum TenantUnitTypeV2 {
|
|
246
|
+
/**
|
|
247
|
+
* @generated from protobuf enum value: AOO = 0;
|
|
248
|
+
*/
|
|
249
|
+
AOO = 0,
|
|
250
|
+
/**
|
|
251
|
+
* @generated from protobuf enum value: UO = 1;
|
|
252
|
+
*/
|
|
253
|
+
UO = 1
|
|
254
|
+
}
|
|
255
|
+
declare class TenantV2$Type extends MessageType<TenantV2> {
|
|
256
|
+
constructor();
|
|
257
|
+
create(value?: PartialMessage<TenantV2>): TenantV2;
|
|
258
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantV2): TenantV2;
|
|
259
|
+
internalBinaryWrite(message: TenantV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
260
|
+
}
|
|
261
|
+
/**
|
|
262
|
+
* @generated MessageType for protobuf message tenant.v2.TenantV2
|
|
263
|
+
*/
|
|
264
|
+
export declare const TenantV2: TenantV2$Type;
|
|
265
|
+
declare class TenantFeatureV2$Type extends MessageType<TenantFeatureV2> {
|
|
266
|
+
constructor();
|
|
267
|
+
create(value?: PartialMessage<TenantFeatureV2>): TenantFeatureV2;
|
|
268
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantFeatureV2): TenantFeatureV2;
|
|
269
|
+
internalBinaryWrite(message: TenantFeatureV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* @generated MessageType for protobuf message tenant.v2.TenantFeatureV2
|
|
273
|
+
*/
|
|
274
|
+
export declare const TenantFeatureV2: TenantFeatureV2$Type;
|
|
275
|
+
declare class CertifierV2$Type extends MessageType<CertifierV2> {
|
|
276
|
+
constructor();
|
|
277
|
+
create(value?: PartialMessage<CertifierV2>): CertifierV2;
|
|
278
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CertifierV2): CertifierV2;
|
|
279
|
+
internalBinaryWrite(message: CertifierV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
280
|
+
}
|
|
281
|
+
/**
|
|
282
|
+
* @generated MessageType for protobuf message tenant.v2.CertifierV2
|
|
283
|
+
*/
|
|
284
|
+
export declare const CertifierV2: CertifierV2$Type;
|
|
285
|
+
declare class TenantVerifierV2$Type extends MessageType<TenantVerifierV2> {
|
|
286
|
+
constructor();
|
|
287
|
+
create(value?: PartialMessage<TenantVerifierV2>): TenantVerifierV2;
|
|
288
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantVerifierV2): TenantVerifierV2;
|
|
289
|
+
internalBinaryWrite(message: TenantVerifierV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
290
|
+
}
|
|
291
|
+
/**
|
|
292
|
+
* @generated MessageType for protobuf message tenant.v2.TenantVerifierV2
|
|
293
|
+
*/
|
|
294
|
+
export declare const TenantVerifierV2: TenantVerifierV2$Type;
|
|
295
|
+
declare class TenantRevokerV2$Type extends MessageType<TenantRevokerV2> {
|
|
296
|
+
constructor();
|
|
297
|
+
create(value?: PartialMessage<TenantRevokerV2>): TenantRevokerV2;
|
|
298
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantRevokerV2): TenantRevokerV2;
|
|
299
|
+
internalBinaryWrite(message: TenantRevokerV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
300
|
+
}
|
|
301
|
+
/**
|
|
302
|
+
* @generated MessageType for protobuf message tenant.v2.TenantRevokerV2
|
|
303
|
+
*/
|
|
304
|
+
export declare const TenantRevokerV2: TenantRevokerV2$Type;
|
|
305
|
+
declare class ExternalIdV2$Type extends MessageType<ExternalIdV2> {
|
|
306
|
+
constructor();
|
|
307
|
+
create(value?: PartialMessage<ExternalIdV2>): ExternalIdV2;
|
|
308
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ExternalIdV2): ExternalIdV2;
|
|
309
|
+
internalBinaryWrite(message: ExternalIdV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
310
|
+
}
|
|
311
|
+
/**
|
|
312
|
+
* @generated MessageType for protobuf message tenant.v2.ExternalIdV2
|
|
313
|
+
*/
|
|
314
|
+
export declare const ExternalIdV2: ExternalIdV2$Type;
|
|
315
|
+
declare class TenantCertifiedAttributeV2$Type extends MessageType<TenantCertifiedAttributeV2> {
|
|
316
|
+
constructor();
|
|
317
|
+
create(value?: PartialMessage<TenantCertifiedAttributeV2>): TenantCertifiedAttributeV2;
|
|
318
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantCertifiedAttributeV2): TenantCertifiedAttributeV2;
|
|
319
|
+
internalBinaryWrite(message: TenantCertifiedAttributeV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* @generated MessageType for protobuf message tenant.v2.TenantCertifiedAttributeV2
|
|
323
|
+
*/
|
|
324
|
+
export declare const TenantCertifiedAttributeV2: TenantCertifiedAttributeV2$Type;
|
|
325
|
+
declare class TenantDeclaredAttributeV2$Type extends MessageType<TenantDeclaredAttributeV2> {
|
|
326
|
+
constructor();
|
|
327
|
+
create(value?: PartialMessage<TenantDeclaredAttributeV2>): TenantDeclaredAttributeV2;
|
|
328
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantDeclaredAttributeV2): TenantDeclaredAttributeV2;
|
|
329
|
+
internalBinaryWrite(message: TenantDeclaredAttributeV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
330
|
+
}
|
|
331
|
+
/**
|
|
332
|
+
* @generated MessageType for protobuf message tenant.v2.TenantDeclaredAttributeV2
|
|
333
|
+
*/
|
|
334
|
+
export declare const TenantDeclaredAttributeV2: TenantDeclaredAttributeV2$Type;
|
|
335
|
+
declare class TenantVerifiedAttributeV2$Type extends MessageType<TenantVerifiedAttributeV2> {
|
|
336
|
+
constructor();
|
|
337
|
+
create(value?: PartialMessage<TenantVerifiedAttributeV2>): TenantVerifiedAttributeV2;
|
|
338
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantVerifiedAttributeV2): TenantVerifiedAttributeV2;
|
|
339
|
+
internalBinaryWrite(message: TenantVerifiedAttributeV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
340
|
+
}
|
|
341
|
+
/**
|
|
342
|
+
* @generated MessageType for protobuf message tenant.v2.TenantVerifiedAttributeV2
|
|
343
|
+
*/
|
|
344
|
+
export declare const TenantVerifiedAttributeV2: TenantVerifiedAttributeV2$Type;
|
|
345
|
+
declare class TenantAttributeV2$Type extends MessageType<TenantAttributeV2> {
|
|
346
|
+
constructor();
|
|
347
|
+
create(value?: PartialMessage<TenantAttributeV2>): TenantAttributeV2;
|
|
348
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TenantAttributeV2): TenantAttributeV2;
|
|
349
|
+
internalBinaryWrite(message: TenantAttributeV2, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
350
|
+
}
|
|
351
|
+
/**
|
|
352
|
+
* @generated MessageType for protobuf message tenant.v2.TenantAttributeV2
|
|
353
|
+
*/
|
|
354
|
+
export declare const TenantAttributeV2: TenantAttributeV2$Type;
|
|
355
|
+
export {};
|
|
356
|
+
//# sourceMappingURL=tenant.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tenant.d.ts","sourceRoot":"","sources":["../../../../src/gen/v2/tenant/tenant.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE3D,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD;;GAEG;AACH,MAAM,WAAW,QAAQ;IACrB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,UAAU,CAAC,EAAE,YAAY,CAAC;IAC1B;;OAEG;IACH,QAAQ,EAAE,eAAe,EAAE,CAAC;IAC5B;;OAEG;IACH,UAAU,EAAE,iBAAiB,EAAE,CAAC;IAChC;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,WAAW,CAAC,EAAE,gBAAgB,CAAC;CAClC;AACD;;GAEG;AACH,MAAM,WAAW,eAAe;IAC5B;;OAEG;IACH,WAAW,EAAE;QACT,SAAS,EAAE,WAAW,CAAC;QACvB;;WAEG;QACH,SAAS,EAAE,WAAW,CAAC;KAC1B,GAAG;QACA,SAAS,EAAE,SAAS,CAAC;KACxB,CAAC;CACL;AACD;;GAEG;AACH,MAAM,WAAW,WAAW;IACxB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;CACvB;AACD;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;CAC1B;AACD;;GAEG;AACH,MAAM,WAAW,eAAe;IAC5B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;CAC1B;AACD;;GAEG;AACH,MAAM,WAAW,YAAY;IACzB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;CACjB;AACD;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;OAEG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAChC;AACD;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACtC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;OAEG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAChC;AACD;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACtC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;OAEG;IACH,UAAU,EAAE,gBAAgB,EAAE,CAAC;IAC/B;;OAEG;IACH,SAAS,EAAE,eAAe,EAAE,CAAC;CAChC;AACD;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;OAEG;IACH,WAAW,EAAE;QACT,SAAS,EAAE,oBAAoB,CAAC;QAChC;;WAEG;QACH,kBAAkB,EAAE,0BAA0B,CAAC;KAClD,GAAG;QACA,SAAS,EAAE,mBAAmB,CAAC;QAC/B;;WAEG;QACH,iBAAiB,EAAE,yBAAyB,CAAC;KAChD,GAAG;QACA,SAAS,EAAE,mBAAmB,CAAC;QAC/B;;WAEG;QACH,iBAAiB,EAAE,yBAAyB,CAAC;KAChD,GAAG;QACA,SAAS,EAAE,SAAS,CAAC;KACxB,CAAC;CACL;AACD;;GAEG;AACH,oBAAY,YAAY;IACpB;;OAEG;IACH,EAAE,IAAI;IACN;;OAEG;IACH,GAAG,IAAI;IACP;;OAEG;IACH,OAAO,IAAI;CACd;AACD;;GAEG;AACH,oBAAY,gBAAgB;IACxB;;OAEG;IACH,GAAG,IAAI;IACP;;OAEG;IACH,EAAE,IAAI;CACT;AAED,cAAM,aAAc,SAAQ,WAAW,CAAC,QAAQ,CAAC;;IAgB7C,MAAM,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,QAAQ,CAAC,GAAG,QAAQ;IAalD,kBAAkB,CAAC,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,CAAC,EAAE,QAAQ,GAAG,QAAQ;IAiDlH,mBAAmB,CAAC,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,kBAAkB,GAAG,aAAa;CAuC5G;AACD;;GAEG;AACH,eAAO,MAAM,QAAQ,eAAsB,CAAC;AAE5C,cAAM,oBAAqB,SAAQ,WAAW,CAAC,eAAe,CAAC;;IAM3D,MAAM,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,eAAe,CAAC,GAAG,eAAe;IAOhE,kBAAkB,CAAC,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,CAAC,EAAE,eAAe,GAAG,eAAe;IAsBhI,mBAAmB,CAAC,OAAO,EAAE,eAAe,EAAE,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,kBAAkB,GAAG,aAAa;CASnH;AACD;;GAEG;AACH,eAAO,MAAM,eAAe,sBAA6B,CAAC;AAE1D,cAAM,gBAAiB,SAAQ,WAAW,CAAC,WAAW,CAAC;;IAMnD,MAAM,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,WAAW,CAAC,GAAG,WAAW;IAOxD,kBAAkB,CAAC,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,CAAC,EAAE,WAAW,GAAG,WAAW;IAmBxH,mBAAmB,CAAC,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,kBAAkB,GAAG,aAAa;CAS/G;AACD;;GAEG;AACH,eAAO,MAAM,WAAW,kBAAyB,CAAC;AAElD,cAAM,qBAAsB,SAAQ,WAAW,CAAC,gBAAgB,CAAC;;IAS7D,MAAM,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,gBAAgB,CAAC,GAAG,gBAAgB;IAQlE,kBAAkB,CAAC,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,CAAC,EAAE,gBAAgB,GAAG,gBAAgB;IA4BlI,mBAAmB,CAAC,OAAO,EAAE,gBAAgB,EAAE,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,kBAAkB,GAAG,aAAa;CAkBpH;AACD;;GAEG;AACH,eAAO,MAAM,gBAAgB,uBAA8B,CAAC;AAE5D,cAAM,oBAAqB,SAAQ,WAAW,CAAC,eAAe,CAAC;;IAU3D,MAAM,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,eAAe,CAAC,GAAG,eAAe;IAShE,kBAAkB,CAAC,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,CAAC,EAAE,eAAe,GAAG,eAAe;IA+BhI,mBAAmB,CAAC,OAAO,EAAE,eAAe,EAAE,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,kBAAkB,GAAG,aAAa;CAqBnH;AACD;;GAEG;AACH,eAAO,MAAM,eAAe,sBAA6B,CAAC;AAE1D,cAAM,iBAAkB,SAAQ,WAAW,CAAC,YAAY,CAAC;;IAOrD,MAAM,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,YAAY,CAAC,GAAG,YAAY;IAQ1D,kBAAkB,CAAC,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,CAAC,EAAE,YAAY,GAAG,YAAY;IAsB1H,mBAAmB,CAAC,OAAO,EAAE,YAAY,EAAE,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,kBAAkB,GAAG,aAAa;CAYhH;AACD;;GAEG;AACH,eAAO,MAAM,YAAY,mBAA0B,CAAC;AAEpD,cAAM,+BAAgC,SAAQ,WAAW,CAAC,0BAA0B,CAAC;;IAQjF,MAAM,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,0BAA0B,CAAC,GAAG,0BAA0B;IAQtF,kBAAkB,CAAC,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,CAAC,EAAE,0BAA0B,GAAG,0BAA0B;IAyBtJ,mBAAmB,CAAC,OAAO,EAAE,0BAA0B,EAAE,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,kBAAkB,GAAG,aAAa;CAe9H;AACD;;GAEG;AACH,eAAO,MAAM,0BAA0B,iCAAwC,CAAC;AAEhF,cAAM,8BAA+B,SAAQ,WAAW,CAAC,yBAAyB,CAAC;;IAQ/E,MAAM,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,yBAAyB,CAAC,GAAG,yBAAyB;IAQpF,kBAAkB,CAAC,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,CAAC,EAAE,yBAAyB,GAAG,yBAAyB;IAyBpJ,mBAAmB,CAAC,OAAO,EAAE,yBAAyB,EAAE,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,kBAAkB,GAAG,aAAa;CAe7H;AACD;;GAEG;AACH,eAAO,MAAM,yBAAyB,gCAAuC,CAAC;AAE9E,cAAM,8BAA+B,SAAQ,WAAW,CAAC,yBAAyB,CAAC;;IAS/E,MAAM,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,yBAAyB,CAAC,GAAG,yBAAyB;IAUpF,kBAAkB,CAAC,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,CAAC,EAAE,yBAAyB,GAAG,yBAAyB;IA4BpJ,mBAAmB,CAAC,OAAO,EAAE,yBAAyB,EAAE,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,kBAAkB,GAAG,aAAa;CAkB7H;AACD;;GAEG;AACH,eAAO,MAAM,yBAAyB,gCAAuC,CAAC;AAE9E,cAAM,sBAAuB,SAAQ,WAAW,CAAC,iBAAiB,CAAC;;IAQ/D,MAAM,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,iBAAiB,CAAC,GAAG,iBAAiB;IAOpE,kBAAkB,CAAC,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,CAAC,EAAE,iBAAiB,GAAG,iBAAiB;IAkCpI,mBAAmB,CAAC,OAAO,EAAE,iBAAiB,EAAE,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,kBAAkB,GAAG,aAAa;CAerH;AACD;;GAEG;AACH,eAAO,MAAM,iBAAiB,wBAA+B,CAAC"}
|