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

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t-0/provider-starter-ts",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "CLI tool to scaffold a Node.js t-0 Network integration service",
5
5
  "main": "dist/create.js",
6
6
  "bin": {
@@ -107,9 +107,9 @@
107
107
  }
108
108
  },
109
109
  "node_modules/@t-0/provider-sdk": {
110
- "version": "1.0.33",
111
- "resolved": "https://registry.npmjs.org/@t-0/provider-sdk/-/provider-sdk-1.0.33.tgz",
112
- "integrity": "sha512-dh/cz6TFNBVqKBFlZP6Ir6w8qdHhNFl+ewnMbZlAyh7pkhdVVE4I4tqNe8oAsQ/rCRxxGdof19dxNDPDxMfnfA==",
110
+ "version": "1.0.35",
111
+ "resolved": "https://registry.npmjs.org/@t-0/provider-sdk/-/provider-sdk-1.0.35.tgz",
112
+ "integrity": "sha512-Gz9mmWE+ye8h1OR7tUSem1BSj/PxdpidW1zGEjtMtsmFw13nAehbiFWxV63N3Mj+Gyd2ZqHhwfDoF4qdkLq78g==",
113
113
  "dependencies": {
114
114
  "@bufbuild/protobuf": "^2.10.0",
115
115
  "@connectrpc/connect": "^2.1.0",
@@ -164,7 +164,6 @@
164
164
  "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
165
165
  "dev": true,
166
166
  "license": "MIT",
167
- "peer": true,
168
167
  "bin": {
169
168
  "acorn": "bin/acorn"
170
169
  },
@@ -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.
@@ -3,14 +3,14 @@
3
3
  // @generated from file tzero/v1/common/payment_method.proto (package tzero.v1.common, syntax proto3)
4
4
  /* eslint-disable */
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.PaymentMethodTypeSchema = exports.PaymentMethodType = exports.PaymentDetails_WireSchema = exports.PaymentDetails_Ach_AchAccountTypeSchema = exports.PaymentDetails_Ach_AchAccountType = exports.PaymentDetails_AchSchema = exports.PaymentDetails_StablecoinSchema = exports.PaymentDetails_SwiftSchema = exports.PaymentDetails_SepaSchema = exports.PaymentDetailsSchema = exports.file_tzero_v1_common_payment_method = void 0;
6
+ exports.PaymentMethodTypeSchema = exports.PaymentMethodType = exports.PaymentDetails_InstapaySchema = exports.PaymentDetails_PesonetSchema = exports.PaymentDetails_WireSchema = exports.PaymentDetails_Ach_AchAccountTypeSchema = exports.PaymentDetails_Ach_AchAccountType = exports.PaymentDetails_AchSchema = exports.PaymentDetails_StablecoinSchema = exports.PaymentDetails_SwiftSchema = exports.PaymentDetails_IndianBankTransfer_IMPSSchema = exports.PaymentDetails_IndianBankTransfer_AccountIFSCSchema = exports.PaymentDetails_IndianBankTransferSchema = exports.PaymentDetails_GCashSchema = exports.PaymentDetails_MPesaSchema = exports.PaymentDetails_FpsSchema = exports.PaymentDetails_SepaSchema = exports.PaymentDetailsSchema = exports.file_tzero_v1_common_payment_method = void 0;
7
7
  const codegenv2_1 = require("@bufbuild/protobuf/codegenv2");
8
8
  const common_pb_js_1 = require("./common_pb.js");
9
9
  const validate_pb_js_1 = require("../../../buf/validate/validate_pb.js");
10
10
  /**
11
11
  * Describes the file tzero/v1/common/payment_method.proto.
12
12
  */
13
- exports.file_tzero_v1_common_payment_method = (0, codegenv2_1.fileDesc)("CiR0emVyby92MS9jb21tb24vcGF5bWVudF9tZXRob2QucHJvdG8SD3R6ZXJvLnYxLmNvbW1vbiLxCQoOUGF5bWVudERldGFpbHMSNAoEc2VwYRgKIAEoCzIkLnR6ZXJvLnYxLmNvbW1vbi5QYXltZW50RGV0YWlscy5TZXBhSAASNgoFc3dpZnQYHiABKAsyJS50emVyby52MS5jb21tb24uUGF5bWVudERldGFpbHMuU3dpZnRIABJACgpzdGFibGVjb2luGCggASgLMioudHplcm8udjEuY29tbW9uLlBheW1lbnREZXRhaWxzLlN0YWJsZWNvaW5IABIyCgNhY2gYMiABKAsyIy50emVyby52MS5jb21tb24uUGF5bWVudERldGFpbHMuQWNoSAASNAoEd2lyZRg8IAEoCzIkLnR6ZXJvLnYxLmNvbW1vbi5QYXltZW50RGV0YWlscy5XaXJlSAAahgEKBFNlcGESNAoEaWJhbhgUIAEoCUImukgjciEQDxgiMhteW0EtWl17Mn1bMC05XXsyfVtBLVowLTldKyQSIwoQYmVuZWZpY2lhcnlfbmFtZRgeIAEoCUIJukgGcgQQARhGEiMKEXBheW1lbnRfcmVmZXJlbmNlGCggASgJQgi6SAVyAxiMARoHCgVTd2lmdBqvAQoKU3RhYmxlY29pbhI3CgpibG9ja2NoYWluGAogASgOMhsudHplcm8udjEuY29tbW9uLkJsb2NrY2hhaW5CBrpIA8gBARI3CgpzdGFibGVjb2luGBQgASgOMhsudHplcm8udjEuY29tbW9uLlN0YWJsZWNvaW5CBrpIA8gBARIvCgdhZGRyZXNzGB4gASgJQh66SBtyGRAUGEAyE14oMHgpP1thLWZBLUYwLTldKyQazgIKA0FjaBItCg5yb3V0aW5nX251bWJlchgKIAEoCUIVukgSchAQCRgJMgpeWzAtOV17OX0kEisKDmFjY291bnRfbnVtYmVyGBQgASgJQhO6SBByDhABGBEyCF5bMC05XSskEiYKE2FjY291bnRfaG9sZGVyX25hbWUYHiABKAlCCbpIBnIEEAEYRhJSCgxhY2NvdW50X3R5cGUYKCABKA4yMi50emVyby52MS5jb21tb24uUGF5bWVudERldGFpbHMuQWNoLkFjaEFjY291bnRUeXBlQgi6SAWCAQIgACJvCg5BY2hBY2NvdW50VHlwZRIgChxBQ0hfQUNDT1VOVF9UWVBFX1VOU1BFQ0lGSUVEEAASHQoZQUNIX0FDQ09VTlRfVFlQRV9DSEVDS0lORxAKEhwKGEFDSF9BQ0NPVU5UX1RZUEVfU0FWSU5HUxAUGp0CCgRXaXJlEhwKCWJhbmtfbmFtZRgKIAEoCUIJukgGcgQQARhGEiAKDGJhbmtfYWRkcmVzcxgUIAEoCUIKukgHcgUQARiMARJCCgpzd2lmdF9jb2RlGB4gASgJQi66SCtyKRAIGAsyI15bQS1aXXs2fVtBLVowLTldezJ9KFtBLVowLTldezN9KT8kEiEKDmFjY291bnRfbnVtYmVyGCggASgJQgm6SAZyBBABGCISIwoQYmVuZWZpY2lhcnlfbmFtZRgyIAEoCUIJukgGcgQQARhGEicKE2JlbmVmaWNpYXJ5X2FkZHJlc3MYPCABKAlCCrpIB3IFEAEYjAESIAoOd2lyZV9yZWZlcmVuY2UYRiABKAlCCLpIBXIDGIwBQhAKB2RldGFpbHMSBbpIAggBKvIBChFQYXltZW50TWV0aG9kVHlwZRIjCh9QQVlNRU5UX01FVEhPRF9UWVBFX1VOU1BFQ0lGSUVEEAASHAoYUEFZTUVOVF9NRVRIT0RfVFlQRV9TRVBBEAoSHQoZUEFZTUVOVF9NRVRIT0RfVFlQRV9TV0lGVBAUEhwKGFBBWU1FTlRfTUVUSE9EX1RZUEVfQ0FSRBAeEiIKHlBBWU1FTlRfTUVUSE9EX1RZUEVfU1RBQkxFQ09JThAoEhsKF1BBWU1FTlRfTUVUSE9EX1RZUEVfQUNIEDISHAoYUEFZTUVOVF9NRVRIT0RfVFlQRV9XSVJFEDxChwEKE2NvbS50emVyby52MS5jb21tb25CElBheW1lbnRNZXRob2RQcm90b1ABogIDVFZDqgIPVHplcm8uVjEuQ29tbW9uygIPVHplcm9cVjFcQ29tbW9u4gIbVHplcm9cVjFcQ29tbW9uXEdQQk1ldGFkYXRh6gIRVHplcm86OlYxOjpDb21tb25iBnByb3RvMw", [common_pb_js_1.file_tzero_v1_common_common, validate_pb_js_1.file_buf_validate_validate]);
13
+ exports.file_tzero_v1_common_payment_method = (0, codegenv2_1.fileDesc)("CiR0emVyby92MS9jb21tb24vcGF5bWVudF9tZXRob2QucHJvdG8SD3R6ZXJvLnYxLmNvbW1vbiKCGgoOUGF5bWVudERldGFpbHMSNAoEc2VwYRgKIAEoCzIkLnR6ZXJvLnYxLmNvbW1vbi5QYXltZW50RGV0YWlscy5TZXBhSAASNgoFc3dpZnQYHiABKAsyJS50emVyby52MS5jb21tb24uUGF5bWVudERldGFpbHMuU3dpZnRIABJACgpzdGFibGVjb2luGCggASgLMioudHplcm8udjEuY29tbW9uLlBheW1lbnREZXRhaWxzLlN0YWJsZWNvaW5IABIyCgNhY2gYMiABKAsyIy50emVyby52MS5jb21tb24uUGF5bWVudERldGFpbHMuQWNoSAASNAoEd2lyZRg8IAEoCzIkLnR6ZXJvLnYxLmNvbW1vbi5QYXltZW50RGV0YWlscy5XaXJlSAASMgoDZnBzGEYgASgLMiMudHplcm8udjEuY29tbW9uLlBheW1lbnREZXRhaWxzLkZwc0gAEjYKBW1wZXNhGFAgASgLMiUudHplcm8udjEuY29tbW9uLlBheW1lbnREZXRhaWxzLk1QZXNhSAASNgoFZ2Nhc2gYWiABKAsyJS50emVyby52MS5jb21tb24uUGF5bWVudERldGFpbHMuR0Nhc2hIABJSChRpbmRpYW5fYmFua190cmFuc2ZlchhkIAEoCzIyLnR6ZXJvLnYxLmNvbW1vbi5QYXltZW50RGV0YWlscy5JbmRpYW5CYW5rVHJhbnNmZXJIABI6CgdwZXNvbmV0GG4gASgLMicudHplcm8udjEuY29tbW9uLlBheW1lbnREZXRhaWxzLlBlc29uZXRIABI8CghpbnN0YXBheRh4IAEoCzIoLnR6ZXJvLnYxLmNvbW1vbi5QYXltZW50RGV0YWlscy5JbnN0YXBheUgAGoYBCgRTZXBhEjQKBGliYW4YFCABKAlCJrpII3IhEA8YIjIbXltBLVpdezJ9WzAtOV17Mn1bQS1aMC05XSskEiMKEGJlbmVmaWNpYXJ5X25hbWUYHiABKAlCCbpIBnIEEAEYRhIjChFwYXltZW50X3JlZmVyZW5jZRgoIAEoCUIIukgFcgMYjAEavAEKA0ZwcxJFCglzb3J0X2NvZGUYCiABKAlCMrpIL3ItEAYY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W0EtWjAtOV17Mn0oW0EtWjAtOV17M30pPyQSIQoOYWNjb3VudF9udW1iZXIYKCABKAlCCbpIBnIEEAEYIhIjChBiZW5lZmljaWFyeV9uYW1lGDIgASgJQgm6SAZyBBABGEYSJwoTYmVuZWZpY2lhcnlfYWRkcmVzcxg8IAEoCUIKukgHcgUQARiMARIgCg53aXJlX3JlZmVyZW5jZRhGIAEoCUIIukgFcgMYjAEaoQIKB1Blc29uZXQSMgofcmVjaXBpZW50X2ZpbmFuY2lhbF9pbnN0aXR1dGlvbhgKIAEoCUIJukgGcgQQARhGEicKFHJlY2lwaWVudF9pZGVudGlmaWVyGBQgASgJQgm6SAZyBBABGEYSJwoWcmVjaXBpZW50X2FjY291bnRfbmFtZRgeIAEoCUIHukgEcgIYEhIqChNwdXJwb3NlX29mX3RyYW5zZmVyGCggASgJQgi6SAVyAxiMAUgAiAEBEjAKF3JlY2lwaWVudF9hZGRyZXNzX2VtYWlsGDIgASgJQgq6SAdyBRABGIAESAGIAQFCFgoUX3B1cnBvc2Vfb2ZfdHJhbnNmZXJCGgoYX3JlY2lwaWVudF9hZGRyZXNzX2VtYWlsGsoBCghJbnN0YXBheRIoChVyZWNpcGllbnRfaW5zdGl0dXRpb24YCiABKAlCCbpIBnIEEAEYRhInChRyZWNpcGllbnRfaWRlbnRpZmllchgUIAEoCUIJukgGcgQQARhGEicKFnJlY2lwaWVudF9hY2NvdW50X25hbWUYHiABKAlCB7pIBHICGDISKgoTcHVycG9zZV9vZl90cmFuc2ZlchgoIAEoCUIIukgFcgMYjAFIAIgBAUIWChRfcHVycG9zZV9vZl90cmFuc2ZlckIQCgdkZXRhaWxzEgW6SAIIASrAAwoRUGF5bWVudE1ldGhvZFR5cGUSIwofUEFZTUVOVF9NRVRIT0RfVFlQRV9VTlNQRUNJRklFRBAAEhwKGFBBWU1FTlRfTUVUSE9EX1RZUEVfU0VQQRAKEh0KGVBBWU1FTlRfTUVUSE9EX1RZUEVfU1dJRlQQFBIcChhQQVlNRU5UX01FVEhPRF9UWVBFX0NBUkQQHhIiCh5QQVlNRU5UX01FVEhPRF9UWVBFX1NUQUJMRUNPSU4QKBIbChdQQVlNRU5UX01FVEhPRF9UWVBFX0FDSBAyEhwKGFBBWU1FTlRfTUVUSE9EX1RZUEVfV0lSRRA8EhsKF1BBWU1FTlRfTUVUSE9EX1RZUEVfRlBTEEYSHgoaUEFZTUVOVF9NRVRIT0RfVFlQRV9NX1BFU0EQUBIeChpQQVlNRU5UX01FVEhPRF9UWVBFX0dfQ0FTSBBaEiwKKFBBWU1FTlRfTUVUSE9EX1RZUEVfSU5ESUFOX0JBTktfVFJBTlNGRVIQZBIfChtQQVlNRU5UX01FVEhPRF9UWVBFX1BFU09ORVQQbhIgChxQQVlNRU5UX01FVEhPRF9UWVBFX0lOU1RBUEFZEHhChwEKE2NvbS50emVyby52MS5jb21tb25CElBheW1lbnRNZXRob2RQcm90b1ABogIDVFZDqgIPVHplcm8uVjEuQ29tbW9uygIPVHplcm9cVjFcQ29tbW9u4gIbVHplcm9cVjFcQ29tbW9uXEdQQk1ldGFkYXRh6gIRVHplcm86OlYxOjpDb21tb25iBnByb3RvMw", [common_pb_js_1.file_tzero_v1_common_common, validate_pb_js_1.file_buf_validate_validate]);
14
14
  /**
15
15
  * Describes the message tzero.v1.common.PaymentDetails.
16
16
  * Use `create(PaymentDetailsSchema)` to create a new message.
@@ -21,21 +21,51 @@ exports.PaymentDetailsSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v
21
21
  * Use `create(PaymentDetails_SepaSchema)` to create a new message.
22
22
  */
23
23
  exports.PaymentDetails_SepaSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 0);
24
+ /**
25
+ * Describes the message tzero.v1.common.PaymentDetails.Fps.
26
+ * Use `create(PaymentDetails_FpsSchema)` to create a new message.
27
+ */
28
+ exports.PaymentDetails_FpsSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 1);
29
+ /**
30
+ * Describes the message tzero.v1.common.PaymentDetails.MPesa.
31
+ * Use `create(PaymentDetails_MPesaSchema)` to create a new message.
32
+ */
33
+ exports.PaymentDetails_MPesaSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 2);
34
+ /**
35
+ * Describes the message tzero.v1.common.PaymentDetails.GCash.
36
+ * Use `create(PaymentDetails_GCashSchema)` to create a new message.
37
+ */
38
+ exports.PaymentDetails_GCashSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 3);
39
+ /**
40
+ * Describes the message tzero.v1.common.PaymentDetails.IndianBankTransfer.
41
+ * Use `create(PaymentDetails_IndianBankTransferSchema)` to create a new message.
42
+ */
43
+ exports.PaymentDetails_IndianBankTransferSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 4);
44
+ /**
45
+ * Describes the message tzero.v1.common.PaymentDetails.IndianBankTransfer.AccountIFSC.
46
+ * Use `create(PaymentDetails_IndianBankTransfer_AccountIFSCSchema)` to create a new message.
47
+ */
48
+ exports.PaymentDetails_IndianBankTransfer_AccountIFSCSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 4, 0);
49
+ /**
50
+ * Describes the message tzero.v1.common.PaymentDetails.IndianBankTransfer.IMPS.
51
+ * Use `create(PaymentDetails_IndianBankTransfer_IMPSSchema)` to create a new message.
52
+ */
53
+ exports.PaymentDetails_IndianBankTransfer_IMPSSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 4, 1);
24
54
  /**
25
55
  * Describes the message tzero.v1.common.PaymentDetails.Swift.
26
56
  * Use `create(PaymentDetails_SwiftSchema)` to create a new message.
27
57
  */
