@corsa-labs/sdk 4.6.0 → 4.7.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 (73) hide show
  1. package/dist/ComplianceClient.d.ts +4 -0
  2. package/dist/ComplianceClient.js +6 -0
  3. package/dist/ComplianceClient.js.map +1 -1
  4. package/dist/models/ActionConfigDto.d.ts +19 -0
  5. package/dist/models/ActionConfigDto.js +15 -0
  6. package/dist/models/ActionConfigDto.js.map +1 -0
  7. package/dist/models/ChecklistItemResponseDto.d.ts +74 -0
  8. package/dist/models/ChecklistItemResponseDto.js +18 -0
  9. package/dist/models/ChecklistItemResponseDto.js.map +1 -0
  10. package/dist/models/ChecklistResponseDto.d.ts +62 -0
  11. package/dist/models/ChecklistResponseDto.js +26 -0
  12. package/dist/models/ChecklistResponseDto.js.map +1 -0
  13. package/dist/models/ChecklistTemplateItemResponseDto.d.ts +45 -0
  14. package/dist/models/ChecklistTemplateItemResponseDto.js +18 -0
  15. package/dist/models/ChecklistTemplateItemResponseDto.js.map +1 -0
  16. package/dist/models/ChecklistTemplateResponseDto.d.ts +50 -0
  17. package/dist/models/ChecklistTemplateResponseDto.js +17 -0
  18. package/dist/models/ChecklistTemplateResponseDto.js.map +1 -0
  19. package/dist/models/ConditionDto.d.ts +47 -0
  20. package/dist/models/ConditionDto.js +23 -0
  21. package/dist/models/ConditionDto.js.map +1 -0
  22. package/dist/models/ConditionsDto.d.ts +11 -0
  23. package/dist/models/ConditionsDto.js +3 -0
  24. package/dist/models/ConditionsDto.js.map +1 -0
  25. package/dist/models/CorporateClientDto.d.ts +6 -5
  26. package/dist/models/CorporateClientDto.js.map +1 -1
  27. package/dist/models/CreateChecklistTemplateItemDto.d.ts +0 -11
  28. package/dist/models/CreateChecklistTemplateItemDto.js.map +1 -1
  29. package/dist/models/CreateCorporateClientDto.d.ts +1 -0
  30. package/dist/models/CreateCorporateClientDto.js.map +1 -1
  31. package/dist/models/CreateIndividualClientDto.d.ts +1 -0
  32. package/dist/models/CreateIndividualClientDto.js.map +1 -1
  33. package/dist/models/CreateRuleDto.d.ts +38 -0
  34. package/dist/models/CreateRuleDto.js +16 -0
  35. package/dist/models/CreateRuleDto.js.map +1 -0
  36. package/dist/models/DeleteRuleDto.d.ts +6 -0
  37. package/dist/models/DeleteRuleDto.js +3 -0
  38. package/dist/models/DeleteRuleDto.js.map +1 -0
  39. package/dist/models/DisableRuleDto.d.ts +6 -0
  40. package/dist/models/DisableRuleDto.js +3 -0
  41. package/dist/models/DisableRuleDto.js.map +1 -0
  42. package/dist/models/IndividualClientDto.d.ts +5 -4
  43. package/dist/models/IndividualClientDto.js.map +1 -1
  44. package/dist/models/RuleResponseDto.d.ts +25 -0
  45. package/dist/models/RuleResponseDto.js +19 -0
  46. package/dist/models/RuleResponseDto.js.map +1 -0
  47. package/dist/models/UpdateChecklistItemDto.d.ts +9 -6
  48. package/dist/models/UpdateChecklistItemDto.js.map +1 -1
  49. package/dist/models/UpdateChecklistTemplateItemDto.d.ts +0 -11
  50. package/dist/models/UpdateChecklistTemplateItemDto.js.map +1 -1
  51. package/dist/models/UpdateCorporateClientDto.d.ts +2 -0
  52. package/dist/models/UpdateCorporateClientDto.js.map +1 -1
  53. package/dist/models/UpdateIndividualClientDto.d.ts +2 -0
  54. package/dist/models/UpdateIndividualClientDto.js.map +1 -1
  55. package/dist/models/UpdateRuleDto.d.ts +20 -0
  56. package/dist/models/UpdateRuleDto.js +13 -0
  57. package/dist/models/UpdateRuleDto.js.map +1 -0
  58. package/dist/models/UpdateTransactionDto.d.ts +28 -0
  59. package/dist/models/UpdateTransactionDto.js +3 -0
  60. package/dist/models/UpdateTransactionDto.js.map +1 -0
  61. package/dist/services/ChecklistTemplatesService.d.ts +72 -0
  62. package/dist/services/ChecklistTemplatesService.js +177 -0
  63. package/dist/services/ChecklistTemplatesService.js.map +1 -0
  64. package/dist/services/ChecklistsService.d.ts +8 -70
  65. package/dist/services/ChecklistsService.js +8 -173
  66. package/dist/services/ChecklistsService.js.map +1 -1
  67. package/dist/services/RulesService.d.ts +249 -0
  68. package/dist/services/RulesService.js +333 -0
  69. package/dist/services/RulesService.js.map +1 -0
  70. package/dist/services/TransactionsService.d.ts +12 -3
  71. package/dist/services/TransactionsService.js +22 -4
  72. package/dist/services/TransactionsService.js.map +1 -1
  73. package/package.json +1 -1
@@ -6,10 +6,12 @@ import { BankAccountsService } from './services/BankAccountsService';
6
6
  import { BlockchainWalletsService } from './services/BlockchainWalletsService';
7
7
  import { CasesService } from './services/CasesService';
8
8
  import { ChecklistsService } from './services/ChecklistsService';
9
+ import { ChecklistTemplatesService } from './services/ChecklistTemplatesService';
9
10
  import { ClientsService } from './services/ClientsService';
10
11
  import { DepositsService } from './services/DepositsService';
11
12
  import { MembersService } from './services/MembersService';
12
13
  import { PlatformService } from './services/PlatformService';
14
+ import { RulesService } from './services/RulesService';
13
15
  import { TradesService } from './services/TradesService';
14
16
  import { TransactionsService } from './services/TransactionsService';
