@t-0/provider-sdk 1.0.26 → 1.0.27
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/common/gen/buf/validate/validate_pb.d.ts +4590 -0
- package/lib/cjs/common/gen/buf/validate/validate_pb.js +353 -0
- package/lib/cjs/common/gen/tzero/v1/common/common_pb.d.ts +2 -0
- package/lib/cjs/common/gen/tzero/v1/common/common_pb.js +2 -1
- package/lib/cjs/common/gen/tzero/v1/common/payment_method_pb.d.ts +40 -22
- package/lib/cjs/common/gen/tzero/v1/common/payment_method_pb.js +18 -11
- package/lib/cjs/common/gen/tzero/v1/common/payment_receipt_pb.d.ts +77 -0
- package/lib/cjs/common/gen/tzero/v1/common/payment_receipt_pb.js +32 -0
- package/lib/cjs/common/gen/tzero/v1/payment/network_pb.d.ts +98 -59
- package/lib/cjs/common/gen/tzero/v1/payment/network_pb.js +10 -18
- package/lib/cjs/common/gen/tzero/v1/payment/provider_pb.d.ts +153 -53
- package/lib/cjs/common/gen/tzero/v1/payment/provider_pb.js +72 -37
- package/lib/cjs/common/gen/tzero/v1/payment_intent/provider/provider_pb.d.ts +22 -0
- package/lib/cjs/common/gen/tzero/v1/payment_intent/provider/provider_pb.js +2 -1
- package/lib/cjs/common/gen/tzero/v1/payment_intent/recipient/recipient_pb.d.ts +201 -14
- package/lib/cjs/common/gen/tzero/v1/payment_intent/recipient/recipient_pb.js +41 -8
- package/lib/esm/common/gen/buf/validate/validate_pb.d.ts +4590 -0
- package/lib/esm/common/gen/buf/validate/validate_pb.js +350 -0
- package/lib/esm/common/gen/tzero/v1/common/common_pb.d.ts +2 -0
- package/lib/esm/common/gen/tzero/v1/common/common_pb.js +2 -1
- package/lib/esm/common/gen/tzero/v1/common/payment_method_pb.d.ts +40 -22
- package/lib/esm/common/gen/tzero/v1/common/payment_method_pb.js +17 -10
- package/lib/esm/common/gen/tzero/v1/common/payment_receipt_pb.d.ts +77 -0
- package/lib/esm/common/gen/tzero/v1/common/payment_receipt_pb.js +29 -0
- package/lib/esm/common/gen/tzero/v1/payment/network_pb.d.ts +98 -59
- package/lib/esm/common/gen/tzero/v1/payment/network_pb.js +9 -17
- package/lib/esm/common/gen/tzero/v1/payment/provider_pb.d.ts +153 -53
- package/lib/esm/common/gen/tzero/v1/payment/provider_pb.js +71 -36
- package/lib/esm/common/gen/tzero/v1/payment_intent/provider/provider_pb.d.ts +22 -0
- package/lib/esm/common/gen/tzero/v1/payment_intent/provider/provider_pb.js +2 -1
- package/lib/esm/common/gen/tzero/v1/payment_intent/recipient/recipient_pb.d.ts +201 -14
- package/lib/esm/common/gen/tzero/v1/payment_intent/recipient/recipient_pb.js +40 -7
- package/lib/tsconfig.cjs.tsbuildinfo +1 -1
- package/lib/tsconfig.esm.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -14,21 +14,21 @@ export type PaymentMethod = Message<"tzero.v1.common.PaymentMethod"> & {
|
|
|
14
14
|
*/
|
|
15
15
|
details: {
|
|
16
16
|
/**
|
|
17
|
-
* @generated from field: tzero.v1.common.
|
|
17
|
+
* @generated from field: tzero.v1.common.SepaPaymentDetails sepa = 10;
|
|
18
18
|
*/
|
|
19
|
-
value:
|
|
19
|
+
value: SepaPaymentDetails;
|
|
20
20
|
case: "sepa";
|
|
21
21
|
} | {
|
|
22
22
|
/**
|
|
23
|
-
* @generated from field: tzero.v1.common.
|
|
23
|
+
* @generated from field: tzero.v1.common.SwiftPaymentDetails swift = 30;
|
|
24
24
|
*/
|
|
25
|
-
value:
|
|
25
|
+
value: SwiftPaymentDetails;
|
|
26
26
|
case: "swift";
|
|
27
27
|
} | {
|
|
28
28
|
/**
|
|
29
|
-
* @generated from field: tzero.v1.common.
|
|
29
|
+
* @generated from field: tzero.v1.common.StablecoinPaymentDetails stablecoin = 40;
|
|
30
30
|
*/
|
|
31
|
-
value:
|
|
31
|
+
value: StablecoinPaymentDetails;
|
|
32
32
|
case: "stablecoin";
|
|
33
33
|
} | {
|
|
34
34
|
case: undefined;
|
|
@@ -41,58 +41,70 @@ export type PaymentMethod = Message<"tzero.v1.common.PaymentMethod"> & {
|
|
|
41
41
|
*/
|
|
42
42
|
export declare const PaymentMethodSchema: GenMessage<PaymentMethod>;
|
|
43
43
|
/**
|
|
44
|
-
* @generated from message tzero.v1.common.
|
|
44
|
+
* @generated from message tzero.v1.common.SepaPaymentDetails
|
|
45
45
|
*/
|
|
46
|
-
export type
|
|
46
|
+
export type SepaPaymentDetails = Message<"tzero.v1.common.SepaPaymentDetails"> & {
|
|
47
47
|
/**
|
|
48
|
+
* IBAN should be 15-34 characters, alphanumeric
|
|
49
|
+
*
|
|
48
50
|
* @generated from field: string iban = 20;
|
|
49
51
|
*/
|
|
50
52
|
iban: string;
|
|
51
53
|
/**
|
|
54
|
+
* Beneficiary name should be 1-70 characters (SEPA standard)
|
|
55
|
+
*
|
|
52
56
|
* @generated from field: string beneficiary_name = 30;
|
|
53
57
|
*/
|
|
54
58
|
beneficiaryName: string;
|
|
55
59
|
/**
|
|
60
|
+
* Payment reference up to 140 characters (SEPA standard)
|
|
61
|
+
*
|
|
56
62
|
* @generated from field: string payment_reference = 40;
|
|
57
63
|
*/
|
|
58
64
|
paymentReference: string;
|
|
59
65
|
};
|
|
60
66
|
/**
|
|
61
|
-
* Describes the message tzero.v1.common.
|
|
62
|
-
* Use `create(
|
|
67
|
+
* Describes the message tzero.v1.common.SepaPaymentDetails.
|
|
68
|
+
* Use `create(SepaPaymentDetailsSchema)` to create a new message.
|
|
63
69
|
*/
|
|
64
|
-
export declare const
|
|
70
|
+
export declare const SepaPaymentDetailsSchema: GenMessage<SepaPaymentDetails>;
|
|
65
71
|
/**
|
|
66
|
-
* @generated from message tzero.v1.common.
|
|
72
|
+
* @generated from message tzero.v1.common.SwiftPaymentDetails
|
|
67
73
|
*/
|
|
68
|
-
export type
|
|
74
|
+
export type SwiftPaymentDetails = Message<"tzero.v1.common.SwiftPaymentDetails"> & {};
|
|
69
75
|
/**
|
|
70
|
-
* Describes the message tzero.v1.common.
|
|
71
|
-
* Use `create(
|
|
76
|
+
* Describes the message tzero.v1.common.SwiftPaymentDetails.
|
|
77
|
+
* Use `create(SwiftPaymentDetailsSchema)` to create a new message.
|
|
72
78
|
*/
|
|
73
|
-
export declare const
|
|
79
|
+
export declare const SwiftPaymentDetailsSchema: GenMessage<SwiftPaymentDetails>;
|
|
74
80
|
/**
|
|
75
|
-
* @generated from message tzero.v1.common.
|
|
81
|
+
* @generated from message tzero.v1.common.StablecoinPaymentDetails
|
|
76
82
|
*/
|
|
77
|
-
export type
|
|
83
|
+
export type StablecoinPaymentDetails = Message<"tzero.v1.common.StablecoinPaymentDetails"> & {
|
|
78
84
|
/**
|
|
85
|
+
* Blockchain must be specified and not UNSPECIFIED
|
|
86
|
+
*
|
|
79
87
|
* @generated from field: tzero.v1.common.Blockchain blockchain = 10;
|
|
80
88
|
*/
|
|
81
89
|
blockchain: Blockchain;
|
|
82
90
|
/**
|
|
91
|
+
* Stablecoin must be specified and not UNSPECIFIED
|
|
92
|
+
*
|
|
83
93
|
* @generated from field: tzero.v1.common.Stablecoin stablecoin = 20;
|
|
84
94
|
*/
|
|
85
95
|
stablecoin: Stablecoin;
|
|
86
96
|
/**
|
|
97
|
+
* Blockchain address should be a valid hex address (20-64 chars for most blockchains)
|
|
98
|
+
*
|
|
87
99
|
* @generated from field: string address = 30;
|
|
88
100
|
*/
|
|
89
101
|
address: string;
|
|
90
102
|
};
|
|
91
103
|
/**
|
|
92
|
-
* Describes the message tzero.v1.common.
|
|
93
|
-
* Use `create(
|
|
104
|
+
* Describes the message tzero.v1.common.StablecoinPaymentDetails.
|
|
105
|
+
* Use `create(StablecoinPaymentDetailsSchema)` to create a new message.
|
|
94
106
|
*/
|
|
95
|
-
export declare const
|
|
107
|
+
export declare const StablecoinPaymentDetailsSchema: GenMessage<StablecoinPaymentDetails>;
|
|
96
108
|
/**
|
|
97
109
|
* @generated from enum tzero.v1.common.PaymentMethodType
|
|
98
110
|
*/
|
|
@@ -114,7 +126,13 @@ export declare enum PaymentMethodType {
|
|
|
114
126
|
*
|
|
115
127
|
* @generated from enum value: PAYMENT_METHOD_TYPE_CARD = 30;
|
|
116
128
|
*/
|
|
117
|
-
CARD = 30
|
|
129
|
+
CARD = 30,
|
|
130
|
+
/**
|
|
131
|
+
* only pay out
|
|
132
|
+
*
|
|
133
|
+
* @generated from enum value: PAYMENT_METHOD_TYPE_STABLECOIN = 40;
|
|
134
|
+
*/
|
|
135
|
+
STABLECOIN = 40
|
|
118
136
|
}
|
|
119
137
|
/**
|
|
120
138
|
* Describes the enum tzero.v1.common.PaymentMethodType.
|
|
@@ -3,33 +3,34 @@
|
|
|
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.
|
|
6
|
+
exports.PaymentMethodTypeSchema = exports.PaymentMethodType = exports.StablecoinPaymentDetailsSchema = exports.SwiftPaymentDetailsSchema = exports.SepaPaymentDetailsSchema = exports.PaymentMethodSchema = 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
|
+
const validate_pb_js_1 = require("../../../buf/validate/validate_pb.js");
|
|
9
10
|
/**
|
|
10
11
|
* Describes the file tzero/v1/common/payment_method.proto.
|
|
11
12
|
*/
|
|
12
|
-
exports.file_tzero_v1_common_payment_method = (0, codegenv2_1.fileDesc)("
|
|
13
|
+
exports.file_tzero_v1_common_payment_method = (0, codegenv2_1.fileDesc)("CiR0emVyby92MS9jb21tb24vcGF5bWVudF9tZXRob2QucHJvdG8SD3R6ZXJvLnYxLmNvbW1vbiLOAQoNUGF5bWVudE1ldGhvZBIzCgRzZXBhGAogASgLMiMudHplcm8udjEuY29tbW9uLlNlcGFQYXltZW50RGV0YWlsc0gAEjUKBXN3aWZ0GB4gASgLMiQudHplcm8udjEuY29tbW9uLlN3aWZ0UGF5bWVudERldGFpbHNIABI/CgpzdGFibGVjb2luGCggASgLMikudHplcm8udjEuY29tbW9uLlN0YWJsZWNvaW5QYXltZW50RGV0YWlsc0gAQhAKB2RldGFpbHMSBbpIAggBIpQBChJTZXBhUGF5bWVudERldGFpbHMSNAoEaWJhbhgUIAEoCUImukgjciEQDxgiMhteW0EtWl17Mn1bMC05XXsyfVtBLVowLTldKyQSIwoQYmVuZWZpY2lhcnlfbmFtZRgeIAEoCUIJukgGcgQQARhGEiMKEXBheW1lbnRfcmVmZXJlbmNlGCggASgJQgi6SAVyAxiMASIVChNTd2lmdFBheW1lbnREZXRhaWxzIsEBChhTdGFibGVjb2luUGF5bWVudERldGFpbHMSOQoKYmxvY2tjaGFpbhgKIAEoDjIbLnR6ZXJvLnYxLmNvbW1vbi5CbG9ja2NoYWluQgi6SAWCAQIgABI5CgpzdGFibGVjb2luGBQgASgOMhsudHplcm8udjEuY29tbW9uLlN0YWJsZWNvaW5CCLpIBYIBAiAAEi8KB2FkZHJlc3MYHiABKAlCHrpIG3IZEBQYQDITXigweCk/W2EtZkEtRjAtOV0rJCq3AQoRUGF5bWVudE1ldGhvZFR5cGUSIwofUEFZTUVOVF9NRVRIT0RfVFlQRV9VTlNQRUNJRklFRBAAEhwKGFBBWU1FTlRfTUVUSE9EX1RZUEVfU0VQQRAKEh0KGVBBWU1FTlRfTUVUSE9EX1RZUEVfU1dJRlQQFBIcChhQQVlNRU5UX01FVEhPRF9UWVBFX0NBUkQQHhIiCh5QQVlNRU5UX01FVEhPRF9UWVBFX1NUQUJMRUNPSU4QKEKHAQoTY29tLnR6ZXJvLnYxLmNvbW1vbkISUGF5bWVudE1ldGhvZFByb3RvUAGiAgNUVkOqAg9UemVyby5WMS5Db21tb27KAg9UemVyb1xWMVxDb21tb27iAhtUemVyb1xWMVxDb21tb25cR1BCTWV0YWRhdGHqAhFUemVybzo6VjE6OkNvbW1vbmIGcHJvdG8z", [common_pb_js_1.file_tzero_v1_common_common, validate_pb_js_1.file_buf_validate_validate]);
|
|
13
14
|
/**
|
|
14
15
|
* Describes the message tzero.v1.common.PaymentMethod.
|
|
15
16
|
* Use `create(PaymentMethodSchema)` to create a new message.
|
|
16
17
|
*/
|
|
17
18
|
exports.PaymentMethodSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 0);
|
|
18
19
|
/**
|
|
19
|
-
* Describes the message tzero.v1.common.
|
|
20
|
-
* Use `create(
|
|
20
|
+
* Describes the message tzero.v1.common.SepaPaymentDetails.
|
|
21
|
+
* Use `create(SepaPaymentDetailsSchema)` to create a new message.
|
|
21
22
|
*/
|
|
22
|
-
exports.
|
|
23
|
+
exports.SepaPaymentDetailsSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 1);
|
|
23
24
|
/**
|
|
24
|
-
* Describes the message tzero.v1.common.
|
|
25
|
-
* Use `create(
|
|
25
|
+
* Describes the message tzero.v1.common.SwiftPaymentDetails.
|
|
26
|
+
* Use `create(SwiftPaymentDetailsSchema)` to create a new message.
|
|
26
27
|
*/
|
|
27
|
-
exports.
|
|
28
|
+
exports.SwiftPaymentDetailsSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 2);
|
|
28
29
|
/**
|
|
29
|
-
* Describes the message tzero.v1.common.
|
|
30
|
-
* Use `create(
|
|
30
|
+
* Describes the message tzero.v1.common.StablecoinPaymentDetails.
|
|
31
|
+
* Use `create(StablecoinPaymentDetailsSchema)` to create a new message.
|
|
31
32
|
*/
|
|
32
|
-
exports.
|
|
33
|
+
exports.StablecoinPaymentDetailsSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_method, 3);
|
|
33
34
|
/**
|
|
34
35
|
* @generated from enum tzero.v1.common.PaymentMethodType
|
|
35
36
|
*/
|
|
@@ -53,6 +54,12 @@ var PaymentMethodType;
|
|
|
53
54
|
* @generated from enum value: PAYMENT_METHOD_TYPE_CARD = 30;
|
|
54
55
|
*/
|
|
55
56
|
PaymentMethodType[PaymentMethodType["CARD"] = 30] = "CARD";
|
|
57
|
+
/**
|
|
58
|
+
* only pay out
|
|
59
|
+
*
|
|
60
|
+
* @generated from enum value: PAYMENT_METHOD_TYPE_STABLECOIN = 40;
|
|
61
|
+
*/
|
|
62
|
+
PaymentMethodType[PaymentMethodType["STABLECOIN"] = 40] = "STABLECOIN";
|
|
56
63
|
})(PaymentMethodType || (exports.PaymentMethodType = PaymentMethodType = {}));
|
|
57
64
|
/**
|
|
58
65
|
* Describes the enum tzero.v1.common.PaymentMethodType.
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* Describes the file tzero/v1/common/payment_receipt.proto.
|
|
5
|
+
*/
|
|
6
|
+
export declare const file_tzero_v1_common_payment_receipt: GenFile;
|
|
7
|
+
/**
|
|
8
|
+
* @generated from message tzero.v1.common.PaymentReceipt
|
|
9
|
+
*/
|
|
10
|
+
export type PaymentReceipt = Message<"tzero.v1.common.PaymentReceipt"> & {
|
|
11
|
+
/**
|
|
12
|
+
* @generated from oneof tzero.v1.common.PaymentReceipt.details
|
|
13
|
+
*/
|
|
14
|
+
details: {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from field: tzero.v1.common.SepaReceipt sepa = 10;
|
|
17
|
+
*/
|
|
18
|
+
value: SepaReceipt;
|
|
19
|
+
case: "sepa";
|
|
20
|
+
} | {
|
|
21
|
+
/**
|
|
22
|
+
* @generated from field: tzero.v1.common.SwiftReceipt swift = 30;
|
|
23
|
+
*/
|
|
24
|
+
value: SwiftReceipt;
|
|
25
|
+
case: "swift";
|
|
26
|
+
} | {
|
|
27
|
+
/**
|
|
28
|
+
* @generated from field: tzero.v1.common.StablecoinReceipt stablecoin = 40;
|
|
29
|
+
*/
|
|
30
|
+
value: StablecoinReceipt;
|
|
31
|
+
case: "stablecoin";
|
|
32
|
+
} | {
|
|
33
|
+
case: undefined;
|
|
34
|
+
value?: undefined;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Describes the message tzero.v1.common.PaymentReceipt.
|
|
39
|
+
* Use `create(PaymentReceiptSchema)` to create a new message.
|
|
40
|
+
*/
|
|
41
|
+
export declare const PaymentReceiptSchema: GenMessage<PaymentReceipt>;
|
|
42
|
+
/**
|
|
43
|
+
* @generated from message tzero.v1.common.SepaReceipt
|
|
44
|
+
*/
|
|
45
|
+
export type SepaReceipt = Message<"tzero.v1.common.SepaReceipt"> & {};
|
|
46
|
+
/**
|
|
47
|
+
* Describes the message tzero.v1.common.SepaReceipt.
|
|
48
|
+
* Use `create(SepaReceiptSchema)` to create a new message.
|
|
49
|
+
*/
|
|
50
|
+
export declare const SepaReceiptSchema: GenMessage<SepaReceipt>;
|
|
51
|
+
/**
|
|
52
|
+
* @generated from message tzero.v1.common.SwiftReceipt
|
|
53
|
+
*/
|
|
54
|
+
export type SwiftReceipt = Message<"tzero.v1.common.SwiftReceipt"> & {};
|
|
55
|
+
/**
|
|
56
|
+
* Describes the message tzero.v1.common.SwiftReceipt.
|
|
57
|
+
* Use `create(SwiftReceiptSchema)` to create a new message.
|
|
58
|
+
*/
|
|
59
|
+
export declare const SwiftReceiptSchema: GenMessage<SwiftReceipt>;
|
|
60
|
+
/**
|
|
61
|
+
* @generated from message tzero.v1.common.StablecoinReceipt
|
|
62
|
+
*/
|
|
63
|
+
export type StablecoinReceipt = Message<"tzero.v1.common.StablecoinReceipt"> & {
|
|
64
|
+
/**
|
|
65
|
+
* Transaction hash should be a valid hex string (64 chars for most blockchains)
|
|
66
|
+
*
|
|
67
|
+
* on-chain hex encoded transaction hash
|
|
68
|
+
*
|
|
69
|
+
* @generated from field: string transaction_hash = 10;
|
|
70
|
+
*/
|
|
71
|
+
transactionHash: string;
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* Describes the message tzero.v1.common.StablecoinReceipt.
|
|
75
|
+
* Use `create(StablecoinReceiptSchema)` to create a new message.
|
|
76
|
+
*/
|
|
77
|
+
export declare const StablecoinReceiptSchema: GenMessage<StablecoinReceipt>;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @generated by protoc-gen-es v2.6.2 with parameter "target=ts,import_extension=js"
|
|
3
|
+
// @generated from file tzero/v1/common/payment_receipt.proto (package tzero.v1.common, syntax proto3)
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.StablecoinReceiptSchema = exports.SwiftReceiptSchema = exports.SepaReceiptSchema = exports.PaymentReceiptSchema = exports.file_tzero_v1_common_payment_receipt = void 0;
|
|
7
|
+
const codegenv2_1 = require("@bufbuild/protobuf/codegenv2");
|
|
8
|
+
const validate_pb_js_1 = require("../../../buf/validate/validate_pb.js");
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file tzero/v1/common/payment_receipt.proto.
|
|
11
|
+
*/
|
|
12
|
+
exports.file_tzero_v1_common_payment_receipt = (0, codegenv2_1.fileDesc)("CiV0emVyby92MS9jb21tb24vcGF5bWVudF9yZWNlaXB0LnByb3RvEg90emVyby52MS5jb21tb24iugEKDlBheW1lbnRSZWNlaXB0EiwKBHNlcGEYCiABKAsyHC50emVyby52MS5jb21tb24uU2VwYVJlY2VpcHRIABIuCgVzd2lmdBgeIAEoCzIdLnR6ZXJvLnYxLmNvbW1vbi5Td2lmdFJlY2VpcHRIABI4CgpzdGFibGVjb2luGCggASgLMiIudHplcm8udjEuY29tbW9uLlN0YWJsZWNvaW5SZWNlaXB0SABCEAoHZGV0YWlscxIFukgCCAEiDQoLU2VwYVJlY2VpcHQiDgoMU3dpZnRSZWNlaXB0IlAKEVN0YWJsZWNvaW5SZWNlaXB0EjsKEHRyYW5zYWN0aW9uX2hhc2gYCiABKAlCIbpIHnIcEEAYQjIWXigweCk/W2EtZkEtRjAtOV17NjR9JEKIAQoTY29tLnR6ZXJvLnYxLmNvbW1vbkITUGF5bWVudFJlY2VpcHRQcm90b1ABogIDVFZDqgIPVHplcm8uVjEuQ29tbW9uygIPVHplcm9cVjFcQ29tbW9u4gIbVHplcm9cVjFcQ29tbW9uXEdQQk1ldGFkYXRh6gIRVHplcm86OlYxOjpDb21tb25iBnByb3RvMw", [validate_pb_js_1.file_buf_validate_validate]);
|
|
13
|
+
/**
|
|
14
|
+
* Describes the message tzero.v1.common.PaymentReceipt.
|
|
15
|
+
* Use `create(PaymentReceiptSchema)` to create a new message.
|
|
16
|
+
*/
|
|
17
|
+
exports.PaymentReceiptSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_receipt, 0);
|
|
18
|
+
/**
|
|
19
|
+
* Describes the message tzero.v1.common.SepaReceipt.
|
|
20
|
+
* Use `create(SepaReceiptSchema)` to create a new message.
|
|
21
|
+
*/
|
|
22
|
+
exports.SepaReceiptSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_receipt, 1);
|
|
23
|
+
/**
|
|
24
|
+
* Describes the message tzero.v1.common.SwiftReceipt.
|
|
25
|
+
* Use `create(SwiftReceiptSchema)` to create a new message.
|
|
26
|
+
*/
|
|
27
|
+
exports.SwiftReceiptSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_receipt, 2);
|
|
28
|
+
/**
|
|
29
|
+
* Describes the message tzero.v1.common.StablecoinReceipt.
|
|
30
|
+
* Use `create(StablecoinReceiptSchema)` to create a new message.
|
|
31
|
+
*/
|
|
32
|
+
exports.StablecoinReceiptSchema = (0, codegenv2_1.messageDesc)(exports.file_tzero_v1_common_payment_receipt, 3);
|