28
- exports.PaymentDetails_SwiftSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 1);
58
+ exports.PaymentDetails_SwiftSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 5);
29
59
  /**
30
60
  * Describes the message tzero.v1.common.PaymentDetails.Stablecoin.
31
61
  * Use `create(PaymentDetails_StablecoinSchema)` to create a new message.
32
62
  */
33
- exports.PaymentDetails_StablecoinSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 2);
63
+ exports.PaymentDetails_StablecoinSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 6);
34
64
  /**
35
65
  * Describes the message tzero.v1.common.PaymentDetails.Ach.
36
66
  * Use `create(PaymentDetails_AchSchema)` to create a new message.
37
67
  */
38
- exports.PaymentDetails_AchSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 3);
68
+ exports.PaymentDetails_AchSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 7);
39
69
  /**
40
70
  * @generated from enum tzero.v1.common.PaymentDetails.Ach.AchAccountType
41
71
  */
@@ -57,12 +87,22 @@ var PaymentDetails_Ach_AchAccountType;
57
87
  /**
58
88
  * Describes the enum tzero.v1.common.PaymentDetails.Ach.AchAccountType.
59
89
  */
60
- exports.PaymentDetails_Ach_AchAccountTypeSchema = (0, codegenv2_1.enumDesc)(exports.file_tzero_v1_common_payment_method, 0, 3, 0);
90
+ exports.PaymentDetails_Ach_AchAccountTypeSchema = (0, codegenv2_1.enumDesc)(exports.file_tzero_v1_common_payment_method, 0, 7, 0);
61
91
  /**
62
92
  * Describes the message tzero.v1.common.PaymentDetails.Wire.
63
93
  * Use `create(PaymentDetails_WireSchema)` to create a new message.
64
94
  */
