@t-0/provider-starter-ts 0.4.0 → 0.4.1

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.
@@ -14,34 +14,102 @@ export type PaymentDetails = Message<"tzero.v1.common.PaymentDetails"> & {
14
14
  */
15
15
  details: {
16
16
  /**
17
+ * SEPA (Single Euro Payments Area) - Euro bank transfers across European countries
18
+ *
17
19
  * @generated from field: tzero.v1.common.PaymentDetails.Sepa sepa = 10;
18
20
  */
19
21
  value: PaymentDetails_Sepa;
20
22
  case: "sepa";
21
23
  } | {
22
24
  /**
25
+ * SWIFT (Society for Worldwide Interbank Financial Telecommunication) - International wire transfers
26
+ * Global (200+ countries)
27
+ *
23
28
  * @generated from field: tzero.v1.common.PaymentDetails.Swift swift = 30;
24
29
  */
25
30
  value: PaymentDetails_Swift;
26
31
  case: "swift";
27
32
  } | {
28
33
  /**
34
+ * Stablecoin - Cryptocurrency transfers pegged to fiat currencies
35
+ * Global
36
+ *
29
37
  * @generated from field: tzero.v1.common.PaymentDetails.Stablecoin stablecoin = 40;
30
38
  */
31
39
  value: PaymentDetails_Stablecoin;
32
40
  case: "stablecoin";
33
41
  } | {
34
42
  /**
43
+ * ACH (Automated Clearing House) - Electronic bank-to-bank transfers
44
+ * United States
45
+ *
35
46
  * @generated from field: tzero.v1.common.PaymentDetails.Ach ach = 50;
36
47
  */
37
48
  value: PaymentDetails_Ach;
38
49
  case: "ach";
39
50
  } | {
40
51
  /**
52
+ * Wire - Domestic electronic funds transfer
53
+ * United States
54
+ *
41
55
  * @generated from field: tzero.v1.common.PaymentDetails.Wire wire = 60;
42
56
  */
43
57
  value: PaymentDetails_Wire;
44
58
  case: "wire";
59
+ } | {
60
+ /**
61
+ * FPS (Faster Payments Service)
62
+ * United Kingdom
63
+ *
64
+ * @generated from field: tzero.v1.common.PaymentDetails.Fps fps = 70;
65
+ */
66
+ value: PaymentDetails_Fps;
67
+ case: "fps";
68
+ } | {
69
+ /**
70
+ * M-Pesa - Mobile money transfer and payment service
71
+ * Kenya, Tanzania, Mozambique, DRC, Lesotho, Ghana, Egypt, South Africa
72
+ *
73
+ * @generated from field: tzero.v1.common.PaymentDetails.MPesa mpesa = 80;
74
+ */
75
+ value: PaymentDetails_MPesa;
76
+ case: "mpesa";
77
+ } | {
78
+ /**
79
+ * GCash - Mobile wallet and payment platform
80
+ * Philippines
81
+ *
82
+ * @generated from field: tzero.v1.common.PaymentDetails.GCash gcash = 90;
83
+ */
84
+ value: PaymentDetails_GCash;
85
+ case: "gcash";
86
+ } | {
87
+ /**
88
+ * Indian Bank Transfer - Domestic electronic funds transfer (IMPS/NEFT/RTGS)
89
+ * India
90
+ *
91
+ * @generated from field: tzero.v1.common.PaymentDetails.IndianBankTransfer indian_bank_transfer = 100;
92
+ */
93
+ value: PaymentDetails_IndianBankTransfer;
94
+ case: "indianBankTransfer";
95
+ } | {
96
+ /**
97
+ * PESONet - Real-time domestic payments system
98
+ * Philippines
99
+ *
100
+ * @generated from field: tzero.v1.common.PaymentDetails.Pesonet pesonet = 110;
101
+ */
102
+ value: PaymentDetails_Pesonet;
103
+ case: "pesonet";
104
+ } | {
105
+ /**
106
+ * Instapay - Real-time domestic payments system
107
+ * Philippines
108
+ *
109
+ * @generated from field: tzero.v1.common.PaymentDetails.Instapay instapay = 120;
110
+ */
111
+ value: PaymentDetails_Instapay;
112
+ case: "instapay";
45
113
  } | {
46
114
  case: undefined;
47
115
  value?: undefined;
@@ -74,10 +142,210 @@ export type PaymentDetails_Sepa = Message<"tzero.v1.common.PaymentDetails.Sepa">
74
142
  * Use `create(PaymentDetails_SepaSchema)` to create a new message.
75
143
  */
76
144
  export declare const PaymentDetails_SepaSchema: GenMessage<PaymentDetails_Sepa>;
145
+ /**
146
+ * @generated from message tzero.v1.common.PaymentDetails.Fps
147
+ */
148
+ export type PaymentDetails_Fps = Message<"tzero.v1.common.PaymentDetails.Fps"> & {
149
+ /**
150
+ * @generated from field: string sort_code = 10;
151
+ */
152
+ sortCode: string;
153
+ /**
154
+ * @generated from field: string account_number = 20;
155
+ */
156
+ accountNumber: string;
157
+ /**
158
+ * @generated from field: string beneficiary_name = 30;
159
+ */
160
+ beneficiaryName: string;
161
+ /**
162
+ * @generated from field: string reference = 40;
163
+ */
164
+ reference: string;
165
+ };
166
+ /**
167
+ * Describes the message tzero.v1.common.PaymentDetails.Fps.
168
+ * Use `create(PaymentDetails_FpsSchema)` to create a new message.
169
+ */
170
+ export declare const PaymentDetails_FpsSchema: GenMessage<PaymentDetails_Fps>;
171
+ /**
172
+ * @generated from message tzero.v1.common.PaymentDetails.MPesa
173
+ */
174
+ export type PaymentDetails_MPesa = Message<"tzero.v1.common.PaymentDetails.MPesa"> & {
175
+ /**
176
+ * Phone number in international format without + sign
177
+ * Examples: 254708374149 (Kenya), 255712345678 (Tanzania), 256712345678 (Uganda)
178
+ * Required: Yes
179
+ *
180
+ * @generated from field: string beneficiary_phone = 10;
181
+ */
182
+ beneficiaryPhone: string;
183
+ /**
184
+ * Account reference (max 12 chars, alphanumeric)
185
+ * Required: Yes
186
+ *
187
+ * @generated from field: string account_reference = 20;
188
+ */
189
+ accountReference: string;
190
+ };
191
+ /**
192
+ * Describes the message tzero.v1.common.PaymentDetails.MPesa.
193
+ * Use `create(PaymentDetails_MPesaSchema)` to create a new message.
194
+ */
195
+ export declare const PaymentDetails_MPesaSchema: GenMessage<PaymentDetails_MPesa>;
196
+ /**
197
+ * @generated from message tzero.v1.common.PaymentDetails.GCash
198
+ */
199
+ export type PaymentDetails_GCash = Message<"tzero.v1.common.PaymentDetails.GCash"> & {
200
+ /**
201
+ * @generated from field: string beneficiary_name = 10;
202
+ */
203
+ beneficiaryName: string;
204
+ /**
205
+ * Recipient phone
206
+ *
207
+ * @generated from field: string beneficiary_phone = 20;
208
+ */
209
+ beneficiaryPhone: string;
210
+ /**
211
+ * @generated from field: string payment_reference = 30;
212
+ */
213
+ paymentReference: string;
214
+ };
215
+ /**
216
+ * Describes the message tzero.v1.common.PaymentDetails.GCash.
217
+ * Use `create(PaymentDetails_GCashSchema)` to create a new message.
218
+ */
219
+ export declare const PaymentDetails_GCashSchema: GenMessage<PaymentDetails_GCash>;
220
+ /**
221
+ * @generated from message tzero.v1.common.PaymentDetails.IndianBankTransfer
222
+ */
223
+ export type PaymentDetails_IndianBankTransfer = Message<"tzero.v1.common.PaymentDetails.IndianBankTransfer"> & {
224
+ /**
225
+ * @generated from oneof tzero.v1.common.PaymentDetails.IndianBankTransfer.method
226
+ */
227
+ method: {
228
+ /**
229
+ * 1) ACCOUNT + IFSC (NEFT/RTGS/IMPS P2A)
230
+ *
231
+ * @generated from field: tzero.v1.common.PaymentDetails.IndianBankTransfer.AccountIFSC account_ifsc = 10;
232
+ */
233
+ value: PaymentDetails_IndianBankTransfer_AccountIFSC;
234
+ case: "accountIfsc";
235
+ } | {
236
+ /**
237
+ * 2) IMPS P2P (MOBILE + MMID)
238
+ *
239
+ * @generated from field: tzero.v1.common.PaymentDetails.IndianBankTransfer.IMPS imps = 20;
240
+ */
241
+ value: PaymentDetails_IndianBankTransfer_IMPS;
242
+ case: "imps";
243
+ } | {
244
+ case: undefined;
245
+ value?: undefined;
246
+ };
247
+ /**
248
+ * Beneficiary name
249
+ *
250
+ * @generated from field: string beneficiary_name = 30;
251
+ */
252
+ beneficiaryName: string;
253
+ /**
254
+ * Beneficiary type
255
+ *
256
+ * @generated from field: string beneficiary_type = 40;
257
+ */
258
+ beneficiaryType: string;
259
+ /**
260
+ * @generated from field: string payment_reference = 50;
261
+ */
262
+ paymentReference: string;
263
+ };
264
+ /**
265
+ * Describes the message tzero.v1.common.PaymentDetails.IndianBankTransfer.
266
+ * Use `create(PaymentDetails_IndianBankTransferSchema)` to create a new message.
267
+ */
268
+ export declare const PaymentDetails_IndianBankTransferSchema: GenMessage<PaymentDetails_IndianBankTransfer>;
269
+ /**
270
+ * @generated from message tzero.v1.common.PaymentDetails.IndianBankTransfer.AccountIFSC
271
+ */
272
+ export type PaymentDetails_IndianBankTransfer_AccountIFSC = Message<"tzero.v1.common.PaymentDetails.IndianBankTransfer.AccountIFSC"> & {
273
+ /**
274
+ * Beneficiary bank account number
275
+ *
276
+ * @generated from field: string account_number = 10;
277
+ */
278
+ accountNumber: string;
279
+ /**
280
+ * IFSC code (11 characters: 4 letters + '0' + 6 alphanumeric).
281
+ *
282
+ * @generated from field: string ifsc = 20;
283
+ */
284
+ ifsc: string;
285
+ };
286
+ /**
287
+ * Describes the message tzero.v1.common.PaymentDetails.IndianBankTransfer.AccountIFSC.
288
+ * Use `create(PaymentDetails_IndianBankTransfer_AccountIFSCSchema)` to create a new message.
289
+ */
290
+ export declare const PaymentDetails_IndianBankTransfer_AccountIFSCSchema: GenMessage<PaymentDetails_IndianBankTransfer_AccountIFSC>;
291
+ /**
292
+ * Method 2: IMPS P2P (Mobile + MMID)
293
+ *
294
+ * @generated from message tzero.v1.common.PaymentDetails.IndianBankTransfer.IMPS
295
+ */
296
+ export type PaymentDetails_IndianBankTransfer_IMPS = Message<"tzero.v1.common.PaymentDetails.IndianBankTransfer.IMPS"> & {
297
+ /**
298
+ * Indian mobile number (10 digits, starting from 6–9).
299
+ *
300
+ * @generated from field: string beneficiary_phone = 10;
301
+ */
302
+ beneficiaryPhone: string;
303
+ /**
304
+ * MMID: 7-digit Mobile Money Identifier.
305
+ *
306
+ * @generated from field: string mmid = 20;
307
+ */
308
+ mmid: string;
309
+ };
310
+ /**
311
+ * Describes the message tzero.v1.common.PaymentDetails.IndianBankTransfer.IMPS.
312
+ * Use `create(PaymentDetails_IndianBankTransfer_IMPSSchema)` to create a new message.
313
+ */
314
+ export declare const PaymentDetails_IndianBankTransfer_IMPSSchema: GenMessage<PaymentDetails_IndianBankTransfer_IMPS>;
77
315
  /**
78
316
  * @generated from message tzero.v1.common.PaymentDetails.Swift
79
317
  */
80
- export type PaymentDetails_Swift = Message<"tzero.v1.common.PaymentDetails.Swift"> & {};
318
+ export type PaymentDetails_Swift = Message<"tzero.v1.common.PaymentDetails.Swift"> & {
319
+ /**
320
+ * Beneficiary's bank SWIFT/BIC code (8 or 11 characters)
321
+ *
322
+ * @generated from field: string swift_code = 10;
323
+ */
324
+ swiftCode: string;
325
+ /**
326
+ * Beneficiary's account number (format varies by country)
327
+ * Could be IBAN, account number, or other format
328
+ *
329
+ * @generated from field: string account_number = 20;
330
+ */
331
+ accountNumber: string;
332
+ /**
333
+ * Beneficiary's full name
334
+ *
335
+ * @generated from field: string beneficiary_name = 30;
336
+ */
337
+ beneficiaryName: string;
338
+ /**
339
+ * Beneficiary's address
340
+ *
341
+ * @generated from field: string beneficiary_address = 40;
342
+ */
343
+ beneficiaryAddress: string;
344
+ /**
345
+ * @generated from field: string payment_reference = 50;
346
+ */
347
+ paymentReference: string;
348
+ };
81
349
  /**
82
350
  * Describes the message tzero.v1.common.PaymentDetails.Swift.
83
351
  * Use `create(PaymentDetails_SwiftSchema)` to create a new message.
@@ -190,6 +458,79 @@ export type PaymentDetails_Wire = Message<"tzero.v1.common.PaymentDetails.Wire">
190
458
  * Use `create(PaymentDetails_WireSchema)` to create a new message.
191
459
  */
192
460
  export declare const PaymentDetails_WireSchema: GenMessage<PaymentDetails_Wire>;
461
+ /**
462
+ * @generated from message tzero.v1.common.PaymentDetails.Pesonet
463
+ */
464
+ export type PaymentDetails_Pesonet = Message<"tzero.v1.common.PaymentDetails.Pesonet"> & {
465
+ /**
466
+ * Recipient institution: receiving bank or participating non‑bank chosen from a PESONet list.
467
+ *
468
+ * @generated from field: string recipient_financial_institution = 10;
469
+ */
470
+ recipientFinancialInstitution: string;
471
+ /**
472
+ * Recipient identifier:
473
+ * Account number (some banks also allow email/mobile).
474
+ *
475
+ * @generated from field: string recipient_identifier = 20;
476
+ */
477
+ recipientIdentifier: string;
478
+ /**
479
+ * @generated from field: string recipient_account_name = 30;
480
+ */
481
+ recipientAccountName: string;
482
+ /**
483
+ * Purpose of Transfer (Optional/Mandatory depending on bank)
484
+ *
485
+ * @generated from field: optional string purpose_of_transfer = 40;
486
+ */
487
+ purposeOfTransfer?: string;
488
+ /**
489
+ * Recipient's Address/Email (Optional/Mandatory depending on bank)
490
+ *
491
+ * @generated from field: optional string recipient_address_email = 50;
492
+ */
493
+ recipientAddressEmail?: string;
494
+ };
495
+ /**
496
+ * Describes the message tzero.v1.common.PaymentDetails.Pesonet.
497
+ * Use `create(PaymentDetails_PesonetSchema)` to create a new message.
498
+ */
499
+ export declare const PaymentDetails_PesonetSchema: GenMessage<PaymentDetails_Pesonet>;
500
+ /**
501
+ * @generated from message tzero.v1.common.PaymentDetails.Instapay
502
+ */
503
+ export type PaymentDetails_Instapay = Message<"tzero.v1.common.PaymentDetails.Instapay"> & {
504
+ /**
505
+ * Recipient institution: receiving bank or e‑money issuer selected from an InstaPay list.
506
+ *
507
+ * @generated from field: string recipient_institution = 10;
508
+ */
509
+ recipientInstitution: string;
510
+ /**
511
+ * Recipient identifier (one of): Account number, or Mobile number, or Email address, or QR code (scanned/uploaded “InstaPay QR”).
512
+ *
513
+ * @generated from field: string recipient_identifier = 20;
514
+ */
515
+ recipientIdentifier: string;
516
+ /**
517
+ * Recipient account name: the name as registered on the account or wallet (may be auto-displayed but is logically required for correct routing/confirmation).
518
+ *
519
+ * @generated from field: string recipient_account_name = 30;
520
+ */
521
+ recipientAccountName: string;
522
+ /**
523
+ * Purpose of Transfer (Optional/Mandatory depending on bank)
524
+ *
525
+ * @generated from field: optional string purpose_of_transfer = 40;
526
+ */
527
+ purposeOfTransfer?: string;
528
+ };
529
+ /**
530
+ * Describes the message tzero.v1.common.PaymentDetails.Instapay.
531
+ * Use `create(PaymentDetails_InstapaySchema)` to create a new message.
532
+ */
533
+ export declare const PaymentDetails_InstapaySchema: GenMessage<PaymentDetails_Instapay>;
193
534
  /**
194
535
  * @generated from enum tzero.v1.common.PaymentMethodType
195
536
  */
@@ -225,7 +566,31 @@ export declare enum PaymentMethodType {
225
566
  /**
226
567
  * @generated from enum value: PAYMENT_METHOD_TYPE_WIRE = 60;
227
568
  */
228
- WIRE = 60
569
+ WIRE = 60,
570
+ /**
571
+ * @generated from enum value: PAYMENT_METHOD_TYPE_FPS = 70;
572
+ */
573
+ FPS = 70,
574
+ /**
575
+ * @generated from enum value: PAYMENT_METHOD_TYPE_M_PESA = 80;
576
+ */
577
+ M_PESA = 80,
578
+ /**
579
+ * @generated from enum value: PAYMENT_METHOD_TYPE_G_CASH = 90;
580
+ */
581
+ G_CASH = 90,
582
+ /**
583
+ * @generated from enum value: PAYMENT_METHOD_TYPE_INDIAN_BANK_TRANSFER = 100;
584
+ */
585
+ INDIAN_BANK_TRANSFER = 100,
586
+ /**
587
+ * @generated from enum value: PAYMENT_METHOD_TYPE_PESONET = 110;
588
+ */
589
+ PESONET = 110,
590
+ /**
591
+ * @generated from enum value: PAYMENT_METHOD_TYPE_INSTAPAY = 120;
592
+ */
593
+ INSTAPAY = 120
229
594
  }
230
595
  /**
231
596
  * Describes the enum tzero.v1.common.PaymentMethodType.
@@ -7,7 +7,7 @@ import { file_buf_validate_validate } from "../../../buf/validate/validate_pb.js
7
7
  /**
8
8
  * Describes the file tzero/v1/common/payment_method.proto.
9
9
  */
10
- export const file_tzero_v1_common_payment_method = /*@__PURE__*/ fileDesc("CiR0emVyby92MS9jb21tb24vcGF5bWVudF9tZXRob2QucHJvdG8SD3R6ZXJvLnYxLmNvbW1vbiLxCQoOUGF5bWVudERldGFpbHMSNAoEc2VwYRgKIAEoCzIkLnR6ZXJvLnYxLmNvbW1vbi5QYXltZW50RGV0YWlscy5TZXBhSAASNgoFc3dpZnQYHiABKAsyJS50emVyby52MS5jb21tb24uUGF5bWVudERldGFpbHMuU3dpZnRIABJACgpzdGFibGVjb2luGCggASgLMioudHplcm8udjEuY29tbW9uLlBheW1lbnREZXRhaWxzLlN0YWJsZWNvaW5IABIyCgNhY2gYMiABKAsyIy50emVyby52MS5jb21tb24uUGF5bWVudERldGFpbHMuQWNoSAASNAoEd2lyZRg8IAEoCzIkLnR6ZXJvLnYxLmNvbW1vbi5QYXltZW50RGV0YWlscy5XaXJlSAAahgEKBFNlcGESNAoEaWJhbhgUIAEoCUImukgjciEQDxgiMhteW0EtWl17Mn1bMC05XXsyfVtBLVowLTldKyQSIwoQYmVuZWZpY2lhcnlfbmFtZRgeIAEoCUIJukgGcgQQARhGEiMKEXBheW1lbnRfcmVmZXJlbmNlGCggASgJQgi6SAVyAxiMARoHCgVTd2lmdBqvAQoKU3RhYmxlY29pbhI3CgpibG9ja2NoYWluGAogASgOMhsudHplcm8udjEuY29tbW9uLkJsb2NrY2hhaW5CBrpIA8gBARI3CgpzdGFibGVjb2luGBQgASgOMhsudHplcm8udjEuY29tbW9uLlN0YWJsZWNvaW5CBrpIA8gBARIvCgdhZGRyZXNzGB4gASgJQh66SBtyGRAUGEAyE14oMHgpP1thLWZBLUYwLTldKyQazgIKA0FjaBItCg5yb3V0aW5nX251bWJlchgKIAEoCUIVukgSchAQCRgJMgpeWzAtOV17OX0kEisKDmFjY291bnRfbnVtYmVyGBQgASgJQhO6SBByDhABGBEyCF5bMC05XSskEiYKE2FjY291bnRfaG9sZGVyX25hbWUYHiABKAlCCbpIBnIEEAEYRhJSCgxhY2NvdW50X3R5cGUYKCABKA4yMi50emVyby52MS5jb21tb24uUGF5bWVudERldGFpbHMuQWNoLkFjaEFjY291bnRUeXBlQgi6SAWCAQIgACJvCg5BY2hBY2NvdW50VHlwZRIgChxBQ0hfQUNDT1VOVF9UWVBFX1VOU1BFQ0lGSUVEEAASHQoZQUNIX0FDQ09VTlRfVFlQRV9DSEVDS0lORxAKEhwKGEFDSF9BQ0NPVU5UX1RZUEVfU0FWSU5HUxAUGp0CCgRXaXJlEhwKCWJhbmtfbmFtZRgKIAEoCUIJukgGcgQQARhGEiAKDGJhbmtfYWRkcmVzcxgUIAEoCUIKukgHcgUQARiMARJCCgpzd2lmdF9jb2RlGB4gASgJQi66SCtyKRAIGAsyI15bQS1aXXs2fVtBLVowLTldezJ9KFtBLVowLTldezN9KT8kEiEKDmFjY291bnRfbnVtYmVyGCggASgJQgm6SAZyBBABGCISIwoQYmVuZWZpY2lhcnlfbmFtZRgyIAEoCUIJukgGcgQQARhGEicKE2JlbmVmaWNpYXJ5X2FkZHJlc3MYPCABKAlCCrpIB3IFEAEYjAESIAoOd2lyZV9yZWZlcmVuY2UYRiABKAlCCLpIBXIDGIwBQhAKB2RldGFpbHMSBbpIAggBKvIBChFQYXltZW50TWV0aG9kVHlwZRIjCh9QQVlNRU5UX01FVEhPRF9UWVBFX1VOU1BFQ0lGSUVEEAASHAoYUEFZTUVOVF9NRVRIT0RfVFlQRV9TRVBBEAoSHQoZUEFZTUVOVF9NRVRIT0RfVFlQRV9TV0lGVBAUEhwKGFBBWU1FTlRfTUVUSE9EX1RZUEVfQ0FSRBAeEiIKHlBBWU1FTlRfTUVUSE9EX1RZUEVfU1RBQkxFQ09JThAoEhsKF1BBWU1FTlRfTUVUSE9EX1RZUEVfQUNIEDISHAoYUEFZTUVOVF9NRVRIT0RfVFlQRV9XSVJFEDxChwEKE2NvbS50emVyby52MS5jb21tb25CElBheW1lbnRNZXRob2RQcm90b1ABogIDVFZDqgIPVHplcm8uVjEuQ29tbW9uygIPVHplcm9cVjFcQ29tbW9u4gIbVHplcm9cVjFcQ29tbW9uXEdQQk1ldGFkYXRh6gIRVHplcm86OlYxOjpDb21tb25iBnByb3RvMw", [file_tzero_v1_common_common, file_buf_validate_validate]);
10
+ export const file_tzero_v1_common_payment_method = /*@__PURE__*/ fileDesc("CiR0emVyby92MS9jb21tb24vcGF5bWVudF9tZXRob2QucHJvdG8SD3R6ZXJvLnYxLmNvbW1vbiKCGgoOUGF5bWVudERldGFpbHMSNAoEc2VwYRgKIAEoCzIkLnR6ZXJvLnYxLmNvbW1vbi5QYXltZW50RGV0YWlscy5TZXBhSAASNgoFc3dpZnQYHiABKAsyJS50emVyby52MS5jb21tb24uUGF5bWVudERldGFpbHMuU3dpZnRIABJACgpzdGFibGVjb2luGCggASgLMioudHplcm8udjEuY29tbW9uLlBheW1lbnREZXRhaWxzLlN0YWJsZWNvaW5IABIyCgNhY2gYMiABKAsyIy50emVyby52MS5jb21tb24uUGF5bWVudERldGFpbHMuQWNoSAASNAoEd2lyZRg8IAEoCzIkLnR6ZXJvLnYxLmNvbW1vbi5QYXltZW50RGV0YWlscy5XaXJlSAASMgoDZnBzGEYgASgLMiMudHplcm8udjEuY29tbW9uLlBheW1lbnREZXRhaWxzLkZwc0gAEjYKBW1wZXNhGFAgASgLMiUudHplcm8udjEuY29tbW9uLlBheW1lbnREZXRhaWxzLk1QZXNhSAASNgoFZ2Nhc2gYWiABKAsyJS50emVyby52MS5jb21tb24uUGF5bWVudERldGFpbHMuR0Nhc2hIABJSChRpbmRpYW5fYmFua190cmFuc2ZlchhkIAEoCzIyLnR6ZXJvLnYxLmNvbW1vbi5QYXltZW50RGV0YWlscy5JbmRpYW5CYW5rVHJhbnNmZXJIABI6CgdwZXNvbmV0GG4gASgLMicudHplcm8udjEuY29tbW9uLlBheW1lbnREZXRhaWxzLlBlc29uZXRIABI8CghpbnN0YXBheRh4IAEoCzIoLnR6ZXJvLnYxLmNvbW1vbi5QYXltZW50RGV0YWlscy5JbnN0YXBheUgAGoYBCgRTZXBhEjQKBGliYW4YFCABKAlCJrpII3IhEA8YIjIbXltBLVpdezJ9WzAtOV17Mn1bQS1aMC05XSskEiMKEGJlbmVmaWNpYXJ5X25hbWUYHiABKAlCCbpIBnIEEAEYRhIjChFwYXltZW50X3JlZmVyZW5jZRgoIAEoCUIIukgFcgMYjAEavAEKA0ZwcxJFCglzb3J0X2NvZGUYCiABKAlCMrpIL3ItEAYYCDInXihbMC05XXsyfS1bMC05XXsyfS1bMC05XXsyfXxbMC05XXs2fSkkEi0KDmFjY291bnRfbnVtYmVyGBQgASgJQhW6SBJyEBAIGAgyCl5bMC05XXs4fSQSIwoQYmVuZWZpY2lhcnlfbmFtZRgeIAEoCUIJukgGcgQQARgSEhoKCXJlZmVyZW5jZRgoIAEoCUIHukgEcgIYEhpzCgVNUGVzYRI0ChFiZW5lZmljaWFyeV9waG9uZRgKIAEoCUIZukgWchQQChgPMg5eWzAtOV17MTAsMTV9JBI0ChFhY2NvdW50X3JlZmVyZW5jZRgUIAEoCUIZukgWchQQARgMMg5eW2EtekEtWjAtOV0rJBqFAQoFR0Nhc2gSIwoQYmVuZWZpY2lhcnlfbmFtZRgKIAEoCUIJukgGcgQQARhkEjIKEWJlbmVmaWNpYXJ5X3Bob25lGBQgASgJQhe6SBRyEhAKGBQyDF5bK10/WzAtOV0rJBIjChFwYXltZW50X3JlZmVyZW5jZRgeIAEoCUIIukgFcgMYjAEaiwQKEkluZGlhbkJhbmtUcmFuc2ZlchJWCgxhY2NvdW50X2lmc2MYCiABKAsyPi50emVyby52MS5jb21tb24uUGF5bWVudERldGFpbHMuSW5kaWFuQmFua1RyYW5zZmVyLkFjY291bnRJRlNDSAASRwoEaW1wcxgUIAEoCzI3LnR6ZXJvLnYxLmNvbW1vbi5QYXltZW50RGV0YWlscy5JbmRpYW5CYW5rVHJhbnNmZXIuSU1QU0gAEiMKEGJlbmVmaWNpYXJ5X25hbWUYHiABKAlCCbpIBnIEEAEYRhIjChBiZW5lZmljaWFyeV90eXBlGCggASgJQgm6SAZyBBAIGB4SIwoRcGF5bWVudF9yZWZlcmVuY2UYMiABKAlCCLpIBXIDGIwBGnAKC0FjY291bnRJRlNDEjAKDmFjY291bnRfbnVtYmVyGAogASgJQhi6SBVyExAJGBIyDV5bMC05XXs5LDE4fSQSLwoEaWZzYxgUIAEoCUIhukgechwQCxgLMhZeW0EtWl17NH0wW0EtWjAtOV17Nn0kGmIKBElNUFMSNQoRYmVuZWZpY2lhcnlfcGhvbmUYCiABKAlCGrpIF3IVEAoYCjIPXls2LTldWzAtOV17OX0kEiMKBG1taWQYFCABKAlCFbpIEnIQEAcYBzIKXlswLTldezd9JEIPCgZtZXRob2QSBbpIAggBGuoBCgVTd2lmdBJKCgpzd2lmdF9jb2RlGAogASgJQja6SDNyMRAIGAsyK15bQS1aXXs0fVtBLVpdezJ9W0EtWjAtOV17Mn0oW0EtWjAtOV17M30pPyQSIQoOYWNjb3VudF9udW1iZXIYFCABKAlCCbpIBnIEEAEYIhIkChBiZW5lZmljaWFyeV9uYW1lGB4gASgJQgq6SAdyBRABGIwBEicKE2JlbmVmaWNpYXJ5X2FkZHJlc3MYKCABKAlCCrpIB3IFEAEY/wESIwoRcGF5bWVudF9yZWZlcmVuY2UYMiABKAlCCLpIBXIDGIwBGq8BCgpTdGFibGVjb2luEjcKCmJsb2NrY2hhaW4YCiABKA4yGy50emVyby52MS5jb21tb24uQmxvY2tjaGFpbkIGukgDyAEBEjcKCnN0YWJsZWNvaW4YFCABKA4yGy50emVyby52MS5jb21tb24uU3RhYmxlY29pbkIGukgDyAEBEi8KB2FkZHJlc3MYHiABKAlCHrpIG3IZEBQYQDITXigweCk/W2EtZkEtRjAtOV0rJBrOAgoDQWNoEi0KDnJvdXRpbmdfbnVtYmVyGAogASgJQhW6SBJyEBAJGAkyCl5bMC05XXs5fSQSKwoOYWNjb3VudF9udW1iZXIYFCABKAlCE7pIEHIOEAEYETIIXlswLTldKyQSJgoTYWNjb3VudF9ob2xkZXJfbmFtZRgeIAEoCUIJukgGcgQQARhGElIKDGFjY291bnRfdHlwZRgoIAEoDjIyLnR6ZXJvLnYxLmNvbW1vbi5QYXltZW50RGV0YWlscy5BY2guQWNoQWNjb3VudFR5cGVCCLpIBYIBAiAAIm8KDkFjaEFjY291bnRUeXBlEiAKHEFDSF9BQ0NPVU5UX1RZUEVfVU5TUEVDSUZJRUQQABIdChlBQ0hfQUNDT1VOVF9UWVBFX0NIRUNLSU5HEAoSHAoYQUNIX0FDQ09VTlRfVFlQRV9TQVZJTkdTEBQanQIKBFdpcmUSHAoJYmFua19uYW1lGAogASgJQgm6SAZyBBABGEYSIAoMYmFua19hZGRyZXNzGBQgASgJQgq6SAdyBRABGIwBEkIKCnN3aWZ0X2NvZGUYHiABKAlCLrpIK3IpEAgYCzIjXltBLVpdezZ9W0EtWjAtOV17Mn0oW0EtWjAtOV17M30pPyQSIQoOYWNjb3VudF9udW1iZXIYKCABKAlCCbpIBnIEEAEYIhIjChBiZW5lZmljaWFyeV9uYW1lGDIgASgJQgm6SAZyBBABGEYSJwoTYmVuZWZpY2lhcnlfYWRkcmVzcxg8IAEoCUIKukgHcgUQARiMARIgCg53aXJlX3JlZmVyZW5jZRhGIAEoCUIIukgFcgMYjAEaoQIKB1Blc29uZXQSMgofcmVjaXBpZW50X2ZpbmFuY2lhbF9pbnN0aXR1dGlvbhgKIAEoCUIJukgGcgQQARhGEicKFHJlY2lwaWVudF9pZGVudGlmaWVyGBQgASgJQgm6SAZyBBABGEYSJwoWcmVjaXBpZW50X2FjY291bnRfbmFtZRgeIAEoCUIHukgEcgIYEhIqChNwdXJwb3NlX29mX3RyYW5zZmVyGCggASgJQgi6SAVyAxiMAUgAiAEBEjAKF3JlY2lwaWVudF9hZGRyZXNzX2VtYWlsGDIgASgJQgq6SAdyBRABGIAESAGIAQFCFgoUX3B1cnBvc2Vfb2ZfdHJhbnNmZXJCGgoYX3JlY2lwaWVudF9hZGRyZXNzX2VtYWlsGsoBCghJbnN0YXBheRIoChVyZWNpcGllbnRfaW5zdGl0dXRpb24YCiABKAlCCbpIBnIEEAEYRhInChRyZWNpcGllbnRfaWRlbnRpZmllchgUIAEoCUIJukgGcgQQARhGEicKFnJlY2lwaWVudF9hY2NvdW50X25hbWUYHiABKAlCB7pIBHICGDISKgoTcHVycG9zZV9vZl90cmFuc2ZlchgoIAEoCUIIukgFcgMYjAFIAIgBAUIWChRfcHVycG9zZV9vZl90cmFuc2ZlckIQCgdkZXRhaWxzEgW6SAIIASrAAwoRUGF5bWVudE1ldGhvZFR5cGUSIwofUEFZTUVOVF9NRVRIT0RfVFlQRV9VTlNQRUNJRklFRBAAEhwKGFBBWU1FTlRfTUVUSE9EX1RZUEVfU0VQQRAKEh0KGVBBWU1FTlRfTUVUSE9EX1RZUEVfU1dJRlQQFBIcChhQQVlNRU5UX01FVEhPRF9UWVBFX0NBUkQQHhIiCh5QQVlNRU5UX01FVEhPRF9UWVBFX1NUQUJMRUNPSU4QKBIbChdQQVlNRU5UX01FVEhPRF9UWVBFX0FDSBAyEhwKGFBBWU1FTlRfTUVUSE9EX1RZUEVfV0lSRRA8EhsKF1BBWU1FTlRfTUVUSE9EX1RZUEVfRlBTEEYSHgoaUEFZTUVOVF9NRVRIT0RfVFlQRV9NX1BFU0EQUBIeChpQQVlNRU5UX01FVEhPRF9UWVBFX0dfQ0FTSBBaEiwKKFBBWU1FTlRfTUVUSE9EX1RZUEVfSU5ESUFOX0JBTktfVFJBTlNGRVIQZBIfChtQQVlNRU5UX01FVEhPRF9UWVBFX1BFU09ORVQQbhIgChxQQVlNRU5UX01FVEhPRF9UWVBFX0lOU1RBUEFZEHhChwEKE2NvbS50emVyby52MS5jb21tb25CElBheW1lbnRNZXRob2RQcm90b1ABogIDVFZDqgIPVHplcm8uVjEuQ29tbW9uygIPVHplcm9cVjFcQ29tbW9u4gIbVHplcm9cVjFcQ29tbW9uXEdQQk1ldGFkYXRh6gIRVHplcm86OlYxOjpDb21tb25iBnByb3RvMw", [file_tzero_v1_common_common, file_buf_validate_validate]);
11
11
  /**
12
12
  * Describes the message tzero.v1.common.PaymentDetails.
13
13
  * Use `create(PaymentDetailsSchema)` to create a new message.
@@ -18,21 +18,51 @@ export const PaymentDetailsSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_comm
18
18
  * Use `create(PaymentDetails_SepaSchema)` to create a new message.
19
19
  */
20
20
  export const PaymentDetails_SepaSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 0);
21
+ /**
22
+ * Describes the message tzero.v1.common.PaymentDetails.Fps.
23
+ * Use `create(PaymentDetails_FpsSchema)` to create a new message.
24
+ */
25
+ export const PaymentDetails_FpsSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 1);
26
+ /**
27
+ * Describes the message tzero.v1.common.PaymentDetails.MPesa.
28
+ * Use `create(PaymentDetails_MPesaSchema)` to create a new message.
29
+ */
30
+ export const PaymentDetails_MPesaSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 2);
31
+ /**
32
+ * Describes the message tzero.v1.common.PaymentDetails.GCash.
33
+ * Use `create(PaymentDetails_GCashSchema)` to create a new message.
34
+ */
35
+ export const PaymentDetails_GCashSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 3);
36
+ /**
37
+ * Describes the message tzero.v1.common.PaymentDetails.IndianBankTransfer.
38
+ * Use `create(PaymentDetails_IndianBankTransferSchema)` to create a new message.
39
+ */
40
+ export const PaymentDetails_IndianBankTransferSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 4);
41
+ /**
42
+ * Describes the message tzero.v1.common.PaymentDetails.IndianBankTransfer.AccountIFSC.
43
+ * Use `create(PaymentDetails_IndianBankTransfer_AccountIFSCSchema)` to create a new message.
44
+ */
45
+ export const PaymentDetails_IndianBankTransfer_AccountIFSCSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 4, 0);
46
+ /**
47
+ * Describes the message tzero.v1.common.PaymentDetails.IndianBankTransfer.IMPS.
48
+ * Use `create(PaymentDetails_IndianBankTransfer_IMPSSchema)` to create a new message.
49
+ */
50
+ export const PaymentDetails_IndianBankTransfer_IMPSSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 4, 1);
21
51
  /**
22
52
  * Describes the message tzero.v1.common.PaymentDetails.Swift.
23
53
  * Use `create(PaymentDetails_SwiftSchema)` to create a new message.
24
54
  */