15
17
  import { WithdrawalsService } from './services/WithdrawalsService';
@@ -21,10 +23,12 @@ export declare class ComplianceClient {
21
23
  readonly blockchainWallets: BlockchainWalletsService;
22
24
  readonly cases: CasesService;
23
25
  readonly checklists: ChecklistsService;
26
+ readonly checklistTemplates: ChecklistTemplatesService;
24
27
  readonly clients: ClientsService;
25
28
  readonly deposits: DepositsService;
26
29
  readonly members: MembersService;
27
30
  readonly platform: PlatformService;
31
+ readonly rules: RulesService;
28
32
  readonly trades: TradesService;
29
33
  readonly transactions: TransactionsService;
30
34
  readonly withdrawals: WithdrawalsService;
@@ -8,10 +8,12 @@ const BankAccountsService_1 = require("./services/BankAccountsService");
8
8
  const BlockchainWalletsService_1 = require("./services/BlockchainWalletsService");
9
9
  const CasesService_1 = require("./services/CasesService");
10
10
  const ChecklistsService_1 = require("./services/ChecklistsService");
11
+ const ChecklistTemplatesService_1 = require("./services/ChecklistTemplatesService");
11
12
  const ClientsService_1 = require("./services/ClientsService");
12
13
  const DepositsService_1 = require("./services/DepositsService");
13
14
  const MembersService_1 = require("./services/MembersService");
14
15
  const PlatformService_1 = require("./services/PlatformService");
16
+ const RulesService_1 = require("./services/RulesService");
15
17
  const TradesService_1 = require("./services/TradesService");
16
18
  const TransactionsService_1 = require("./services/TransactionsService");
17
19
  const WithdrawalsService_1 = require("./services/WithdrawalsService");
@@ -22,10 +24,12 @@ class ComplianceClient {
22
24
  blockchainWallets;
23
25
  cases;
24
26
  checklists;
27
+ checklistTemplates;
25
28
  clients;
26
29
  deposits;
27
30
  members;
28
31
  platform;
32
+ rules;
29
33
  trades;
30
34
  transactions;
31
35
  withdrawals;
@@ -48,10 +52,12 @@ class ComplianceClient {
48
52
  this.blockchainWallets = new BlockchainWalletsService_1.BlockchainWalletsService(this.request);
49
53
  this.cases = new CasesService_1.CasesService(this.request);
50
54
  this.checklists = new ChecklistsService_1.ChecklistsService(this.request);
55
+ this.checklistTemplates = new ChecklistTemplatesService_1.ChecklistTemplatesService(this.request);
51
56
  this.clients = new ClientsService_1.ClientsService(this.request);
52
57
  this.deposits = new DepositsService_1.DepositsService(this.request);
53
58
  this.members = new MembersService_1.MembersService(this.request);
54
59
  this.platform = new PlatformService_1.PlatformService(this.request);
60
+ this.rules = new RulesService_1.RulesService(this.request);
55
61
  this.trades = new TradesService_1.TradesService(this.request);
56
62
  this.transactions = new TransactionsService_1.TransactionsService(this.request);
57
63
  this.withdrawals = new WithdrawalsService_1.WithdrawalsService(this.request);
@@ -1 +1 @@
1
- {"version":3,"file":"ComplianceClient.js","sourceRoot":"","sources":["../ComplianceClient.ts"],"names":[],"mappings":";;;AAMA,8DAA2D;AAC3D,4DAAyD;AACzD,sEAAmE;AACnE,wEAAqE;AACrE,kFAA+E;AAC/E,0DAAuD;AACvD,oEAAiE;AACjE,8DAA2D;AAC3D,gEAA6D;AAC7D,8DAA2D;AAC3D,gEAA6D;AAC7D,4DAAyD;AACzD,wEAAqE;AACrE,sEAAmE;AAEnE,MAAa,gBAAgB;IACT,MAAM,CAAgB;IACtB,WAAW,CAAqB;IAChC,YAAY,CAAsB;IAClC,iBAAiB,CAA2B;IAC5C,KAAK,CAAe;IACpB,UAAU,CAAoB;IAC9B,OAAO,CAAiB;IACxB,QAAQ,CAAkB;IAC1B,OAAO,CAAiB;IACxB,QAAQ,CAAkB;IAC1B,MAAM,CAAgB;IACtB,YAAY,CAAsB;IAClC,WAAW,CAAqB;IAChC,OAAO,CAAkB;IACzC,YAAY,MAA+B,EAAE,cAAsC,mCAAgB;QAC/F,IAAI,CAAC,OAAO,GAAG,IAAI,WAAW,CAAC;YAC3B,IAAI,EAAE,MAAM,EAAE,IAAI,IAAI,EAAE;YACxB,OAAO,EAAE,MAAM,EAAE,OAAO,IAAI,OAAO;YACnC,gBAAgB,EAAE,MAAM,EAAE,gBAAgB,IAAI,KAAK;YACnD,WAAW,EAAE,MAAM,EAAE,WAAW,IAAI,SAAS;YAC7C,KAAK,EAAE,MAAM,EAAE,KAAK;YACpB,QAAQ,EAAE,MAAM,EAAE,QAAQ;YAC1B,QAAQ,EAAE,MAAM,EAAE,QAAQ;YAC1B,OAAO,EAAE,MAAM,EAAE,OAAO;YACxB,WAAW,EAAE,MAAM,EAAE,WAAW;SACnC,CAAC,CAAC;QACH,IAAI,CAAC,MAAM,GAAG,IAAI,6BAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC9C,IAAI,CAAC,WAAW,GAAG,IAAI,uCAAkB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxD,IAAI,CAAC,YAAY,GAAG,IAAI,yCAAmB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC1D,IAAI,CAAC,iBAAiB,GAAG,IAAI,mDAAwB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACpE,IAAI,CAAC,KAAK,GAAG,IAAI,2BAAY,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC5C,IAAI,CAAC,UAAU,GAAG,IAAI,qCAAiB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACtD,IAAI,CAAC,OAAO,GAAG,IAAI,+BAAc,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAChD,IAAI,CAAC,QAAQ,GAAG,IAAI,iCAAe,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAClD,IAAI,CAAC,OAAO,GAAG,IAAI,+BAAc,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAChD,IAAI,CAAC,QAAQ,GAAG,IAAI,iCAAe,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAClD,IAAI,CAAC,MAAM,GAAG,IAAI,6BAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC9C,IAAI,CAAC,YAAY,GAAG,IAAI,yCAAmB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC1D,IAAI,CAAC,WAAW,GAAG,IAAI,uCAAkB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAC5D,CAAC;CACJ;AAzCD,4CAyCC"}
1
+ {"version":3,"file":"ComplianceClient.js","sourceRoot":"","sources":["../ComplianceClient.ts"],"names":[],"mappings":";;;AAMA,8DAA2D;AAC3D,4DAAyD;AACzD,sEAAmE;AACnE,wEAAqE;AACrE,kFAA+E;AAC/E,0DAAuD;AACvD,oEAAiE;AACjE,oFAAiF;AACjF,8DAA2D;AAC3D,gEAA6D;AAC7D,8DAA2D;AAC3D,gEAA6D;AAC7D,0DAAuD;AACvD,4DAAyD;AACzD,wEAAqE;AACrE,sEAAmE;AAEnE,MAAa,gBAAgB;IACT,MAAM,CAAgB;IACtB,WAAW,CAAqB;IAChC,YAAY,CAAsB;IAClC,iBAAiB,CAA2B;IAC5C,KAAK,CAAe;IACpB,UAAU,CAAoB;IAC9B,kBAAkB,CAA4B;IAC9C,OAAO,CAAiB;IACxB,QAAQ,CAAkB;IAC1B,OAAO,CAAiB;IACxB,QAAQ,CAAkB;IAC1B,KAAK,CAAe;IACpB,MAAM,CAAgB;IACtB,YAAY,CAAsB;IAClC,WAAW,CAAqB;IAChC,OAAO,CAAkB;IACzC,YAAY,MAA+B,EAAE,cAAsC,mCAAgB;QAC/F,IAAI,CAAC,OAAO,GAAG,IAAI,WAAW,CAAC;YAC3B,IAAI,EAAE,MAAM,EAAE,IAAI,IAAI,EAAE;YACxB,OAAO,EAAE,MAAM,EAAE,OAAO,IAAI,OAAO;YACnC,gBAAgB,EAAE,MAAM,EAAE,gBAAgB,IAAI,KAAK;YACnD,WAAW,EAAE,MAAM,EAAE,WAAW,IAAI,SAAS;YAC7C,KAAK,EAAE,MAAM,EAAE,KAAK;YACpB,QAAQ,EAAE,MAAM,EAAE,QAAQ;YAC1B,QAAQ,EAAE,MAAM,EAAE,QAAQ;YAC1B,OAAO,EAAE,MAAM,EAAE,OAAO;YACxB,WAAW,EAAE,MAAM,EAAE,WAAW;SACnC,CAAC,CAAC;QACH,IAAI,CAAC,MAAM,GAAG,IAAI,6BAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC9C,IAAI,CAAC,WAAW,GAAG,IAAI,uCAAkB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxD,IAAI,CAAC,YAAY,GAAG,IAAI,yCAAmB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC1D,IAAI,CAAC,iBAAiB,GAAG,IAAI,mDAAwB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACpE,IAAI,CAAC,KAAK,GAAG,IAAI,2BAAY,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC5C,IAAI,CAAC,UAAU,GAAG,IAAI,qCAAiB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACtD,IAAI,CAAC,kBAAkB,GAAG,IAAI,qDAAyB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACtE,IAAI,CAAC,OAAO,GAAG,IAAI,+BAAc,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAChD,IAAI,CAAC,QAAQ,GAAG,IAAI,iCAAe,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAClD,IAAI,CAAC,OAAO,GAAG,IAAI,+BAAc,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAChD,IAAI,CAAC,QAAQ,GAAG,IAAI,iCAAe,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAClD,IAAI,CAAC,KAAK,GAAG,IAAI,2BAAY,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC5C,IAAI,CAAC,MAAM,GAAG,IAAI,6BAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC9C,IAAI,CAAC,YAAY,GAAG,IAAI,yCAAmB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC1D,IAAI,CAAC,WAAW,GAAG,IAAI,uCAAkB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAC5D,CAAC;CACJ;AA7CD,4CA6CC"}
@@ -0,0 +1,19 @@
1
+ export type ActionConfigDto = {
2
+ /**
3
+ * Action type
4
+ */
5
+ type: ActionConfigDto.type;
6
+ /**
7
+ * Action-specific configuration
8
+ */
9
+ config: Record<string, any>;
10
+ };
11
+ export declare namespace ActionConfigDto {
12
+ /**
13
+ * Action type
14
+ */
15
+ enum type {
16
+ CREATE_ALERT = "CREATE_ALERT",
17
+ HALT_TRANSACTION = "HALT_TRANSACTION"
18
+ }
19
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ActionConfigDto = void 0;
4
+ var ActionConfigDto;
5
+ (function (ActionConfigDto) {
6
+ /**
7
+ * Action type
8
+ */
9
+ let type;
10
+ (function (type) {
11
+ type["CREATE_ALERT"] = "CREATE_ALERT";
12
+ type["HALT_TRANSACTION"] = "HALT_TRANSACTION";
13
+ })(type = ActionConfigDto.type || (ActionConfigDto.type = {}));
14
+ })(ActionConfigDto || (exports.ActionConfigDto = ActionConfigDto = {}));
15
+ //# sourceMappingURL=ActionConfigDto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ActionConfigDto.js","sourceRoot":"","sources":["../../models/ActionConfigDto.ts"],"names":[],"mappings":";;;AAcA,IAAiB,eAAe,CAQ/B;AARD,WAAiB,eAAe;IAC5B;;OAEG;IACH,IAAY,IAGX;IAHD,WAAY,IAAI;QACZ,qCAA6B,CAAA;QAC7B,6CAAqC,CAAA;IACzC,CAAC,EAHW,IAAI,GAAJ,oBAAI,KAAJ,oBAAI,QAGf;AACL,CAAC,EARgB,eAAe,+BAAf,eAAe,QAQ/B"}
@@ -0,0 +1,74 @@
1
+ export type ChecklistItemResponseDto = {
2
+ /**
3
+ * Unique identifier for the checklist item
4
+ */
5
+ id: string;
6
+ /**
7
+ * Name of the checklist item
8
+ */
9
+ name: string;
10
+ /**
11
+ * Note/description of the checklist item
12
+ */
13
+ note?: string;
14
+ /**
15
+ * Category of the checklist item
16
+ */
17
+ category: ChecklistItemResponseDto.category;
18
+ /**
19
+ * Current status of the checklist item (can be default or custom status)
20
+ */
21
+ status: string;
22
+ /**
23
+ * URL to the attached document
24
+ */
25
+ documentUrl?: string;
26
+ /**
27
+ * Attachment ID from the attachment service
28
+ */
29
+ attachmentId?: string;
30
+ /**
31
+ * MIME type of the attached document
32
+ */
33
+ documentMimeType?: string;
34
+ /**
35
+ * Date when the document was submitted
36
+ */
37
+ documentSubmissionDate?: string;
38
+ /**
39
+ * Expiration date for the checklist item
40
+ */
41
+ expirationDate?: string;
42
+ /**
43
+ * Additional custom fields for the checklist item
44
+ */
45
+ customFields?: Record<string, any>;
46
+ /**
47
+ * Whether this item is archived
48
+ */
49
+ isArchived: boolean;
50
+ /**
51
+ * Status options for the checklist item
52
+ */
53
+ statusOptions: Array<Record<string, any>>;
54
+ /**
55
+ * When the item was created
56
+ */
57
+ createdAt: string;
58
+ /**
59
+ * When the item was last updated
60
+ */
61
+ updatedAt: string;
62
+ };
63
+ export declare namespace ChecklistItemResponseDto {
64
+ /**
65
+ * Category of the checklist item
66
+ */
67
+ enum category {
68
+ PERSONAL_IDENTIFICATION = "PERSONAL_IDENTIFICATION",
69
+ FINANCIAL_INFORMATION = "FINANCIAL_INFORMATION",
70
+ CORPORATE_INFORMATION = "CORPORATE_INFORMATION",
71
+ DECLARATIONS_COMPLIANCE = "DECLARATIONS_COMPLIANCE",
72
+ OTHER = "OTHER"
73
+ }
74
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ChecklistItemResponseDto = void 0;
4
+ var ChecklistItemResponseDto;
5
+ (function (ChecklistItemResponseDto) {
6
+ /**
7
+ * Category of the checklist item
8
+ */
9
+ let category;
10
+ (function (category) {
11
+ category["PERSONAL_IDENTIFICATION"] = "PERSONAL_IDENTIFICATION";
12
+ category["FINANCIAL_INFORMATION"] = "FINANCIAL_INFORMATION";
13
+ category["CORPORATE_INFORMATION"] = "CORPORATE_INFORMATION";
14
+ category["DECLARATIONS_COMPLIANCE"] = "DECLARATIONS_COMPLIANCE";
15
+ category["OTHER"] = "OTHER";
16
+ })(category = ChecklistItemResponseDto.category || (ChecklistItemResponseDto.category = {}));
17
+ })(ChecklistItemResponseDto || (exports.ChecklistItemResponseDto = ChecklistItemResponseDto = {}));
18
+ //# sourceMappingURL=ChecklistItemResponseDto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChecklistItemResponseDto.js","sourceRoot":"","sources":["../../models/ChecklistItemResponseDto.ts"],"names":[],"mappings":";;;AAkEA,IAAiB,wBAAwB,CAWxC;AAXD,WAAiB,wBAAwB;IACrC;;OAEG;IACH,IAAY,QAMX;IAND,WAAY,QAAQ;QAChB,+DAAmD,CAAA;QACnD,2DAA+C,CAAA;QAC/C,2DAA+C,CAAA;QAC/C,+DAAmD,CAAA;QACnD,2BAAe,CAAA;IACnB,CAAC,EANW,QAAQ,GAAR,iCAAQ,KAAR,iCAAQ,QAMnB;AACL,CAAC,EAXgB,wBAAwB,wCAAxB,wBAAwB,QAWxC"}
@@ -0,0 +1,62 @@
1
+ import type { ChecklistItemResponseDto } from './ChecklistItemResponseDto';
2
+ export type ChecklistResponseDto = {
3
+ /**
4
+ * Unique identifier for the checklist
5
+ */
6
+ id: string;
7
+ /**
8
+ * ID of the entity this checklist belongs to
9
+ */
10
+ entityId: string;
11
+ /**
12
+ * Type of entity this checklist is for
13
+ */
14
+ entityType: ChecklistResponseDto.entityType;
15
+ /**
16
+ * Reference ID from other applications to identify this checklist
17
+ */
18
+ referenceId?: string;
19
+ /**
20
+ * Name of the checklist
21
+ */
22
+ name?: string;
23
+ /**
24
+ * Description of the checklist
25
+ */
26
+ description?: string;
27
+ /**
28
+ * Current status of the checklist
29
+ */
30
+ status: ChecklistResponseDto.status;
31
+ /**
32
+ * List of checklist items
33
+ */
34
+ items: Array<ChecklistItemResponseDto>;
35
+ /**
36
+ * When the checklist was created
37
+ */
38
+ createdAt: string;
39
+ /**
40
+ * When the checklist was last updated
41
+ */
42
+ updatedAt: string;
43
+ };
44
+ export declare namespace ChecklistResponseDto {
45
+ /**
46
+ * Type of entity this checklist is for
47
+ */
48
+ enum entityType {
49
+ INDIVIDUAL_CLIENT = "INDIVIDUAL_CLIENT",
50
+ CORPORATE_CLIENT = "CORPORATE_CLIENT",
51
+ ALERT = "ALERT",
52
+ CASE = "CASE"
53
+ }
54
+ /**
55
+ * Current status of the checklist
56
+ */
57
+ enum status {
58
+ ACTIVE = "ACTIVE",
59
+ ARCHIVED = "ARCHIVED",
60
+ COMPLETED = "COMPLETED"
61
+ }
62
+ }
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ChecklistResponseDto = void 0;
4
+ var ChecklistResponseDto;
5
+ (function (ChecklistResponseDto) {
6
+ /**
7
+ * Type of entity this checklist is for
8
+ */
9
+ let entityType;
10
+ (function (entityType) {
11
+ entityType["INDIVIDUAL_CLIENT"] = "INDIVIDUAL_CLIENT";
12
+ entityType["CORPORATE_CLIENT"] = "CORPORATE_CLIENT";
13
+ entityType["ALERT"] = "ALERT";
14
+ entityType["CASE"] = "CASE";
15
+ })(entityType = ChecklistResponseDto.entityType || (ChecklistResponseDto.entityType = {}));
16
+ /**
17
+ * Current status of the checklist
18
+ */
19
+ let status;
20
+ (function (status) {
21
+ status["ACTIVE"] = "ACTIVE";
22
+ status["ARCHIVED"] = "ARCHIVED";
23
+ status["COMPLETED"] = "COMPLETED";
24
+ })(status = ChecklistResponseDto.status || (ChecklistResponseDto.status = {}));
25
+ })(ChecklistResponseDto || (exports.ChecklistResponseDto = ChecklistResponseDto = {}));
26
+ //# sourceMappingURL=ChecklistResponseDto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChecklistResponseDto.js","sourceRoot":"","sources":["../../models/ChecklistResponseDto.ts"],"names":[],"mappings":";;;AA+CA,IAAiB,oBAAoB,CAkBpC;AAlBD,WAAiB,oBAAoB;IACjC;;OAEG;IACH,IAAY,UAKX;IALD,WAAY,UAAU;QAClB,qDAAuC,CAAA;QACvC,mDAAqC,CAAA;QACrC,6BAAe,CAAA;QACf,2BAAa,CAAA;IACjB,CAAC,EALW,UAAU,GAAV,+BAAU,KAAV,+BAAU,QAKrB;IACD;;OAEG;IACH,IAAY,MAIX;IAJD,WAAY,MAAM;QACd,2BAAiB,CAAA;QACjB,+BAAqB,CAAA;QACrB,iCAAuB,CAAA;IAC3B,CAAC,EAJW,MAAM,GAAN,2BAAM,KAAN,2BAAM,QAIjB;AACL,CAAC,EAlBgB,oBAAoB,oCAApB,oBAAoB,QAkBpC"}
@@ -0,0 +1,45 @@
1
+ export type ChecklistTemplateItemResponseDto = {
2
+ /**
3
+ * The unique identifier of the item
4
+ */
5
+ id: string;
6
+ /**
7
+ * The name of the item
8
+ */
9
+ name: string;
10
+ /**
11
+ * Optional note for the item
12
+ */
13
+ note?: string;
14
+ /**
15
+ * The category of the checklist item
16
+ */
17
+ category: ChecklistTemplateItemResponseDto.category;
18
+ /**
19
+ * Available status options for this item
20
+ */
21
+ statusOptions: Array<{
22
+ name?: string;
23
+ color?: string | null;
24
+ }>;
25
+ /**
26
+ * When the item was created
27
+ */
28
+ createdAt: string;
29
+ /**
30
+ * When the item was last updated
31
+ */
32
+ updatedAt: string;
33
+ };
34
+ export declare namespace ChecklistTemplateItemResponseDto {
35
+ /**
36
+ * The category of the checklist item
37
+ */
38
+ enum category {
39
+ PERSONAL_IDENTIFICATION = "PERSONAL_IDENTIFICATION",
40
+ FINANCIAL_INFORMATION = "FINANCIAL_INFORMATION",
41
+ CORPORATE_INFORMATION = "CORPORATE_INFORMATION",
42
+ DECLARATIONS_COMPLIANCE = "DECLARATIONS_COMPLIANCE",
43
+ OTHER = "OTHER"
44
+ }
45
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ChecklistTemplateItemResponseDto = void 0;
4
+ var ChecklistTemplateItemResponseDto;
5
+ (function (ChecklistTemplateItemResponseDto) {
6
+ /**
7
+ * The category of the checklist item
8
+ */
9
+ let category;
10
+ (function (category) {
11
+ category["PERSONAL_IDENTIFICATION"] = "PERSONAL_IDENTIFICATION";
12
+ category["FINANCIAL_INFORMATION"] = "FINANCIAL_INFORMATION";
13
+ category["CORPORATE_INFORMATION"] = "CORPORATE_INFORMATION";
14
+ category["DECLARATIONS_COMPLIANCE"] = "DECLARATIONS_COMPLIANCE";
15
+ category["OTHER"] = "OTHER";
16
+ })(category = ChecklistTemplateItemResponseDto.category || (ChecklistTemplateItemResponseDto.category = {}));
17
+ })(ChecklistTemplateItemResponseDto || (exports.ChecklistTemplateItemResponseDto = ChecklistTemplateItemResponseDto = {}));
18
+ //# sourceMappingURL=ChecklistTemplateItemResponseDto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChecklistTemplateItemResponseDto.js","sourceRoot":"","sources":["../../models/ChecklistTemplateItemResponseDto.ts"],"names":[],"mappings":";;;AAqCA,IAAiB,gCAAgC,CAWhD;AAXD,WAAiB,gCAAgC;IAC7C;;OAEG;IACH,IAAY,QAMX;IAND,WAAY,QAAQ;QAChB,+DAAmD,CAAA;QACnD,2DAA+C,CAAA;QAC/C,2DAA+C,CAAA;QAC/C,+DAAmD,CAAA;QACnD,2BAAe,CAAA;IACnB,CAAC,EANW,QAAQ,GAAR,yCAAQ,KAAR,yCAAQ,QAMnB;AACL,CAAC,EAXgB,gCAAgC,gDAAhC,gCAAgC,QAWhD"}
@@ -0,0 +1,50 @@
1
+ import type { ChecklistTemplateItemResponseDto } from './ChecklistTemplateItemResponseDto';
2
+ export type ChecklistTemplateResponseDto = {
3
+ /**
4
+ * The unique identifier of the template
5
+ */
6
+ id: string;
7
+ /**
8
+ * The platform ID
9
+ */
10
+ platformId: string;
11
+ /**
12
+ * The type of entity this template is for
13
+ */
14
+ entityType: ChecklistTemplateResponseDto.entityType;
15
+ /**
16
+ * The name of the template
17
+ */
18
+ name: string;
19
+ /**
20
+ * Optional description of the template
21
+ */
22
+ description?: string;
23
+ /**
24
+ * Whether the template is active
25
+ */
26
+ isActive: boolean;
27
+ /**
28
+ * When the template was created
29
+ */
30
+ createdAt: string;
31
+ /**
32
+ * When the template was last updated
33
+ */
34
+ updatedAt: string;
35
+ /**
36
+ * The items in this template
37
+ */
38
+ items: Array<ChecklistTemplateItemResponseDto>;
39
+ };
40
+ export declare namespace ChecklistTemplateResponseDto {
41
+ /**
42
+ * The type of entity this template is for
43
+ */
44
+ enum entityType {
45
+ INDIVIDUAL_CLIENT = "INDIVIDUAL_CLIENT",
46
+ CORPORATE_CLIENT = "CORPORATE_CLIENT",
47
+ ALERT = "ALERT",
48
+ CASE = "CASE"
49
+ }
50
+ }
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ChecklistTemplateResponseDto = void 0;
4
+ var ChecklistTemplateResponseDto;
5
+ (function (ChecklistTemplateResponseDto) {
6
+ /**
7
+ * The type of entity this template is for
8
+ */
9
+ let entityType;
10
+ (function (entityType) {
11
+ entityType["INDIVIDUAL_CLIENT"] = "INDIVIDUAL_CLIENT";
12
+ entityType["CORPORATE_CLIENT"] = "CORPORATE_CLIENT";
13
+ entityType["ALERT"] = "ALERT";
14
+ entityType["CASE"] = "CASE";
15
+ })(entityType = ChecklistTemplateResponseDto.entityType || (ChecklistTemplateResponseDto.entityType = {}));
16
+ })(ChecklistTemplateResponseDto || (exports.ChecklistTemplateResponseDto = ChecklistTemplateResponseDto = {}));
17
+ //# sourceMappingURL=ChecklistTemplateResponseDto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChecklistTemplateResponseDto.js","sourceRoot":"","sources":["../../models/ChecklistTemplateResponseDto.ts"],"names":[],"mappings":";;;AA2CA,IAAiB,4BAA4B,CAU5C;AAVD,WAAiB,4BAA4B;IACzC;;OAEG;IACH,IAAY,UAKX;IALD,WAAY,UAAU;QAClB,qDAAuC,CAAA;QACvC,mDAAqC,CAAA;QACrC,6BAAe,CAAA;QACf,2BAAa,CAAA;IACjB,CAAC,EALW,UAAU,GAAV,uCAAU,KAAV,uCAAU,QAKrB;AACL,CAAC,EAVgB,4BAA4B,4CAA5B,4BAA4B,QAU5C"}
@@ -0,0 +1,47 @@
1
+ export type ConditionDto = {
2
+ /**
3
+ * Label for this condition or condition group
4
+ */
5
+ label?: string;
6
+ /**
7
+ * Fact name to evaluate
8
+ */
9
+ fact?: string;
10
+ /**
11
+ * Comparison operator
12
+ */
13
+ operator?: ConditionDto.operator;
14
+ /**
15
+ * Value to compare against
16
+ */
17
+ value?: Record<string, any>;
18
+ /**
19
+ * JSONPath for nested object properties
20
+ */
21
+ path?: string;
22
+ /**
23
+ * Nested ALL conditions (AND logic)
24
+ */
25
+ all?: Array<Record<string, any>>;
26
+ /**
27
+ * Nested ANY conditions (OR logic)
28
+ */
29
+ any?: Array<Record<string, any>>;
30
+ };
31
+ export declare namespace ConditionDto {
32
+ /**
33
+ * Comparison operator
34
+ */
35
+ enum operator {
36
+ EQUAL = "equal",
37
+ NOT_EQUAL = "notEqual",
38
+ GREATER_THAN = "greaterThan",
39
+ GREATER_THAN_INCLUSIVE = "greaterThanInclusive",
40
+ LESS_THAN = "lessThan",
41
+ LESS_THAN_INCLUSIVE = "lessThanInclusive",
42
+ IN = "in",
43
+ NOT_IN = "notIn",
44
+ CONTAINS = "contains",
45
+ DOES_NOT_CONTAIN = "doesNotContain"
46
+ }
47
+ }
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ConditionDto = void 0;
4
+ var ConditionDto;
5
+ (function (ConditionDto) {
6
+ /**
7
+ * Comparison operator
8
+ */
9
+ let operator;
10
+ (function (operator) {
11
+ operator["EQUAL"] = "equal";
12
+ operator["NOT_EQUAL"] = "notEqual";
13
+ operator["GREATER_THAN"] = "greaterThan";
14
+ operator["GREATER_THAN_INCLUSIVE"] = "greaterThanInclusive";
15
+ operator["LESS_THAN"] = "lessThan";
16
+ operator["LESS_THAN_INCLUSIVE"] = "lessThanInclusive";
17
+ operator["IN"] = "in";
18
+ operator["NOT_IN"] = "notIn";
19
+ operator["CONTAINS"] = "contains";
20
+ operator["DOES_NOT_CONTAIN"] = "doesNotContain";
21
+ })(operator = ConditionDto.operator || (ConditionDto.operator = {}));
22
+ })(ConditionDto || (exports.ConditionDto = ConditionDto = {}));
23
+ //# sourceMappingURL=ConditionDto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ConditionDto.js","sourceRoot":"","sources":["../../models/ConditionDto.ts"],"names":[],"mappings":";;;AAkCA,IAAiB,YAAY,CAgB5B;AAhBD,WAAiB,YAAY;IACzB;;OAEG;IACH,IAAY,QAWX;IAXD,WAAY,QAAQ;QAChB,2BAAe,CAAA;QACf,kCAAsB,CAAA;QACtB,wCAA4B,CAAA;QAC5B,2DAA+C,CAAA;QAC/C,kCAAsB,CAAA;QACtB,qDAAyC,CAAA;QACzC,qBAAS,CAAA;QACT,4BAAgB,CAAA;QAChB,iCAAqB,CAAA;QACrB,+CAAmC,CAAA;IACvC,CAAC,EAXW,QAAQ,GAAR,qBAAQ,KAAR,qBAAQ,QAWnB;AACL,CAAC,EAhBgB,YAAY,4BAAZ,YAAY,QAgB5B"}
@@ -0,0 +1,11 @@
1
+ import type { ConditionDto } from './ConditionDto';
2
+ export type ConditionsDto = {
3
+ /**
4
+ * ALL conditions (AND logic) - all must be true
5
+ */
6
+ all?: Array<ConditionDto>;
7
+ /**
8
+ * ANY conditions (OR logic) - at least one must be true
9
+ */
10
+ any?: Array<ConditionDto>;
11
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ConditionsDto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ConditionsDto.js","sourceRoot":"","sources":["../../models/ConditionsDto.ts"],"names":[],"mappings":""}
@@ -58,10 +58,6 @@ export type CorporateClientDto = {
58
58
  * Screening information (subpoenas, SARs)
59
59
  */
60
60
  screening?: CorporateClientScreeningDto;
61
- /**
62
- * List of control measures applied to the client
63
- */
64
- controls?: Array<string>;
65
61
  /**
66
62
  * Current risk assessment of the client
67
63
  */
@@ -93,7 +89,12 @@ export type CorporateClientDto = {
93
89
  /**
94
90
  * Tags associated with the client
95
91
  */
96
- tags?: Array<string>;
92
+ tags: Array<string>;
93
+ /**
94
+ * List of control measures applied (DEPRECATED)
95
+ * @deprecated
96
+ */
97
+ controls: Array<string>;
97
98
  /**
98
99
  * ISO Date when the client record was created
99
100
  */
@@ -1 +1 @@
1
- {"version":3,"file":"CorporateClientDto.js","sourceRoot":"","sources":["../../models/CorporateClientDto.ts"],"names":[],"mappings":";;;AAiHA,IAAiB,kBAAkB,CAsBlC;AAtBD,WAAiB,kBAAkB;IAC/B;;OAEG;IACH,IAAY,aAUX;IAVD,WAAY,aAAa;QACrB,sCAAqB,CAAA;QACrB,0DAAyC,CAAA;QACzC,wCAAuB,CAAA;QACvB,sCAAqB,CAAA;QACrB,4CAA2B,CAAA;QAC3B,kCAAiB,CAAA;QACjB,wDAAuC,CAAA;QACvC,sDAAqC,CAAA;QACrC,oEAAmD,CAAA;IACvD,CAAC,EAVW,aAAa,GAAb,gCAAa,KAAb,gCAAa,QAUxB;IACD;;OAEG;IACH,IAAY,cAGX;IAHD,WAAY,cAAc;QACtB,mCAAiB,CAAA;QACjB,2CAAyB,CAAA;IAC7B,CAAC,EAHW,cAAc,GAAd,iCAAc,KAAd,iCAAc,QAGzB;AACL,CAAC,EAtBgB,kBAAkB,kCAAlB,kBAAkB,QAsBlC"}
1
+ {"version":3,"file":"CorporateClientDto.js","sourceRoot":"","sources":["../../models/CorporateClientDto.ts"],"names":[],"mappings":";;;AAkHA,IAAiB,kBAAkB,CAsBlC;AAtBD,WAAiB,kBAAkB;IAC/B;;OAEG;IACH,IAAY,aAUX;IAVD,WAAY,aAAa;QACrB,sCAAqB,CAAA;QACrB,0DAAyC,CAAA;QACzC,wCAAuB,CAAA;QACvB,sCAAqB,CAAA;QACrB,4CAA2B,CAAA;QAC3B,kCAAiB,CAAA;QACjB,wDAAuC,CAAA;QACvC,sDAAqC,CAAA;QACrC,oEAAmD,CAAA;IACvD,CAAC,EAVW,aAAa,GAAb,gCAAa,KAAb,gCAAa,QAUxB;IACD;;OAEG;IACH,IAAY,cAGX;IAHD,WAAY,cAAc;QACtB,mCAAiB,CAAA;QACjB,2CAAyB,CAAA;IAC7B,CAAC,EAHW,cAAc,GAAd,iCAAc,KAAd,iCAAc,QAGzB;AACL,CAAC,EAtBgB,kBAAkB,kCAAlB,kBAAkB,QAsBlC"}
@@ -18,17 +18,6 @@ export type CreateChecklistTemplateItemDto = {
18
18
  name?: string;
19
19
  color?: 'red' | 'orange' | 'yellow' | 'green' | 'blue' | 'purple' | 'pink' | 'gray' | 'white' | 'black' | null;
20
20
  }>;
21
- /**
22
- * Custom fields for this checklist item
23
- */
24
- customFields?: Record<string, {
25
- label?: string;
26
- value?: (string | number | boolean);
27
- description?: string;
28
- category?: string;
29
- possibleValues?: Array<(string | number)>;
30
- immutable?: boolean;
31
- }>;
32
21
  };
33
22
  export declare namespace CreateChecklistTemplateItemDto {
34
23
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"CreateChecklistTemplateItemDto.js","sourceRoot":"","sources":["../../models/CreateChecklistTemplateItemDto.ts"],"names":[],"mappings":";;;AAoCA,IAAiB,8BAA8B,CAW9C;AAXD,WAAiB,8BAA8B;IAC3C;;OAEG;IACH,IAAY,QAMX;IAND,WAAY,QAAQ;QAChB,+DAAmD,CAAA;QACnD,2DAA+C,CAAA;QAC/C,2DAA+C,CAAA;QAC/C,+DAAmD,CAAA;QACnD,2BAAe,CAAA;IACnB,CAAC,EANW,QAAQ,GAAR,uCAAQ,KAAR,uCAAQ,QAMnB;AACL,CAAC,EAXgB,8BAA8B,8CAA9B,8BAA8B,QAW9C"}
1
+ {"version":3,"file":"CreateChecklistTemplateItemDto.js","sourceRoot":"","sources":["../../models/CreateChecklistTemplateItemDto.ts"],"names":[],"mappings":";;;AAyBA,IAAiB,8BAA8B,CAW9C;AAXD,WAAiB,8BAA8B;IAC3C;;OAEG;IACH,IAAY,QAMX;IAND,WAAY,QAAQ;QAChB,+DAAmD,CAAA;QACnD,2DAA+C,CAAA;QAC/C,2DAA+C,CAAA;QAC/C,+DAAmD,CAAA;QACnD,2BAAe,CAAA;IACnB,CAAC,EANW,QAAQ,GAAR,uCAAQ,KAAR,uCAAQ,QAMnB;AACL,CAAC,EAXgB,8BAA8B,8CAA9B,8BAA8B,QAW9C"}
@@ -31,6 +31,7 @@ export type CreateCorporateClientDto = {
31
31
  tags?: Array<string>;
32
32
  /**
33
33
  * Control measures applied to the corporate client (maximum 50)
34
+ * @deprecated
34
35
  */
35
36
  controls?: Array<string>;
36
37
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"CreateCorporateClientDto.js","sourceRoot":"","sources":["../../models/CreateCorporateClientDto.ts"],"names":[],"mappings":";;;AAgFA,IAAiB,wBAAwB,CAsBxC;AAtBD,WAAiB,wBAAwB;IACrC;;OAEG;IACH,IAAY,aAUX;IAVD,WAAY,aAAa;QACrB,sCAAqB,CAAA;QACrB,0DAAyC,CAAA;QACzC,wCAAuB,CAAA;QACvB,sCAAqB,CAAA;QACrB,4CAA2B,CAAA;QAC3B,kCAAiB,CAAA;QACjB,wDAAuC,CAAA;QACvC,sDAAqC,CAAA;QACrC,oEAAmD,CAAA;IACvD,CAAC,EAVW,aAAa,GAAb,sCAAa,KAAb,sCAAa,QAUxB;IACD;;OAEG;IACH,IAAY,cAGX;IAHD,WAAY,cAAc;QACtB,mCAAiB,CAAA;QACjB,2CAAyB,CAAA;IAC7B,CAAC,EAHW,cAAc,GAAd,uCAAc,KAAd,uCAAc,QAGzB;AACL,CAAC,EAtBgB,wBAAwB,wCAAxB,wBAAwB,QAsBxC"}
1
+ {"version":3,"file":"CreateCorporateClientDto.js","sourceRoot":"","sources":["../../models/CreateCorporateClientDto.ts"],"names":[],"mappings":";;;AAiFA,IAAiB,wBAAwB,CAsBxC;AAtBD,WAAiB,wBAAwB;IACrC;;OAEG;IACH,IAAY,aAUX;IAVD,WAAY,aAAa;QACrB,sCAAqB,CAAA;QACrB,0DAAyC,CAAA;QACzC,wCAAuB,CAAA;QACvB,sCAAqB,CAAA;QACrB,4CAA2B,CAAA;QAC3B,kCAAiB,CAAA;QACjB,wDAAuC,CAAA;QACvC,sDAAqC,CAAA;QACrC,oEAAmD,CAAA;IACvD,CAAC,EAVW,aAAa,GAAb,sCAAa,KAAb,sCAAa,QAUxB;IACD;;OAEG;IACH,IAAY,cAGX;IAHD,WAAY,cAAc;QACtB,mCAAiB,CAAA;QACjB,2CAAyB,CAAA;IAC7B,CAAC,EAHW,cAAc,GAAd,uCAAc,KAAd,uCAAc,QAGzB;AACL,CAAC,EAtBgB,wBAAwB,wCAAxB,wBAAwB,QAsBxC"}
@@ -28,6 +28,7 @@ export type CreateIndividualClientDto = {
28
28
  tags?: Array<string>;
29
29
  /**
30
30
  * Control measures applied to the individual client (maximum 50)
31
+ * @deprecated
31
32
  */
32
33
  controls?: Array<string>;
33
34
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"CreateIndividualClientDto.js","sourceRoot":"","sources":["../../models/CreateIndividualClientDto.ts"],"names":[],"mappings":";;;AAqFA,IAAiB,yBAAyB,CAsBzC;AAtBD,WAAiB,yBAAyB;IACtC;;OAEG;IACH,IAAY,cAGX;IAHD,WAAY,cAAc;QACtB,mCAAiB,CAAA;QACjB,2CAAyB,CAAA;IAC7B,CAAC,EAHW,cAAc,GAAd,wCAAc,KAAd,wCAAc,QAGzB;IACD;;OAEG;IACH,IAAY,aAUX;IAVD,WAAY,aAAa;QACrB,sCAAqB,CAAA;QACrB,0DAAyC,CAAA;QACzC,wCAAuB,CAAA;QACvB,sCAAqB,CAAA;QACrB,4CAA2B,CAAA;QAC3B,kCAAiB,CAAA;QACjB,wDAAuC,CAAA;QACvC,sDAAqC,CAAA;QACrC,oEAAmD,CAAA;IACvD,CAAC,EAVW,aAAa,GAAb,uCAAa,KAAb,uCAAa,QAUxB;AACL,CAAC,EAtBgB,yBAAyB,yCAAzB,yBAAyB,QAsBzC"}
1
+ {"version":3,"file":"CreateIndividualClientDto.js","sourceRoot":"","sources":["../../models/CreateIndividualClientDto.ts"],"names":[],"mappings":";;;AAsFA,IAAiB,yBAAyB,CAsBzC;AAtBD,WAAiB,yBAAyB;IACtC;;OAEG;IACH,IAAY,cAGX;IAHD,WAAY,cAAc;QACtB,mCAAiB,CAAA;QACjB,2CAAyB,CAAA;IAC7B,CAAC,EAHW,cAAc,GAAd,wCAAc,KAAd,wCAAc,QAGzB;IACD;;OAEG;IACH,IAAY,aAUX;IAVD,WAAY,aAAa;QACrB,sCAAqB,CAAA;QACrB,0DAAyC,CAAA;QACzC,wCAAuB,CAAA;QACvB,sCAAqB,CAAA;QACrB,4CAA2B,CAAA;QAC3B,kCAAiB,CAAA;QACjB,wDAAuC,CAAA;QACvC,sDAAqC,CAAA;QACrC,oEAAmD,CAAA;IACvD,CAAC,EAVW,aAAa,GAAb,uCAAa,KAAb,uCAAa,QAUxB;AACL,CAAC,EAtBgB,yBAAyB,yCAAzB,yBAAyB,QAsBzC"}