65
- exports.PaymentDetails_WireSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 4);
95
+ exports.PaymentDetails_WireSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 8);
96
+ /**
97
+ * Describes the message tzero.v1.common.PaymentDetails.Pesonet.
98
+ * Use `create(PaymentDetails_PesonetSchema)` to create a new message.
99
+ */
100
+ exports.PaymentDetails_PesonetSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 9);
101
+ /**
102
+ * Describes the message tzero.v1.common.PaymentDetails.Instapay.
103
+ * Use `create(PaymentDetails_InstapaySchema)` to create a new message.
104
+ */
105
+ exports.PaymentDetails_InstapaySchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0, 10);
66
106
  /**
67
107
  * @generated from enum tzero.v1.common.PaymentMethodType
68
108
  */
@@ -100,6 +140,30 @@ var PaymentMethodType;
100
140
  * @generated from enum value: PAYMENT_METHOD_TYPE_WIRE = 60;
101
141
  */
102
142
  PaymentMethodType[PaymentMethodType["WIRE"] = 60] = "WIRE";
143
+ /**
144
+ * @generated from enum value: PAYMENT_METHOD_TYPE_FPS = 70;
145
+ */
146
+ PaymentMethodType[PaymentMethodType["FPS"] = 70] = "FPS";
147
+ /**
148
+ * @generated from enum value: PAYMENT_METHOD_TYPE_M_PESA = 80;
149
+ */
150
+ PaymentMethodType[PaymentMethodType["M_PESA"] = 80] = "M_PESA";
151
+ /**
152
+ * @generated from enum value: PAYMENT_METHOD_TYPE_G_CASH = 90;
153
+ */
154
+ PaymentMethodType[PaymentMethodType["G_CASH"] = 90] = "G_CASH";
155
+ /**
156
+ * @generated from enum value: PAYMENT_METHOD_TYPE_INDIAN_BANK_TRANSFER = 100;
157
+ */
158
+ PaymentMethodType[PaymentMethodType["INDIAN_BANK_TRANSFER"] = 100] = "INDIAN_BANK_TRANSFER";
159
+ /**
160
+ * @generated from enum value: PAYMENT_METHOD_TYPE_PESONET = 110;
161
+ */
162
+ PaymentMethodType[PaymentMethodType["PESONET"] = 110] = "PESONET";
163
+ /**
164
+ * @generated from enum value: PAYMENT_METHOD_TYPE_INSTAPAY = 120;
165
+ */
166
+ PaymentMethodType[PaymentMethodType["INSTAPAY"] = 120] = "INSTAPAY";
103
167
  })(PaymentMethodType || (exports.PaymentMethodType = PaymentMethodType = {}));
104
168
  /**
105
169
  * Describes the enum tzero.v1.common.PaymentMethodType.