@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.
Files changed (47) hide show
  1. package/lib/cjs/client/client.js +2 -2
  2. package/lib/cjs/common/gen/ivms101/v1/ivms/enum_pb.d.ts +326 -0
  3. package/lib/cjs/common/gen/ivms101/v1/ivms/enum_pb.js +337 -0
  4. package/lib/cjs/common/gen/ivms101/v1/ivms/ivms101_pb.d.ts +520 -0
  5. package/lib/cjs/common/gen/ivms101/v1/ivms/ivms101_pb.js +73 -0
  6. package/lib/cjs/common/gen/tzero/v1/common/common_pb.d.ts +0 -2
  7. package/lib/cjs/common/gen/tzero/v1/common/common_pb.js +1 -1
  8. package/lib/cjs/common/gen/tzero/v1/common/payment_method_pb.d.ts +0 -34
  9. package/lib/cjs/common/gen/tzero/v1/common/payment_method_pb.js +2 -2
  10. package/lib/cjs/common/gen/tzero/v1/common/payment_receipt_pb.d.ts +0 -2
  11. package/lib/cjs/common/gen/tzero/v1/common/payment_receipt_pb.js +1 -1
  12. package/lib/cjs/common/gen/tzero/v1/payment/network_pb.d.ts +132 -177
  13. package/lib/cjs/common/gen/tzero/v1/payment/network_pb.js +24 -18
  14. package/lib/cjs/common/gen/tzero/v1/payment/provider_pb.d.ts +30 -9
  15. package/lib/cjs/common/gen/tzero/v1/payment/provider_pb.js +9 -3
  16. package/lib/cjs/common/gen/tzero/v1/payment_intent/provider/provider_pb.d.ts +4 -16
  17. package/lib/cjs/common/gen/tzero/v1/payment_intent/provider/provider_pb.js +2 -2
  18. package/lib/cjs/common/gen/tzero/v1/payment_intent/recipient/recipient_pb.d.ts +0 -10
  19. package/lib/cjs/common/gen/tzero/v1/payment_intent/recipient/recipient_pb.js +2 -2
  20. package/lib/cjs/common/gen/tzero/v1/public/public_pb.js +1 -1
  21. package/lib/cjs/examples/update-quote.js +1 -1
  22. package/lib/cjs/service/node.js +2 -2
  23. package/lib/esm/client/client.js +1 -1
  24. package/lib/esm/common/gen/ivms101/v1/ivms/enum_pb.d.ts +326 -0
  25. package/lib/esm/common/gen/ivms101/v1/ivms/enum_pb.js +334 -0
  26. package/lib/esm/common/gen/ivms101/v1/ivms/ivms101_pb.d.ts +520 -0
  27. package/lib/esm/common/gen/ivms101/v1/ivms/ivms101_pb.js +70 -0
  28. package/lib/esm/common/gen/tzero/v1/common/common_pb.d.ts +0 -2
  29. package/lib/esm/common/gen/tzero/v1/common/common_pb.js +1 -1
  30. package/lib/esm/common/gen/tzero/v1/common/payment_method_pb.d.ts +0 -34
  31. package/lib/esm/common/gen/tzero/v1/common/payment_method_pb.js +2 -2
  32. package/lib/esm/common/gen/tzero/v1/common/payment_receipt_pb.d.ts +0 -2
  33. package/lib/esm/common/gen/tzero/v1/common/payment_receipt_pb.js +1 -1
  34. package/lib/esm/common/gen/tzero/v1/payment/network_pb.d.ts +132 -177
  35. package/lib/esm/common/gen/tzero/v1/payment/network_pb.js +23 -17
  36. package/lib/esm/common/gen/tzero/v1/payment/provider_pb.d.ts +30 -9
  37. package/lib/esm/common/gen/tzero/v1/payment/provider_pb.js +8 -2
  38. package/lib/esm/common/gen/tzero/v1/payment_intent/provider/provider_pb.d.ts +4 -16
  39. package/lib/esm/common/gen/tzero/v1/payment_intent/provider/provider_pb.js +2 -2
  40. package/lib/esm/common/gen/tzero/v1/payment_intent/recipient/recipient_pb.d.ts +0 -10
  41. package/lib/esm/common/gen/tzero/v1/payment_intent/recipient/recipient_pb.js +2 -2
  42. package/lib/esm/common/gen/tzero/v1/public/public_pb.js +1 -1
  43. package/lib/esm/examples/update-quote.js +1 -1
  44. package/lib/esm/service/node.js +1 -1
  45. package/lib/tsconfig.cjs.tsbuildinfo +1 -1
  46. package/lib/tsconfig.esm.tsbuildinfo +1 -1
  47. package/package.json +10 -10
