@fiado/type-kit 3.248.0 → 3.250.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.
@@ -2,7 +2,7 @@ import { BankAccountExternalAddress } from "./BankAccountExternalAddress";
2
2
  import { UserEntityStatusEnum } from "../enums/UserEntityStatusEnum";
3
3
  import { SexDocument, TypeOfDocument } from "../../identity";
4
4
  import { Country } from "../../country";
5
- import { KycStatus } from "../../card";
5
+ import { GetBankAccountCardResponse, KycStatus } from "../../card";
6
6
  export declare class GetBankAccountUserResponse {
7
7
  id: string;
8
8
  typeOfUserId: string;
@@ -24,4 +24,5 @@ export declare class GetBankAccountUserResponse {
24
24
  deletedDate?: string;
25
25
  updatedBy?: string;
26
26
  accountIds?: number[];
27
+ cards?: GetBankAccountCardResponse[];
27
28
  }
@@ -0,0 +1,4 @@
1
+ export interface DeleteLeadGroupResponse {
2
+ deleted: boolean;
3
+ groupId: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -18,6 +18,7 @@ export * from './dtos/UpdateLeadGroupRequest';
18
18
  export * from './dtos/AssignLeadToGroupRequest';
19
19
  export * from './dtos/LeadGroupResponse';
20
20
  export * from './dtos/ListLeadGroupsResponse';
21
+ export * from './dtos/DeleteLeadGroupResponse';
21
22
  export * from './dtos/GetPhotoUploadUrlRequest';
22
23
  export * from './dtos/PhotoUploadUrlResponse';
23
24
  export * from './dtos/DeletePhotoResponse';
@@ -38,6 +38,7 @@ __exportStar(require("./dtos/UpdateLeadGroupRequest"), exports);
38
38
  __exportStar(require("./dtos/AssignLeadToGroupRequest"), exports);
39
39
  __exportStar(require("./dtos/LeadGroupResponse"), exports);
40
40
  __exportStar(require("./dtos/ListLeadGroupsResponse"), exports);
41
+ __exportStar(require("./dtos/DeleteLeadGroupResponse"), exports);
41
42
  // Photo DTOs
42
43
  __exportStar(require("./dtos/GetPhotoUploadUrlRequest"), exports);
43
44
  __exportStar(require("./dtos/PhotoUploadUrlResponse"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "3.248.0",
3
+ "version": "3.250.0",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -2,7 +2,7 @@ import {BankAccountExternalAddress} from "./BankAccountExternalAddress";
2
2
  import {UserEntityStatusEnum} from "../enums/UserEntityStatusEnum";
3
3
  import {SexDocument, TypeOfDocument} from "../../identity";
4
4
  import {Country} from "../../country";
5
- import { KycStatus } from "../../card";
5
+ import { GetBankAccountCardResponse, KycStatus } from "../../card";
6
6
 
7
7
  export class GetBankAccountUserResponse {
8
8
  id: string;
@@ -25,4 +25,5 @@ export class GetBankAccountUserResponse {
25
25
  deletedDate?: string;
26
26
  updatedBy?: string;
27
27
  accountIds?: number[];
28
+ cards?: GetBankAccountCardResponse[];
28
29
  }
@@ -0,0 +1,4 @@
1
+ export interface DeleteLeadGroupResponse {
2
+ deleted: boolean;
3
+ groupId: string;
4
+ }
@@ -25,6 +25,7 @@ export * from './dtos/UpdateLeadGroupRequest';
25
25
  export * from './dtos/AssignLeadToGroupRequest';
26
26
  export * from './dtos/LeadGroupResponse';
27
27
  export * from './dtos/ListLeadGroupsResponse';
28
+ export * from './dtos/DeleteLeadGroupResponse';
28
29
 
29
30
  // Photo DTOs
30
31
  export * from './dtos/GetPhotoUploadUrlRequest';