@t-0/provider-sdk 1.0.28 → 1.0.30
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/lib/cjs/client/client.js +2 -2
- package/lib/cjs/common/gen/ivms101/v1/ivms/enum_pb.d.ts +326 -0
- package/lib/cjs/common/gen/ivms101/v1/ivms/enum_pb.js +337 -0
- package/lib/cjs/common/gen/ivms101/v1/ivms/ivms101_pb.d.ts +520 -0
- package/lib/cjs/common/gen/ivms101/v1/ivms/ivms101_pb.js +73 -0
- package/lib/cjs/common/gen/tzero/v1/common/common_pb.d.ts +0 -2
- package/lib/cjs/common/gen/tzero/v1/common/common_pb.js +1 -1
- package/lib/cjs/common/gen/tzero/v1/common/payment_method_pb.d.ts +0 -34
- package/lib/cjs/common/gen/tzero/v1/common/payment_method_pb.js +2 -2
- package/lib/cjs/common/gen/tzero/v1/common/payment_receipt_pb.d.ts +0 -2
- package/lib/cjs/common/gen/tzero/v1/common/payment_receipt_pb.js +1 -1
- package/lib/cjs/common/gen/tzero/v1/payment/network_pb.d.ts +132 -177
- package/lib/cjs/common/gen/tzero/v1/payment/network_pb.js +24 -18
- package/lib/cjs/common/gen/tzero/v1/payment/provider_pb.d.ts +30 -9
- package/lib/cjs/common/gen/tzero/v1/payment/provider_pb.js +9 -3
- package/lib/cjs/common/gen/tzero/v1/payment_intent/provider/provider_pb.d.ts +4 -16
- package/lib/cjs/common/gen/tzero/v1/payment_intent/provider/provider_pb.js +2 -2
- package/lib/cjs/common/gen/tzero/v1/payment_intent/recipient/recipient_pb.d.ts +0 -10
- package/lib/cjs/common/gen/tzero/v1/payment_intent/recipient/recipient_pb.js +2 -2
- package/lib/cjs/common/gen/tzero/v1/public/public_pb.js +1 -1
- package/lib/cjs/examples/update-quote.js +1 -1
- package/lib/cjs/service/node.js +2 -2
- package/lib/esm/client/client.js +1 -1
- package/lib/esm/common/gen/ivms101/v1/ivms/enum_pb.d.ts +326 -0
- package/lib/esm/common/gen/ivms101/v1/ivms/enum_pb.js +334 -0
- package/lib/esm/common/gen/ivms101/v1/ivms/ivms101_pb.d.ts +520 -0
- package/lib/esm/common/gen/ivms101/v1/ivms/ivms101_pb.js +70 -0
- package/lib/esm/common/gen/tzero/v1/common/common_pb.d.ts +0 -2
- package/lib/esm/common/gen/tzero/v1/common/common_pb.js +1 -1
- package/lib/esm/common/gen/tzero/v1/common/payment_method_pb.d.ts +0 -34
- package/lib/esm/common/gen/tzero/v1/common/payment_method_pb.js +2 -2
- package/lib/esm/common/gen/tzero/v1/common/payment_receipt_pb.d.ts +0 -2
- package/lib/esm/common/gen/tzero/v1/common/payment_receipt_pb.js +1 -1
- package/lib/esm/common/gen/tzero/v1/payment/network_pb.d.ts +132 -177
- package/lib/esm/common/gen/tzero/v1/payment/network_pb.js +23 -17
- package/lib/esm/common/gen/tzero/v1/payment/provider_pb.d.ts +30 -9
- package/lib/esm/common/gen/tzero/v1/payment/provider_pb.js +8 -2
- package/lib/esm/common/gen/tzero/v1/payment_intent/provider/provider_pb.d.ts +4 -16
- package/lib/esm/common/gen/tzero/v1/payment_intent/provider/provider_pb.js +2 -2
- package/lib/esm/common/gen/tzero/v1/payment_intent/recipient/recipient_pb.d.ts +0 -10
- package/lib/esm/common/gen/tzero/v1/payment_intent/recipient/recipient_pb.js +2 -2
- package/lib/esm/common/gen/tzero/v1/public/public_pb.js +1 -1
- package/lib/esm/examples/update-quote.js +1 -1
- package/lib/esm/service/node.js +1 -1
- package/lib/tsconfig.cjs.tsbuildinfo +1 -1
- package/lib/tsconfig.esm.tsbuildinfo +1 -1
- package/package.json +10 -10
|
@@ -0,0 +1,520 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { AddressTypeCode, LegalPersonNameTypeCode, NationalIdentifierTypeCode, NaturalPersonNameTypeCode } from "./enum_pb.js";
|
|
3
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
4
|
+
/**
|
|
5
|
+
* Describes the file ivms101/v1/ivms/ivms101.proto.
|
|
6
|
+
*/
|
|
7
|
+
export declare const file_ivms101_v1_ivms_ivms101: GenFile;
|
|
8
|
+
/**
|
|
9
|
+
* @generated from message ivms101.Person
|
|
10
|
+
*/
|
|
11
|
+
export type Person = Message<"ivms101.Person"> & {
|
|
12
|
+
/**
|
|
13
|
+
* @generated from oneof ivms101.Person.person
|
|
14
|
+
*/
|
|
15
|
+
person: {
|
|
16
|
+
/**
|
|
17
|
+
* Definition: a uniquely distinguishable individual; one single person.
|
|
18
|
+
*
|
|
19
|
+
* @generated from field: ivms101.NaturalPerson natural_person = 1;
|
|
20
|
+
*/
|
|
21
|
+
value: NaturalPerson;
|
|
22
|
+
case: "naturalPerson";
|
|
23
|
+
} | {
|
|
24
|
+
/**
|
|
25
|
+
* Definition: any entity other than a natural person that can establish a
|
|
26
|
+
* permanent customer relationship with an affected entity or otherwise own
|
|
27
|
+
* property. This can include companies, bodies corporate, foundations, anstalt,
|
|
28
|
+
* partnerships, or associations and other relevantly similar entities.
|
|
29
|
+
*
|
|
30
|
+
* @generated from field: ivms101.LegalPerson legal_person = 2;
|
|
31
|
+
*/
|
|
32
|
+
value: LegalPerson;
|
|
33
|
+
case: "legalPerson";
|
|
34
|
+
} | {
|
|
35
|
+
case: undefined;
|
|
36
|
+
value?: undefined;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Describes the message ivms101.Person.
|
|
41
|
+
* Use `create(PersonSchema)` to create a new message.
|
|
42
|
+
*/
|
|
43
|
+
export declare const PersonSchema: GenMessage<Person>;
|
|
44
|
+
/**
|
|
45
|
+
* Definition: refers to a uniquely distinguishable individual; one single person
|
|
46
|
+
*
|
|
47
|
+
* @generated from message ivms101.NaturalPerson
|
|
48
|
+
*/
|
|
49
|
+
export type NaturalPerson = Message<"ivms101.NaturalPerson"> & {
|
|
50
|
+
/**
|
|
51
|
+
* Definition: the distinct words used as identification for an individual.
|
|
52
|
+
*
|
|
53
|
+
* @generated from field: ivms101.NaturalPersonName name = 1;
|
|
54
|
+
*/
|
|
55
|
+
name?: NaturalPersonName;
|
|
56
|
+
/**
|
|
57
|
+
* Definition: the particulars of a location at which a person may be communicated with.
|
|
58
|
+
*
|
|
59
|
+
* @generated from field: repeated ivms101.Address geographic_addresses = 2 [json_name = "geographicAddress"];
|
|
60
|
+
*/
|
|
61
|
+
geographicAddresses: Address[];
|
|
62
|
+
/**
|
|
63
|
+
* Definition: a distinct identifier used by governments of countries to uniquely
|
|
64
|
+
* identify a natural or legal person.
|
|
65
|
+
*
|
|
66
|
+
* @generated from field: ivms101.NationalIdentification national_identification = 3;
|
|
67
|
+
*/
|
|
68
|
+
nationalIdentification?: NationalIdentification;
|
|
69
|
+
/**
|
|
70
|
+
* Definition: a distinct identifier that uniquely identifies the person to the
|
|
71
|
+
* institution in context.
|
|
72
|
+
*
|
|
73
|
+
* @generated from field: string customer_identification = 4;
|
|
74
|
+
*/
|
|
75
|
+
customerIdentification: string;
|
|
76
|
+
/**
|
|
77
|
+
* Definition: date and place of birth of a person.
|
|
78
|
+
*
|
|
79
|
+
* @generated from field: ivms101.DateAndPlaceOfBirth date_and_place_of_birth = 5;
|
|
80
|
+
*/
|
|
81
|
+
dateAndPlaceOfBirth?: DateAndPlaceOfBirth;
|
|
82
|
+
/**
|
|
83
|
+
* Definition: country in which a person resides (the place of a person's home).
|
|
84
|
+
* The value used for the field country must be present on the ISO-3166-1 alpha-2
|
|
85
|
+
* codes or the value XX.
|
|
86
|
+
*
|
|
87
|
+
* @generated from field: string country_of_residence = 6;
|
|
88
|
+
*/
|
|
89
|
+
countryOfResidence: string;
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* Describes the message ivms101.NaturalPerson.
|
|
93
|
+
* Use `create(NaturalPersonSchema)` to create a new message.
|
|
94
|
+
*/
|
|
95
|
+
export declare const NaturalPersonSchema: GenMessage<NaturalPerson>;
|
|
96
|
+
/**
|
|
97
|
+
* @generated from message ivms101.NaturalPersonName
|
|
98
|
+
*/
|
|
99
|
+
export type NaturalPersonName = Message<"ivms101.NaturalPersonName"> & {
|
|
100
|
+
/**
|
|
101
|
+
* At least one occurrence of naturalPersonNameID must have the value ‘LEGL’
|
|
102
|
+
* specified in the element naturalPersonNameIdentifierType.
|
|
103
|
+
* Definition: full name separated into primary and secondary identifier.
|
|
104
|
+
*
|
|
105
|
+
* @generated from field: repeated ivms101.NaturalPersonNameId name_identifiers = 1 [json_name = "nameIdentifier"];
|
|
106
|
+
*/
|
|
107
|
+
nameIdentifiers: NaturalPersonNameId[];
|
|
108
|
+
/**
|
|
109
|
+
* Definition: full name separated into primary and secondary identifier using
|
|
110
|
+
* local characters.
|
|
111
|
+
*
|
|
112
|
+
* @generated from field: repeated ivms101.LocalNaturalPersonNameId local_name_identifiers = 2 [json_name = "localNameIdentifier"];
|
|
113
|
+
*/
|
|
114
|
+
localNameIdentifiers: LocalNaturalPersonNameId[];
|
|
115
|
+
/**
|
|
116
|
+
* Definition: Alternate representation of a name that corresponds to the manner
|
|
117
|
+
* the name is pronounced.
|
|
118
|
+
*
|
|
119
|
+
* @generated from field: repeated ivms101.LocalNaturalPersonNameId phonetic_name_identifiers = 3 [json_name = "phoneticNameIdentifier"];
|
|
120
|
+
*/
|
|
121
|
+
phoneticNameIdentifiers: LocalNaturalPersonNameId[];
|
|
122
|
+
};
|
|
123
|
+
/**
|
|
124
|
+
* Describes the message ivms101.NaturalPersonName.
|
|
125
|
+
* Use `create(NaturalPersonNameSchema)` to create a new message.
|
|
126
|
+
*/
|
|
127
|
+
export declare const NaturalPersonNameSchema: GenMessage<NaturalPersonName>;
|
|
128
|
+
/**
|
|
129
|
+
* @generated from message ivms101.NaturalPersonNameId
|
|
130
|
+
*/
|
|
131
|
+
export type NaturalPersonNameId = Message<"ivms101.NaturalPersonNameId"> & {
|
|
132
|
+
/**
|
|
133
|
+
* Definition: This may be the family name, the maiden name or the married name,
|
|
134
|
+
* the main name, the surname, and in some cases, the entire name where the natural
|
|
135
|
+
* person’s name cannot be divided into two parts, or where the sender is unable to
|
|
136
|
+
* divide the natural person’s name into two parts.
|
|
137
|
+
*
|
|
138
|
+
* @generated from field: string primary_identifier = 1;
|
|
139
|
+
*/
|
|
140
|
+
primaryIdentifier: string;
|
|
141
|
+
/**
|
|
142
|
+
* Definition: These may be the forenames, familiar names, given names, initials,
|
|
143
|
+
* prefixes, suffixes or Roman numerals (where considered to be legally part of the
|
|
144
|
+
* name) or any other secondary names.
|
|
145
|
+
*
|
|
146
|
+
* @generated from field: string secondary_identifier = 2;
|
|
147
|
+
*/
|
|
148
|
+
secondaryIdentifier: string;
|
|
149
|
+
/**
|
|
150
|
+
* Definition: The nature of the name specified.
|
|
151
|
+
*
|
|
152
|
+
* @generated from field: ivms101.NaturalPersonNameTypeCode name_identifier_type = 3;
|
|
153
|
+
*/
|
|
154
|
+
nameIdentifierType: NaturalPersonNameTypeCode;
|
|
155
|
+
};
|
|
156
|
+
/**
|
|
157
|
+
* Describes the message ivms101.NaturalPersonNameId.
|
|
158
|
+
* Use `create(NaturalPersonNameIdSchema)` to create a new message.
|
|
159
|
+
*/
|
|
160
|
+
export declare const NaturalPersonNameIdSchema: GenMessage<NaturalPersonNameId>;
|
|
161
|
+
/**
|
|
162
|
+
* @generated from message ivms101.LocalNaturalPersonNameId
|
|
163
|
+
*/
|
|
164
|
+
export type LocalNaturalPersonNameId = Message<"ivms101.LocalNaturalPersonNameId"> & {
|
|
165
|
+
/**
|
|
166
|
+
* Definition: This may be the family name, the maiden name or the married name,
|
|
167
|
+
* the main name, the surname, and in some cases, the entire name where the natural
|
|
168
|
+
* person’s name cannot be divided into two parts, or where the sender is unable to
|
|
169
|
+
* divide the natural person’s name into two parts.
|
|
170
|
+
*
|
|
171
|
+
* @generated from field: string primary_identifier = 1;
|
|
172
|
+
*/
|
|
173
|
+
primaryIdentifier: string;
|
|
174
|
+
/**
|
|
175
|
+
* Definition: These may be the forenames, familiar names, given names, initials,
|
|
176
|
+
* prefixes, suffixes or Roman numerals (where considered to be legally part of
|
|
177
|
+
* the name) or any other secondary names.
|
|
178
|
+
*
|
|
179
|
+
* @generated from field: string secondary_identifier = 2;
|
|
180
|
+
*/
|
|
181
|
+
secondaryIdentifier: string;
|
|
182
|
+
/**
|
|
183
|
+
* Definition: The nature of the name specified.
|
|
184
|
+
*
|
|
185
|
+
* @generated from field: ivms101.NaturalPersonNameTypeCode name_identifier_type = 3;
|
|
186
|
+
*/
|
|
187
|
+
nameIdentifierType: NaturalPersonNameTypeCode;
|
|
188
|
+
};
|
|
189
|
+
/**
|
|
190
|
+
* Describes the message ivms101.LocalNaturalPersonNameId.
|
|
191
|
+
* Use `create(LocalNaturalPersonNameIdSchema)` to create a new message.
|
|
192
|
+
*/
|
|
193
|
+
export declare const LocalNaturalPersonNameIdSchema: GenMessage<LocalNaturalPersonNameId>;
|
|
194
|
+
/**
|
|
195
|
+
* Constraint: ValidAddress
|
|
196
|
+
* There must be at least one occurrence of the element addressLine or (streetName and
|
|
197
|
+
* buildingName and/or buildingNumber).
|
|
198
|
+
*
|
|
199
|
+
* @generated from message ivms101.Address
|
|
200
|
+
*/
|
|
201
|
+
export type Address = Message<"ivms101.Address"> & {
|
|
202
|
+
/**
|
|
203
|
+
* Definition: Identifies the nature of the address.
|
|
204
|
+
*
|
|
205
|
+
* @generated from field: ivms101.AddressTypeCode address_type = 1;
|
|
206
|
+
*/
|
|
207
|
+
addressType: AddressTypeCode;
|
|
208
|
+
/**
|
|
209
|
+
* Definition: Identification of a division of a large organisation or building.
|
|
210
|
+
*
|
|
211
|
+
* @generated from field: string department = 2;
|
|
212
|
+
*/
|
|
213
|
+
department: string;
|
|
214
|
+
/**
|
|
215
|
+
* Definition: Identification of a sub-division of a large organisation or building.
|
|
216
|
+
*
|
|
217
|
+
* @generated from field: string sub_department = 3;
|
|
218
|
+
*/
|
|
219
|
+
subDepartment: string;
|
|
220
|
+
/**
|
|
221
|
+
* Definition: Name of a street or thoroughfare.
|
|
222
|
+
*
|
|
223
|
+
* @generated from field: string street_name = 4;
|
|
224
|
+
*/
|
|
225
|
+
streetName: string;
|
|
226
|
+
/**
|
|
227
|
+
* Definition: Number that identifies the position of a building on a street.
|
|
228
|
+
*
|
|
229
|
+
* @generated from field: string building_number = 5;
|
|
230
|
+
*/
|
|
231
|
+
buildingNumber: string;
|
|
232
|
+
/**
|
|
233
|
+
* Definition: Name of the building or house.
|
|
234
|
+
*
|
|
235
|
+
* @generated from field: string building_name = 6;
|
|
236
|
+
*/
|
|
237
|
+
buildingName: string;
|
|
238
|
+
/**
|
|
239
|
+
* Definition: Floor or storey within a building.
|
|
240
|
+
*
|
|
241
|
+
* @generated from field: string floor = 7;
|
|
242
|
+
*/
|
|
243
|
+
floor: string;
|
|
244
|
+
/**
|
|
245
|
+
* Definition: Numbered box in a post office, assigned to a person or organisation,
|
|
246
|
+
* where letters are kept until called for.
|
|
247
|
+
*
|
|
248
|
+
* @generated from field: string post_box = 8;
|
|
249
|
+
*/
|
|
250
|
+
postBox: string;
|
|
251
|
+
/**
|
|
252
|
+
* Definition: Building room number.
|
|
253
|
+
*
|
|
254
|
+
* @generated from field: string room = 9;
|
|
255
|
+
*/
|
|
256
|
+
room: string;
|
|
257
|
+
/**
|
|
258
|
+
* Definition: Identifier consisting of a group of letters and/or numbers that is
|
|
259
|
+
* added to a postal address to assist the sorting of mail.
|
|
260
|
+
*
|
|
261
|
+
* @generated from field: string post_code = 10;
|
|
262
|
+
*/
|
|
263
|
+
postCode: string;
|
|
264
|
+
/**
|
|
265
|
+
* Definition: Name of a built-up area, with defined boundaries and a local government.
|
|
266
|
+
*
|
|
267
|
+
* @generated from field: string town_name = 11;
|
|
268
|
+
*/
|
|
269
|
+
townName: string;
|
|
270
|
+
/**
|
|
271
|
+
* Definition: Specific location name within the town.
|
|
272
|
+
*
|
|
273
|
+
* @generated from field: string town_location_name = 12;
|
|
274
|
+
*/
|
|
275
|
+
townLocationName: string;
|
|
276
|
+
/**
|
|
277
|
+
* Definition: Identifies a subdivision within a country subdivision.
|
|
278
|
+
*
|
|
279
|
+
* @generated from field: string district_name = 13;
|
|
280
|
+
*/
|
|
281
|
+
districtName: string;
|
|
282
|
+
/**
|
|
283
|
+
* Definition: Identifies a subdivision of a country for example, state, region,
|
|
284
|
+
* province, départment or county.
|
|
285
|
+
*
|
|
286
|
+
* @generated from field: string country_sub_division = 14;
|
|
287
|
+
*/
|
|
288
|
+
countrySubDivision: string;
|
|
289
|
+
/**
|
|
290
|
+
* Definition: Information that locates and identifies a specific address, as
|
|
291
|
+
* defined by postal services, presented in free format text.
|
|
292
|
+
*
|
|
293
|
+
* @generated from field: repeated string address_line = 15;
|
|
294
|
+
*/
|
|
295
|
+
addressLine: string[];
|
|
296
|
+
/**
|
|
297
|
+
* Constraint: The value used for the field country must be present on the
|
|
298
|
+
* ISO-3166-1 alpha-2 codes or the value XX.
|
|
299
|
+
*
|
|
300
|
+
* @generated from field: string country = 16;
|
|
301
|
+
*/
|
|
302
|
+
country: string;
|
|
303
|
+
};
|
|
304
|
+
/**
|
|
305
|
+
* Describes the message ivms101.Address.
|
|
306
|
+
* Use `create(AddressSchema)` to create a new message.
|
|
307
|
+
*/
|
|
308
|
+
export declare const AddressSchema: GenMessage<Address>;
|
|
309
|
+
/**
|
|
310
|
+
* Constraint: DateInPast
|
|
311
|
+
* If dateOfBirth is specified, the date specified must be a historic date (i.e. a date
|
|
312
|
+
* prior to the current date)
|
|
313
|
+
*
|
|
314
|
+
* @generated from message ivms101.DateAndPlaceOfBirth
|
|
315
|
+
*/
|
|
316
|
+
export type DateAndPlaceOfBirth = Message<"ivms101.DateAndPlaceOfBirth"> & {
|
|
317
|
+
/**
|
|
318
|
+
* Definition: Date on which a person is born.
|
|
319
|
+
* Definition: A point in time, represented as a day within the calendar year.
|
|
320
|
+
* Compliant with ISO 8601.
|
|
321
|
+
* Format: YYYY-MM-DD
|
|
322
|
+
*
|
|
323
|
+
* @generated from field: string date_of_birth = 1;
|
|
324
|
+
*/
|
|
325
|
+
dateOfBirth: string;
|
|
326
|
+
/**
|
|
327
|
+
* Definition: The town and/or the city and/or the suburb and/or the country
|
|
328
|
+
* subdivision and/or the country where the person was born.
|
|
329
|
+
*
|
|
330
|
+
* @generated from field: string place_of_birth = 2;
|
|
331
|
+
*/
|
|
332
|
+
placeOfBirth: string;
|
|
333
|
+
};
|
|
334
|
+
/**
|
|
335
|
+
* Describes the message ivms101.DateAndPlaceOfBirth.
|
|
336
|
+
* Use `create(DateAndPlaceOfBirthSchema)` to create a new message.
|
|
337
|
+
*/
|
|
338
|
+
export declare const DateAndPlaceOfBirthSchema: GenMessage<DateAndPlaceOfBirth>;
|
|
339
|
+
/**
|
|
340
|
+
* Constraint: ValidNationalIdentifierLegalPerson
|
|
341
|
+
* A legal person must have a value for nationalIdentifierType of either ‘RAID’ or
|
|
342
|
+
* ‘MISC’ or ‘LEIX’ or ‘TXID’.
|
|
343
|
+
* Constraint: CompleteNationalIdentifierLegalPerson
|
|
344
|
+
* A LegalPerson must not have a value for countryOfIssue and must have a value for the
|
|
345
|
+
* element RegistrationAuthority if the value for nationalIdentifierType is not ‘LEIX’
|
|
346
|
+
* Constraint: ValidLEI
|
|
347
|
+
* A LegalPerson with a nationalIdentifierType of ‘LEIX’ must have a value for the
|
|
348
|
+
* element nationalIdentifier that adheres to the convention as stated in datatype
|
|
349
|
+
* ‘LEIText’.
|
|
350
|
+
*
|
|
351
|
+
* @generated from message ivms101.NationalIdentification
|
|
352
|
+
*/
|
|
353
|
+
export type NationalIdentification = Message<"ivms101.NationalIdentification"> & {
|
|
354
|
+
/**
|
|
355
|
+
* Definition: An identifier issued by an appropriate issuing authority.
|
|
356
|
+
* Constraint: ValidLEI
|
|
357
|
+
*
|
|
358
|
+
* @generated from field: string national_identifier = 1;
|
|
359
|
+
*/
|
|
360
|
+
nationalIdentifier: string;
|
|
361
|
+
/**
|
|
362
|
+
* Definition: Specifies the type of identifier specified.
|
|
363
|
+
*
|
|
364
|
+
* @generated from field: ivms101.NationalIdentifierTypeCode national_identifier_type = 2;
|
|
365
|
+
*/
|
|
366
|
+
nationalIdentifierType: NationalIdentifierTypeCode;
|
|
367
|
+
/**
|
|
368
|
+
* Definition: Country of the issuing authority.
|
|
369
|
+
*
|
|
370
|
+
* @generated from field: string country_of_issue = 3;
|
|
371
|
+
*/
|
|
372
|
+
countryOfIssue: string;
|
|
373
|
+
/**
|
|
374
|
+
* Definition: A code specifying the registration authority.
|
|
375
|
+
* Constraint: The value used for the applicable element must be present on the
|
|
376
|
+
* GLEIF Registration Authorities List.
|
|
377
|
+
*
|
|
378
|
+
* @generated from field: string registration_authority = 4;
|
|
379
|
+
*/
|
|
380
|
+
registrationAuthority: string;
|
|
381
|
+
};
|
|
382
|
+
/**
|
|
383
|
+
* Describes the message ivms101.NationalIdentification.
|
|
384
|
+
* Use `create(NationalIdentificationSchema)` to create a new message.
|
|
385
|
+
*/
|
|
386
|
+
export declare const NationalIdentificationSchema: GenMessage<NationalIdentification>;
|
|
387
|
+
/**
|
|
388
|
+
* Definition: refers to any entity other than a natural person that can establish a
|
|
389
|
+
* permanent customer relationship with an affected entity or otherwise own property.
|
|
390
|
+
* This can include companies, bodies corporate, foundations, anstalt, partnerships, or
|
|
391
|
+
* associations and other relevantly similar entities.
|
|
392
|
+
* Constraint: OriginatorInformationLegalPerson
|
|
393
|
+
* If the originator is a LegalPerson either geographicAddress (with an addressType
|
|
394
|
+
* value of ‘GEOG’) and/or nationalIdentification and/or customerNumber is required.
|
|
395
|
+
*
|
|
396
|
+
* @generated from message ivms101.LegalPerson
|
|
397
|
+
*/
|
|
398
|
+
export type LegalPerson = Message<"ivms101.LegalPerson"> & {
|
|
399
|
+
/**
|
|
400
|
+
* Definition: The name of the legal person.
|
|
401
|
+
* Constraint: LegalNamePresentLegalPerson
|
|
402
|
+
* At least one occurrence of legalPersonNameIdentifier must have the value ‘LEGL’
|
|
403
|
+
* specified in the element legalPersonNameIdentifierType.
|
|
404
|
+
*
|
|
405
|
+
* @generated from field: ivms101.LegalPersonName name = 1;
|
|
406
|
+
*/
|
|
407
|
+
name?: LegalPersonName;
|
|
408
|
+
/**
|
|
409
|
+
* Definition: The address of the legal person.
|
|
410
|
+
*
|
|
411
|
+
* @generated from field: repeated ivms101.Address geographic_addresses = 2 [json_name = "geographicAddress"];
|
|
412
|
+
*/
|
|
413
|
+
geographicAddresses: Address[];
|
|
414
|
+
/**
|
|
415
|
+
* Definition: The unique identification number applied by the VASP to customer.
|
|
416
|
+
* NOTE The specification has a descrepency in that 5.2.9.3.3 specifies an element
|
|
417
|
+
* name as "customerNumber", while the table in 5.2.9.1 calls that element
|
|
418
|
+
* "customerIdentification"
|
|
419
|
+
*
|
|
420
|
+
* @generated from field: string customer_number = 3;
|
|
421
|
+
*/
|
|
422
|
+
customerNumber: string;
|
|
423
|
+
/**
|
|
424
|
+
* Definition: A distinct identifier used by governments of countries to uniquely
|
|
425
|
+
* identify a natural or legal person.
|
|
426
|
+
*
|
|
427
|
+
* @generated from field: ivms101.NationalIdentification national_identification = 4;
|
|
428
|
+
*/
|
|
429
|
+
nationalIdentification?: NationalIdentification;
|
|
430
|
+
/**
|
|
431
|
+
* Definition: The country in which the legal person is registered.
|
|
432
|
+
* Constraint: The value used for the field country must be present on the
|
|
433
|
+
* ISO-3166-1 alpha-2 codes or the value XX.
|
|
434
|
+
*
|
|
435
|
+
* @generated from field: string country_of_registration = 5;
|
|
436
|
+
*/
|
|
437
|
+
countryOfRegistration: string;
|
|
438
|
+
};
|
|
439
|
+
/**
|
|
440
|
+
* Describes the message ivms101.LegalPerson.
|
|
441
|
+
* Use `create(LegalPersonSchema)` to create a new message.
|
|
442
|
+
*/
|
|
443
|
+
export declare const LegalPersonSchema: GenMessage<LegalPerson>;
|
|
444
|
+
/**
|
|
445
|
+
* @generated from message ivms101.LegalPersonName
|
|
446
|
+
*/
|
|
447
|
+
export type LegalPersonName = Message<"ivms101.LegalPersonName"> & {
|
|
448
|
+
/**
|
|
449
|
+
* Definition: The name and type of name by which the legal person is known.
|
|
450
|
+
* Constraint: LegalNamePresent
|
|
451
|
+
* At least one occurrence of legalPersonNameIdentifier must have the value
|
|
452
|
+
* ‘LEGL’ specified in the element legalPersonNameIdentifierType.
|
|
453
|
+
*
|
|
454
|
+
* @generated from field: repeated ivms101.LegalPersonNameId name_identifiers = 1 [json_name = "nameIdentifier"];
|
|
455
|
+
*/
|
|
456
|
+
nameIdentifiers: LegalPersonNameId[];
|
|
457
|
+
/**
|
|
458
|
+
* Definition: The name and type of name by which the legal person is known using
|
|
459
|
+
* local characters.
|
|
460
|
+
*
|
|
461
|
+
* @generated from field: repeated ivms101.LocalLegalPersonNameId local_name_identifiers = 2 [json_name = "localNameIdentifier"];
|
|
462
|
+
*/
|
|
463
|
+
localNameIdentifiers: LocalLegalPersonNameId[];
|
|
464
|
+
/**
|
|
465
|
+
* Definition: The name and type of name by which the legal person is known using
|
|
466
|
+
* local characters.
|
|
467
|
+
*
|
|
468
|
+
* @generated from field: repeated ivms101.LocalLegalPersonNameId phonetic_name_identifiers = 3 [json_name = "phoneticNameIdentifier"];
|
|
469
|
+
*/
|
|
470
|
+
phoneticNameIdentifiers: LocalLegalPersonNameId[];
|
|
471
|
+
};
|
|
472
|
+
/**
|
|
473
|
+
* Describes the message ivms101.LegalPersonName.
|
|
474
|
+
* Use `create(LegalPersonNameSchema)` to create a new message.
|
|
475
|
+
*/
|
|
476
|
+
export declare const LegalPersonNameSchema: GenMessage<LegalPersonName>;
|
|
477
|
+
/**
|
|
478
|
+
* @generated from message ivms101.LegalPersonNameId
|
|
479
|
+
*/
|
|
480
|
+
export type LegalPersonNameId = Message<"ivms101.LegalPersonNameId"> & {
|
|
481
|
+
/**
|
|
482
|
+
* Definition: Name by which the legal person is known.
|
|
483
|
+
*
|
|
484
|
+
* @generated from field: string legal_person_name = 1;
|
|
485
|
+
*/
|
|
486
|
+
legalPersonName: string;
|
|
487
|
+
/**
|
|
488
|
+
* Definition: The nature of the name specified.
|
|
489
|
+
*
|
|
490
|
+
* @generated from field: ivms101.LegalPersonNameTypeCode legal_person_name_identifier_type = 2;
|
|
491
|
+
*/
|
|
492
|
+
legalPersonNameIdentifierType: LegalPersonNameTypeCode;
|
|
493
|
+
};
|
|
494
|
+
/**
|
|
495
|
+
* Describes the message ivms101.LegalPersonNameId.
|
|
496
|
+
* Use `create(LegalPersonNameIdSchema)` to create a new message.
|
|
497
|
+
*/
|
|
498
|
+
export declare const LegalPersonNameIdSchema: GenMessage<LegalPersonNameId>;
|
|
499
|
+
/**
|
|
500
|
+
* @generated from message ivms101.LocalLegalPersonNameId
|
|
501
|
+
*/
|
|
502
|
+
export type LocalLegalPersonNameId = Message<"ivms101.LocalLegalPersonNameId"> & {
|
|
503
|
+
/**
|
|
504
|
+
* Definition: Name by which the legal person is known.
|
|
505
|
+
*
|
|
506
|
+
* @generated from field: string legal_person_name = 1;
|
|
507
|
+
*/
|
|
508
|
+
legalPersonName: string;
|
|
509
|
+
/**
|
|
510
|
+
* Definition: The nature of the name specified.
|
|
511
|
+
*
|
|
512
|
+
* @generated from field: ivms101.LegalPersonNameTypeCode legal_person_name_identifier_type = 2;
|
|
513
|
+
*/
|
|
514
|
+
legalPersonNameIdentifierType: LegalPersonNameTypeCode;
|
|
515
|
+
};
|
|
516
|
+
/**
|
|
517
|
+
* Describes the message ivms101.LocalLegalPersonNameId.
|
|
518
|
+
* Use `create(LocalLegalPersonNameIdSchema)` to create a new message.
|
|
519
|
+
*/
|
|
520
|
+
export declare const LocalLegalPersonNameIdSchema: GenMessage<LocalLegalPersonNameId>;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
// Specification Copyright (c) 2020 Joint Working Group on interVASP Messaging Standards
|
|
2
|
+
// https://intervasp.org/
|
|
3
|
+
// https://intervasp.org/wp-content/uploads/2020/05/IVMS101-interVASP-data-model-standard-issue-1-FINAL.pdf
|
|
4
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { file_ivms101_v1_ivms_enum } from "./enum_pb.js";
|
|
6
|
+
import { file_buf_validate_validate } from "../../../buf/validate/validate_pb.js";
|
|
7
|
+
/**
|
|
8
|
+
* Describes the file ivms101/v1/ivms/ivms101.proto.
|
|
9
|
+
*/
|
|
10
|
+
export const file_ivms101_v1_ivms_ivms101 = /*@__PURE__*/ fileDesc("Ch1pdm1zMTAxL3YxL2l2bXMvaXZtczEwMS5wcm90bxIHaXZtczEwMSJ5CgZQZXJzb24SMAoObmF0dXJhbF9wZXJzb24YASABKAsyFi5pdm1zMTAxLk5hdHVyYWxQZXJzb25IABIsCgxsZWdhbF9wZXJzb24YAiABKAsyFC5pdm1zMTAxLkxlZ2FsUGVyc29uSABCDwoGcGVyc29uEgW6SAIIASLwAgoNTmF0dXJhbFBlcnNvbhIwCgRuYW1lGAEgASgLMhouaXZtczEwMS5OYXR1cmFsUGVyc29uTmFtZUIGukgDyAEBEkEKFGdlb2dyYXBoaWNfYWRkcmVzc2VzGAIgAygLMhAuaXZtczEwMS5BZGRyZXNzUhFnZW9ncmFwaGljQWRkcmVzcxJAChduYXRpb25hbF9pZGVudGlmaWNhdGlvbhgDIAEoCzIfLml2bXMxMDEuTmF0aW9uYWxJZGVudGlmaWNhdGlvbhI1ChdjdXN0b21lcl9pZGVudGlmaWNhdGlvbhgEIAEoCUIUukgRcg8YMjILXiR8Xi4qXFMuKiQSPQoXZGF0ZV9hbmRfcGxhY2Vfb2ZfYmlydGgYBSABKAsyHC5pdm1zMTAxLkRhdGVBbmRQbGFjZU9mQmlydGgSMgoUY291bnRyeV9vZl9yZXNpZGVuY2UYBiABKAlCFLpIEXIPMg1eJHxeW0EtWl17Mn0kIpsCChFOYXR1cmFsUGVyc29uTmFtZRJQChBuYW1lX2lkZW50aWZpZXJzGAEgAygLMhwuaXZtczEwMS5OYXR1cmFsUGVyc29uTmFtZUlkQgi6SAWSAQIIAVIObmFtZUlkZW50aWZpZXISVgoWbG9jYWxfbmFtZV9pZGVudGlmaWVycxgCIAMoCzIhLml2bXMxMDEuTG9jYWxOYXR1cmFsUGVyc29uTmFtZUlkUhNsb2NhbE5hbWVJZGVudGlmaWVyElwKGXBob25ldGljX25hbWVfaWRlbnRpZmllcnMYAyADKAsyIS5pdm1zMTAxLkxvY2FsTmF0dXJhbFBlcnNvbk5hbWVJZFIWcGhvbmV0aWNOYW1lSWRlbnRpZmllciLCAQoTTmF0dXJhbFBlcnNvbk5hbWVJZBItChJwcmltYXJ5X2lkZW50aWZpZXIYASABKAlCEbpIDnIMEAEYZDIGLipcUy4qEjIKFHNlY29uZGFyeV9pZGVudGlmaWVyGAIgASgJQhS6SBFyDxhkMgteJHxeLipcUy4qJBJIChRuYW1lX2lkZW50aWZpZXJfdHlwZRgDIAEoDjIiLml2bXMxMDEuTmF0dXJhbFBlcnNvbk5hbWVUeXBlQ29kZUIGukgDyAEBIscBChhMb2NhbE5hdHVyYWxQZXJzb25OYW1lSWQSLQoScHJpbWFyeV9pZGVudGlmaWVyGAEgASgJQhG6SA5yDBABGGQyBi4qXFMuKhIyChRzZWNvbmRhcnlfaWRlbnRpZmllchgCIAEoCUIUukgRcg8YZDILXiR8Xi4qXFMuKiQSSAoUbmFtZV9pZGVudGlmaWVyX3R5cGUYAyABKA4yIi5pdm1zMTAxLk5hdHVyYWxQZXJzb25OYW1lVHlwZUNvZGVCBrpIA8gBASLNBQoHQWRkcmVzcxI2CgxhZGRyZXNzX3R5cGUYASABKA4yGC5pdm1zMTAxLkFkZHJlc3NUeXBlQ29kZUIGukgDyAEBEigKCmRlcGFydG1lbnQYAiABKAlCFLpIEXIPGDIyC14kfF4uKlxTLiokEiwKDnN1Yl9kZXBhcnRtZW50GAMgASgJQhS6SBFyDxhGMgteJHxeLipcUy4qJBIpCgtzdHJlZXRfbmFtZRgEIAEoCUIUukgRcg8YRjILXiR8Xi4qXFMuKiQSLQoPYnVpbGRpbmdfbnVtYmVyGAUgASgJQhS6SBFyDxgQMgteJHxeLipcUy4qJBIrCg1idWlsZGluZ19uYW1lGAYgASgJQhS6SBFyDxgjMgteJHxeLipcUy4qJBIjCgVmbG9vchgHIAEoCUIUukgRcg8YRjILXiR8Xi4qXFMuKiQSJgoIcG9zdF9ib3gYCCABKAlCFLpIEXIPGBAyC14kfF4uKlxTLiokEiIKBHJvb20YCSABKAlCFLpIEXIPGEYyC14kfF4uKlxTLiokEicKCXBvc3RfY29kZRgKIAEoCUIUukgRcg8YEDILXiR8Xi4qXFMuKiQSJwoJdG93bl9uYW1lGAsgASgJQhS6SBFyDxgjMgteJHxeLipcUy4qJBIwChJ0b3duX2xvY2F0aW9uX25hbWUYDCABKAlCFLpIEXIPGCMyC14kfF4uKlxTLiokEisKDWRpc3RyaWN0X25hbWUYDSABKAlCFLpIEXIPGCMyC14kfF4uKlxTLiokEjIKFGNvdW50cnlfc3ViX2RpdmlzaW9uGA4gASgJQhS6SBFyDxgjMgteJHxeLipcUy4qJBIxCgxhZGRyZXNzX2xpbmUYDyADKAlCG7pIGJIBFRAHIhFyDxhGMgteJHxeLipcUy4qJBIiCgdjb3VudHJ5GBAgASgJQhG6SA5yDDIKXltBLVpdezJ9JCKCAQoTRGF0ZUFuZFBsYWNlT2ZCaXJ0aBJACg1kYXRlX29mX2JpcnRoGAEgASgJQim6SCZyJDIiXihbMC05XXs0fSktKFswLTldezJ9KS0oWzAtOV17Mn0pJBIpCg5wbGFjZV9vZl9iaXJ0aBgCIAEoCUIRukgOcgwQARhGMgYuKlxTLioi+wEKFk5hdGlvbmFsSWRlbnRpZmljYXRpb24SLgoTbmF0aW9uYWxfaWRlbnRpZmllchgBIAEoCUIRukgOcgwQARgjMgYuKlxTLioSTQoYbmF0aW9uYWxfaWRlbnRpZmllcl90eXBlGAIgASgOMiMuaXZtczEwMS5OYXRpb25hbElkZW50aWZpZXJUeXBlQ29kZUIGukgDyAEBEi4KEGNvdW50cnlfb2ZfaXNzdWUYAyABKAlCFLpIEXIPMg1eJHxeW0EtWl17Mn0kEjIKFnJlZ2lzdHJhdGlvbl9hdXRob3JpdHkYBCABKAlCErpID3INMgteJHxeLipcUy4qJCKoAgoLTGVnYWxQZXJzb24SLgoEbmFtZRgBIAEoCzIYLml2bXMxMDEuTGVnYWxQZXJzb25OYW1lQga6SAPIAQESQQoUZ2VvZ3JhcGhpY19hZGRyZXNzZXMYAiADKAsyEC5pdm1zMTAxLkFkZHJlc3NSEWdlb2dyYXBoaWNBZGRyZXNzEi0KD2N1c3RvbWVyX251bWJlchgDIAEoCUIUukgRcg8YMjILXiR8Xi4qXFMuKiQSQAoXbmF0aW9uYWxfaWRlbnRpZmljYXRpb24YBCABKAsyHy5pdm1zMTAxLk5hdGlvbmFsSWRlbnRpZmljYXRpb24SNQoXY291bnRyeV9vZl9yZWdpc3RyYXRpb24YBSABKAlCFLpIEXIPMg1eJHxeW0EtWl17Mn0kIpMCCg9MZWdhbFBlcnNvbk5hbWUSTgoQbmFtZV9pZGVudGlmaWVycxgBIAMoCzIaLml2bXMxMDEuTGVnYWxQZXJzb25OYW1lSWRCCLpIBZIBAggBUg5uYW1lSWRlbnRpZmllchJUChZsb2NhbF9uYW1lX2lkZW50aWZpZXJzGAIgAygLMh8uaXZtczEwMS5Mb2NhbExlZ2FsUGVyc29uTmFtZUlkUhNsb2NhbE5hbWVJZGVudGlmaWVyEloKGXBob25ldGljX25hbWVfaWRlbnRpZmllcnMYAyADKAsyHy5pdm1zMTAxLkxvY2FsTGVnYWxQZXJzb25OYW1lSWRSFnBob25ldGljTmFtZUlkZW50aWZpZXIilgEKEUxlZ2FsUGVyc29uTmFtZUlkEiwKEWxlZ2FsX3BlcnNvbl9uYW1lGAEgASgJQhG6SA5yDBABGGQyBi4qXFMuKhJTCiFsZWdhbF9wZXJzb25fbmFtZV9pZGVudGlmaWVyX3R5cGUYAiABKA4yIC5pdm1zMTAxLkxlZ2FsUGVyc29uTmFtZVR5cGVDb2RlQga6SAPIAQEimwEKFkxvY2FsTGVnYWxQZXJzb25OYW1lSWQSLAoRbGVnYWxfcGVyc29uX25hbWUYASABKAlCEbpIDnIMEAEYZDIGLipcUy4qElMKIWxlZ2FsX3BlcnNvbl9uYW1lX2lkZW50aWZpZXJfdHlwZRgCIAEoDjIgLml2bXMxMDEuTGVnYWxQZXJzb25OYW1lVHlwZUNvZGVCBrpIA8gBAUJXCgtjb20uaXZtczEwMUIMSXZtczEwMVByb3RvUAGiAgNJWFiqAgdJdm1zMTAxygIHSXZtczEwMeICE0l2bXMxMDFcR1BCTWV0YWRhdGHqAgdJdm1zMTAxYgZwcm90bzM", [file_ivms101_v1_ivms_enum, file_buf_validate_validate]);
|
|
11
|
+
/**
|
|
12
|
+
* Describes the message ivms101.Person.
|
|
13
|
+
* Use `create(PersonSchema)` to create a new message.
|
|
14
|
+
*/
|
|
15
|
+
export const PersonSchema = /*@__PURE__*/ messageDesc(file_ivms101_v1_ivms_ivms101, 0);
|
|
16
|
+
/**
|
|
17
|
+
* Describes the message ivms101.NaturalPerson.
|
|
18
|
+
* Use `create(NaturalPersonSchema)` to create a new message.
|
|
19
|
+
*/
|
|
20
|
+
export const NaturalPersonSchema = /*@__PURE__*/ messageDesc(file_ivms101_v1_ivms_ivms101, 1);
|
|
21
|
+
/**
|
|
22
|
+
* Describes the message ivms101.NaturalPersonName.
|
|
23
|
+
* Use `create(NaturalPersonNameSchema)` to create a new message.
|
|
24
|
+
*/
|
|
25
|
+
export const NaturalPersonNameSchema = /*@__PURE__*/ messageDesc(file_ivms101_v1_ivms_ivms101, 2);
|
|
26
|
+
/**
|
|
27
|
+
* Describes the message ivms101.NaturalPersonNameId.
|
|
28
|
+
* Use `create(NaturalPersonNameIdSchema)` to create a new message.
|
|
29
|
+
*/
|
|
30
|
+
export const NaturalPersonNameIdSchema = /*@__PURE__*/ messageDesc(file_ivms101_v1_ivms_ivms101, 3);
|
|
31
|
+
/**
|
|
32
|
+
* Describes the message ivms101.LocalNaturalPersonNameId.
|
|
33
|
+
* Use `create(LocalNaturalPersonNameIdSchema)` to create a new message.
|
|
34
|
+
*/
|
|
35
|
+
export const LocalNaturalPersonNameIdSchema = /*@__PURE__*/ messageDesc(file_ivms101_v1_ivms_ivms101, 4);
|
|
36
|
+
/**
|
|
37
|
+
* Describes the message ivms101.Address.
|
|
38
|
+
* Use `create(AddressSchema)` to create a new message.
|
|
39
|
+
*/
|
|
40
|
+
export const AddressSchema = /*@__PURE__*/ messageDesc(file_ivms101_v1_ivms_ivms101, 5);
|
|
41
|
+
/**
|
|
42
|
+
* Describes the message ivms101.DateAndPlaceOfBirth.
|
|
43
|
+
* Use `create(DateAndPlaceOfBirthSchema)` to create a new message.
|
|
44
|
+
*/
|
|
45
|
+
export const DateAndPlaceOfBirthSchema = /*@__PURE__*/ messageDesc(file_ivms101_v1_ivms_ivms101, 6);
|
|
46
|
+
/**
|
|
47
|
+
* Describes the message ivms101.NationalIdentification.
|
|
48
|
+
* Use `create(NationalIdentificationSchema)` to create a new message.
|
|
49
|
+
*/
|
|
50
|
+
export const NationalIdentificationSchema = /*@__PURE__*/ messageDesc(file_ivms101_v1_ivms_ivms101, 7);
|
|
51
|
+
/**
|
|
52
|
+
* Describes the message ivms101.LegalPerson.
|
|
53
|
+
* Use `create(LegalPersonSchema)` to create a new message.
|
|
54
|
+
*/
|
|
55
|
+
export const LegalPersonSchema = /*@__PURE__*/ messageDesc(file_ivms101_v1_ivms_ivms101, 8);
|
|
56
|
+
/**
|
|
57
|
+
* Describes the message ivms101.LegalPersonName.
|
|
58
|
+
* Use `create(LegalPersonNameSchema)` to create a new message.
|
|
59
|
+
*/
|
|
60
|
+
export const LegalPersonNameSchema = /*@__PURE__*/ messageDesc(file_ivms101_v1_ivms_ivms101, 9);
|
|
61
|
+
/**
|
|
62
|
+
* Describes the message ivms101.LegalPersonNameId.
|
|
63
|
+
* Use `create(LegalPersonNameIdSchema)` to create a new message.
|
|
64
|
+
*/
|
|
65
|
+
export const LegalPersonNameIdSchema = /*@__PURE__*/ messageDesc(file_ivms101_v1_ivms_ivms101, 10);
|
|
66
|
+
/**
|
|
67
|
+
* Describes the message ivms101.LocalLegalPersonNameId.
|
|
68
|
+
* Use `create(LocalLegalPersonNameIdSchema)` to create a new message.
|
|
69
|
+
*/
|
|
70
|
+
export const LocalLegalPersonNameIdSchema = /*@__PURE__*/ messageDesc(file_ivms101_v1_ivms_ivms101, 11);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protoc-gen-es v2.
|
|
1
|
+
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=js"
|
|
2
2
|
// @generated from file tzero/v1/common/common.proto (package tzero.v1.common, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
import { enumDesc, fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|