@@ -0,0 +1,326 @@
1
+ import type { GenEnum, GenFile } from "@bufbuild/protobuf/codegenv2";
2
+ /**
3
+ * Describes the file ivms101/v1/ivms/enum.proto.
4
+ */
5
+ export declare const file_ivms101_v1_ivms_enum: GenFile;
6
+ /**
7
+ * Definition: A single value corresponding to the nature of name being adopted.
8
+ *
9
+ * @generated from enum ivms101.NaturalPersonNameTypeCode
10
+ */
11
+ export declare enum NaturalPersonNameTypeCode {
12
+ /**
13
+ * Unspecified
14
+ * A name by which a natural person may be known but which cannot otherwise be
15
+ * categorized or the category of which the sender is unable to determine.
16
+ *
17
+ * @generated from enum value: NATURAL_PERSON_NAME_TYPE_CODE_MISC = 0;
18
+ */
19
+ MISC = 0,
20
+ /**
21
+ * Alias name
22
+ * A name other than the legal name by which a natural person is also known.
23
+ *
24
+ * @generated from enum value: NATURAL_PERSON_NAME_TYPE_CODE_ALIA = 1;
25
+ */
26
+ ALIA = 1,
27
+ /**
28
+ * Name at birth
29
+ * The name given to a natural person at birth.
30
+ *
31
+ * @generated from enum value: NATURAL_PERSON_NAME_TYPE_CODE_BIRT = 2;
32
+ */
33
+ BIRT = 2,
34
+ /**
35
+ * Maiden name
36
+ * The original name of a natural person who has changed their name after marriage.
37
+ *
38
+ * @generated from enum value: NATURAL_PERSON_NAME_TYPE_CODE_MAID = 3;
39
+ */
40
+ MAID = 3,
41
+ /**
42
+ * Legal name
43
+ * Identifies a natural person for legal, official or administrative purposes.
44
+ *
45
+ * @generated from enum value: NATURAL_PERSON_NAME_TYPE_CODE_LEGL = 4;
46
+ */
47
+ LEGL = 4
48
+ }
49
+ /**
50
+ * Describes the enum ivms101.NaturalPersonNameTypeCode.
51
+ */
52
+ export declare const NaturalPersonNameTypeCodeSchema: GenEnum<NaturalPersonNameTypeCode>;
53
+ /**
54
+ * Definition: A single value corresponding to the nature of name being specified
55
+ * for the legal person.
56
+ *
57
+ * @generated from enum ivms101.LegalPersonNameTypeCode
58
+ */
59
+ export declare enum LegalPersonNameTypeCode {
60
+ /**
61
+ * Unspecified
62
+ * A name by which a legal person may be known but which cannot otherwise be
63
+ * categorized or the category of which the sender is unable to determine.
64
+ * Not an official part of the IVMS 101 Standard
65
+ *
66
+ * @generated from enum value: LEGAL_PERSON_NAME_TYPE_CODE_MISC = 0;
67
+ */
68
+ MISC = 0,
69
+ /**
70
+ * Legal name
71
+ * Official name under which an organisation is registered.
72
+ *
73
+ * @generated from enum value: LEGAL_PERSON_NAME_TYPE_CODE_LEGL = 1;
74
+ */
75
+ LEGL = 1,
76
+ /**
77
+ * Short name
78
+ * Specifies the short name of the organisation.
79
+ *
80
+ * @generated from enum value: LEGAL_PERSON_NAME_TYPE_CODE_SHRT = 2;
81
+ */
82
+ SHRT = 2,
83
+ /**
84
+ * Trading name
85
+ * Name used by a business for commercial purposes, although its registered legal
86
+ * name, used for contracts and other formal situations, may be another.
87
+ *
88
+ * @generated from enum value: LEGAL_PERSON_NAME_TYPE_CODE_TRAD = 3;
89
+ */
90
+ TRAD = 3
91
+ }
92
+ /**
93
+ * Describes the enum ivms101.LegalPersonNameTypeCode.
94
+ */
95
+ export declare const LegalPersonNameTypeCodeSchema: GenEnum<LegalPersonNameTypeCode>;
96
+ /**
97
+ * Definition: Identifies the nature of the address.
98
+ *
99
+ * @generated from enum ivms101.AddressTypeCode
100
+ */
101
+ export declare enum AddressTypeCode {
102
+ /**
103
+ * Unspecified
104
+ * An address the category of which the sender is unable to determine.
105
+ * Use GEOG instead of this code in general use.
106
+ * Not an official part of the IVMS 101 Standard
107
+ *
108
+ * @generated from enum value: ADDRESS_TYPE_CODE_MISC = 0;
109
+ */
110
+ MISC = 0,
111
+ /**
112
+ * Residential
113
+ * Address is the home address.
114
+ *
115
+ * @generated from enum value: ADDRESS_TYPE_CODE_HOME = 1;
116
+ */
117
+ HOME = 1,
118
+ /**
119
+ * Business
120
+ * Address is the business address.
121
+ *
122
+ * @generated from enum value: ADDRESS_TYPE_CODE_BIZZ = 2;
123
+ */
124
+ BIZZ = 2,
125
+ /**
126
+ * Geographic
127
+ * Address is the unspecified physical (geographical) address suitable for
128
+ * identification of the natural or legal person.
129
+ *
130
+ * @generated from enum value: ADDRESS_TYPE_CODE_GEOG = 3;
131
+ */
132
+ GEOG = 3
133
+ }
134
+ /**
135
+ * Describes the enum ivms101.AddressTypeCode.
136
+ */
137
+ export declare const AddressTypeCodeSchema: GenEnum<AddressTypeCode>;
138
+ /**
139
+ * Definition: Identifies the national identification type.
140
+ * NationalIdentifierTypeCode applies a restriction over the codes present in ISO20022
141
+ * datatype ‘TypeOfIdentification4Code’.
142
+ *
143
+ * @generated from enum ivms101.NationalIdentifierTypeCode
144
+ */
145
+ export declare enum NationalIdentifierTypeCode {
146
+ /**
147
+ * Unspecified
148
+ * A national identifier which may be known but which cannot otherwise be
149
+ * categorized or the category of which the sender is unable to determine.
150
+ *
151
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_MISC = 0;
152
+ */
153
+ MISC = 0,
154
+ /**
155
+ * Alien registration number
156
+ * Number assigned by a government agency to identify foreign nationals.
157
+ *
158
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_ARNU = 1;
159
+ */
160
+ ARNU = 1,
161
+ /**
162
+ * Passport number
163
+ * Number assigned by a passport authority.
164
+ *
165
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_CCPT = 2;
166
+ */
167
+ CCPT = 2,
168
+ /**
169
+ * Registration authority identifier
170
+ * Identifier of a legal entity as maintained by a registration authority.
171
+ *
172
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_RAID = 3;
173
+ */
174
+ RAID = 3,
175
+ /**
176
+ * Driver license number
177
+ * Number assigned to a driver's license.
178
+ *
179
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_DRLC = 4;
180
+ */
181
+ DRLC = 4,
182
+ /**
183
+ * Foreign investment identity number
184
+ * Number assigned to a foreign investor (other than the alien number).
185
+ *
186
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_FIIN = 5;
187
+ */
188
+ FIIN = 5,
189
+ /**
190
+ * Tax identification number
191
+ * Number assigned by a tax authority to an entity.
192
+ *
193
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_TXID = 6;
194
+ */
195
+ TXID = 6,
196
+ /**
197
+ * Social security number
198
+ * Number assigned by a social security agency.
199
+ *
200
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_SOCS = 7;
201
+ */
202
+ SOCS = 7,
203
+ /**
204
+ * Identity card number
205
+ * Number assigned by a national authority to an identity card.
206
+ *
207
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_IDCD = 8;
208
+ */
209
+ IDCD = 8,
210
+ /**
211
+ * Legal Entity Identifier
212
+ * Legal Entity Identifier (LEI) assigned in accordance with ISO 17442.
213
+ * The LEI is a 20-character, alpha-numeric code that enables clear and unique
214
+ * identification of legal entities participating in financial transactions.
215
+ *
216
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_LEIX = 9;
217
+ */
218
+ LEIX = 9
219
+ }
220
+ /**
221
+ * Describes the enum ivms101.NationalIdentifierTypeCode.
222
+ */
223
+ export declare const NationalIdentifierTypeCodeSchema: GenEnum<NationalIdentifierTypeCode>;
224
+ /**
225
+ * Definition: Identifies the national script from which transliteration to Latin
226
+ * script is applied.
227
+ *
228
+ * @generated from enum ivms101.TransliterationMethodCode
229
+ */
230
+ export declare enum TransliterationMethodCode {
231
+ /**
232
+ * Script other than those listed below
233
+ * Unspecified Standard
234
+ *
235
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_OTHR = 0;
236
+ */
237
+ OTHR = 0,
238
+ /**
239
+ * Arabic (Arabic language)
240
+ * ISO 233-2:1993
241
+ *
242
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_ARAB = 1;
243
+ */
244
+ ARAB = 1,
245
+ /**
246
+ * Arabic (Persian language)
247
+ * ISO 233-3:1999
248
+ *
249
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_ARAN = 2;
250
+ */
251
+ ARAN = 2,
252
+ /**
253
+ * Armenian
254
+ * ISO 9985:1996
255
+ *
256
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_ARMN = 3;
257
+ */
258
+ ARMN = 3,
259
+ /**
260
+ * Cyrillic
261
+ * ISO 9:1995
262
+ *
263
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_CYRL = 4;
264
+ */
265
+ CYRL = 4,
266
+ /**
267
+ * Devanagari & related Indic
268
+ * ISO 15919:2001
269
+ *
270
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_DEVA = 5;
271
+ */
272
+ DEVA = 5,
273
+ /**
274
+ * Georgian
275
+ * ISO 9984:1996
276
+ *
277
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_GEOR = 6;
278
+ */
279
+ GEOR = 6,
280
+ /**
281
+ * Greek
282
+ * ISO 843:1997
283
+ *
284
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_GREK = 7;
285
+ */
286
+ GREK = 7,
287
+ /**
288
+ * Han (Hanzi, Kanji, Hanja)
289
+ * ISO 7098:2015
290
+ *
291
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_HANI = 8;
292
+ */
293
+ HANI = 8,
294
+ /**
295
+ * Hebrew
296
+ * ISO 259-2:1994
297
+ *
298
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_HEBR = 9;
299
+ */
300
+ HEBR = 9,
301
+ /**
302
+ * Kana
303
+ * ISO 3602:1989
304
+ *
305
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_KANA = 10;
306
+ */
307
+ KANA = 10,
308
+ /**
309
+ * Korean
310
+ * Revised Romanization of Korean
311
+ *
312
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_KORE = 11;
313
+ */
314
+ KORE = 11,
315
+ /**
316
+ * Thai
317
+ * ISO 11940-2:2007
318
+ *
319
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_THAI = 12;
320
+ */
321
+ THAI = 12
322
+ }
323
+ /**
324
+ * Describes the enum ivms101.TransliterationMethodCode.
325
+ */
326
+ export declare const TransliterationMethodCodeSchema: GenEnum<TransliterationMethodCode>;
@@ -0,0 +1,334 @@
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 { enumDesc, fileDesc } from "@bufbuild/protobuf/codegenv2";
5
+ /**
6
+ * Describes the file ivms101/v1/ivms/enum.proto.
7
+ */
8
+ export const file_ivms101_v1_ivms_enum = /*@__PURE__*/ fileDesc("Chppdm1zMTAxL3YxL2l2bXMvZW51bS5wcm90bxIHaXZtczEwMSrjAQoZTmF0dXJhbFBlcnNvbk5hbWVUeXBlQ29kZRImCiJOQVRVUkFMX1BFUlNPTl9OQU1FX1RZUEVfQ09ERV9NSVNDEAASJgoiTkFUVVJBTF9QRVJTT05fTkFNRV9UWVBFX0NPREVfQUxJQRABEiYKIk5BVFVSQUxfUEVSU09OX05BTUVfVFlQRV9DT0RFX0JJUlQQAhImCiJOQVRVUkFMX1BFUlNPTl9OQU1FX1RZUEVfQ09ERV9NQUlEEAMSJgoiTkFUVVJBTF9QRVJTT05fTkFNRV9UWVBFX0NPREVfTEVHTBAEKrEBChdMZWdhbFBlcnNvbk5hbWVUeXBlQ29kZRIkCiBMRUdBTF9QRVJTT05fTkFNRV9UWVBFX0NPREVfTUlTQxAAEiQKIExFR0FMX1BFUlNPTl9OQU1FX1RZUEVfQ09ERV9MRUdMEAESJAogTEVHQUxfUEVSU09OX05BTUVfVFlQRV9DT0RFX1NIUlQQAhIkCiBMRUdBTF9QRVJTT05fTkFNRV9UWVBFX0NPREVfVFJBRBADKoEBCg9BZGRyZXNzVHlwZUNvZGUSGgoWQUREUkVTU19UWVBFX0NPREVfTUlTQxAAEhoKFkFERFJFU1NfVFlQRV9DT0RFX0hPTUUQARIaChZBRERSRVNTX1RZUEVfQ09ERV9CSVpaEAISGgoWQUREUkVTU19UWVBFX0NPREVfR0VPRxADKqwDChpOYXRpb25hbElkZW50aWZpZXJUeXBlQ29kZRImCiJOQVRJT05BTF9JREVOVElGSUVSX1RZUEVfQ09ERV9NSVNDEAASJgoiTkFUSU9OQUxfSURFTlRJRklFUl9UWVBFX0NPREVfQVJOVRABEiYKIk5BVElPTkFMX0lERU5USUZJRVJfVFlQRV9DT0RFX0NDUFQQAhImCiJOQVRJT05BTF9JREVOVElGSUVSX1RZUEVfQ09ERV9SQUlEEAMSJgoiTkFUSU9OQUxfSURFTlRJRklFUl9UWVBFX0NPREVfRFJMQxAEEiYKIk5BVElPTkFMX0lERU5USUZJRVJfVFlQRV9DT0RFX0ZJSU4QBRImCiJOQVRJT05BTF9JREVOVElGSUVSX1RZUEVfQ09ERV9UWElEEAYSJgoiTkFUSU9OQUxfSURFTlRJRklFUl9UWVBFX0NPREVfU09DUxAHEiYKIk5BVElPTkFMX0lERU5USUZJRVJfVFlQRV9DT0RFX0lEQ0QQCBImCiJOQVRJT05BTF9JREVOVElGSUVSX1RZUEVfQ09ERV9MRUlYEAkqiQQKGVRyYW5zbGl0ZXJhdGlvbk1ldGhvZENvZGUSJAogVFJBTlNMSVRFUkFUSU9OX01FVEhPRF9DT0RFX09USFIQABIkCiBUUkFOU0xJVEVSQVRJT05fTUVUSE9EX0NPREVfQVJBQhABEiQKIFRSQU5TTElURVJBVElPTl9NRVRIT0RfQ09ERV9BUkFOEAISJAogVFJBTlNMSVRFUkFUSU9OX01FVEhPRF9DT0RFX0FSTU4QAxIkCiBUUkFOU0xJVEVSQVRJT05fTUVUSE9EX0NPREVfQ1lSTBAEEiQKIFRSQU5TTElURVJBVElPTl9NRVRIT0RfQ09ERV9ERVZBEAUSJAogVFJBTlNMSVRFUkFUSU9OX01FVEhPRF9DT0RFX0dFT1IQBhIkCiBUUkFOU0xJVEVSQVRJT05fTUVUSE9EX0NPREVfR1JFSxAHEiQKIFRSQU5TTElURVJBVElPTl9NRVRIT0RfQ09ERV9IQU5JEAgSJAogVFJBTlNMSVRFUkFUSU9OX01FVEhPRF9DT0RFX0hFQlIQCRIkCiBUUkFOU0xJVEVSQVRJT05fTUVUSE9EX0NPREVfS0FOQRAKEiQKIFRSQU5TTElURVJBVElPTl9NRVRIT0RfQ09ERV9LT1JFEAsSJAogVFJBTlNMSVRFUkFUSU9OX01FVEhPRF9DT0RFX1RIQUkQDEJUCgtjb20uaXZtczEwMUIJRW51bVByb3RvUAGiAgNJWFiqAgdJdm1zMTAxygIHSXZtczEwMeICE0l2bXMxMDFcR1BCTWV0YWRhdGHqAgdJdm1zMTAxYgZwcm90bzM");
9
+ /**
10
+ * Definition: A single value corresponding to the nature of name being adopted.
11
+ *
12
+ * @generated from enum ivms101.NaturalPersonNameTypeCode
13
+ */
14
+ export var NaturalPersonNameTypeCode;
15
+ (function (NaturalPersonNameTypeCode) {
16
+ /**
17
+ * Unspecified
18
+ * A name by which a natural person may be known but which cannot otherwise be
19
+ * categorized or the category of which the sender is unable to determine.
20
+ *
21
+ * @generated from enum value: NATURAL_PERSON_NAME_TYPE_CODE_MISC = 0;
22
+ */
23
+ NaturalPersonNameTypeCode[NaturalPersonNameTypeCode["MISC"] = 0] = "MISC";
24
+ /**
25
+ * Alias name
26
+ * A name other than the legal name by which a natural person is also known.
27
+ *
28
+ * @generated from enum value: NATURAL_PERSON_NAME_TYPE_CODE_ALIA = 1;
29
+ */
30
+ NaturalPersonNameTypeCode[NaturalPersonNameTypeCode["ALIA"] = 1] = "ALIA";
31
+ /**
32
+ * Name at birth
33
+ * The name given to a natural person at birth.
34
+ *
35
+ * @generated from enum value: NATURAL_PERSON_NAME_TYPE_CODE_BIRT = 2;
36
+ */
37
+ NaturalPersonNameTypeCode[NaturalPersonNameTypeCode["BIRT"] = 2] = "BIRT";
38
+ /**
39
+ * Maiden name
40
+ * The original name of a natural person who has changed their name after marriage.
41
+ *
42
+ * @generated from enum value: NATURAL_PERSON_NAME_TYPE_CODE_MAID = 3;
43
+ */
44
+ NaturalPersonNameTypeCode[NaturalPersonNameTypeCode["MAID"] = 3] = "MAID";
45
+ /**
46
+ * Legal name
47
+ * Identifies a natural person for legal, official or administrative purposes.
48
+ *
49
+ * @generated from enum value: NATURAL_PERSON_NAME_TYPE_CODE_LEGL = 4;
50
+ */
51
+ NaturalPersonNameTypeCode[NaturalPersonNameTypeCode["LEGL"] = 4] = "LEGL";
52
+ })(NaturalPersonNameTypeCode || (NaturalPersonNameTypeCode = {}));
53
+ /**
54
+ * Describes the enum ivms101.NaturalPersonNameTypeCode.
55
+ */
56
+ export const NaturalPersonNameTypeCodeSchema = /*@__PURE__*/ enumDesc(file_ivms101_v1_ivms_enum, 0);
57
+ /**
58
+ * Definition: A single value corresponding to the nature of name being specified
59
+ * for the legal person.
60
+ *
61
+ * @generated from enum ivms101.LegalPersonNameTypeCode
62
+ */
63
+ export var LegalPersonNameTypeCode;
64
+ (function (LegalPersonNameTypeCode) {
65
+ /**
66
+ * Unspecified
67
+ * A name by which a legal person may be known but which cannot otherwise be
68
+ * categorized or the category of which the sender is unable to determine.
69
+ * Not an official part of the IVMS 101 Standard
70
+ *
71
+ * @generated from enum value: LEGAL_PERSON_NAME_TYPE_CODE_MISC = 0;
72
+ */
73
+ LegalPersonNameTypeCode[LegalPersonNameTypeCode["MISC"] = 0] = "MISC";
74
+ /**
75
+ * Legal name
76
+ * Official name under which an organisation is registered.
77
+ *
78
+ * @generated from enum value: LEGAL_PERSON_NAME_TYPE_CODE_LEGL = 1;
79
+ */
80
+ LegalPersonNameTypeCode[LegalPersonNameTypeCode["LEGL"] = 1] = "LEGL";
81
+ /**
82
+ * Short name
83
+ * Specifies the short name of the organisation.
84
+ *
85
+ * @generated from enum value: LEGAL_PERSON_NAME_TYPE_CODE_SHRT = 2;
86
+ */
87
+ LegalPersonNameTypeCode[LegalPersonNameTypeCode["SHRT"] = 2] = "SHRT";
88
+ /**
89
+ * Trading name
90
+ * Name used by a business for commercial purposes, although its registered legal
91
+ * name, used for contracts and other formal situations, may be another.
92
+ *
93
+ * @generated from enum value: LEGAL_PERSON_NAME_TYPE_CODE_TRAD = 3;
94
+ */
95
+ LegalPersonNameTypeCode[LegalPersonNameTypeCode["TRAD"] = 3] = "TRAD";
96
+ })(LegalPersonNameTypeCode || (LegalPersonNameTypeCode = {}));
97
+ /**
98
+ * Describes the enum ivms101.LegalPersonNameTypeCode.
99
+ */
100
+ export const LegalPersonNameTypeCodeSchema = /*@__PURE__*/ enumDesc(file_ivms101_v1_ivms_enum, 1);
101
+ /**
102
+ * Definition: Identifies the nature of the address.
103
+ *
104
+ * @generated from enum ivms101.AddressTypeCode
105
+ */
106
+ export var AddressTypeCode;
107
+ (function (AddressTypeCode) {
108
+ /**
109
+ * Unspecified
110
+ * An address the category of which the sender is unable to determine.
111
+ * Use GEOG instead of this code in general use.
112
+ * Not an official part of the IVMS 101 Standard
113
+ *
114
+ * @generated from enum value: ADDRESS_TYPE_CODE_MISC = 0;
115
+ */
116
+ AddressTypeCode[AddressTypeCode["MISC"] = 0] = "MISC";
117
+ /**
118
+ * Residential
119
+ * Address is the home address.
120
+ *
121
+ * @generated from enum value: ADDRESS_TYPE_CODE_HOME = 1;
122
+ */
123
+ AddressTypeCode[AddressTypeCode["HOME"] = 1] = "HOME";
124
+ /**
125
+ * Business
126
+ * Address is the business address.
127
+ *
128
+ * @generated from enum value: ADDRESS_TYPE_CODE_BIZZ = 2;
129
+ */
130
+ AddressTypeCode[AddressTypeCode["BIZZ"] = 2] = "BIZZ";
131
+ /**
132
+ * Geographic
133
+ * Address is the unspecified physical (geographical) address suitable for
134
+ * identification of the natural or legal person.
135
+ *
136
+ * @generated from enum value: ADDRESS_TYPE_CODE_GEOG = 3;
137
+ */
138
+ AddressTypeCode[AddressTypeCode["GEOG"] = 3] = "GEOG";
139
+ })(AddressTypeCode || (AddressTypeCode = {}));
140
+ /**
141
+ * Describes the enum ivms101.AddressTypeCode.
142
+ */
143
+ export const AddressTypeCodeSchema = /*@__PURE__*/ enumDesc(file_ivms101_v1_ivms_enum, 2);
144
+ /**
145
+ * Definition: Identifies the national identification type.
146
+ * NationalIdentifierTypeCode applies a restriction over the codes present in ISO20022
147
+ * datatype ‘TypeOfIdentification4Code’.
148
+ *
149
+ * @generated from enum ivms101.NationalIdentifierTypeCode
150
+ */
151
+ export var NationalIdentifierTypeCode;
152
+ (function (NationalIdentifierTypeCode) {
153
+ /**
154
+ * Unspecified
155
+ * A national identifier which may be known but which cannot otherwise be
156
+ * categorized or the category of which the sender is unable to determine.
157
+ *
158
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_MISC = 0;
159
+ */
160
+ NationalIdentifierTypeCode[NationalIdentifierTypeCode["MISC"] = 0] = "MISC";
161
+ /**
162
+ * Alien registration number
163
+ * Number assigned by a government agency to identify foreign nationals.
164
+ *
165
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_ARNU = 1;
166
+ */
167
+ NationalIdentifierTypeCode[NationalIdentifierTypeCode["ARNU"] = 1] = "ARNU";
168
+ /**
169
+ * Passport number
170
+ * Number assigned by a passport authority.
171
+ *
172
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_CCPT = 2;
173
+ */
174
+ NationalIdentifierTypeCode[NationalIdentifierTypeCode["CCPT"] = 2] = "CCPT";
175
+ /**
176
+ * Registration authority identifier
177
+ * Identifier of a legal entity as maintained by a registration authority.
178
+ *
179
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_RAID = 3;
180
+ */
181
+ NationalIdentifierTypeCode[NationalIdentifierTypeCode["RAID"] = 3] = "RAID";
182
+ /**
183
+ * Driver license number
184
+ * Number assigned to a driver's license.
185
+ *
186
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_DRLC = 4;
187
+ */
188
+ NationalIdentifierTypeCode[NationalIdentifierTypeCode["DRLC"] = 4] = "DRLC";
189
+ /**
190
+ * Foreign investment identity number
191
+ * Number assigned to a foreign investor (other than the alien number).
192
+ *
193
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_FIIN = 5;
194
+ */
195
+ NationalIdentifierTypeCode[NationalIdentifierTypeCode["FIIN"] = 5] = "FIIN";
196
+ /**
197
+ * Tax identification number
198
+ * Number assigned by a tax authority to an entity.
199
+ *
200
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_TXID = 6;
201
+ */
202
+ NationalIdentifierTypeCode[NationalIdentifierTypeCode["TXID"] = 6] = "TXID";
203
+ /**
204
+ * Social security number
205
+ * Number assigned by a social security agency.
206
+ *
207
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_SOCS = 7;
208
+ */
209
+ NationalIdentifierTypeCode[NationalIdentifierTypeCode["SOCS"] = 7] = "SOCS";
210
+ /**
211
+ * Identity card number
212
+ * Number assigned by a national authority to an identity card.
213
+ *
214
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_IDCD = 8;
215
+ */
216
+ NationalIdentifierTypeCode[NationalIdentifierTypeCode["IDCD"] = 8] = "IDCD";
217
+ /**
218
+ * Legal Entity Identifier
219
+ * Legal Entity Identifier (LEI) assigned in accordance with ISO 17442.
220
+ * The LEI is a 20-character, alpha-numeric code that enables clear and unique
221
+ * identification of legal entities participating in financial transactions.
222
+ *
223
+ * @generated from enum value: NATIONAL_IDENTIFIER_TYPE_CODE_LEIX = 9;
224
+ */
225
+ NationalIdentifierTypeCode[NationalIdentifierTypeCode["LEIX"] = 9] = "LEIX";
226
+ })(NationalIdentifierTypeCode || (NationalIdentifierTypeCode = {}));
227
+ /**
228
+ * Describes the enum ivms101.NationalIdentifierTypeCode.
229
+ */
230
+ export const NationalIdentifierTypeCodeSchema = /*@__PURE__*/ enumDesc(file_ivms101_v1_ivms_enum, 3);
231
+ /**
232
+ * Definition: Identifies the national script from which transliteration to Latin
233
+ * script is applied.
234
+ *
235
+ * @generated from enum ivms101.TransliterationMethodCode
236
+ */
237
+ export var TransliterationMethodCode;
238
+ (function (TransliterationMethodCode) {
239
+ /**
240
+ * Script other than those listed below
241
+ * Unspecified Standard
242
+ *
243
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_OTHR = 0;
244
+ */
245
+ TransliterationMethodCode[TransliterationMethodCode["OTHR"] = 0] = "OTHR";
246
+ /**
247
+ * Arabic (Arabic language)
248
+ * ISO 233-2:1993
249
+ *
250
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_ARAB = 1;
251
+ */
252
+ TransliterationMethodCode[TransliterationMethodCode["ARAB"] = 1] = "ARAB";
253
+ /**
254
+ * Arabic (Persian language)
255
+ * ISO 233-3:1999
256
+ *
257
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_ARAN = 2;
258
+ */
259
+ TransliterationMethodCode[TransliterationMethodCode["ARAN"] = 2] = "ARAN";
260
+ /**
261
+ * Armenian
262
+ * ISO 9985:1996
263
+ *
264
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_ARMN = 3;
265
+ */
266
+ TransliterationMethodCode[TransliterationMethodCode["ARMN"] = 3] = "ARMN";
267
+ /**
268
+ * Cyrillic
269
+ * ISO 9:1995
270
+ *
271
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_CYRL = 4;
272
+ */
273
+ TransliterationMethodCode[TransliterationMethodCode["CYRL"] = 4] = "CYRL";
274
+ /**
275
+ * Devanagari & related Indic
276
+ * ISO 15919:2001
277
+ *
278
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_DEVA = 5;
279
+ */
280
+ TransliterationMethodCode[TransliterationMethodCode["DEVA"] = 5] = "DEVA";
281
+ /**
282
+ * Georgian
283
+ * ISO 9984:1996
284
+ *
285
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_GEOR = 6;
286
+ */
287
+ TransliterationMethodCode[TransliterationMethodCode["GEOR"] = 6] = "GEOR";
288
+ /**
289
+ * Greek
290
+ * ISO 843:1997
291
+ *
292
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_GREK = 7;
293
+ */
294
+ TransliterationMethodCode[TransliterationMethodCode["GREK"] = 7] = "GREK";
295
+ /**
296
+ * Han (Hanzi, Kanji, Hanja)
297
+ * ISO 7098:2015
298
+ *
299
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_HANI = 8;
300
+ */
301
+ TransliterationMethodCode[TransliterationMethodCode["HANI"] = 8] = "HANI";
302
+ /**
303
+ * Hebrew
304
+ * ISO 259-2:1994
305
+ *
306
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_HEBR = 9;
307
+ */
308
+ TransliterationMethodCode[TransliterationMethodCode["HEBR"] = 9] = "HEBR";
309
+ /**
310
+ * Kana
311
+ * ISO 3602:1989
312
+ *
313
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_KANA = 10;
314
+ */
315
+ TransliterationMethodCode[TransliterationMethodCode["KANA"] = 10] = "KANA";
316
+ /**
317
+ * Korean
318
+ * Revised Romanization of Korean
319
+ *
320
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_KORE = 11;
321
+ */
322
+ TransliterationMethodCode[TransliterationMethodCode["KORE"] = 11] = "KORE";
323
+ /**
324
+ * Thai
325
+ * ISO 11940-2:2007
326
+ *
327
+ * @generated from enum value: TRANSLITERATION_METHOD_CODE_THAI = 12;
328
+ */
329
+ TransliterationMethodCode[TransliterationMethodCode["THAI"] = 12] = "THAI";
330
+ })(TransliterationMethodCode || (TransliterationMethodCode = {}));
331
+ /**
332
+ * Describes the enum ivms101.TransliterationMethodCode.
333
+ */
334
+ export const TransliterationMethodCodeSchema = /*@__PURE__*/ enumDesc(file_ivms101_v1_ivms_enum, 4);