File tree Expand file tree Collapse file tree
sdk-react-provider/src/lib Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1094,7 +1094,6 @@ export type {
10941094 MoveIbanPayload ,
10951095 LinkAddress ,
10961096 Profile ,
1097- ProfilePermissions ,
10981097 Token ,
10991098 SubmitProfileDetailsPayload ,
11001099 NewOrder ,
Original file line number Diff line number Diff line change @@ -242,22 +242,18 @@ export interface Identifier {
242242 bic ?: string ;
243243}
244244
245- export interface ProfilePermissions {
246- id : string ;
247- kind : ProfileType ;
248- name : string ;
249- perms : Permission [ ] ;
250- }
251245export interface ProfilesResponse {
252- profiles : ProfilePermissions [ ] ;
246+ profiles : Profile [ ] ;
253247}
254248export interface Profile {
255249 id : string ;
256250 name : string ;
257251 kind : ProfileType ;
258252 state : ProfileState ;
259- kyc : KYC ;
253+ // kyc: KYC;
260254}
255+ /** @deprecated use Profile */
256+ export type ProfilePermissions = Profile ;
261257
262258export interface ProfilesQueryParams {
263259 /** profile state to filter by */
You can’t perform that action at this time.
0 commit comments