@meshtrade/api-old 1.56.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.
Files changed (27) hide show
  1. package/dist/meshtrade/compliance/client/v1/client_pb.d.ts +41 -4
  2. package/dist/meshtrade/compliance/client/v1/client_pb.js +338 -54
  3. package/dist/meshtrade/compliance/client/v1/client_status_pb.d.ts +10 -0
  4. package/dist/meshtrade/compliance/client/v1/client_status_pb.js +35 -0
  5. package/dist/meshtrade/compliance/client/v1/company_pb.d.ts +24 -3
  6. package/dist/meshtrade/compliance/client/v1/company_pb.js +157 -16
  7. package/dist/meshtrade/compliance/client/v1/fund_pb.d.ts +6 -3
  8. package/dist/meshtrade/compliance/client/v1/fund_pb.js +46 -14
  9. package/dist/meshtrade/compliance/client/v1/index.d.ts +1 -0
  10. package/dist/meshtrade/compliance/client/v1/index.js +1 -0
  11. package/dist/meshtrade/compliance/client/v1/industry_classification_pb.d.ts +1 -0
  12. package/dist/meshtrade/compliance/client/v1/industry_classification_pb.js +2 -0
  13. package/dist/meshtrade/compliance/client/v1/service_grpc_web_client_meshts.d.ts +25 -1
  14. package/dist/meshtrade/compliance/client/v1/service_grpc_web_client_meshts.js +32 -0
  15. package/dist/meshtrade/compliance/client/v1/service_grpc_web_pb.d.ts +48 -0
  16. package/dist/meshtrade/compliance/client/v1/service_grpc_web_pb.js +246 -0
  17. package/dist/meshtrade/compliance/client/v1/service_pb.d.ts +87 -0
  18. package/dist/meshtrade/compliance/client/v1/service_pb.js +738 -0
  19. package/dist/meshtrade/compliance/client/v1/trust_pb.d.ts +6 -3
  20. package/dist/meshtrade/compliance/client/v1/trust_pb.js +46 -14
  21. package/dist/meshtrade/iam/user_profile/v1/service_grpc_web_client_meshts.d.ts +7 -1
  22. package/dist/meshtrade/iam/user_profile/v1/service_grpc_web_client_meshts.js +8 -0
  23. package/dist/meshtrade/iam/user_profile/v1/service_grpc_web_pb.d.ts +12 -0
  24. package/dist/meshtrade/iam/user_profile/v1/service_grpc_web_pb.js +61 -0
  25. package/dist/meshtrade/iam/user_profile/v1/service_pb.d.ts +48 -0
  26. package/dist/meshtrade/iam/user_profile/v1/service_pb.js +420 -0
  27. package/package.json +1 -1
@@ -6,6 +6,7 @@ import * as meshtrade_compliance_client_v1_company_pb from '../../../../meshtrad
6
6
  import * as meshtrade_compliance_client_v1_fund_pb from '../../../../meshtrade/compliance/client/v1/fund_pb'; // proto import: "meshtrade/compliance/client/v1/fund.proto"
7
7
  import * as meshtrade_compliance_client_v1_natural_person_pb from '../../../../meshtrade/compliance/client/v1/natural_person_pb'; // proto import: "meshtrade/compliance/client/v1/natural_person.proto"
8
8
  import * as meshtrade_compliance_client_v1_trust_pb from '../../../../meshtrade/compliance/client/v1/trust_pb'; // proto import: "meshtrade/compliance/client/v1/trust.proto"
9
+ import * as meshtrade_compliance_client_v1_client_status_pb from '../../../../meshtrade/compliance/client/v1/client_status_pb'; // proto import: "meshtrade/compliance/client/v1/client_status.proto"
9
10
  import * as meshtrade_compliance_client_v1_verification_status_pb from '../../../../meshtrade/compliance/client/v1/verification_status_pb'; // proto import: "meshtrade/compliance/client/v1/verification_status.proto"
10
11
 
11
12
 
