@t-0/provider-starter-ts 0.4.1 → 0.4.3
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 +1 -1
- package/template/.env +11 -0
- package/template/node_modules/.package-lock.json +3 -3
- package/template/node_modules/@t-0/provider-sdk/lib/cjs/common/gen/tzero/v1/common/payment_method_pb.d.ts +252 -1
- package/template/node_modules/@t-0/provider-sdk/lib/cjs/common/gen/tzero/v1/common/payment_method_pb.js +113 -2
- package/template/node_modules/@t-0/provider-sdk/lib/cjs/common/gen/tzero/v1/manage/dashboard_pb.d.ts +381 -0
- package/template/node_modules/@t-0/provider-sdk/lib/cjs/common/gen/tzero/v1/manage/dashboard_pb.js +162 -0
- package/template/node_modules/@t-0/provider-sdk/lib/cjs/common/gen/tzero/v1/payment/provider_pb.d.ts +3 -3
- package/template/node_modules/@t-0/provider-sdk/lib/cjs/common/gen/tzero/v1/payment/provider_pb.js +1 -1
- package/template/node_modules/@t-0/provider-sdk/lib/esm/common/gen/tzero/v1/common/payment_method_pb.d.ts +252 -1
- package/template/node_modules/@t-0/provider-sdk/lib/esm/common/gen/tzero/v1/common/payment_method_pb.js +112 -1
- package/template/node_modules/@t-0/provider-sdk/lib/esm/common/gen/tzero/v1/manage/dashboard_pb.d.ts +381 -0
- package/template/node_modules/@t-0/provider-sdk/lib/esm/common/gen/tzero/v1/manage/dashboard_pb.js +159 -0
- package/template/node_modules/@t-0/provider-sdk/lib/esm/common/gen/tzero/v1/payment/provider_pb.d.ts +3 -3
- package/template/node_modules/@t-0/provider-sdk/lib/esm/common/gen/tzero/v1/payment/provider_pb.js +1 -1
- package/template/node_modules/@t-0/provider-sdk/lib/tsconfig.cjs.tsbuildinfo +1 -1
- package/template/node_modules/@t-0/provider-sdk/lib/tsconfig.esm.tsbuildinfo +1 -1
- package/template/node_modules/@t-0/provider-sdk/package.json +1 -1
- package/template/package-lock.json +4 -4
- package/template/package.json +1 -1
package/template/node_modules/@t-0/provider-sdk/lib/esm/common/gen/tzero/v1/manage/dashboard_pb.d.ts
ADDED
|
@@ -0,0 +1,381 @@
|
|
|
1
|
+
import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
3
|
+
import type { Decimal } from "../common/common_pb.js";
|
|
4
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
5
|
+
/**
|
|
6
|
+
* Describes the file tzero/v1/manage/dashboard.proto.
|
|
7
|
+
*/
|
|
8
|
+
export declare const file_tzero_v1_manage_dashboard: GenFile;
|
|
9
|
+
/**
|
|
10
|
+
* @generated from message tzero.v1.manage.GetVolumeRequest
|
|
11
|
+
*/
|
|
12
|
+
export type GetVolumeRequest = Message<"tzero.v1.manage.GetVolumeRequest"> & {};
|
|
13
|
+
/**
|
|
14
|
+
* Describes the message tzero.v1.manage.GetVolumeRequest.
|
|
15
|
+
* Use `create(GetVolumeRequestSchema)` to create a new message.
|
|
16
|
+
*/
|
|
17
|
+
export declare const GetVolumeRequestSchema: GenMessage<GetVolumeRequest>;
|
|
18
|
+
/**
|
|
19
|
+
* @generated from message tzero.v1.manage.GetVolumeResponse
|
|
20
|
+
*/
|
|
21
|
+
export type GetVolumeResponse = Message<"tzero.v1.manage.GetVolumeResponse"> & {
|
|
22
|
+
/**
|
|
23
|
+
* @generated from field: repeated tzero.v1.manage.GetVolumeResponse.Volume volumes = 10;
|
|
24
|
+
*/
|
|
25
|
+
volumes: GetVolumeResponse_Volume[];
|
|
26
|
+
/**
|
|
27
|
+
* @generated from field: tzero.v1.common.Decimal total = 20;
|
|
28
|
+
*/
|
|
29
|
+
total?: Decimal;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Describes the message tzero.v1.manage.GetVolumeResponse.
|
|
33
|
+
* Use `create(GetVolumeResponseSchema)` to create a new message.
|
|
34
|
+
*/
|
|
35
|
+
export declare const GetVolumeResponseSchema: GenMessage<GetVolumeResponse>;
|
|
36
|
+
/**
|
|
37
|
+
* @generated from message tzero.v1.manage.GetVolumeResponse.Volume
|
|
38
|
+
*/
|
|
39
|
+
export type GetVolumeResponse_Volume = Message<"tzero.v1.manage.GetVolumeResponse.Volume"> & {
|
|
40
|
+
/**
|
|
41
|
+
* @generated from field: tzero.v1.manage.Provider provider = 10;
|
|
42
|
+
*/
|
|
43
|
+
provider?: Provider;
|
|
44
|
+
/**
|
|
45
|
+
* @generated from field: tzero.v1.common.Decimal pay_in = 20;
|
|
46
|
+
*/
|
|
47
|
+
payIn?: Decimal;
|
|
48
|
+
/**
|
|
49
|
+
* @generated from field: tzero.v1.common.Decimal pay_out = 30;
|
|
50
|
+
*/
|
|
51
|
+
payOut?: Decimal;
|
|
52
|
+
/**
|
|
53
|
+
* @generated from field: tzero.v1.common.Decimal total = 40;
|
|
54
|
+
*/
|
|
55
|
+
total?: Decimal;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* Describes the message tzero.v1.manage.GetVolumeResponse.Volume.
|
|
59
|
+
* Use `create(GetVolumeResponse_VolumeSchema)` to create a new message.
|
|
60
|
+
*/
|
|
61
|
+
export declare const GetVolumeResponse_VolumeSchema: GenMessage<GetVolumeResponse_Volume>;
|
|
62
|
+
/**
|
|
63
|
+
* @generated from message tzero.v1.manage.GetLimitsRequest
|
|
64
|
+
*/
|
|
65
|
+
export type GetLimitsRequest = Message<"tzero.v1.manage.GetLimitsRequest"> & {};
|
|
66
|
+
/**
|
|
67
|
+
* Describes the message tzero.v1.manage.GetLimitsRequest.
|
|
68
|
+
* Use `create(GetLimitsRequestSchema)` to create a new message.
|
|
69
|
+
*/
|
|
70
|
+
export declare const GetLimitsRequestSchema: GenMessage<GetLimitsRequest>;
|
|
71
|
+
/**
|
|
72
|
+
* @generated from message tzero.v1.manage.GetLimitsResponse
|
|
73
|
+
*/
|
|
74
|
+
export type GetLimitsResponse = Message<"tzero.v1.manage.GetLimitsResponse"> & {
|
|
75
|
+
/**
|
|
76
|
+
* @generated from field: repeated tzero.v1.manage.GetLimitsResponse.Limit limits = 10;
|
|
77
|
+
*/
|
|
78
|
+
limits: GetLimitsResponse_Limit[];
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* Describes the message tzero.v1.manage.GetLimitsResponse.
|
|
82
|
+
* Use `create(GetLimitsResponseSchema)` to create a new message.
|
|
83
|
+
*/
|
|
84
|
+
export declare const GetLimitsResponseSchema: GenMessage<GetLimitsResponse>;
|
|
85
|
+
/**
|
|
86
|
+
* @generated from message tzero.v1.manage.GetLimitsResponse.Limit
|
|
87
|
+
*/
|
|
88
|
+
export type GetLimitsResponse_Limit = Message<"tzero.v1.manage.GetLimitsResponse.Limit"> & {
|
|
89
|
+
/**
|
|
90
|
+
* @generated from field: tzero.v1.manage.Provider provider = 10;
|
|
91
|
+
*/
|
|
92
|
+
provider?: Provider;
|
|
93
|
+
/**
|
|
94
|
+
* @generated from field: tzero.v1.common.Decimal credit_left = 20;
|
|
95
|
+
*/
|
|
96
|
+
creditLeft?: Decimal;
|
|
97
|
+
/**
|
|
98
|
+
* @generated from field: tzero.v1.common.Decimal credit_usage = 30;
|
|
99
|
+
*/
|
|
100
|
+
creditUsage?: Decimal;
|
|
101
|
+
/**
|
|
102
|
+
* @generated from field: tzero.v1.common.Decimal presettlement_balance = 40;
|
|
103
|
+
*/
|
|
104
|
+
presettlementBalance?: Decimal;
|
|
105
|
+
};
|
|
106
|
+
/**
|
|
107
|
+
* Describes the message tzero.v1.manage.GetLimitsResponse.Limit.
|
|
108
|
+
* Use `create(GetLimitsResponse_LimitSchema)` to create a new message.
|
|
109
|
+
*/
|
|
110
|
+
export declare const GetLimitsResponse_LimitSchema: GenMessage<GetLimitsResponse_Limit>;
|
|
111
|
+
/**
|
|
112
|
+
* @generated from message tzero.v1.manage.GetPaymentsRequest
|
|
113
|
+
*/
|
|
114
|
+
export type GetPaymentsRequest = Message<"tzero.v1.manage.GetPaymentsRequest"> & {
|
|
115
|
+
/**
|
|
116
|
+
* @generated from field: optional tzero.v1.manage.Page page = 10;
|
|
117
|
+
*/
|
|
118
|
+
page?: Page;
|
|
119
|
+
};
|
|
120
|
+
/**
|
|
121
|
+
* Describes the message tzero.v1.manage.GetPaymentsRequest.
|
|
122
|
+
* Use `create(GetPaymentsRequestSchema)` to create a new message.
|
|
123
|
+
*/
|
|
124
|
+
export declare const GetPaymentsRequestSchema: GenMessage<GetPaymentsRequest>;
|
|
125
|
+
/**
|
|
126
|
+
* @generated from message tzero.v1.manage.GetPaymentsResponse
|
|
127
|
+
*/
|
|
128
|
+
export type GetPaymentsResponse = Message<"tzero.v1.manage.GetPaymentsResponse"> & {
|
|
129
|
+
/**
|
|
130
|
+
* @generated from field: repeated tzero.v1.manage.GetPaymentsResponse.Payment payments = 10;
|
|
131
|
+
*/
|
|
132
|
+
payments: GetPaymentsResponse_Payment[];
|
|
133
|
+
};
|
|
134
|
+
/**
|
|
135
|
+
* Describes the message tzero.v1.manage.GetPaymentsResponse.
|
|
136
|
+
* Use `create(GetPaymentsResponseSchema)` to create a new message.
|
|
137
|
+
*/
|
|
138
|
+
export declare const GetPaymentsResponseSchema: GenMessage<GetPaymentsResponse>;
|
|
139
|
+
/**
|
|
140
|
+
* @generated from message tzero.v1.manage.GetPaymentsResponse.Payment
|
|
141
|
+
*/
|
|
142
|
+
export type GetPaymentsResponse_Payment = Message<"tzero.v1.manage.GetPaymentsResponse.Payment"> & {
|
|
143
|
+
/**
|
|
144
|
+
* @generated from field: uint64 id = 10;
|
|
145
|
+
*/
|
|
146
|
+
id: bigint;
|
|
147
|
+
/**
|
|
148
|
+
* @generated from field: tzero.v1.manage.GetPaymentsResponse.Payment.Type type = 20;
|
|
149
|
+
*/
|
|
150
|
+
type: GetPaymentsResponse_Payment_Type;
|
|
151
|
+
/**
|
|
152
|
+
* @generated from field: tzero.v1.manage.Provider counterpart = 30;
|
|
153
|
+
*/
|
|
154
|
+
counterpart?: Provider;
|
|
155
|
+
/**
|
|
156
|
+
* @generated from field: tzero.v1.manage.GetPaymentsResponse.Payment.Status status = 40;
|
|
157
|
+
*/
|
|
158
|
+
status: GetPaymentsResponse_Payment_Status;
|
|
159
|
+
/**
|
|
160
|
+
* @generated from field: google.protobuf.Timestamp created_at = 50;
|
|
161
|
+
*/
|
|
162
|
+
createdAt?: Timestamp;
|
|
163
|
+
/**
|
|
164
|
+
* @generated from field: optional google.protobuf.Timestamp accepted_at = 60;
|
|
165
|
+
*/
|
|
166
|
+
acceptedAt?: Timestamp;
|
|
167
|
+
/**
|
|
168
|
+
* @generated from field: optional google.protobuf.Timestamp completed_at = 70;
|
|
169
|
+
*/
|
|
170
|
+
completedAt?: Timestamp;
|
|
171
|
+
/**
|
|
172
|
+
* TODO:
|
|
173
|
+
*
|
|
174
|
+
* @generated from field: tzero.v1.common.Decimal usd_volume = 80;
|
|
175
|
+
*/
|
|
176
|
+
usdVolume?: Decimal;
|
|
177
|
+
};
|
|
178
|
+
/**
|
|
179
|
+
* Describes the message tzero.v1.manage.GetPaymentsResponse.Payment.
|
|
180
|
+
* Use `create(GetPaymentsResponse_PaymentSchema)` to create a new message.
|
|
181
|
+
*/
|
|
182
|
+
export declare const GetPaymentsResponse_PaymentSchema: GenMessage<GetPaymentsResponse_Payment>;
|
|
183
|
+
/**
|
|
184
|
+
* @generated from enum tzero.v1.manage.GetPaymentsResponse.Payment.Type
|
|
185
|
+
*/
|
|
186
|
+
export declare enum GetPaymentsResponse_Payment_Type {
|
|
187
|
+
/**
|
|
188
|
+
* @generated from enum value: TYPE_UNSPECIFIED = 0;
|
|
189
|
+
*/
|
|
190
|
+
UNSPECIFIED = 0,
|
|
191
|
+
/**
|
|
192
|
+
* @generated from enum value: TYPE_INITIATED = 10;
|
|
193
|
+
*/
|
|
194
|
+
INITIATED = 10,
|
|
195
|
+
/**
|
|
196
|
+
* @generated from enum value: TYPE_PAID_OUT = 20;
|
|
197
|
+
*/
|
|
198
|
+
PAID_OUT = 20
|
|
199
|
+
}
|
|
200
|
+
/**
|
|
201
|
+
* Describes the enum tzero.v1.manage.GetPaymentsResponse.Payment.Type.
|
|
202
|
+
*/
|
|
203
|
+
export declare const GetPaymentsResponse_Payment_TypeSchema: GenEnum<GetPaymentsResponse_Payment_Type>;
|
|
204
|
+
/**
|
|
205
|
+
* @generated from enum tzero.v1.manage.GetPaymentsResponse.Payment.Status
|
|
206
|
+
*/
|
|
207
|
+
export declare enum GetPaymentsResponse_Payment_Status {
|
|
208
|
+
/**
|
|
209
|
+
* @generated from enum value: STATUS_UNSPECIFIED = 0;
|
|
210
|
+
*/
|
|
211
|
+
UNSPECIFIED = 0,
|
|
212
|
+
/**
|
|
213
|
+
* @generated from enum value: STATUS_ACCEPTED = 10;
|
|
214
|
+
*/
|
|
215
|
+
ACCEPTED = 10,
|
|
216
|
+
/**
|
|
217
|
+
* @generated from enum value: STATUS_SUCCESS = 20;
|
|
218
|
+
*/
|
|
219
|
+
SUCCESS = 20,
|
|
220
|
+
/**
|
|
221
|
+
* @generated from enum value: STATUS_FAILED = 30;
|
|
222
|
+
*/
|
|
223
|
+
FAILED = 30,
|
|
224
|
+
/**
|
|
225
|
+
* @generated from enum value: STATUS_PENDING_PRE_SETTLEMENT = 40;
|
|
226
|
+
*/
|
|
227
|
+
PENDING_PRE_SETTLEMENT = 40
|
|
228
|
+
}
|
|
229
|
+
/**
|
|
230
|
+
* Describes the enum tzero.v1.manage.GetPaymentsResponse.Payment.Status.
|
|
231
|
+
*/
|
|
232
|
+
export declare const GetPaymentsResponse_Payment_StatusSchema: GenEnum<GetPaymentsResponse_Payment_Status>;
|
|
233
|
+
/**
|
|
234
|
+
* @generated from message tzero.v1.manage.GetSettlementsRequest
|
|
235
|
+
*/
|
|
236
|
+
export type GetSettlementsRequest = Message<"tzero.v1.manage.GetSettlementsRequest"> & {
|
|
237
|
+
/**
|
|
238
|
+
* @generated from field: optional tzero.v1.manage.Page page = 10;
|
|
239
|
+
*/
|
|
240
|
+
page?: Page;
|
|
241
|
+
};
|
|
242
|
+
/**
|
|
243
|
+
* Describes the message tzero.v1.manage.GetSettlementsRequest.
|
|
244
|
+
* Use `create(GetSettlementsRequestSchema)` to create a new message.
|
|
245
|
+
*/
|
|
246
|
+
export declare const GetSettlementsRequestSchema: GenMessage<GetSettlementsRequest>;
|
|
247
|
+
/**
|
|
248
|
+
* @generated from message tzero.v1.manage.GetSettlementsResponse
|
|
249
|
+
*/
|
|
250
|
+
export type GetSettlementsResponse = Message<"tzero.v1.manage.GetSettlementsResponse"> & {};
|
|
251
|
+
/**
|
|
252
|
+
* Describes the message tzero.v1.manage.GetSettlementsResponse.
|
|
253
|
+
* Use `create(GetSettlementsResponseSchema)` to create a new message.
|
|
254
|
+
*/
|
|
255
|
+
export declare const GetSettlementsResponseSchema: GenMessage<GetSettlementsResponse>;
|
|
256
|
+
/**
|
|
257
|
+
* @generated from message tzero.v1.manage.GetSettlementsResponse.Settlement
|
|
258
|
+
*/
|
|
259
|
+
export type GetSettlementsResponse_Settlement = Message<"tzero.v1.manage.GetSettlementsResponse.Settlement"> & {
|
|
260
|
+
/**
|
|
261
|
+
* @generated from field: uint64 id = 10;
|
|
262
|
+
*/
|
|
263
|
+
id: bigint;
|
|
264
|
+
/**
|
|
265
|
+
* @generated from field: tzero.v1.manage.GetSettlementsResponse.Settlement.Type type = 20;
|
|
266
|
+
*/
|
|
267
|
+
type: GetSettlementsResponse_Settlement_Type;
|
|
268
|
+
/**
|
|
269
|
+
* @generated from field: uint32 counterpart_id = 30;
|
|
270
|
+
*/
|
|
271
|
+
counterpartId: number;
|
|
272
|
+
/**
|
|
273
|
+
* @generated from field: tzero.v1.common.Decimal usd_volume = 40;
|
|
274
|
+
*/
|
|
275
|
+
usdVolume?: Decimal;
|
|
276
|
+
/**
|
|
277
|
+
* @generated from field: google.protobuf.Timestamp created_at = 50;
|
|
278
|
+
*/
|
|
279
|
+
createdAt?: Timestamp;
|
|
280
|
+
};
|
|
281
|
+
/**
|
|
282
|
+
* Describes the message tzero.v1.manage.GetSettlementsResponse.Settlement.
|
|
283
|
+
* Use `create(GetSettlementsResponse_SettlementSchema)` to create a new message.
|
|
284
|
+
*/
|
|
285
|
+
export declare const GetSettlementsResponse_SettlementSchema: GenMessage<GetSettlementsResponse_Settlement>;
|
|
286
|
+
/**
|
|
287
|
+
* @generated from enum tzero.v1.manage.GetSettlementsResponse.Settlement.Type
|
|
288
|
+
*/
|
|
289
|
+
export declare enum GetSettlementsResponse_Settlement_Type {
|
|
290
|
+
/**
|
|
291
|
+
* @generated from enum value: TYPE_UNSPECIFIED = 0;
|
|
292
|
+
*/
|
|
293
|
+
UNSPECIFIED = 0,
|
|
294
|
+
/**
|
|
295
|
+
* @generated from enum value: TYPE_SENT = 10;
|
|
296
|
+
*/
|
|
297
|
+
SENT = 10,
|
|
298
|
+
/**
|
|
299
|
+
* @generated from enum value: TYPE_RECEIVED = 20;
|
|
300
|
+
*/
|
|
301
|
+
RECEIVED = 20
|
|
302
|
+
}
|
|
303
|
+
/**
|
|
304
|
+
* Describes the enum tzero.v1.manage.GetSettlementsResponse.Settlement.Type.
|
|
305
|
+
*/
|
|
306
|
+
export declare const GetSettlementsResponse_Settlement_TypeSchema: GenEnum<GetSettlementsResponse_Settlement_Type>;
|
|
307
|
+
/**
|
|
308
|
+
* @generated from message tzero.v1.manage.Provider
|
|
309
|
+
*/
|
|
310
|
+
export type Provider = Message<"tzero.v1.manage.Provider"> & {
|
|
311
|
+
/**
|
|
312
|
+
* @generated from field: uint32 id = 10;
|
|
313
|
+
*/
|
|
314
|
+
id: number;
|
|
315
|
+
/**
|
|
316
|
+
* @generated from field: string name = 20;
|
|
317
|
+
*/
|
|
318
|
+
name: string;
|
|
319
|
+
};
|
|
320
|
+
/**
|
|
321
|
+
* Describes the message tzero.v1.manage.Provider.
|
|
322
|
+
* Use `create(ProviderSchema)` to create a new message.
|
|
323
|
+
*/
|
|
324
|
+
export declare const ProviderSchema: GenMessage<Provider>;
|
|
325
|
+
/**
|
|
326
|
+
* @generated from message tzero.v1.manage.Page
|
|
327
|
+
*/
|
|
328
|
+
export type Page = Message<"tzero.v1.manage.Page"> & {
|
|
329
|
+
/**
|
|
330
|
+
* @generated from field: optional uint32 page = 10;
|
|
331
|
+
*/
|
|
332
|
+
page?: number;
|
|
333
|
+
/**
|
|
334
|
+
* 10 by default
|
|
335
|
+
*
|
|
336
|
+
* @generated from field: optional uint32 size = 20;
|
|
337
|
+
*/
|
|
338
|
+
size?: number;
|
|
339
|
+
};
|
|
340
|
+
/**
|
|
341
|
+
* Describes the message tzero.v1.manage.Page.
|
|
342
|
+
* Use `create(PageSchema)` to create a new message.
|
|
343
|
+
*/
|
|
344
|
+
export declare const PageSchema: GenMessage<Page>;
|
|
345
|
+
/**
|
|
346
|
+
* @generated from service tzero.v1.manage.DashboardService
|
|
347
|
+
*/
|
|
348
|
+
export declare const DashboardService: GenService<{
|
|
349
|
+
/**
|
|
350
|
+
* @generated from rpc tzero.v1.manage.DashboardService.GetVolume
|
|
351
|
+
*/
|
|
352
|
+
getVolume: {
|
|
353
|
+
methodKind: "unary";
|
|
354
|
+
input: typeof GetVolumeRequestSchema;
|
|
355
|
+
output: typeof GetVolumeResponseSchema;
|
|
356
|
+
};
|
|
357
|
+
/**
|
|
358
|
+
* @generated from rpc tzero.v1.manage.DashboardService.GetLimits
|
|
359
|
+
*/
|
|
360
|
+
getLimits: {
|
|
361
|
+
methodKind: "unary";
|
|
362
|
+
input: typeof GetLimitsRequestSchema;
|
|
363
|
+
output: typeof GetLimitsResponseSchema;
|
|
364
|
+
};
|
|
365
|
+
/**
|
|
366
|
+
* @generated from rpc tzero.v1.manage.DashboardService.GetPayments
|
|
367
|
+
*/
|
|
368
|
+
getPayments: {
|
|
369
|
+
methodKind: "unary";
|
|
370
|
+
input: typeof GetPaymentsRequestSchema;
|
|
371
|
+
output: typeof GetPaymentsResponseSchema;
|
|
372
|
+
};
|
|
373
|
+
/**
|
|
374
|
+
* @generated from rpc tzero.v1.manage.DashboardService.GetSettlements
|
|
375
|
+
*/
|
|
376
|
+
getSettlements: {
|
|
377
|
+
methodKind: "unary";
|
|
378
|
+
input: typeof GetSettlementsRequestSchema;
|
|
379
|
+
output: typeof GetSettlementsResponseSchema;
|
|
380
|
+
};
|
|
381
|
+
}>;
|
package/template/node_modules/@t-0/provider-sdk/lib/esm/common/gen/tzero/v1/manage/dashboard_pb.js
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file tzero/v1/manage/dashboard.proto (package tzero.v1.manage, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { enumDesc, fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { file_buf_validate_validate } from "../../../buf/validate/validate_pb.js";
|
|
6
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
7
|
+
import { file_tzero_v1_common_common } from "../common/common_pb.js";
|
|
8
|
+
/**
|
|
9
|
+
* Describes the file tzero/v1/manage/dashboard.proto.
|
|
10
|
+
*/
|
|
11
|
+
export const file_tzero_v1_manage_dashboard = /*@__PURE__*/ fileDesc("Ch90emVyby92MS9tYW5hZ2UvZGFzaGJvYXJkLnByb3RvEg90emVyby52MS5tYW5hZ2UiEgoQR2V0Vm9sdW1lUmVxdWVzdCKuAgoRR2V0Vm9sdW1lUmVzcG9uc2USOgoHdm9sdW1lcxgKIAMoCzIpLnR6ZXJvLnYxLm1hbmFnZS5HZXRWb2x1bWVSZXNwb25zZS5Wb2x1bWUSJwoFdG90YWwYFCABKAsyGC50emVyby52MS5jb21tb24uRGVjaW1hbBqzAQoGVm9sdW1lEisKCHByb3ZpZGVyGAogASgLMhkudHplcm8udjEubWFuYWdlLlByb3ZpZGVyEigKBnBheV9pbhgUIAEoCzIYLnR6ZXJvLnYxLmNvbW1vbi5EZWNpbWFsEikKB3BheV9vdXQYHiABKAsyGC50emVyby52MS5jb21tb24uRGVjaW1hbBInCgV0b3RhbBgoIAEoCzIYLnR6ZXJvLnYxLmNvbW1vbi5EZWNpbWFsIhIKEEdldExpbWl0c1JlcXVlc3QinAIKEUdldExpbWl0c1Jlc3BvbnNlEjgKBmxpbWl0cxgKIAMoCzIoLnR6ZXJvLnYxLm1hbmFnZS5HZXRMaW1pdHNSZXNwb25zZS5MaW1pdBrMAQoFTGltaXQSKwoIcHJvdmlkZXIYCiABKAsyGS50emVyby52MS5tYW5hZ2UuUHJvdmlkZXISLQoLY3JlZGl0X2xlZnQYFCABKAsyGC50emVyby52MS5jb21tb24uRGVjaW1hbBIuCgxjcmVkaXRfdXNhZ2UYHiABKAsyGC50emVyby52MS5jb21tb24uRGVjaW1hbBI3ChVwcmVzZXR0bGVtZW50X2JhbGFuY2UYKCABKAsyGC50emVyby52MS5jb21tb24uRGVjaW1hbCJHChJHZXRQYXltZW50c1JlcXVlc3QSKAoEcGFnZRgKIAEoCzIVLnR6ZXJvLnYxLm1hbmFnZS5QYWdlSACIAQFCBwoFX3BhZ2Ui1QUKE0dldFBheW1lbnRzUmVzcG9uc2USPgoIcGF5bWVudHMYCiADKAsyLC50emVyby52MS5tYW5hZ2UuR2V0UGF5bWVudHNSZXNwb25zZS5QYXltZW50Gv0ECgdQYXltZW50EgoKAmlkGAogASgEEj8KBHR5cGUYFCABKA4yMS50emVyby52MS5tYW5hZ2UuR2V0UGF5bWVudHNSZXNwb25zZS5QYXltZW50LlR5cGUSLgoLY291bnRlcnBhcnQYHiABKAsyGS50emVyby52MS5tYW5hZ2UuUHJvdmlkZXISQwoGc3RhdHVzGCggASgOMjMudHplcm8udjEubWFuYWdlLkdldFBheW1lbnRzUmVzcG9uc2UuUGF5bWVudC5TdGF0dXMSLgoKY3JlYXRlZF9hdBgyIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASNAoLYWNjZXB0ZWRfYXQYPCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSACIAQESNQoMY29tcGxldGVkX2F0GEYgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgBiAEBEiwKCnVzZF92b2x1bWUYUCABKAsyGC50emVyby52MS5jb21tb24uRGVjaW1hbCJDCgRUeXBlEhQKEFRZUEVfVU5TUEVDSUZJRUQQABISCg5UWVBFX0lOSVRJQVRFRBAKEhEKDVRZUEVfUEFJRF9PVVQQFCJ/CgZTdGF0dXMSFgoSU1RBVFVTX1VOU1BFQ0lGSUVEEAASEwoPU1RBVFVTX0FDQ0VQVEVEEAoSEgoOU1RBVFVTX1NVQ0NFU1MQFBIRCg1TVEFUVVNfRkFJTEVEEB4SIQodU1RBVFVTX1BFTkRJTkdfUFJFX1NFVFRMRU1FTlQQKEIOCgxfYWNjZXB0ZWRfYXRCDwoNX2NvbXBsZXRlZF9hdCJKChVHZXRTZXR0bGVtZW50c1JlcXVlc3QSKAoEcGFnZRgKIAEoCzIVLnR6ZXJvLnYxLm1hbmFnZS5QYWdlSACIAQFCBwoFX3BhZ2UisAIKFkdldFNldHRsZW1lbnRzUmVzcG9uc2UalQIKClNldHRsZW1lbnQSCgoCaWQYCiABKAQSRQoEdHlwZRgUIAEoDjI3LnR6ZXJvLnYxLm1hbmFnZS5HZXRTZXR0bGVtZW50c1Jlc3BvbnNlLlNldHRsZW1lbnQuVHlwZRIWCg5jb3VudGVycGFydF9pZBgeIAEoDRIsCgp1c2Rfdm9sdW1lGCggASgLMhgudHplcm8udjEuY29tbW9uLkRlY2ltYWwSLgoKY3JlYXRlZF9hdBgyIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiPgoEVHlwZRIUChBUWVBFX1VOU1BFQ0lGSUVEEAASDQoJVFlQRV9TRU5UEAoSEQoNVFlQRV9SRUNFSVZFRBAUIiQKCFByb3ZpZGVyEgoKAmlkGAogASgNEgwKBG5hbWUYFCABKAkiRwoEUGFnZRIRCgRwYWdlGAogASgNSACIAQESGgoEc2l6ZRgUIAEoDUIHukgEGgIQMkgBiAEBQgcKBV9wYWdlQgcKBV9zaXplMvcCChBEYXNoYm9hcmRTZXJ2aWNlElIKCUdldFZvbHVtZRIhLnR6ZXJvLnYxLm1hbmFnZS5HZXRWb2x1bWVSZXF1ZXN0GiIudHplcm8udjEubWFuYWdlLkdldFZvbHVtZVJlc3BvbnNlElIKCUdldExpbWl0cxIhLnR6ZXJvLnYxLm1hbmFnZS5HZXRMaW1pdHNSZXF1ZXN0GiIudHplcm8udjEubWFuYWdlLkdldExpbWl0c1Jlc3BvbnNlElgKC0dldFBheW1lbnRzEiMudHplcm8udjEubWFuYWdlLkdldFBheW1lbnRzUmVxdWVzdBokLnR6ZXJvLnYxLm1hbmFnZS5HZXRQYXltZW50c1Jlc3BvbnNlEmEKDkdldFNldHRsZW1lbnRzEiYudHplcm8udjEubWFuYWdlLkdldFNldHRsZW1lbnRzUmVxdWVzdBonLnR6ZXJvLnYxLm1hbmFnZS5HZXRTZXR0bGVtZW50c1Jlc3BvbnNlQoMBChNjb20udHplcm8udjEubWFuYWdlQg5EYXNoYm9hcmRQcm90b1ABogIDVFZNqgIPVHplcm8uVjEuTWFuYWdlygIPVHplcm9cVjFcTWFuYWdl4gIbVHplcm9cVjFcTWFuYWdlXEdQQk1ldGFkYXRh6gIRVHplcm86OlYxOjpNYW5hZ2ViBnByb3RvMw", [file_buf_validate_validate, file_google_protobuf_timestamp, file_tzero_v1_common_common]);
|
|
12
|
+
/**
|
|
13
|
+
* Describes the message tzero.v1.manage.GetVolumeRequest.
|
|
14
|
+
* Use `create(GetVolumeRequestSchema)` to create a new message.
|
|
15
|
+
*/
|
|
16
|
+
export const GetVolumeRequestSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_manage_dashboard, 0);
|
|
17
|
+
/**
|
|
18
|
+
* Describes the message tzero.v1.manage.GetVolumeResponse.
|
|
19
|
+
* Use `create(GetVolumeResponseSchema)` to create a new message.
|
|
20
|
+
*/
|
|
21
|
+
export const GetVolumeResponseSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_manage_dashboard, 1);
|
|
22
|
+
/**
|
|
23
|
+
* Describes the message tzero.v1.manage.GetVolumeResponse.Volume.
|
|
24
|
+
* Use `create(GetVolumeResponse_VolumeSchema)` to create a new message.
|
|
25
|
+
*/
|
|
26
|
+
export const GetVolumeResponse_VolumeSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_manage_dashboard, 1, 0);
|
|
27
|
+
/**
|
|
28
|
+
* Describes the message tzero.v1.manage.GetLimitsRequest.
|
|
29
|
+
* Use `create(GetLimitsRequestSchema)` to create a new message.
|
|
30
|
+
*/
|
|
31
|
+
export const GetLimitsRequestSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_manage_dashboard, 2);
|
|
32
|
+
/**
|
|
33
|
+
* Describes the message tzero.v1.manage.GetLimitsResponse.
|
|
34
|
+
* Use `create(GetLimitsResponseSchema)` to create a new message.
|
|
35
|
+
*/
|
|
36
|
+
export const GetLimitsResponseSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_manage_dashboard, 3);
|
|
37
|
+
/**
|
|
38
|
+
* Describes the message tzero.v1.manage.GetLimitsResponse.Limit.
|
|
39
|
+
* Use `create(GetLimitsResponse_LimitSchema)` to create a new message.
|
|
40
|
+
*/
|
|
41
|
+
export const GetLimitsResponse_LimitSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_manage_dashboard, 3, 0);
|
|
42
|
+
/**
|
|
43
|
+
* Describes the message tzero.v1.manage.GetPaymentsRequest.
|
|
44
|
+
* Use `create(GetPaymentsRequestSchema)` to create a new message.
|
|
45
|
+
*/
|
|
46
|
+
export const GetPaymentsRequestSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_manage_dashboard, 4);
|
|
47
|
+
/**
|
|
48
|
+
* Describes the message tzero.v1.manage.GetPaymentsResponse.
|
|
49
|
+
* Use `create(GetPaymentsResponseSchema)` to create a new message.
|
|
50
|
+
*/
|
|
51
|
+
export const GetPaymentsResponseSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_manage_dashboard, 5);
|
|
52
|
+
/**
|
|
53
|
+
* Describes the message tzero.v1.manage.GetPaymentsResponse.Payment.
|
|
54
|
+
* Use `create(GetPaymentsResponse_PaymentSchema)` to create a new message.
|
|
55
|
+
*/
|
|
56
|
+
export const GetPaymentsResponse_PaymentSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_manage_dashboard, 5, 0);
|
|
57
|
+
/**
|
|
58
|
+
* @generated from enum tzero.v1.manage.GetPaymentsResponse.Payment.Type
|
|
59
|
+
*/
|
|
60
|
+
export var GetPaymentsResponse_Payment_Type;
|
|
61
|
+
(function (GetPaymentsResponse_Payment_Type) {
|
|
62
|
+
/**
|
|
63
|
+
* @generated from enum value: TYPE_UNSPECIFIED = 0;
|
|
64
|
+
*/
|
|
65
|
+
GetPaymentsResponse_Payment_Type[GetPaymentsResponse_Payment_Type["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
|
66
|
+
/**
|
|
67
|
+
* @generated from enum value: TYPE_INITIATED = 10;
|
|
68
|
+
*/
|
|
69
|
+
GetPaymentsResponse_Payment_Type[GetPaymentsResponse_Payment_Type["INITIATED"] = 10] = "INITIATED";
|
|
70
|
+
/**
|
|
71
|
+
* @generated from enum value: TYPE_PAID_OUT = 20;
|
|
72
|
+
*/
|
|
73
|
+
GetPaymentsResponse_Payment_Type[GetPaymentsResponse_Payment_Type["PAID_OUT"] = 20] = "PAID_OUT";
|
|
74
|
+
})(GetPaymentsResponse_Payment_Type || (GetPaymentsResponse_Payment_Type = {}));
|
|
75
|
+
/**
|
|
76
|
+
* Describes the enum tzero.v1.manage.GetPaymentsResponse.Payment.Type.
|
|
77
|
+
*/
|
|
78
|
+
export const GetPaymentsResponse_Payment_TypeSchema = /*@__PURE__*/ enumDesc(file_tzero_v1_manage_dashboard, 5, 0, 0);
|
|
79
|
+
/**
|
|
80
|
+
* @generated from enum tzero.v1.manage.GetPaymentsResponse.Payment.Status
|
|
81
|
+
*/
|
|
82
|
+
export var GetPaymentsResponse_Payment_Status;
|
|
83
|
+
(function (GetPaymentsResponse_Payment_Status) {
|
|
84
|
+
/**
|
|
85
|
+
* @generated from enum value: STATUS_UNSPECIFIED = 0;
|
|
86
|
+
*/
|
|
87
|
+
GetPaymentsResponse_Payment_Status[GetPaymentsResponse_Payment_Status["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
|
88
|
+
/**
|
|
89
|
+
* @generated from enum value: STATUS_ACCEPTED = 10;
|
|
90
|
+
*/
|
|
91
|
+
GetPaymentsResponse_Payment_Status[GetPaymentsResponse_Payment_Status["ACCEPTED"] = 10] = "ACCEPTED";
|
|
92
|
+
/**
|
|
93
|
+
* @generated from enum value: STATUS_SUCCESS = 20;
|
|
94
|
+
*/
|
|
95
|
+
GetPaymentsResponse_Payment_Status[GetPaymentsResponse_Payment_Status["SUCCESS"] = 20] = "SUCCESS";
|
|
96
|
+
/**
|
|
97
|
+
* @generated from enum value: STATUS_FAILED = 30;
|
|
98
|
+
*/
|
|
99
|
+
GetPaymentsResponse_Payment_Status[GetPaymentsResponse_Payment_Status["FAILED"] = 30] = "FAILED";
|
|
100
|
+
/**
|
|
101
|
+
* @generated from enum value: STATUS_PENDING_PRE_SETTLEMENT = 40;
|
|
102
|
+
*/
|
|
103
|
+
GetPaymentsResponse_Payment_Status[GetPaymentsResponse_Payment_Status["PENDING_PRE_SETTLEMENT"] = 40] = "PENDING_PRE_SETTLEMENT";
|
|
104
|
+
})(GetPaymentsResponse_Payment_Status || (GetPaymentsResponse_Payment_Status = {}));
|
|
105
|
+
/**
|
|
106
|
+
* Describes the enum tzero.v1.manage.GetPaymentsResponse.Payment.Status.
|
|
107
|
+
*/
|
|
108
|
+
export const GetPaymentsResponse_Payment_StatusSchema = /*@__PURE__*/ enumDesc(file_tzero_v1_manage_dashboard, 5, 0, 1);
|
|
109
|
+
/**
|
|
110
|
+
* Describes the message tzero.v1.manage.GetSettlementsRequest.
|
|
111
|
+
* Use `create(GetSettlementsRequestSchema)` to create a new message.
|
|
112
|
+
*/
|
|
113
|
+
export const GetSettlementsRequestSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_manage_dashboard, 6);
|
|
114
|
+
/**
|
|
115
|
+
* Describes the message tzero.v1.manage.GetSettlementsResponse.
|
|
116
|
+
* Use `create(GetSettlementsResponseSchema)` to create a new message.
|
|
117
|
+
*/
|
|
118
|
+
export const GetSettlementsResponseSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_manage_dashboard, 7);
|
|
119
|
+
/**
|
|
120
|
+
* Describes the message tzero.v1.manage.GetSettlementsResponse.Settlement.
|
|
121
|
+
* Use `create(GetSettlementsResponse_SettlementSchema)` to create a new message.
|
|
122
|
+
*/
|
|
123
|
+
export const GetSettlementsResponse_SettlementSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_manage_dashboard, 7, 0);
|
|
124
|
+
/**
|
|
125
|
+
* @generated from enum tzero.v1.manage.GetSettlementsResponse.Settlement.Type
|
|
126
|
+
*/
|
|
127
|
+
export var GetSettlementsResponse_Settlement_Type;
|
|
128
|
+
(function (GetSettlementsResponse_Settlement_Type) {
|
|
129
|
+
/**
|
|
130
|
+
* @generated from enum value: TYPE_UNSPECIFIED = 0;
|
|
131
|
+
*/
|
|
132
|
+
GetSettlementsResponse_Settlement_Type[GetSettlementsResponse_Settlement_Type["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
|
133
|
+
/**
|
|
134
|
+
* @generated from enum value: TYPE_SENT = 10;
|
|
135
|
+
*/
|
|
136
|
+
GetSettlementsResponse_Settlement_Type[GetSettlementsResponse_Settlement_Type["SENT"] = 10] = "SENT";
|
|
137
|
+
/**
|
|
138
|
+
* @generated from enum value: TYPE_RECEIVED = 20;
|
|
139
|
+
*/
|
|
140
|
+
GetSettlementsResponse_Settlement_Type[GetSettlementsResponse_Settlement_Type["RECEIVED"] = 20] = "RECEIVED";
|
|
141
|
+
})(GetSettlementsResponse_Settlement_Type || (GetSettlementsResponse_Settlement_Type = {}));
|
|
142
|
+
/**
|
|
143
|
+
* Describes the enum tzero.v1.manage.GetSettlementsResponse.Settlement.Type.
|
|
144
|
+
*/
|
|
145
|
+
export const GetSettlementsResponse_Settlement_TypeSchema = /*@__PURE__*/ enumDesc(file_tzero_v1_manage_dashboard, 7, 0, 0);
|
|
146
|
+
/**
|
|
147
|
+
* Describes the message tzero.v1.manage.Provider.
|
|
148
|
+
* Use `create(ProviderSchema)` to create a new message.
|
|
149
|
+
*/
|
|
150
|
+
export const ProviderSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_manage_dashboard, 8);
|
|
151
|
+
/**
|
|
152
|
+
* Describes the message tzero.v1.manage.Page.
|
|
153
|
+
* Use `create(PageSchema)` to create a new message.
|
|
154
|
+
*/
|
|
155
|
+
export const PageSchema = /*@__PURE__*/ messageDesc(file_tzero_v1_manage_dashboard, 9);
|
|
156
|
+
/**
|
|
157
|
+
* @generated from service tzero.v1.manage.DashboardService
|
|
158
|
+
*/
|
|
159
|
+
export const DashboardService = /*@__PURE__*/ serviceDesc(file_tzero_v1_manage_dashboard, 0);
|
package/template/node_modules/@t-0/provider-sdk/lib/esm/common/gen/tzero/v1/payment/provider_pb.d.ts
CHANGED
|
@@ -563,12 +563,12 @@ export type UpdateLimitRequest_Limit = Message<"tzero.v1.payment.UpdateLimitRequ
|
|
|
563
563
|
version: bigint;
|
|
564
564
|
/**
|
|
565
565
|
* *
|
|
566
|
-
* the Id of the counterparty
|
|
566
|
+
* the Id of the counterparty provider, e.g. the provider that is providing the credit limit.
|
|
567
567
|
* It's usually the payOut provider, which provides the credit line to the payIn provider.
|
|
568
568
|
*
|
|
569
|
-
* @generated from field: int32
|
|
569
|
+
* @generated from field: int32 counterpart_id = 15;
|
|
570
570
|
*/
|
|
571
|
-
|
|
571
|
+
counterpartId: number;
|
|
572
572
|
/**
|
|
573
573
|
* *
|
|
574
574
|
* payout_limit = credit_limit - credit_usage, negative value means credit limit is exceeded,
|
package/template/node_modules/@t-0/provider-sdk/lib/esm/common/gen/tzero/v1/payment/provider_pb.js
CHANGED
|
@@ -11,7 +11,7 @@ import { file_buf_validate_validate } from "../../../buf/validate/validate_pb.js
|
|
|
11
11
|
/**
|
|
12
12
|
* Describes the file tzero/v1/payment/provider.proto.
|
|
13
13
|
*/
|
|
14
|
-
export const file_tzero_v1_payment_provider = /*@__PURE__*/ fileDesc("
|
|
14
|
+
export const file_tzero_v1_payment_provider = /*@__PURE__*/ fileDesc("Ch90emVyby92MS9wYXltZW50L3Byb3ZpZGVyLnByb3RvEhB0emVyby52MS5wYXltZW50IvcIChpBcHBlbmRMZWRnZXJFbnRyaWVzUmVxdWVzdBJYCgx0cmFuc2FjdGlvbnMYFCADKAsyOC50emVyby52MS5wYXltZW50LkFwcGVuZExlZGdlckVudHJpZXNSZXF1ZXN0LlRyYW5zYWN0aW9uQgi6SAWSAQIIARrXBAoLVHJhbnNhY3Rpb24SHwoOdHJhbnNhY3Rpb25faWQYCiABKARCB7pIBDICIAASUwoHZW50cmllcxgeIAMoCzI4LnR6ZXJvLnYxLnBheW1lbnQuQXBwZW5kTGVkZ2VyRW50cmllc1JlcXVlc3QuTGVkZ2VyRW50cnlCCLpIBZIBAggBElIKBnBheW91dBiCASABKAsyPy50emVyby52MS5wYXltZW50LkFwcGVuZExlZGdlckVudHJpZXNSZXF1ZXN0LlRyYW5zYWN0aW9uLlBheW91dEgAEmsKE3Byb3ZpZGVyX3NldHRsZW1lbnQYjAEgASgLMksudHplcm8udjEucGF5bWVudC5BcHBlbmRMZWRnZXJFbnRyaWVzUmVxdWVzdC5UcmFuc2FjdGlvbi5Qcm92aWRlclNldHRsZW1lbnRIABJhCg5mZWVfc2V0dGxlbWVudBiWASABKAsyRi50emVyby52MS5wYXltZW50LkFwcGVuZExlZGdlckVudHJpZXNSZXF1ZXN0LlRyYW5zYWN0aW9uLkZlZVNldHRsZW1lbnRIABolCgZQYXlvdXQSGwoKcGF5bWVudF9pZBgKIAEoBEIHukgEMgIgABo0ChJQcm92aWRlclNldHRsZW1lbnQSHgoNc2V0dGxlbWVudF9pZBgKIAEoBEIHukgEMgIgABozCg1GZWVTZXR0bGVtZW50EiIKEWZlZV9zZXR0bGVtZW50X2lkGAogASgEQge6SAQyAiAAQhwKE3RyYW5zYWN0aW9uX2RldGFpbHMSBbpIAggBGsoBCgtMZWRnZXJFbnRyeRIYChBhY2NvdW50X293bmVyX2lkGAogASgNEk4KDGFjY291bnRfdHlwZRgUIAEoDjI4LnR6ZXJvLnYxLnBheW1lbnQuQXBwZW5kTGVkZ2VyRW50cmllc1JlcXVlc3QuQWNjb3VudFR5cGUSJwoFZGViaXQYKCABKAsyGC50emVyby52MS5jb21tb24uRGVjaW1hbBIoCgZjcmVkaXQYMiABKAsyGC50emVyby52MS5jb21tb24uRGVjaW1hbCLXAQoLQWNjb3VudFR5cGUSHAoYQUNDT1VOVF9UWVBFX1VOU1BFQ0lGSUVEEAASGAoUQUNDT1VOVF9UWVBFX0JBTEFOQ0UQFBIXChNBQ0NPVU5UX1RZUEVfUEFZX0lOECgSGAoUQUNDT1VOVF9UWVBFX1BBWV9PVVQQMhIcChhBQ0NPVU5UX1RZUEVfRkVFX0VYUEVOU0UQPBIeChpBQ0NPVU5UX1RZUEVfU0VUVExFTUVOVF9JThBQEh8KG0FDQ09VTlRfVFlQRV9TRVRUTEVNRU5UX09VVBBaIh0KG0FwcGVuZExlZGdlckVudHJpZXNSZXNwb25zZSKaBAoNUGF5b3V0UmVxdWVzdBISCgpwYXltZW50X2lkGAogASgEEhEKCXBheW91dF9pZBgUIAEoBBIQCghjdXJyZW5jeRgeIAEoCRIXCg9jbGllbnRfcXVvdGVfaWQYKCABKAkSKAoGYW1vdW50GDIgASgLMhgudHplcm8udjEuY29tbW9uLkRlY2ltYWwSPAoOcGF5b3V0X2RldGFpbHMYPCABKAsyHy50emVyby52MS5jb21tb24uUGF5bWVudERldGFpbHNIAIgBARIaChJwYXlfaW5fcHJvdmlkZXJfaWQYUCABKA0STgoQdHJhdmVsX3J1bGVfZGF0YRjIASABKAsyLi50emVyby52MS5wYXltZW50LlBheW91dFJlcXVlc3QuVHJhdmVsUnVsZURhdGFIAYgBARq6AQoOVHJhdmVsUnVsZURhdGESLQoKb3JpZ2luYXRvchgKIAMoCzIPLml2bXMxMDEuUGVyc29uQgi6SAWSAQIIARIuCgtiZW5lZmljaWFyeRgUIAMoCzIPLml2bXMxMDEuUGVyc29uQgi6SAWSAQIIARIxChNvcmlnaW5hdG9yX3Byb3ZpZGVyGB4gASgLMg8uaXZtczEwMS5QZXJzb25IAIgBAUIWChRfb3JpZ2luYXRvcl9wcm92aWRlckIRCg9fcGF5b3V0X2RldGFpbHNCEwoRX3RyYXZlbF9ydWxlX2RhdGEijAIKDlBheW91dFJlc3BvbnNlEj0KCGFjY2VwdGVkGBQgASgLMikudHplcm8udjEucGF5bWVudC5QYXlvdXRSZXNwb25zZS5BY2NlcHRlZEgAEjkKBmZhaWxlZBgeIAEoCzInLnR6ZXJvLnYxLnBheW1lbnQuUGF5b3V0UmVzcG9uc2UuRmFpbGVkSAAaCgoIQWNjZXB0ZWQaagoGRmFpbGVkEj4KBnJlYXNvbhgKIAEoDjIuLnR6ZXJvLnYxLnBheW1lbnQuUGF5b3V0UmVzcG9uc2UuRmFpbGVkLlJlYXNvbiIgCgZSZWFzb24SFgoSUkVBU09OX1VOU1BFQ0lGSUVEEABCCAoGcmVzdWx0Io8GChRVcGRhdGVQYXltZW50UmVxdWVzdBISCgpwYXltZW50X2lkGAUgASgEEhkKEXBheW1lbnRfY2xpZW50X2lkGAogASgJEkMKCGFjY2VwdGVkGBQgASgLMi8udHplcm8udjEucGF5bWVudC5VcGRhdGVQYXltZW50UmVxdWVzdC5BY2NlcHRlZEgAEj8KBmZhaWxlZBgeIAEoCzItLnR6ZXJvLnYxLnBheW1lbnQuVXBkYXRlUGF5bWVudFJlcXVlc3QuRmFpbGVkSAASRQoJY29uZmlybWVkGCggASgLMjAudHplcm8udjEucGF5bWVudC5VcGRhdGVQYXltZW50UmVxdWVzdC5Db25maXJtZWRIABqOAgoIQWNjZXB0ZWQSLwoNcGF5b3V0X2Ftb3VudBgKIAEoCzIYLnR6ZXJvLnYxLmNvbW1vbi5EZWNpbWFsEl0KEHRyYXZlbF9ydWxlX2RhdGEYFCABKAsyPi50emVyby52MS5wYXltZW50LlVwZGF0ZVBheW1lbnRSZXF1ZXN0LkFjY2VwdGVkLlRyYXZlbFJ1bGVEYXRhSACIAQEaXQoOVHJhdmVsUnVsZURhdGESMgoUYmVuZWZpY2lhcnlfcHJvdmlkZXIYCiABKAsyDy5pdm1zMTAxLlBlcnNvbkgAiAEBQhcKFV9iZW5lZmljaWFyeV9wcm92aWRlckITChFfdHJhdmVsX3J1bGVfZGF0YRpwCgZGYWlsZWQSRAoGcmVhc29uGAogASgOMjQudHplcm8udjEucGF5bWVudC5VcGRhdGVQYXltZW50UmVxdWVzdC5GYWlsZWQuUmVhc29uIiAKBlJlYXNvbhIWChJSRUFTT05fVU5TUEVDSUZJRUQQABpuCglDb25maXJtZWQSLwoLcGFpZF9vdXRfYXQYCiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjAKB3JlY2VpcHQYFCABKAsyHy50emVyby52MS5jb21tb24uUGF5bWVudFJlY2VpcHRCCAoGcmVzdWx0IhcKFVVwZGF0ZVBheW1lbnRSZXNwb25zZSKTAgoSVXBkYXRlTGltaXRSZXF1ZXN0EjoKBmxpbWl0cxgKIAMoCzIqLnR6ZXJvLnYxLnBheW1lbnQuVXBkYXRlTGltaXRSZXF1ZXN0LkxpbWl0GsABCgVMaW1pdBIPCgd2ZXJzaW9uGAogASgDEhYKDmNvdW50ZXJwYXJ0X2lkGA8gASgFEi4KDHBheW91dF9saW1pdBgUIAEoCzIYLnR6ZXJvLnYxLmNvbW1vbi5EZWNpbWFsEi4KDGNyZWRpdF9saW1pdBgeIAEoCzIYLnR6ZXJvLnYxLmNvbW1vbi5EZWNpbWFsEi4KDGNyZWRpdF91c2FnZRgoIAEoCzIYLnR6ZXJvLnYxLmNvbW1vbi5EZWNpbWFsIhUKE1VwZGF0ZUxpbWl0UmVzcG9uc2UypAMKD1Byb3ZpZGVyU2VydmljZRJQCgZQYXlPdXQSHy50emVyby52MS5wYXltZW50LlBheW91dFJlcXVlc3QaIC50emVyby52MS5wYXltZW50LlBheW91dFJlc3BvbnNlIgOQAgISZQoNVXBkYXRlUGF5bWVudBImLnR6ZXJvLnYxLnBheW1lbnQuVXBkYXRlUGF5bWVudFJlcXVlc3QaJy50emVyby52MS5wYXltZW50LlVwZGF0ZVBheW1lbnRSZXNwb25zZSIDkAICEl8KC1VwZGF0ZUxpbWl0EiQudHplcm8udjEucGF5bWVudC5VcGRhdGVMaW1pdFJlcXVlc3QaJS50emVyby52MS5wYXltZW50LlVwZGF0ZUxpbWl0UmVzcG9uc2UiA5ACAhJ3ChNBcHBlbmRMZWRnZXJFbnRyaWVzEiwudHplcm8udjEucGF5bWVudC5BcHBlbmRMZWRnZXJFbnRyaWVzUmVxdWVzdBotLnR6ZXJvLnYxLnBheW1lbnQuQXBwZW5kTGVkZ2VyRW50cmllc1Jlc3BvbnNlIgOQAgJChwEKFGNvbS50emVyby52MS5wYXltZW50Qg1Qcm92aWRlclByb3RvUAGiAgNUVlCqAhBUemVyby5WMS5QYXltZW50ygIQVHplcm9cVjFcUGF5bWVudOICHFR6ZXJvXFYxXFBheW1lbnRcR1BCTWV0YWRhdGHqAhJUemVybzo6VjE6OlBheW1lbnRiBnByb3RvMw", [file_tzero_v1_common_payment_method, file_tzero_v1_common_payment_receipt, file_tzero_v1_common_common, file_ivms101_v1_ivms_ivms101, file_google_protobuf_timestamp, file_buf_validate_validate]);
|
|
15
15
|
/**
|
|
16
16
|
* Describes the message tzero.v1.payment.AppendLedgerEntriesRequest.
|
|
17
17
|
* Use `create(AppendLedgerEntriesRequestSchema)` to create a new message.
|