25
- export const PaymentDetails_SwiftSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 1);
55
+ export const PaymentDetails_SwiftSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 5);
26
56
  /**
27
57
  * Describes the message tzero.v1.common.PaymentDetails.Stablecoin.
28
58
  * Use `create(PaymentDetails_StablecoinSchema)` to create a new message.
29
59
  */
30
- export const PaymentDetails_StablecoinSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 2);
60
+ export const PaymentDetails_StablecoinSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 6);
31
61
  /**
32
62
  * Describes the message tzero.v1.common.PaymentDetails.Ach.
33
63
  * Use `create(PaymentDetails_AchSchema)` to create a new message.
34
64
  */
35
- export const PaymentDetails_AchSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 3);
65
+ export const PaymentDetails_AchSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 7);
36
66
  /**
37
67
  * @generated from enum tzero.v1.common.PaymentDetails.Ach.AchAccountType
38
68
  */
@@ -54,12 +84,22 @@ export var PaymentDetails_Ach_AchAccountType;
54
84
  /**
55
85
  * Describes the enum tzero.v1.common.PaymentDetails.Ach.AchAccountType.
56
86
  */
57
- export const PaymentDetails_Ach_AchAccountTypeSchema = /*@__PURE__*/ enumDesc(file_tzero_v1_common_payment_method, 0, 3, 0);
87
+ export const PaymentDetails_Ach_AchAccountTypeSchema = /*@__PURE__*/ enumDesc(file_tzero_v1_common_payment_method, 0, 7, 0);
58
88
  /**
59
89
  * Describes the message tzero.v1.common.PaymentDetails.Wire.
60
90
  * Use `create(PaymentDetails_WireSchema)` to create a new message.
61
91
  */