@@ -24,6 +25,9 @@ export class Client extends jspb.Message {
24
25
  getDisplayName(): string;
25
26
  setDisplayName(value: string): Client;
26
27
 
28
+ getShortName(): string;
29
+ setShortName(value: string): Client;
30
+
27
31
  getNaturalPerson(): meshtrade_compliance_client_v1_natural_person_pb.NaturalPerson | undefined;
28
32
  setNaturalPerson(value?: meshtrade_compliance_client_v1_natural_person_pb.NaturalPerson): Client;
29
33
  hasNaturalPerson(): boolean;
@@ -50,6 +54,9 @@ export class Client extends jspb.Message {
50
54
  getVerificationAuthority(): string;
51
55
  setVerificationAuthority(value: string): Client;
52
56
 
57
+ getVerificationAuthorityDisplayName(): string;
58
+ setVerificationAuthorityDisplayName(value: string): Client;
59
+
53
60
  getVerificationDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
54
61
  setVerificationDate(value?: google_protobuf_timestamp_pb.Timestamp): Client;
55
62
  hasVerificationDate(): boolean;
@@ -60,6 +67,28 @@ export class Client extends jspb.Message {
60
67
  hasNextVerificationDate(): boolean;
61
68
  clearNextVerificationDate(): Client;
62
69
 
70
+ getCreationDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
71
+ setCreationDate(value?: google_protobuf_timestamp_pb.Timestamp): Client;
72
+ hasCreationDate(): boolean;
73
+ clearCreationDate(): Client;
74
+
75
+ getStatus(): meshtrade_compliance_client_v1_client_status_pb.ClientStatus;
76
+ setStatus(value: meshtrade_compliance_client_v1_client_status_pb.ClientStatus): Client;
77
+
78
+ getVerificationStatusReason(): string;
79
+ setVerificationStatusReason(value: string): Client;
80
+
81
+ getDescription(): string;
82
+ setDescription(value: string): Client;
83
+
84
+ getPaasAgreementVersion(): string;
85
+ setPaasAgreementVersion(value: string): Client;
86
+
87
+ getRolesList(): Array<number>;
88
+ setRolesList(value: Array<number>): Client;
89
+ clearRolesList(): Client;
90
+ addRoles(value: number, index?: number): Client;
91
+
63
92
  getLegalPersonCase(): Client.LegalPersonCase;
64
93
 
65
94
  serializeBinary(): Uint8Array;
@@ -76,22 +105,30 @@ export namespace Client {
76
105
  owner: string,
77
106
  ownersList: Array<string>,
78
107
  displayName: string,
108
+ shortName: string,
79
109
  naturalPerson?: meshtrade_compliance_client_v1_natural_person_pb.NaturalPerson.AsObject,
80
110
  company?: meshtrade_compliance_client_v1_company_pb.Company.AsObject,
81
111
  fund?: meshtrade_compliance_client_v1_fund_pb.Fund.AsObject,
82
112
  trust?: meshtrade_compliance_client_v1_trust_pb.Trust.AsObject,
83
113
  verificationStatus: meshtrade_compliance_client_v1_verification_status_pb.VerificationStatus,
84
114
  verificationAuthority: string,
115
+ verificationAuthorityDisplayName: string,
85
116
  verificationDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
86
117
  nextVerificationDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
118
+ creationDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
119
+ status: meshtrade_compliance_client_v1_client_status_pb.ClientStatus,
120
+ verificationStatusReason: string,
121
+ description: string,
122
+ paasAgreementVersion: string,
123
+ rolesList: Array<number>,
87
124
  }
88
125
 
89
126
  export enum LegalPersonCase {
90
127
  LEGAL_PERSON_NOT_SET = 0,
91
- NATURAL_PERSON = 5,
92
- COMPANY = 6,
93
- FUND = 7,
94
- TRUST = 8,
128
+ NATURAL_PERSON = 6,
129
+ COMPANY = 7,
130
+ FUND = 8,
131
+ TRUST = 9,
95
132
  }
96
133
  }
97
134