@corsa-labs/sdk 3.20.0 → 3.22.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/ComplianceClient.d.ts +2 -0
- package/dist/ComplianceClient.js +3 -0
- package/dist/ComplianceClient.js.map +1 -1
- package/dist/index.d.ts +17 -7
- package/dist/index.js +30 -2
- package/dist/index.js.map +1 -1
- package/dist/models/BankAccountDto.d.ts +29 -17
- package/dist/models/BankAccountDto.js +13 -0
- package/dist/models/BankAccountDto.js.map +1 -1
- package/dist/models/BlockchainWalletDto.d.ts +18 -0
- package/dist/models/BlockchainWalletDto.js +13 -0
- package/dist/models/BlockchainWalletDto.js.map +1 -1
- package/dist/models/ChecklistItemResponseDto.d.ts +80 -0
- package/dist/models/ChecklistItemResponseDto.js +18 -0
- package/dist/models/ChecklistItemResponseDto.js.map +1 -0
- package/dist/models/ChecklistTemplateItemResponseDto.d.ts +56 -0
- package/dist/models/ChecklistTemplateItemResponseDto.js +18 -0
- package/dist/models/ChecklistTemplateItemResponseDto.js.map +1 -0
- package/dist/models/ChecklistTemplateResponseDto.d.ts +48 -0
- package/dist/models/ChecklistTemplateResponseDto.js +15 -0
- package/dist/models/ChecklistTemplateResponseDto.js.map +1 -0
- package/dist/models/ClientAssociatedToAccountDto.d.ts +14 -0
- package/dist/models/{BankAccountAssociationResponseDto.js → ClientAssociatedToAccountDto.js} +1 -1
- package/dist/models/ClientAssociatedToAccountDto.js.map +1 -0
- package/dist/models/CreateBankAccountDto.d.ts +28 -0
- package/dist/models/CreateBankAccountDto.js +13 -0
- package/dist/models/CreateBankAccountDto.js.map +1 -1
- package/dist/models/CreateBlockchainWalletDto.d.ts +18 -0
- package/dist/models/CreateBlockchainWalletDto.js +13 -0
- package/dist/models/CreateBlockchainWalletDto.js.map +1 -1
- package/dist/models/CreateChecklistTemplateDto.d.ts +32 -0
- package/dist/models/CreateChecklistTemplateDto.js +15 -0
- package/dist/models/CreateChecklistTemplateDto.js.map +1 -0
- package/dist/models/CreateChecklistTemplateItemDto.d.ts +44 -0
- package/dist/models/CreateChecklistTemplateItemDto.js +18 -0
- package/dist/models/CreateChecklistTemplateItemDto.js.map +1 -0
- package/dist/models/StatusOptionDto.d.ts +10 -0
- package/dist/models/StatusOptionDto.js +3 -0
- package/dist/models/StatusOptionDto.js.map +1 -0
- package/dist/models/UpdateBankAccountDto.d.ts +26 -6
- package/dist/models/UpdateBankAccountDto.js +13 -0
- package/dist/models/UpdateBankAccountDto.js.map +1 -1
- package/dist/models/UpdateBlockchainWalletDto.d.ts +18 -0
- package/dist/models/UpdateBlockchainWalletDto.js +13 -0
- package/dist/models/UpdateBlockchainWalletDto.js.map +1 -1
- package/dist/models/UpdateChecklistItemDto.d.ts +59 -0
- package/dist/models/UpdateChecklistItemDto.js +18 -0
- package/dist/models/UpdateChecklistItemDto.js.map +1 -0
- package/dist/models/UpdateChecklistTemplateDto.d.ts +14 -0
- package/dist/models/UpdateChecklistTemplateDto.js +3 -0
- package/dist/models/UpdateChecklistTemplateDto.js.map +1 -0
- package/dist/models/UpdateChecklistTemplateItemDto.d.ts +44 -0
- package/dist/models/UpdateChecklistTemplateItemDto.js +18 -0
- package/dist/models/UpdateChecklistTemplateItemDto.js.map +1 -0
- package/dist/services/BankAccountsService.d.ts +2 -3
- package/dist/services/BankAccountsService.js +1 -1
- package/dist/services/BankAccountsService.js.map +1 -1
- package/dist/services/ChecklistsService.d.ts +93 -0
- package/dist/services/ChecklistsService.js +212 -0
- package/dist/services/ChecklistsService.js.map +1 -0
- package/package.json +1 -1
- package/dist/models/BankAccountAssociationResponseDto.d.ts +0 -14
- package/dist/models/BankAccountAssociationResponseDto.js.map +0 -1
|
@@ -4,6 +4,7 @@ import { AlertsService } from './services/AlertsService';
|
|
|
4
4
|
import { BankAccountsService } from './services/BankAccountsService';
|
|
5
5
|
import { BlockchainWalletsService } from './services/BlockchainWalletsService';
|
|
6
6
|
import { CasesService } from './services/CasesService';
|
|
7
|
+
import { ChecklistsService } from './services/ChecklistsService';
|
|
7
8
|
import { ClientsService } from './services/ClientsService';
|
|
8
9
|
import { DepositsService } from './services/DepositsService';
|
|
9
10
|
import { HealthService } from './services/HealthService';
|
|
@@ -18,6 +19,7 @@ export declare class ComplianceClient {
|
|
|
18
19
|
readonly bankAccounts: BankAccountsService;
|
|
19
20
|
readonly blockchainWallets: BlockchainWalletsService;
|
|
20
21
|
readonly cases: CasesService;
|
|
22
|
+
readonly checklists: ChecklistsService;
|
|
21
23
|
readonly clients: ClientsService;
|
|
22
24
|
readonly deposits: DepositsService;
|
|
23
25
|
readonly health: HealthService;
|
package/dist/ComplianceClient.js
CHANGED
|
@@ -6,6 +6,7 @@ const AlertsService_1 = require("./services/AlertsService");
|
|
|
6
6
|
const BankAccountsService_1 = require("./services/BankAccountsService");
|
|
7
7
|
const BlockchainWalletsService_1 = require("./services/BlockchainWalletsService");
|
|
8
8
|
const CasesService_1 = require("./services/CasesService");
|
|
9
|
+
const ChecklistsService_1 = require("./services/ChecklistsService");
|
|
9
10
|
const ClientsService_1 = require("./services/ClientsService");
|
|
10
11
|
const DepositsService_1 = require("./services/DepositsService");
|
|
11
12
|
const HealthService_1 = require("./services/HealthService");
|
|
@@ -19,6 +20,7 @@ class ComplianceClient {
|
|
|
19
20
|
bankAccounts;
|
|
20
21
|
blockchainWallets;
|
|
21
22
|
cases;
|
|
23
|
+
checklists;
|
|
22
24
|
clients;
|
|
23
25
|
deposits;
|
|
24
26
|
health;
|
|
@@ -44,6 +46,7 @@ class ComplianceClient {
|
|
|
44
46
|
this.bankAccounts = new BankAccountsService_1.BankAccountsService(this.request);
|
|
45
47
|
this.blockchainWallets = new BlockchainWalletsService_1.BlockchainWalletsService(this.request);
|
|
46
48
|
this.cases = new CasesService_1.CasesService(this.request);
|
|
49
|
+
this.checklists = new ChecklistsService_1.ChecklistsService(this.request);
|
|
47
50
|
this.clients = new ClientsService_1.ClientsService(this.request);
|
|
48
51
|
this.deposits = new DepositsService_1.DepositsService(this.request);
|
|
49
52
|
this.health = new HealthService_1.HealthService(this.request);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComplianceClient.js","sourceRoot":"","sources":["../ComplianceClient.ts"],"names":[],"mappings":";;;AAMA,8DAA2D;AAC3D,4DAAyD;AACzD,wEAAqE;AACrE,kFAA+E;AAC/E,0DAAuD;AACvD,8DAA2D;AAC3D,gEAA6D;AAC7D,4DAAyD;AACzD,8DAA2D;AAC3D,gEAA6D;AAC7D,4DAAyD;AACzD,wEAAqE;AACrE,sEAAmE;AAEnE,MAAa,gBAAgB;IACT,MAAM,CAAgB;IACtB,YAAY,CAAsB;IAClC,iBAAiB,CAA2B;IAC5C,KAAK,CAAe;IACpB,OAAO,CAAiB;IACxB,QAAQ,CAAkB;IAC1B,MAAM,CAAgB;IACtB,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,KAAK;YACjC,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,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,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,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;
|
|
1
|
+
{"version":3,"file":"ComplianceClient.js","sourceRoot":"","sources":["../ComplianceClient.ts"],"names":[],"mappings":";;;AAMA,8DAA2D;AAC3D,4DAAyD;AACzD,wEAAqE;AACrE,kFAA+E;AAC/E,0DAAuD;AACvD,oEAAiE;AACjE,8DAA2D;AAC3D,gEAA6D;AAC7D,4DAAyD;AACzD,8DAA2D;AAC3D,gEAA6D;AAC7D,4DAAyD;AACzD,wEAAqE;AACrE,sEAAmE;AAEnE,MAAa,gBAAgB;IACT,MAAM,CAAgB;IACtB,YAAY,CAAsB;IAClC,iBAAiB,CAA2B;IAC5C,KAAK,CAAe;IACpB,UAAU,CAAoB;IAC9B,OAAO,CAAiB;IACxB,QAAQ,CAAkB;IAC1B,MAAM,CAAgB;IACtB,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,KAAK;YACjC,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,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,MAAM,GAAG,IAAI,6BAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC9C,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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -16,14 +16,17 @@ export type { AssociateBlockchainWalletWithClientDto } from './models/AssociateB
|
|
|
16
16
|
export type { AssociatedAlertDto } from './models/AssociatedAlertDto';
|
|
17
17
|
export type { AssociatedClientDto } from './models/AssociatedClientDto';
|
|
18
18
|
export type { AssociatedTransactionDto } from './models/AssociatedTransactionDto';
|
|
19
|
-
export
|
|
20
|
-
export type { BankAccountDto } from './models/BankAccountDto';
|
|
19
|
+
export { BankAccountDto } from './models/BankAccountDto';
|
|
21
20
|
export type { BatchCreateAlertsDto } from './models/BatchCreateAlertsDto';
|
|
22
21
|
export type { BatchCreateAlertsResponseDto } from './models/BatchCreateAlertsResponseDto';
|
|
23
|
-
export
|
|
22
|
+
export { BlockchainWalletDto } from './models/BlockchainWalletDto';
|
|
24
23
|
export { CaseDto } from './models/CaseDto';
|
|
25
24
|
export type { CaseInvestigationData } from './models/CaseInvestigationData';
|
|
26
25
|
export { CaseStatusData } from './models/CaseStatusData';
|
|
26
|
+
export { ChecklistItemResponseDto } from './models/ChecklistItemResponseDto';
|
|
27
|
+
export { ChecklistTemplateItemResponseDto } from './models/ChecklistTemplateItemResponseDto';
|
|
28
|
+
export { ChecklistTemplateResponseDto } from './models/ChecklistTemplateResponseDto';
|
|
29
|
+
export type { ClientAssociatedToAccountDto } from './models/ClientAssociatedToAccountDto';
|
|
27
30
|
export type { ClientAssociatedToBlockchainWalletDto } from './models/ClientAssociatedToBlockchainWalletDto';
|
|
28
31
|
export type { ClientBankAccountRelationDto } from './models/ClientBankAccountRelationDto';
|
|
29
32
|
export type { ClientBlockchainWalletRelationDto } from './models/ClientBlockchainWalletRelationDto';
|
|
@@ -36,9 +39,11 @@ export { CorporateClientDto } from './models/CorporateClientDto';
|
|
|
36
39
|
export type { CorporateClientGeneralDto } from './models/CorporateClientGeneralDto';
|
|
37
40
|
export { CorporateMemberDto } from './models/CorporateMemberDto';
|
|
38
41
|
export { CreateAlertDto } from './models/CreateAlertDto';
|
|
39
|
-
export
|
|
40
|
-
export
|
|
42
|
+
export { CreateBankAccountDto } from './models/CreateBankAccountDto';
|
|
43
|
+
export { CreateBlockchainWalletDto } from './models/CreateBlockchainWalletDto';
|
|
41
44
|
export { CreateCaseDto } from './models/CreateCaseDto';
|
|
45
|
+
export { CreateChecklistTemplateDto } from './models/CreateChecklistTemplateDto';
|
|
46
|
+
export { CreateChecklistTemplateItemDto } from './models/CreateChecklistTemplateItemDto';
|
|
42
47
|
export { CreateCorporateClientDto } from './models/CreateCorporateClientDto';
|
|
43
48
|
export { CreateCorporateMemberDto } from './models/CreateCorporateMemberDto';
|
|
44
49
|
export type { CreateDepositOperationDto } from './models/CreateDepositOperationDto';
|
|
@@ -68,6 +73,7 @@ export { OperationStatusUpdateDto } from './models/OperationStatusUpdateDto';
|
|
|
68
73
|
export type { PoliticalExposureDto } from './models/PoliticalExposureDto';
|
|
69
74
|
export { RiskDto } from './models/RiskDto';
|
|
70
75
|
export type { SanctionsDto } from './models/SanctionsDto';
|
|
76
|
+
export type { StatusOptionDto } from './models/StatusOptionDto';
|
|
71
77
|
export { TradeOperationDto } from './models/TradeOperationDto';
|
|
72
78
|
export type { TransactionAmountDto } from './models/TransactionAmountDto';
|
|
73
79
|
export type { TransactionCustomFieldDto } from './models/TransactionCustomFieldDto';
|
|
@@ -77,11 +83,14 @@ export type { TransactionSourceOrDestinationClientDto } from './models/Transacti
|
|
|
77
83
|
export type { TransactionSourceOrDestinationDto } from './models/TransactionSourceOrDestinationDto';
|
|
78
84
|
export { TransactionStatusDto } from './models/TransactionStatusDto';
|
|
79
85
|
export { UpdateAlertDto } from './models/UpdateAlertDto';
|
|
80
|
-
export
|
|
81
|
-
export
|
|
86
|
+
export { UpdateBankAccountDto } from './models/UpdateBankAccountDto';
|
|
87
|
+
export { UpdateBlockchainWalletDto } from './models/UpdateBlockchainWalletDto';
|
|
82
88
|
export { UpdateCaseDto } from './models/UpdateCaseDto';
|
|
83
89
|
export type { UpdateCaseInvestigationDto } from './models/UpdateCaseInvestigationDto';
|
|
84
90
|
export { UpdateCaseStatusDto } from './models/UpdateCaseStatusDto';
|
|
91
|
+
export { UpdateChecklistItemDto } from './models/UpdateChecklistItemDto';
|
|
92
|
+
export type { UpdateChecklistTemplateDto } from './models/UpdateChecklistTemplateDto';
|
|
93
|
+
export { UpdateChecklistTemplateItemDto } from './models/UpdateChecklistTemplateItemDto';
|
|
85
94
|
export { UpdateCorporateClientDto } from './models/UpdateCorporateClientDto';
|
|
86
95
|
export { UpdateCorporateMemberDto } from './models/UpdateCorporateMemberDto';
|
|
87
96
|
export { UpdateIdentityDocumentDto } from './models/UpdateIdentityDocumentDto';
|
|
@@ -92,6 +101,7 @@ export { AlertsService } from './services/AlertsService';
|
|
|
92
101
|
export { BankAccountsService } from './services/BankAccountsService';
|
|
93
102
|
export { BlockchainWalletsService } from './services/BlockchainWalletsService';
|
|
94
103
|
export { CasesService } from './services/CasesService';
|
|
104
|
+
export { ChecklistsService } from './services/ChecklistsService';
|
|
95
105
|
export { ClientsService } from './services/ClientsService';
|
|
96
106
|
export { DepositsService } from './services/DepositsService';
|
|
97
107
|
export { HealthService } from './services/HealthService';
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.WithdrawalsService = exports.TransactionsService = exports.TradesService = exports.PlatformService = void 0;
|
|
3
|
+
exports.UpdateChecklistTemplateItemDto = exports.UpdateChecklistItemDto = exports.UpdateCaseStatusDto = exports.UpdateCaseDto = exports.UpdateBlockchainWalletDto = exports.UpdateBankAccountDto = exports.UpdateAlertDto = exports.TransactionStatusDto = exports.TransactionDto = exports.TradeOperationDto = exports.RiskDto = exports.OperationStatusUpdateDto = exports.OperationStatusDto = exports.IndividualMemberDto = exports.IndividualClientGeneralInformationDto = exports.IndividualClientDto = exports.IndividualClientCustomFieldDataDto = exports.IdentityDocumentDto = exports.CreateTradeOperationDto = exports.CreateOrUpdateRiskDto = exports.CreateIndividualMemberDto = exports.CreateIndividualClientDto = exports.CreateIdentityDocumentDto = exports.CreateCorporateMemberDto = exports.CreateCorporateClientDto = exports.CreateChecklistTemplateItemDto = exports.CreateChecklistTemplateDto = exports.CreateCaseDto = exports.CreateBlockchainWalletDto = exports.CreateBankAccountDto = exports.CreateAlertDto = exports.CorporateMemberDto = exports.CorporateClientDto = exports.CorporateClientCustomFieldDataDto = exports.ChecklistTemplateResponseDto = exports.ChecklistTemplateItemResponseDto = exports.ChecklistItemResponseDto = exports.CaseStatusData = exports.CaseDto = exports.BlockchainWalletDto = exports.BankAccountDto = exports.AlertStatusData = exports.AlertSourceDto = exports.AlertDto = exports.OpenAPI = exports.CancelError = exports.CancelablePromise = exports.BaseHttpRequest = exports.ApiError = exports.ComplianceClient = void 0;
|
|
4
|
+
exports.WithdrawalsService = exports.TransactionsService = exports.TradesService = exports.PlatformService = exports.MembersService = exports.HealthService = exports.DepositsService = exports.ClientsService = exports.ChecklistsService = exports.CasesService = exports.BlockchainWalletsService = exports.BankAccountsService = exports.AlertsService = exports.UpdateIndividualMemberDto = exports.UpdateIndividualClientDto = exports.UpdateIdentityDocumentDto = exports.UpdateCorporateMemberDto = exports.UpdateCorporateClientDto = void 0;
|
|
5
5
|
/* generated using openapi-typescript-codegen -- do not edit */
|
|
6
6
|
/* istanbul ignore file */
|
|
7
7
|
/* tslint:disable */
|
|
@@ -23,10 +23,20 @@ var AlertSourceDto_1 = require("./models/AlertSourceDto");
|
|
|
23
23
|
Object.defineProperty(exports, "AlertSourceDto", { enumerable: true, get: function () { return AlertSourceDto_1.AlertSourceDto; } });
|
|
24
24
|
var AlertStatusData_1 = require("./models/AlertStatusData");
|
|
25
25
|
Object.defineProperty(exports, "AlertStatusData", { enumerable: true, get: function () { return AlertStatusData_1.AlertStatusData; } });
|
|
26
|
+
var BankAccountDto_1 = require("./models/BankAccountDto");
|
|
27
|
+
Object.defineProperty(exports, "BankAccountDto", { enumerable: true, get: function () { return BankAccountDto_1.BankAccountDto; } });
|
|
28
|
+
var BlockchainWalletDto_1 = require("./models/BlockchainWalletDto");
|
|
29
|
+
Object.defineProperty(exports, "BlockchainWalletDto", { enumerable: true, get: function () { return BlockchainWalletDto_1.BlockchainWalletDto; } });
|
|
26
30
|
var CaseDto_1 = require("./models/CaseDto");
|
|
27
31
|
Object.defineProperty(exports, "CaseDto", { enumerable: true, get: function () { return CaseDto_1.CaseDto; } });
|
|
28
32
|
var CaseStatusData_1 = require("./models/CaseStatusData");
|
|
29
33
|
Object.defineProperty(exports, "CaseStatusData", { enumerable: true, get: function () { return CaseStatusData_1.CaseStatusData; } });
|
|
34
|
+
var ChecklistItemResponseDto_1 = require("./models/ChecklistItemResponseDto");
|
|
35
|
+
Object.defineProperty(exports, "ChecklistItemResponseDto", { enumerable: true, get: function () { return ChecklistItemResponseDto_1.ChecklistItemResponseDto; } });
|
|
36
|
+
var ChecklistTemplateItemResponseDto_1 = require("./models/ChecklistTemplateItemResponseDto");
|
|
37
|
+
Object.defineProperty(exports, "ChecklistTemplateItemResponseDto", { enumerable: true, get: function () { return ChecklistTemplateItemResponseDto_1.ChecklistTemplateItemResponseDto; } });
|
|
38
|
+
var ChecklistTemplateResponseDto_1 = require("./models/ChecklistTemplateResponseDto");
|
|
39
|
+
Object.defineProperty(exports, "ChecklistTemplateResponseDto", { enumerable: true, get: function () { return ChecklistTemplateResponseDto_1.ChecklistTemplateResponseDto; } });
|
|
30
40
|
var CorporateClientCustomFieldDataDto_1 = require("./models/CorporateClientCustomFieldDataDto");
|
|
31
41
|
Object.defineProperty(exports, "CorporateClientCustomFieldDataDto", { enumerable: true, get: function () { return CorporateClientCustomFieldDataDto_1.CorporateClientCustomFieldDataDto; } });
|
|
32
42
|
var CorporateClientDto_1 = require("./models/CorporateClientDto");
|
|
@@ -35,8 +45,16 @@ var CorporateMemberDto_1 = require("./models/CorporateMemberDto");
|
|
|
35
45
|
Object.defineProperty(exports, "CorporateMemberDto", { enumerable: true, get: function () { return CorporateMemberDto_1.CorporateMemberDto; } });
|
|
36
46
|
var CreateAlertDto_1 = require("./models/CreateAlertDto");
|
|
37
47
|
Object.defineProperty(exports, "CreateAlertDto", { enumerable: true, get: function () { return CreateAlertDto_1.CreateAlertDto; } });
|
|
48
|
+
var CreateBankAccountDto_1 = require("./models/CreateBankAccountDto");
|
|
49
|
+
Object.defineProperty(exports, "CreateBankAccountDto", { enumerable: true, get: function () { return CreateBankAccountDto_1.CreateBankAccountDto; } });
|
|
50
|
+
var CreateBlockchainWalletDto_1 = require("./models/CreateBlockchainWalletDto");
|
|
51
|
+
Object.defineProperty(exports, "CreateBlockchainWalletDto", { enumerable: true, get: function () { return CreateBlockchainWalletDto_1.CreateBlockchainWalletDto; } });
|
|
38
52
|
var CreateCaseDto_1 = require("./models/CreateCaseDto");
|
|
39
53
|
Object.defineProperty(exports, "CreateCaseDto", { enumerable: true, get: function () { return CreateCaseDto_1.CreateCaseDto; } });
|
|
54
|
+
var CreateChecklistTemplateDto_1 = require("./models/CreateChecklistTemplateDto");
|
|
55
|
+
Object.defineProperty(exports, "CreateChecklistTemplateDto", { enumerable: true, get: function () { return CreateChecklistTemplateDto_1.CreateChecklistTemplateDto; } });
|
|
56
|
+
var CreateChecklistTemplateItemDto_1 = require("./models/CreateChecklistTemplateItemDto");
|
|
57
|
+
Object.defineProperty(exports, "CreateChecklistTemplateItemDto", { enumerable: true, get: function () { return CreateChecklistTemplateItemDto_1.CreateChecklistTemplateItemDto; } });
|
|
40
58
|
var CreateCorporateClientDto_1 = require("./models/CreateCorporateClientDto");
|
|
41
59
|
Object.defineProperty(exports, "CreateCorporateClientDto", { enumerable: true, get: function () { return CreateCorporateClientDto_1.CreateCorporateClientDto; } });
|
|
42
60
|
var CreateCorporateMemberDto_1 = require("./models/CreateCorporateMemberDto");
|
|
@@ -75,10 +93,18 @@ var TransactionStatusDto_1 = require("./models/TransactionStatusDto");
|
|
|
75
93
|
Object.defineProperty(exports, "TransactionStatusDto", { enumerable: true, get: function () { return TransactionStatusDto_1.TransactionStatusDto; } });
|
|
76
94
|
var UpdateAlertDto_1 = require("./models/UpdateAlertDto");
|
|
77
95
|
Object.defineProperty(exports, "UpdateAlertDto", { enumerable: true, get: function () { return UpdateAlertDto_1.UpdateAlertDto; } });
|
|
96
|
+
var UpdateBankAccountDto_1 = require("./models/UpdateBankAccountDto");
|
|
97
|
+
Object.defineProperty(exports, "UpdateBankAccountDto", { enumerable: true, get: function () { return UpdateBankAccountDto_1.UpdateBankAccountDto; } });
|
|
98
|
+
var UpdateBlockchainWalletDto_1 = require("./models/UpdateBlockchainWalletDto");
|
|
99
|
+
Object.defineProperty(exports, "UpdateBlockchainWalletDto", { enumerable: true, get: function () { return UpdateBlockchainWalletDto_1.UpdateBlockchainWalletDto; } });
|
|
78
100
|
var UpdateCaseDto_1 = require("./models/UpdateCaseDto");
|
|
79
101
|
Object.defineProperty(exports, "UpdateCaseDto", { enumerable: true, get: function () { return UpdateCaseDto_1.UpdateCaseDto; } });
|
|
80
102
|
var UpdateCaseStatusDto_1 = require("./models/UpdateCaseStatusDto");
|
|
81
103
|
Object.defineProperty(exports, "UpdateCaseStatusDto", { enumerable: true, get: function () { return UpdateCaseStatusDto_1.UpdateCaseStatusDto; } });
|
|
104
|
+
var UpdateChecklistItemDto_1 = require("./models/UpdateChecklistItemDto");
|
|
105
|
+
Object.defineProperty(exports, "UpdateChecklistItemDto", { enumerable: true, get: function () { return UpdateChecklistItemDto_1.UpdateChecklistItemDto; } });
|
|
106
|
+
var UpdateChecklistTemplateItemDto_1 = require("./models/UpdateChecklistTemplateItemDto");
|
|
107
|
+
Object.defineProperty(exports, "UpdateChecklistTemplateItemDto", { enumerable: true, get: function () { return UpdateChecklistTemplateItemDto_1.UpdateChecklistTemplateItemDto; } });
|
|
82
108
|
var UpdateCorporateClientDto_1 = require("./models/UpdateCorporateClientDto");
|
|
83
109
|
Object.defineProperty(exports, "UpdateCorporateClientDto", { enumerable: true, get: function () { return UpdateCorporateClientDto_1.UpdateCorporateClientDto; } });
|
|
84
110
|
var UpdateCorporateMemberDto_1 = require("./models/UpdateCorporateMemberDto");
|
|
@@ -97,6 +123,8 @@ var BlockchainWalletsService_1 = require("./services/BlockchainWalletsService");
|
|
|
97
123
|
Object.defineProperty(exports, "BlockchainWalletsService", { enumerable: true, get: function () { return BlockchainWalletsService_1.BlockchainWalletsService; } });
|
|
98
124
|
var CasesService_1 = require("./services/CasesService");
|
|
99
125
|
Object.defineProperty(exports, "CasesService", { enumerable: true, get: function () { return CasesService_1.CasesService; } });
|
|
126
|
+
var ChecklistsService_1 = require("./services/ChecklistsService");
|
|
127
|
+
Object.defineProperty(exports, "ChecklistsService", { enumerable: true, get: function () { return ChecklistsService_1.ChecklistsService; } });
|
|
100
128
|
var ClientsService_1 = require("./services/ClientsService");
|
|
101
129
|
Object.defineProperty(exports, "ClientsService", { enumerable: true, get: function () { return ClientsService_1.ClientsService; } });
|
|
102
130
|
var DepositsService_1 = require("./services/DepositsService");
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;AAAA,+DAA+D;AAC/D,0BAA0B;AAC1B,oBAAoB;AACpB,oBAAoB;AACpB,uDAAsD;AAA7C,oHAAA,gBAAgB,OAAA;AAEzB,4CAA2C;AAAlC,oGAAA,QAAQ,OAAA;AACjB,0DAAyD;AAAhD,kHAAA,eAAe,OAAA;AACxB,8DAA0E;AAAjE,sHAAA,iBAAiB,OAAA;AAAE,gHAAA,WAAW,OAAA;AACvC,0CAAyC;AAAhC,kGAAA,OAAO,OAAA;AAOhB,8CAA6C;AAApC,oGAAA,QAAQ,OAAA;AACjB,0DAAyD;AAAhD,gHAAA,cAAc,OAAA;AACvB,4DAA2D;AAAlD,kHAAA,eAAe,OAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import type { ClientAssociatedToAccountDto } from './ClientAssociatedToAccountDto';
|
|
2
|
+
import type { RiskDto } from './RiskDto';
|
|
1
3
|
export type BankAccountDto = {
|
|
2
4
|
/**
|
|
3
5
|
* Unique identifier for the bank account
|
|
@@ -7,6 +9,10 @@ export type BankAccountDto = {
|
|
|
7
9
|
* External reference ID for the bank account
|
|
8
10
|
*/
|
|
9
11
|
referenceId?: string;
|
|
12
|
+
/**
|
|
13
|
+
* Status of the bank account
|
|
14
|
+
*/
|
|
15
|
+
status?: BankAccountDto.status;
|
|
10
16
|
/**
|
|
11
17
|
* Timestamp when the bank account was created
|
|
12
18
|
*/
|
|
@@ -46,21 +52,27 @@ export type BankAccountDto = {
|
|
|
46
52
|
/**
|
|
47
53
|
* Clients associated with this bank account
|
|
48
54
|
*/
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
score?: number;
|
|
63
|
-
assessedAt?: string;
|
|
64
|
-
reason?: string;
|
|
65
|
-
};
|
|
55
|
+
associatedClients?: Array<ClientAssociatedToAccountDto>;
|
|
56
|
+
/**
|
|
57
|
+
* Historical risk assessments
|
|
58
|
+
*/
|
|
59
|
+
riskHistory: Array<RiskDto>;
|
|
60
|
+
/**
|
|
61
|
+
* Current risk assessment
|
|
62
|
+
*/
|
|
63
|
+
currentRisk?: RiskDto;
|
|
64
|
+
/**
|
|
65
|
+
* Custom fields data
|
|
66
|
+
*/
|
|
67
|
+
customFields?: Record<string, any>;
|
|
66
68
|
};
|
|
69
|
+
export declare namespace BankAccountDto {
|
|
70
|
+
/**
|
|
71
|
+
* Status of the bank account
|
|
72
|
+
*/
|
|
73
|
+
enum status {
|
|
74
|
+
ACTIVE = "ACTIVE",
|
|
75
|
+
INACTIVE = "INACTIVE",
|
|
76
|
+
CLOSED = "CLOSED"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
@@ -1,3 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BankAccountDto = void 0;
|
|
4
|
+
var BankAccountDto;
|
|
5
|
+
(function (BankAccountDto) {
|
|
6
|
+
/**
|
|
7
|
+
* Status of the bank account
|
|
8
|
+
*/
|
|
9
|
+
let status;
|
|
10
|
+
(function (status) {
|
|
11
|
+
status["ACTIVE"] = "ACTIVE";
|
|
12
|
+
status["INACTIVE"] = "INACTIVE";
|
|
13
|
+
status["CLOSED"] = "CLOSED";
|
|
14
|
+
})(status = BankAccountDto.status || (BankAccountDto.status = {}));
|
|
15
|
+
})(BankAccountDto || (exports.BankAccountDto = BankAccountDto = {}));
|
|
3
16
|
//# sourceMappingURL=BankAccountDto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BankAccountDto.js","sourceRoot":"","sources":["../../models/BankAccountDto.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"BankAccountDto.js","sourceRoot":"","sources":["../../models/BankAccountDto.ts"],"names":[],"mappings":";;;AAwEA,IAAiB,cAAc,CAS9B;AATD,WAAiB,cAAc;IAC3B;;OAEG;IACH,IAAY,MAIX;IAJD,WAAY,MAAM;QACd,2BAAiB,CAAA;QACjB,+BAAqB,CAAA;QACrB,2BAAiB,CAAA;IACrB,CAAC,EAJW,MAAM,GAAN,qBAAM,KAAN,qBAAM,QAIjB;AACL,CAAC,EATgB,cAAc,8BAAd,cAAc,QAS9B"}
|
|
@@ -9,6 +9,14 @@ export type BlockchainWalletDto = {
|
|
|
9
9
|
* External reference ID for the blockchain wallet
|
|
10
10
|
*/
|
|
11
11
|
referenceId?: string;
|
|
12
|
+
/**
|
|
13
|
+
* Status of the blockchain wallet
|
|
14
|
+
*/
|
|
15
|
+
status?: BlockchainWalletDto.status;
|
|
16
|
+
/**
|
|
17
|
+
* Screening date of the blockchain wallet
|
|
18
|
+
*/
|
|
19
|
+
screeningDate?: string;
|
|
12
20
|
/**
|
|
13
21
|
* Timestamp when the wallet was created
|
|
14
22
|
*/
|
|
@@ -42,3 +50,13 @@ export type BlockchainWalletDto = {
|
|
|
42
50
|
*/
|
|
43
51
|
customFields?: Record<string, any>;
|
|
44
52
|
};
|
|
53
|
+
export declare namespace BlockchainWalletDto {
|
|
54
|
+
/**
|
|
55
|
+
* Status of the blockchain wallet
|
|
56
|
+
*/
|
|
57
|
+
enum status {
|
|
58
|
+
ACTIVE = "ACTIVE",
|
|
59
|
+
INACTIVE = "INACTIVE",
|
|
60
|
+
CLOSED = "CLOSED"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -1,3 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BlockchainWalletDto = void 0;
|
|
4
|
+
var BlockchainWalletDto;
|
|
5
|
+
(function (BlockchainWalletDto) {
|
|
6
|
+
/**
|
|
7
|
+
* Status of the blockchain wallet
|
|
8
|
+
*/
|
|
9
|
+
let status;
|
|
10
|
+
(function (status) {
|
|
11
|
+
status["ACTIVE"] = "ACTIVE";
|
|
12
|
+
status["INACTIVE"] = "INACTIVE";
|
|
13
|
+
status["CLOSED"] = "CLOSED";
|
|
14
|
+
})(status = BlockchainWalletDto.status || (BlockchainWalletDto.status = {}));
|
|
15
|
+
})(BlockchainWalletDto || (exports.BlockchainWalletDto = BlockchainWalletDto = {}));
|
|
3
16
|
//# sourceMappingURL=BlockchainWalletDto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BlockchainWalletDto.js","sourceRoot":"","sources":["../../models/BlockchainWalletDto.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"BlockchainWalletDto.js","sourceRoot":"","sources":["../../models/BlockchainWalletDto.ts"],"names":[],"mappings":";;;AAwDA,IAAiB,mBAAmB,CASnC;AATD,WAAiB,mBAAmB;IAChC;;OAEG;IACH,IAAY,MAIX;IAJD,WAAY,MAAM;QACd,2BAAiB,CAAA;QACjB,+BAAqB,CAAA;QACrB,2BAAiB,CAAA;IACrB,CAAC,EAJW,MAAM,GAAN,0BAAM,KAAN,0BAAM,QAIjB;AACL,CAAC,EATgB,mBAAmB,mCAAnB,mBAAmB,QASnC"}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
export type ChecklistItemResponseDto = {
|
|
2
|
+
/**
|
|
3
|
+
* The unique identifier of the checklist item
|
|
4
|
+
*/
|
|
5
|
+
id: string;
|
|
6
|
+
/**
|
|
7
|
+
* The name of the checklist item
|
|
8
|
+
*/
|
|
9
|
+
name: string;
|
|
10
|
+
/**
|
|
11
|
+
* Optional note for the checklist item
|
|
12
|
+
*/
|
|
13
|
+
note?: string;
|
|
14
|
+
/**
|
|
15
|
+
* The category of the checklist item
|
|
16
|
+
*/
|
|
17
|
+
category: ChecklistItemResponseDto.category;
|
|
18
|
+
/**
|
|
19
|
+
* The current status of the checklist item
|
|
20
|
+
*/
|
|
21
|
+
status?: string;
|
|
22
|
+
/**
|
|
23
|
+
* URL to the attached document
|
|
24
|
+
*/
|
|
25
|
+
documentUrl?: string;
|
|
26
|
+
/**
|
|
27
|
+
* MIME type of the attached document
|
|
28
|
+
*/
|
|
29
|
+
documentMimeType?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Date when the document was submitted
|
|
32
|
+
*/
|
|
33
|
+
documentSubmissionDate?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Expiration date for the checklist item
|
|
36
|
+
*/
|
|
37
|
+
expirationDate?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Available status options for this item
|
|
40
|
+
*/
|
|
41
|
+
statusOptions?: Array<{
|
|
42
|
+
name?: string;
|
|
43
|
+
color?: string | null;
|
|
44
|
+
}>;
|
|
45
|
+
/**
|
|
46
|
+
* Custom fields for this checklist item
|
|
47
|
+
*/
|
|
48
|
+
customFields?: Record<string, {
|
|
49
|
+
label?: string;
|
|
50
|
+
value?: (string | number | boolean);
|
|
51
|
+
description?: string;
|
|
52
|
+
category?: string;
|
|
53
|
+
possibleValues?: Array<(string | number)>;
|
|
54
|
+
immutable?: boolean;
|
|
55
|
+
}>;
|
|
56
|
+
/**
|
|
57
|
+
* Whether this item is archived
|
|
58
|
+
*/
|
|
59
|
+
isArchived: boolean;
|
|
60
|
+
/**
|
|
61
|
+
* When the item was created
|
|
62
|
+
*/
|
|
63
|
+
createdAt: string;
|
|
64
|
+
/**
|
|
65
|
+
* When the item was last updated
|
|
66
|
+
*/
|
|
67
|
+
updatedAt: string;
|
|
68
|
+
};
|
|
69
|
+
export declare namespace ChecklistItemResponseDto {
|
|
70
|
+
/**
|
|
71
|
+
* The category of the checklist item
|
|
72
|
+
*/
|
|
73
|
+
enum category {
|
|
74
|
+
PERSONAL_IDENTIFICATION = "PERSONAL_IDENTIFICATION",
|
|
75
|
+
FINANCIAL_INFORMATION = "FINANCIAL_INFORMATION",
|
|
76
|
+
CORPORATE_INFORMATION = "CORPORATE_INFORMATION",
|
|
77
|
+
DECLARATIONS_COMPLIANCE = "DECLARATIONS_COMPLIANCE",
|
|
78
|
+
OTHER = "OTHER"
|
|
79
|
+
}
|
|
80
|
+
}
|
|
@@ -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
|
+
* 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 = 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":";;;AAwEA,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,56 @@
|
|
|
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
|
+
* Custom fields for this checklist item
|
|
27
|
+
*/
|
|
28
|
+
customFields?: Record<string, {
|
|
29
|
+
label?: string;
|
|
30
|
+
value?: (string | number | boolean);
|
|
31
|
+
description?: string;
|
|
32
|
+
category?: string;
|
|
33
|
+
possibleValues?: Array<(string | number)>;
|
|
34
|
+
immutable?: boolean;
|
|
35
|
+
}>;
|
|
36
|
+
/**
|
|
37
|
+
* When the item was created
|
|
38
|
+
*/
|
|
39
|
+
createdAt: string;
|
|
40
|
+
/**
|
|
41
|
+
* When the item was last updated
|
|
42
|
+
*/
|
|
43
|
+
updatedAt: string;
|
|
44
|
+
};
|
|
45
|
+
export declare namespace ChecklistTemplateItemResponseDto {
|
|
46
|
+
/**
|
|
47
|
+
* The category of the checklist item
|
|
48
|
+
*/
|
|
49
|
+
enum category {
|
|
50
|
+
PERSONAL_IDENTIFICATION = "PERSONAL_IDENTIFICATION",
|
|
51
|
+
FINANCIAL_INFORMATION = "FINANCIAL_INFORMATION",
|
|
52
|
+
CORPORATE_INFORMATION = "CORPORATE_INFORMATION",
|
|
53
|
+
DECLARATIONS_COMPLIANCE = "DECLARATIONS_COMPLIANCE",
|
|
54
|
+
OTHER = "OTHER"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -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":";;;AAgDA,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,48 @@
|
|
|
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
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 = ChecklistTemplateResponseDto.entityType || (ChecklistTemplateResponseDto.entityType = {}));
|
|
14
|
+
})(ChecklistTemplateResponseDto || (exports.ChecklistTemplateResponseDto = ChecklistTemplateResponseDto = {}));
|
|
15
|
+
//# sourceMappingURL=ChecklistTemplateResponseDto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChecklistTemplateResponseDto.js","sourceRoot":"","sources":["../../models/ChecklistTemplateResponseDto.ts"],"names":[],"mappings":";;;AA2CA,IAAiB,4BAA4B,CAQ5C;AARD,WAAiB,4BAA4B;IACzC;;OAEG;IACH,IAAY,UAGX;IAHD,WAAY,UAAU;QAClB,qDAAuC,CAAA;QACvC,mDAAqC,CAAA;IACzC,CAAC,EAHW,UAAU,GAAV,uCAAU,KAAV,uCAAU,QAGrB;AACL,CAAC,EARgB,4BAA4B,4CAA5B,4BAA4B,QAQ5C"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export type ClientAssociatedToAccountDto = {
|
|
2
|
+
/**
|
|
3
|
+
* Client ID or reference ID to associate with the blockchain wallet
|
|
4
|
+
*/
|
|
5
|
+
id: string;
|
|
6
|
+
/**
|
|
7
|
+
* Client reference ID
|
|
8
|
+
*/
|
|
9
|
+
referenceId?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Custom name for this client-wallet relationship
|
|
12
|
+
*/
|
|
13
|
+
name?: string;
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClientAssociatedToAccountDto.js","sourceRoot":"","sources":["../../models/ClientAssociatedToAccountDto.ts"],"names":[],"mappings":""}
|