62
- export const PaymentDetails_WireSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 4);
92
+ export const PaymentDetails_WireSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 8);
93
+ /**
94
+ * Describes the message tzero.v1.common.PaymentDetails.Pesonet.
95
+ * Use `create(PaymentDetails_PesonetSchema)` to create a new message.
96
+ */
97
+ export const PaymentDetails_PesonetSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 9);
98
+ /**
99
+ * Describes the message tzero.v1.common.PaymentDetails.Instapay.
100
+ * Use `create(PaymentDetails_InstapaySchema)` to create a new message.
101
+ */
102
+ export const PaymentDetails_InstapaySchema = /*@__PURE__*/ messageDesc(file_tzero_v1_common_payment_method, 0, 10);
63
103
  /**
64
104
  * @generated from enum tzero.v1.common.PaymentMethodType
65
105
  */
@@ -97,6 +137,30 @@ export var PaymentMethodType;
97
137
  * @generated from enum value: PAYMENT_METHOD_TYPE_WIRE = 60;
98
138
  */
99
139
  PaymentMethodType[PaymentMethodType["WIRE"] = 60] = "WIRE";
140
+ /**
141
+ * @generated from enum value: PAYMENT_METHOD_TYPE_FPS = 70;
142
+ */
143
+ PaymentMethodType[PaymentMethodType["FPS"] = 70] = "FPS";
144
+ /**
145
+ * @generated from enum value: PAYMENT_METHOD_TYPE_M_PESA = 80;
146
+ */
147
+ PaymentMethodType[PaymentMethodType["M_PESA"] = 80] = "M_PESA";
148
+ /**
149
+ * @generated from enum value: PAYMENT_METHOD_TYPE_G_CASH = 90;
150
+ */
151
+ PaymentMethodType[PaymentMethodType["G_CASH"] = 90] = "G_CASH";
152
+ /**
153
+ * @generated from enum value: PAYMENT_METHOD_TYPE_INDIAN_BANK_TRANSFER = 100;
154
+ */
155
+ PaymentMethodType[PaymentMethodType["INDIAN_BANK_TRANSFER"] = 100] = "INDIAN_BANK_TRANSFER";
156
+ /**
157
+ * @generated from enum value: PAYMENT_METHOD_TYPE_PESONET = 110;
158
+ */
159
+ PaymentMethodType[PaymentMethodType["PESONET"] = 110] = "PESONET";
160
+ /**
161
+ * @generated from enum value: PAYMENT_METHOD_TYPE_INSTAPAY = 120;
162
+ */
163
+ PaymentMethodType[PaymentMethodType["INSTAPAY"] = 120] = "INSTAPAY";
100
164
  })(PaymentMethodType || (PaymentMethodType = {}));
101
165
  /**
102
166
  * Describes the enum tzero.v1.common.PaymentMethodType.