@meshtrade/api-old 1.57.0 → 1.58.0
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/dist/meshtrade/compliance/client/v1/client_pb.d.ts +41 -4
- package/dist/meshtrade/compliance/client/v1/client_pb.js +338 -54
- package/dist/meshtrade/compliance/client/v1/client_status_pb.d.ts +10 -0
- package/dist/meshtrade/compliance/client/v1/client_status_pb.js +35 -0
- package/dist/meshtrade/compliance/client/v1/company_pb.d.ts +24 -3
- package/dist/meshtrade/compliance/client/v1/company_pb.js +157 -16
- package/dist/meshtrade/compliance/client/v1/fund_pb.d.ts +6 -3
- package/dist/meshtrade/compliance/client/v1/fund_pb.js +46 -14
- package/dist/meshtrade/compliance/client/v1/index.d.ts +1 -0
- package/dist/meshtrade/compliance/client/v1/index.js +1 -0
- package/dist/meshtrade/compliance/client/v1/industry_classification_pb.d.ts +1 -0
- package/dist/meshtrade/compliance/client/v1/industry_classification_pb.js +2 -0
- package/dist/meshtrade/compliance/client/v1/service_grpc_web_client_meshts.d.ts +25 -1
- package/dist/meshtrade/compliance/client/v1/service_grpc_web_client_meshts.js +32 -0
- package/dist/meshtrade/compliance/client/v1/service_grpc_web_pb.d.ts +48 -0
- package/dist/meshtrade/compliance/client/v1/service_grpc_web_pb.js +246 -0
- package/dist/meshtrade/compliance/client/v1/service_pb.d.ts +87 -0
- package/dist/meshtrade/compliance/client/v1/service_pb.js +738 -0
- package/dist/meshtrade/compliance/client/v1/trust_pb.d.ts +6 -3
- package/dist/meshtrade/compliance/client/v1/trust_pb.js +46 -14
- package/dist/meshtrade/iam/user_profile/v1/service_grpc_web_client_meshts.d.ts +7 -1
- package/dist/meshtrade/iam/user_profile/v1/service_grpc_web_client_meshts.js +8 -0
- package/dist/meshtrade/iam/user_profile/v1/service_grpc_web_pb.d.ts +12 -0
- package/dist/meshtrade/iam/user_profile/v1/service_grpc_web_pb.js +61 -0
- package/dist/meshtrade/iam/user_profile/v1/service_pb.d.ts +48 -0
- package/dist/meshtrade/iam/user_profile/v1/service_pb.js +420 -0
- package/package.json +1 -1
|
@@ -30,6 +30,34 @@ export class ClientServiceClient {
|
|
|
30
30
|
response: meshtrade_compliance_client_v1_client_pb.Client) => void
|
|
31
31
|
): grpcWeb.ClientReadableStream<meshtrade_compliance_client_v1_client_pb.Client>;
|
|
32
32
|
|
|
33
|
+
updateClient(
|
|
34
|
+
request: meshtrade_compliance_client_v1_service_pb.UpdateClientRequest,
|
|
35
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
36
|
+
callback: (err: grpcWeb.RpcError,
|
|
37
|
+
response: meshtrade_compliance_client_v1_client_pb.Client) => void
|
|
38
|
+
): grpcWeb.ClientReadableStream<meshtrade_compliance_client_v1_client_pb.Client>;
|
|
39
|
+
|
|
40
|
+
startClientVerification(
|
|
41
|
+
request: meshtrade_compliance_client_v1_service_pb.StartClientVerificationRequest,
|
|
42
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
43
|
+
callback: (err: grpcWeb.RpcError,
|
|
44
|
+
response: meshtrade_compliance_client_v1_client_pb.Client) => void
|
|
45
|
+
): grpcWeb.ClientReadableStream<meshtrade_compliance_client_v1_client_pb.Client>;
|
|
46
|
+
|
|
47
|
+
failClientVerification(
|
|
48
|
+
request: meshtrade_compliance_client_v1_service_pb.FailClientVerificationRequest,
|
|
49
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
50
|
+
callback: (err: grpcWeb.RpcError,
|
|
51
|
+
response: meshtrade_compliance_client_v1_client_pb.Client) => void
|
|
52
|
+
): grpcWeb.ClientReadableStream<meshtrade_compliance_client_v1_client_pb.Client>;
|
|
53
|
+
|
|
54
|
+
markClientVerified(
|
|
55
|
+
request: meshtrade_compliance_client_v1_service_pb.MarkClientVerifiedRequest,
|
|
56
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
57
|
+
callback: (err: grpcWeb.RpcError,
|
|
58
|
+
response: meshtrade_compliance_client_v1_client_pb.Client) => void
|
|
59
|
+
): grpcWeb.ClientReadableStream<meshtrade_compliance_client_v1_client_pb.Client>;
|
|
60
|
+
|
|
33
61
|
listClients(
|
|
34
62
|
request: meshtrade_compliance_client_v1_service_pb.ListClientsRequest,
|
|
35
63
|
metadata: grpcWeb.Metadata | undefined,
|
|
@@ -59,6 +87,26 @@ export class ClientServicePromiseClient {
|
|
|
59
87
|
metadata?: grpcWeb.Metadata
|
|
60
88
|
): Promise<meshtrade_compliance_client_v1_client_pb.Client>;
|
|
61
89
|
|
|
90
|
+
updateClient(
|
|
91
|
+
request: meshtrade_compliance_client_v1_service_pb.UpdateClientRequest,
|
|
92
|
+
metadata?: grpcWeb.Metadata
|
|
93
|
+
): Promise<meshtrade_compliance_client_v1_client_pb.Client>;
|
|
94
|
+
|
|
95
|
+
startClientVerification(
|
|
96
|
+
request: meshtrade_compliance_client_v1_service_pb.StartClientVerificationRequest,
|
|
97
|
+
metadata?: grpcWeb.Metadata
|
|
98
|
+
): Promise<meshtrade_compliance_client_v1_client_pb.Client>;
|
|
99
|
+
|
|
100
|
+
failClientVerification(
|
|
101
|
+
request: meshtrade_compliance_client_v1_service_pb.FailClientVerificationRequest,
|
|
102
|
+
metadata?: grpcWeb.Metadata
|
|
103
|
+
): Promise<meshtrade_compliance_client_v1_client_pb.Client>;
|
|
104
|
+
|
|
105
|
+
markClientVerified(
|
|
106
|
+
request: meshtrade_compliance_client_v1_service_pb.MarkClientVerifiedRequest,
|
|
107
|
+
metadata?: grpcWeb.Metadata
|
|
108
|
+
): Promise<meshtrade_compliance_client_v1_client_pb.Client>;
|
|
109
|
+
|
|
62
110
|
listClients(
|
|
63
111
|
request: meshtrade_compliance_client_v1_service_pb.ListClientsRequest,
|
|
64
112
|
metadata?: grpcWeb.Metadata
|
|
@@ -22,6 +22,8 @@ grpc.web = require('grpc-web');
|
|
|
22
22
|
|
|
23
23
|
var buf_validate_validate_pb = require('../../../../buf/validate/validate_pb.js')
|
|
24
24
|
|
|
25
|
+
var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/timestamp_pb.js')
|
|
26
|
+
|
|
25
27
|
var meshtrade_compliance_client_v1_client_pb = require('../../../../meshtrade/compliance/client/v1/client_pb.js')
|
|
26
28
|
|
|
27
29
|
var meshtrade_option_method_options_v1_method_options_pb = require('../../../../meshtrade/option/method_options/v1/method_options_pb.js')
|
|
@@ -266,6 +268,250 @@ proto.meshtrade.compliance.client.v1.ClientServicePromiseClient.prototype.getGro
|
|
|
266
268
|
};
|
|
267
269
|
|
|
268
270
|
|
|
271
|
+
/**
|
|
272
|
+
* @const
|
|
273
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
274
|
+
* !proto.meshtrade.compliance.client.v1.UpdateClientRequest,
|
|
275
|
+
* !proto.meshtrade.compliance.client.v1.Client>}
|
|
276
|
+
*/
|
|
277
|
+
const methodDescriptor_ClientService_UpdateClient = new grpc.web.MethodDescriptor(
|
|
278
|
+
'/meshtrade.compliance.client.v1.ClientService/UpdateClient',
|
|
279
|
+
grpc.web.MethodType.UNARY,
|
|
280
|
+
proto.meshtrade.compliance.client.v1.UpdateClientRequest,
|
|
281
|
+
meshtrade_compliance_client_v1_client_pb.Client,
|
|
282
|
+
/**
|
|
283
|
+
* @param {!proto.meshtrade.compliance.client.v1.UpdateClientRequest} request
|
|
284
|
+
* @return {!Uint8Array}
|
|
285
|
+
*/
|
|
286
|
+
function(request) {
|
|
287
|
+
return request.serializeBinary();
|
|
288
|
+
},
|
|
289
|
+
meshtrade_compliance_client_v1_client_pb.Client.deserializeBinary
|
|
290
|
+
);
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
/**
|
|
294
|
+
* @param {!proto.meshtrade.compliance.client.v1.UpdateClientRequest} request The
|
|
295
|
+
* request proto
|
|
296
|
+
* @param {?Object<string, string>} metadata User defined
|
|
297
|
+
* call metadata
|
|
298
|
+
* @param {function(?grpc.web.RpcError, ?proto.meshtrade.compliance.client.v1.Client)}
|
|
299
|
+
* callback The callback function(error, response)
|
|
300
|
+
* @return {!grpc.web.ClientReadableStream<!proto.meshtrade.compliance.client.v1.Client>|undefined}
|
|
301
|
+
* The XHR Node Readable Stream
|
|
302
|
+
*/
|
|
303
|
+
proto.meshtrade.compliance.client.v1.ClientServiceClient.prototype.updateClient =
|
|
304
|
+
function(request, metadata, callback) {
|
|
305
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
306
|
+
'/meshtrade.compliance.client.v1.ClientService/UpdateClient',
|
|
307
|
+
request,
|
|
308
|
+
metadata || {},
|
|
309
|
+
methodDescriptor_ClientService_UpdateClient,
|
|
310
|
+
callback);
|
|
311
|
+
};
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
/**
|
|
315
|
+
* @param {!proto.meshtrade.compliance.client.v1.UpdateClientRequest} request The
|
|
316
|
+
* request proto
|
|
317
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
318
|
+
* call metadata
|
|
319
|
+
* @return {!Promise<!proto.meshtrade.compliance.client.v1.Client>}
|
|
320
|
+
* Promise that resolves to the response
|
|
321
|
+
*/
|
|
322
|
+
proto.meshtrade.compliance.client.v1.ClientServicePromiseClient.prototype.updateClient =
|
|
323
|
+
function(request, metadata) {
|
|
324
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
325
|
+
'/meshtrade.compliance.client.v1.ClientService/UpdateClient',
|
|
326
|
+
request,
|
|
327
|
+
metadata || {},
|
|
328
|
+
methodDescriptor_ClientService_UpdateClient);
|
|
329
|
+
};
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
/**
|
|
333
|
+
* @const
|
|
334
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
335
|
+
* !proto.meshtrade.compliance.client.v1.StartClientVerificationRequest,
|
|
336
|
+
* !proto.meshtrade.compliance.client.v1.Client>}
|
|
337
|
+
*/
|
|
338
|
+
const methodDescriptor_ClientService_StartClientVerification = new grpc.web.MethodDescriptor(
|
|
339
|
+
'/meshtrade.compliance.client.v1.ClientService/StartClientVerification',
|
|
340
|
+
grpc.web.MethodType.UNARY,
|
|
341
|
+
proto.meshtrade.compliance.client.v1.StartClientVerificationRequest,
|
|
342
|
+
meshtrade_compliance_client_v1_client_pb.Client,
|
|
343
|
+
/**
|
|
344
|
+
* @param {!proto.meshtrade.compliance.client.v1.StartClientVerificationRequest} request
|
|
345
|
+
* @return {!Uint8Array}
|
|
346
|
+
*/
|
|
347
|
+
function(request) {
|
|
348
|
+
return request.serializeBinary();
|
|
349
|
+
},
|
|
350
|
+
meshtrade_compliance_client_v1_client_pb.Client.deserializeBinary
|
|
351
|
+
);
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
/**
|
|
355
|
+
* @param {!proto.meshtrade.compliance.client.v1.StartClientVerificationRequest} request The
|
|
356
|
+
* request proto
|
|
357
|
+
* @param {?Object<string, string>} metadata User defined
|
|
358
|
+
* call metadata
|
|
359
|
+
* @param {function(?grpc.web.RpcError, ?proto.meshtrade.compliance.client.v1.Client)}
|
|
360
|
+
* callback The callback function(error, response)
|
|
361
|
+
* @return {!grpc.web.ClientReadableStream<!proto.meshtrade.compliance.client.v1.Client>|undefined}
|
|
362
|
+
* The XHR Node Readable Stream
|
|
363
|
+
*/
|
|
364
|
+
proto.meshtrade.compliance.client.v1.ClientServiceClient.prototype.startClientVerification =
|
|
365
|
+
function(request, metadata, callback) {
|
|
366
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
367
|
+
'/meshtrade.compliance.client.v1.ClientService/StartClientVerification',
|
|
368
|
+
request,
|
|
369
|
+
metadata || {},
|
|
370
|
+
methodDescriptor_ClientService_StartClientVerification,
|
|
371
|
+
callback);
|
|
372
|
+
};
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
/**
|
|
376
|
+
* @param {!proto.meshtrade.compliance.client.v1.StartClientVerificationRequest} request The
|
|
377
|
+
* request proto
|
|
378
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
379
|
+
* call metadata
|
|
380
|
+
* @return {!Promise<!proto.meshtrade.compliance.client.v1.Client>}
|
|
381
|
+
* Promise that resolves to the response
|
|
382
|
+
*/
|
|
383
|
+
proto.meshtrade.compliance.client.v1.ClientServicePromiseClient.prototype.startClientVerification =
|
|
384
|
+
function(request, metadata) {
|
|
385
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
386
|
+
'/meshtrade.compliance.client.v1.ClientService/StartClientVerification',
|
|
387
|
+
request,
|
|
388
|
+
metadata || {},
|
|
389
|
+
methodDescriptor_ClientService_StartClientVerification);
|
|
390
|
+
};
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
/**
|
|
394
|
+
* @const
|
|
395
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
396
|
+
* !proto.meshtrade.compliance.client.v1.FailClientVerificationRequest,
|
|
397
|
+
* !proto.meshtrade.compliance.client.v1.Client>}
|
|
398
|
+
*/
|
|
399
|
+
const methodDescriptor_ClientService_FailClientVerification = new grpc.web.MethodDescriptor(
|
|
400
|
+
'/meshtrade.compliance.client.v1.ClientService/FailClientVerification',
|
|
401
|
+
grpc.web.MethodType.UNARY,
|
|
402
|
+
proto.meshtrade.compliance.client.v1.FailClientVerificationRequest,
|
|
403
|
+
meshtrade_compliance_client_v1_client_pb.Client,
|
|
404
|
+
/**
|
|
405
|
+
* @param {!proto.meshtrade.compliance.client.v1.FailClientVerificationRequest} request
|
|
406
|
+
* @return {!Uint8Array}
|
|
407
|
+
*/
|
|
408
|
+
function(request) {
|
|
409
|
+
return request.serializeBinary();
|
|
410
|
+
},
|
|
411
|
+
meshtrade_compliance_client_v1_client_pb.Client.deserializeBinary
|
|
412
|
+
);
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
/**
|
|
416
|
+
* @param {!proto.meshtrade.compliance.client.v1.FailClientVerificationRequest} request The
|
|
417
|
+
* request proto
|
|
418
|
+
* @param {?Object<string, string>} metadata User defined
|
|
419
|
+
* call metadata
|
|
420
|
+
* @param {function(?grpc.web.RpcError, ?proto.meshtrade.compliance.client.v1.Client)}
|
|
421
|
+
* callback The callback function(error, response)
|
|
422
|
+
* @return {!grpc.web.ClientReadableStream<!proto.meshtrade.compliance.client.v1.Client>|undefined}
|
|
423
|
+
* The XHR Node Readable Stream
|
|
424
|
+
*/
|
|
425
|
+
proto.meshtrade.compliance.client.v1.ClientServiceClient.prototype.failClientVerification =
|
|
426
|
+
function(request, metadata, callback) {
|
|
427
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
428
|
+
'/meshtrade.compliance.client.v1.ClientService/FailClientVerification',
|
|
429
|
+
request,
|
|
430
|
+
metadata || {},
|
|
431
|
+
methodDescriptor_ClientService_FailClientVerification,
|
|
432
|
+
callback);
|
|
433
|
+
};
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
/**
|
|
437
|
+
* @param {!proto.meshtrade.compliance.client.v1.FailClientVerificationRequest} request The
|
|
438
|
+
* request proto
|
|
439
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
440
|
+
* call metadata
|
|
441
|
+
* @return {!Promise<!proto.meshtrade.compliance.client.v1.Client>}
|
|
442
|
+
* Promise that resolves to the response
|
|
443
|
+
*/
|
|
444
|
+
proto.meshtrade.compliance.client.v1.ClientServicePromiseClient.prototype.failClientVerification =
|
|
445
|
+
function(request, metadata) {
|
|
446
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
447
|
+
'/meshtrade.compliance.client.v1.ClientService/FailClientVerification',
|
|
448
|
+
request,
|
|
449
|
+
metadata || {},
|
|
450
|
+
methodDescriptor_ClientService_FailClientVerification);
|
|
451
|
+
};
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
/**
|
|
455
|
+
* @const
|
|
456
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
457
|
+
* !proto.meshtrade.compliance.client.v1.MarkClientVerifiedRequest,
|
|
458
|
+
* !proto.meshtrade.compliance.client.v1.Client>}
|
|
459
|
+
*/
|
|
460
|
+
const methodDescriptor_ClientService_MarkClientVerified = new grpc.web.MethodDescriptor(
|
|
461
|
+
'/meshtrade.compliance.client.v1.ClientService/MarkClientVerified',
|
|
462
|
+
grpc.web.MethodType.UNARY,
|
|
463
|
+
proto.meshtrade.compliance.client.v1.MarkClientVerifiedRequest,
|
|
464
|
+
meshtrade_compliance_client_v1_client_pb.Client,
|
|
465
|
+
/**
|
|
466
|
+
* @param {!proto.meshtrade.compliance.client.v1.MarkClientVerifiedRequest} request
|
|
467
|
+
* @return {!Uint8Array}
|
|
468
|
+
*/
|
|
469
|
+
function(request) {
|
|
470
|
+
return request.serializeBinary();
|
|
471
|
+
},
|
|
472
|
+
meshtrade_compliance_client_v1_client_pb.Client.deserializeBinary
|
|
473
|
+
);
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
/**
|
|
477
|
+
* @param {!proto.meshtrade.compliance.client.v1.MarkClientVerifiedRequest} request The
|
|
478
|
+
* request proto
|
|
479
|
+
* @param {?Object<string, string>} metadata User defined
|
|
480
|
+
* call metadata
|
|
481
|
+
* @param {function(?grpc.web.RpcError, ?proto.meshtrade.compliance.client.v1.Client)}
|
|
482
|
+
* callback The callback function(error, response)
|
|
483
|
+
* @return {!grpc.web.ClientReadableStream<!proto.meshtrade.compliance.client.v1.Client>|undefined}
|
|
484
|
+
* The XHR Node Readable Stream
|
|
485
|
+
*/
|
|
486
|
+
proto.meshtrade.compliance.client.v1.ClientServiceClient.prototype.markClientVerified =
|
|
487
|
+
function(request, metadata, callback) {
|
|
488
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
489
|
+
'/meshtrade.compliance.client.v1.ClientService/MarkClientVerified',
|
|
490
|
+
request,
|
|
491
|
+
metadata || {},
|
|
492
|
+
methodDescriptor_ClientService_MarkClientVerified,
|
|
493
|
+
callback);
|
|
494
|
+
};
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
/**
|
|
498
|
+
* @param {!proto.meshtrade.compliance.client.v1.MarkClientVerifiedRequest} request The
|
|
499
|
+
* request proto
|
|
500
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
501
|
+
* call metadata
|
|
502
|
+
* @return {!Promise<!proto.meshtrade.compliance.client.v1.Client>}
|
|
503
|
+
* Promise that resolves to the response
|
|
504
|
+
*/
|
|
505
|
+
proto.meshtrade.compliance.client.v1.ClientServicePromiseClient.prototype.markClientVerified =
|
|
506
|
+
function(request, metadata) {
|
|
507
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
508
|
+
'/meshtrade.compliance.client.v1.ClientService/MarkClientVerified',
|
|
509
|
+
request,
|
|
510
|
+
metadata || {},
|
|
511
|
+
methodDescriptor_ClientService_MarkClientVerified);
|
|
512
|
+
};
|
|
513
|
+
|
|
514
|
+
|
|
269
515
|
/**
|
|
270
516
|
* @const
|
|
271
517
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as jspb from 'google-protobuf'
|
|
2
2
|
|
|
3
3
|
import * as buf_validate_validate_pb from '../../../../buf/validate/validate_pb'; // proto import: "buf/validate/validate.proto"
|
|
4
|
+
import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb'; // proto import: "google/protobuf/timestamp.proto"
|
|
4
5
|
import * as meshtrade_compliance_client_v1_client_pb from '../../../../meshtrade/compliance/client/v1/client_pb'; // proto import: "meshtrade/compliance/client/v1/client.proto"
|
|
5
6
|
import * as meshtrade_option_method_options_v1_method_options_pb from '../../../../meshtrade/option/method_options/v1/method_options_pb'; // proto import: "meshtrade/option/method_options/v1/method_options.proto"
|
|
6
7
|
|
|
@@ -43,6 +44,26 @@ export namespace CreateClientRequest {
|
|
|
43
44
|
}
|
|
44
45
|
}
|
|
45
46
|
|
|
47
|
+
export class UpdateClientRequest extends jspb.Message {
|
|
48
|
+
getClient(): meshtrade_compliance_client_v1_client_pb.Client | undefined;
|
|
49
|
+
setClient(value?: meshtrade_compliance_client_v1_client_pb.Client): UpdateClientRequest;
|
|
50
|
+
hasClient(): boolean;
|
|
51
|
+
clearClient(): UpdateClientRequest;
|
|
52
|
+
|
|
53
|
+
serializeBinary(): Uint8Array;
|
|
54
|
+
toObject(includeInstance?: boolean): UpdateClientRequest.AsObject;
|
|
55
|
+
static toObject(includeInstance: boolean, msg: UpdateClientRequest): UpdateClientRequest.AsObject;
|
|
56
|
+
static serializeBinaryToWriter(message: UpdateClientRequest, writer: jspb.BinaryWriter): void;
|
|
57
|
+
static deserializeBinary(bytes: Uint8Array): UpdateClientRequest;
|
|
58
|
+
static deserializeBinaryFromReader(message: UpdateClientRequest, reader: jspb.BinaryReader): UpdateClientRequest;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export namespace UpdateClientRequest {
|
|
62
|
+
export type AsObject = {
|
|
63
|
+
client?: meshtrade_compliance_client_v1_client_pb.Client.AsObject,
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
46
67
|
export class GetGroupClientRequest extends jspb.Message {
|
|
47
68
|
getGroup(): string;
|
|
48
69
|
setGroup(value: string): GetGroupClientRequest;
|
|
@@ -61,6 +82,72 @@ export namespace GetGroupClientRequest {
|
|
|
61
82
|
}
|
|
62
83
|
}
|
|
63
84
|
|
|
85
|
+
export class StartClientVerificationRequest extends jspb.Message {
|
|
86
|
+
getClient(): string;
|
|
87
|
+
setClient(value: string): StartClientVerificationRequest;
|
|
88
|
+
|
|
89
|
+
serializeBinary(): Uint8Array;
|
|
90
|
+
toObject(includeInstance?: boolean): StartClientVerificationRequest.AsObject;
|
|
91
|
+
static toObject(includeInstance: boolean, msg: StartClientVerificationRequest): StartClientVerificationRequest.AsObject;
|
|
92
|
+
static serializeBinaryToWriter(message: StartClientVerificationRequest, writer: jspb.BinaryWriter): void;
|
|
93
|
+
static deserializeBinary(bytes: Uint8Array): StartClientVerificationRequest;
|
|
94
|
+
static deserializeBinaryFromReader(message: StartClientVerificationRequest, reader: jspb.BinaryReader): StartClientVerificationRequest;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
export namespace StartClientVerificationRequest {
|
|
98
|
+
export type AsObject = {
|
|
99
|
+
client: string,
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export class FailClientVerificationRequest extends jspb.Message {
|
|
104
|
+
getClient(): string;
|
|
105
|
+
setClient(value: string): FailClientVerificationRequest;
|
|
106
|
+
|
|
107
|
+
getCommentsList(): Array<string>;
|
|
108
|
+
setCommentsList(value: Array<string>): FailClientVerificationRequest;
|
|
109
|
+
clearCommentsList(): FailClientVerificationRequest;
|
|
110
|
+
addComments(value: string, index?: number): FailClientVerificationRequest;
|
|
111
|
+
|
|
112
|
+
serializeBinary(): Uint8Array;
|
|
113
|
+
toObject(includeInstance?: boolean): FailClientVerificationRequest.AsObject;
|
|
114
|
+
static toObject(includeInstance: boolean, msg: FailClientVerificationRequest): FailClientVerificationRequest.AsObject;
|
|
115
|
+
static serializeBinaryToWriter(message: FailClientVerificationRequest, writer: jspb.BinaryWriter): void;
|
|
116
|
+
static deserializeBinary(bytes: Uint8Array): FailClientVerificationRequest;
|
|
117
|
+
static deserializeBinaryFromReader(message: FailClientVerificationRequest, reader: jspb.BinaryReader): FailClientVerificationRequest;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
export namespace FailClientVerificationRequest {
|
|
121
|
+
export type AsObject = {
|
|
122
|
+
client: string,
|
|
123
|
+
commentsList: Array<string>,
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export class MarkClientVerifiedRequest extends jspb.Message {
|
|
128
|
+
getClient(): string;
|
|
129
|
+
setClient(value: string): MarkClientVerifiedRequest;
|
|
130
|
+
|
|
131
|
+
getNextVerificationDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
132
|
+
setNextVerificationDate(value?: google_protobuf_timestamp_pb.Timestamp): MarkClientVerifiedRequest;
|
|
133
|
+
hasNextVerificationDate(): boolean;
|
|
134
|
+
clearNextVerificationDate(): MarkClientVerifiedRequest;
|
|
135
|
+
|
|
136
|
+
serializeBinary(): Uint8Array;
|
|
137
|
+
toObject(includeInstance?: boolean): MarkClientVerifiedRequest.AsObject;
|
|
138
|
+
static toObject(includeInstance: boolean, msg: MarkClientVerifiedRequest): MarkClientVerifiedRequest.AsObject;
|
|
139
|
+
static serializeBinaryToWriter(message: MarkClientVerifiedRequest, writer: jspb.BinaryWriter): void;
|
|
140
|
+
static deserializeBinary(bytes: Uint8Array): MarkClientVerifiedRequest;
|
|
141
|
+
static deserializeBinaryFromReader(message: MarkClientVerifiedRequest, reader: jspb.BinaryReader): MarkClientVerifiedRequest;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export namespace MarkClientVerifiedRequest {
|
|
145
|
+
export type AsObject = {
|
|
146
|
+
client: string,
|
|
147
|
+
nextVerificationDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
64
151
|
export class ListClientsRequest extends jspb.Message {
|
|
65
152
|
serializeBinary(): Uint8Array;
|
|
66
153
|
toObject(includeInstance?: boolean): ListClientsRequest.AsObject;
|