@propxchain/core-client 0.2.1-canary.19 → 0.2.1-canary.21

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 (40) hide show
  1. package/dist/canisters/document_storage/document_storage.did.d.ts.map +1 -1
  2. package/dist/canisters/document_storage/document_storage.did.js +90 -21
  3. package/dist/canisters/document_storage/document_storage.did.js.map +1 -1
  4. package/dist/canisters/document_verification/document_verification.did.d.ts.map +1 -1
  5. package/dist/canisters/document_verification/document_verification.did.js +132 -0
  6. package/dist/canisters/document_verification/document_verification.did.js.map +1 -1
  7. package/dist/canisters/email_service/email_service.did.d.ts.map +1 -1
  8. package/dist/canisters/email_service/email_service.did.js +40 -0
  9. package/dist/canisters/email_service/email_service.did.js.map +1 -1
  10. package/dist/canisters/land_registry_integration/land_registry_integration.did.d.ts.map +1 -1
  11. package/dist/canisters/land_registry_integration/land_registry_integration.did.js +186 -12
  12. package/dist/canisters/land_registry_integration/land_registry_integration.did.js.map +1 -1
  13. package/dist/canisters/ledger_manager/ledger_manager.did.d.ts.map +1 -1
  14. package/dist/canisters/ledger_manager/ledger_manager.did.js +55 -2
  15. package/dist/canisters/ledger_manager/ledger_manager.did.js.map +1 -1
  16. package/dist/canisters/user_management/user_management.did.d.ts.map +1 -1
  17. package/dist/canisters/user_management/user_management.did.js +103 -22
  18. package/dist/canisters/user_management/user_management.did.js.map +1 -1
  19. package/package.json +1 -1
  20. package/src/canisters/document_storage/document_storage.did +159 -89
  21. package/src/canisters/document_storage/document_storage.did.d.ts +159 -82
  22. package/src/canisters/document_storage/document_storage.did.js +230 -121
  23. package/src/canisters/document_verification/document_verification.did +248 -98
  24. package/src/canisters/document_verification/document_verification.did.d.ts +236 -112
  25. package/src/canisters/document_verification/document_verification.did.js +299 -139
  26. package/src/canisters/email_service/email_service.did +86 -37
  27. package/src/canisters/email_service/email_service.did.d.ts +92 -45
  28. package/src/canisters/email_service/email_service.did.js +131 -63
  29. package/src/canisters/land_registry_integration/land_registry_integration.did +395 -169
  30. package/src/canisters/land_registry_integration/land_registry_integration.did.d.ts +331 -157
  31. package/src/canisters/land_registry_integration/land_registry_integration.did.js +384 -182
  32. package/src/canisters/ledger_manager/ledger_manager.did +232 -161
  33. package/src/canisters/ledger_manager/ledger_manager.did.d.ts +205 -142
  34. package/src/canisters/ledger_manager/ledger_manager.did.js +256 -187
  35. package/src/canisters/property_registry/property_registry.did.d.ts +71 -71
  36. package/src/canisters/transaction_manager/transaction_manager.did +27 -0
  37. package/src/canisters/transaction_manager/transaction_manager.did.d.ts +29 -0
  38. package/src/canisters/user_management/user_management.did +297 -197
  39. package/src/canisters/user_management/user_management.did.d.ts +267 -193
  40. package/src/canisters/user_management/user_management.did.js +352 -243
@@ -1,193 +1,267 @@
1
- import type { Principal } from '@icp-sdk/core/principal';
2
- import type { ActorMethod } from '@icp-sdk/core/agent';
3
- import type { IDL } from '@icp-sdk/core/candid';
4
-
5
- export type ActorType = { 'user' : null } |
6
- { 'agent' : null } |
7
- { 'systemActor' : null };
8
- export type AdminMutationError = { 'notSuperAdmin' : null } |
9
- { 'cannotDemoteController' : null } |
10
- { 'invalidCsrfToken' : null } |
11
- { 'cannotDemoteLastSuperAdmin' : null } |
12
- { 'anonymousCaller' : null } |
13
- { 'targetIsAnonymous' : null };
14
- export interface AdminRecord {
15
- 'principal' : Principal,
16
- 'note' : [] | [string],
17
- 'role' : AdminRole,
18
- 'grantedAt' : Time,
19
- 'grantedBy' : Principal,
20
- }
21
- export type AdminRole = { 'super' : null } |
22
- { 'regular' : null };
23
- export interface AuditLog {
24
- 'id' : bigint,
25
- 'action' : string,
26
- 'metadata' : string,
27
- 'targetPrincipal' : [] | [Principal],
28
- 'timestamp' : Time,
29
- 'success' : boolean,
30
- 'actorPrincipal' : Principal,
31
- 'actorType' : ActorType,
32
- 'delegatedBy' : [] | [Principal],
33
- 'transactionId' : [] | [string],
34
- }
35
- export type Permission = { 'ViewTransactionProgress' : string } |
36
- { 'ViewSharedTransaction' : string } |
37
- { 'ViewDevelopmentUnits' : string } |
38
- { 'ManageClientAccess' : Principal } |
39
- { 'InvitePartyToTransaction' : string } |
40
- { 'AdminViewAllTransactions' : null } |
41
- { 'AdminManageUsers' : null } |
42
- { 'UpdateMemberDocuments' : [string, Principal] };
43
- export type Time = bigint;
44
- export interface TransactionMember {
45
- 'uploadedDocuments' : Array<string>,
46
- 'principal' : Principal,
47
- 'requiredDocuments' : Array<string>,
48
- 'joinedAt' : Time,
49
- 'role' : UserType,
50
- 'documentsComplete' : boolean,
51
- 'canViewProgress' : boolean,
52
- 'canInviteOthers' : boolean,
53
- 'lastActivityAt' : Time,
54
- 'transactionId' : string,
55
- }
56
- export interface TransactionProgress {
57
- 'members' : Array<TransactionMember>,
58
- 'completionPercentage' : bigint,
59
- 'readyToExchange' : boolean,
60
- 'membersComplete' : bigint,
61
- 'totalMembers' : bigint,
62
- 'blockingParties' : Array<Principal>,
63
- 'transactionId' : string,
64
- }
65
- export interface UserProfile {
66
- 'isPlatformOnlySolicitor' : boolean,
67
- 'userType' : UserType,
68
- 'principal' : Principal,
69
- 'managedBySolicitor' : [] | [Principal],
70
- 'emailVerified' : boolean,
71
- 'name' : string,
72
- 'createdAt' : Time,
73
- 'role' : [] | [UserRole],
74
- 'email' : string,
75
- 'lawFirmName' : [] | [string],
76
- 'isVerified' : boolean,
77
- 'clientPrincipals' : Array<Principal>,
78
- 'emailVerificationSentAt' : [] | [Time],
79
- 'emailVerificationToken' : [] | [string],
80
- 'mobile' : string,
81
- 'solicitorLicenseNumber' : [] | [string],
82
- 'lawFirmAddress' : [] | [string],
83
- }
84
- export type UserRole = { 'admin' : null } |
85
- { 'solicitor' : null } |
86
- { 'seller' : null } |
87
- { 'guest' : null } |
88
- { 'buyer' : null };
89
- export type UserType = { 'solicitor_platform_only' : null } |
90
- { 'admin' : null } |
91
- { 'diy_buyer' : null } |
92
- { 'solicitor_transparent' : null } |
93
- { 'platform_admin' : null } |
94
- { 'solicitor_client_linked' : null } |
95
- { 'estate_agent' : null } |
96
- { 'platform_support' : null } |
97
- { 'mortgage_broker' : null } |
98
- { 'seller' : null } |
99
- { 'conveyancer_managed' : null } |
100
- { 'diy_seller' : null } |
101
- { 'assisted_seller' : null } |
102
- { 'conveyancer_transparent' : null } |
103
- { 'buyer' : null } |
104
- { 'property_developer' : null } |
105
- { 'solicitor_managed' : null } |
106
- { 'assisted_buyer' : null };
107
- export interface _SERVICE {
108
- 'addTransactionMember' : ActorMethod<
109
- [string, Principal, UserType, boolean, boolean, string],
110
- boolean
111
- >,
112
- 'amIAdmin' : ActorMethod<[], boolean>,
113
- 'bootstrapAdmin' : ActorMethod<[string, string], boolean>,
114
- 'canUserAccessTransaction' : ActorMethod<[Principal, string], boolean>,
115
- 'checkPermissionWithAudit' : ActorMethod<[Permission], boolean>,
116
- 'createUserForPrincipal' : ActorMethod<
117
- [Principal, string, string, string, string, string],
118
- boolean
119
- >,
120
- 'deleteUserByPrincipal' : ActorMethod<[Principal, string], boolean>,
121
- 'demoteAdmin' : ActorMethod<
122
- [Principal, string],
123
- { 'ok' : null } |
124
- { 'err' : AdminMutationError }
125
- >,
126
- 'generateCSRFToken' : ActorMethod<[], string>,
127
- 'getAllUsers' : ActorMethod<[], Array<UserProfile>>,
128
- 'getAuditLogs' : ActorMethod<[bigint], Array<AuditLog>>,
129
- 'getCSRFToken' : ActorMethod<[], [] | [string]>,
130
- 'getCycles' : ActorMethod<[], bigint>,
131
- 'getMyManagingSolicitor' : ActorMethod<[], [] | [UserProfile]>,
132
- 'getMyProfile' : ActorMethod<[], [] | [UserProfile]>,
133
- 'getMyProfileUpdate' : ActorMethod<[], [] | [UserProfile]>,
134
- 'getMySolicitorClients' : ActorMethod<[], Array<UserProfile>>,
135
- 'getTransactionMembers' : ActorMethod<
136
- [string],
137
- [] | [Array<TransactionMember>]
138
- >,
139
- 'getTransactionProgress' : ActorMethod<[string], [] | [TransactionProgress]>,
140
- 'getUserProfile' : ActorMethod<[Principal], [] | [UserProfile]>,
141
- 'hasPermission' : ActorMethod<[Permission], boolean>,
142
- 'initializeKnownAdmin' : ActorMethod<[string, string, string], boolean>,
143
- 'linkSolicitorToClient' : ActorMethod<[Principal, boolean, string], boolean>,
144
- 'listAdmins' : ActorMethod<[], Array<AdminRecord>>,
145
- 'myAdminRole' : ActorMethod<[], [] | [AdminRole]>,
146
- 'promoteAdmin' : ActorMethod<
147
- [Principal, AdminRole, [] | [string], string],
148
- { 'ok' : AdminRecord } |
149
- { 'err' : AdminMutationError }
150
- >,
151
- 'recordAuditEntry' : ActorMethod<
152
- [
153
- ActorType,
154
- [] | [Principal],
155
- string,
156
- [] | [Principal],
157
- [] | [string],
158
- boolean,
159
- string,
160
- ],
161
- { 'ok' : bigint } |
162
- { 'err' : string }
163
- >,
164
- 'registerUser' : ActorMethod<[string, string, string, string], boolean>,
165
- 'registerUserV2' : ActorMethod<
166
- [
167
- string,
168
- string,
169
- string,
170
- UserType,
171
- [] | [string],
172
- [] | [string],
173
- [] | [string],
174
- string,
175
- ],
176
- boolean
177
- >,
178
- 'resendVerificationEmail' : ActorMethod<[string], boolean>,
179
- 'revokeSolicitorAccess' : ActorMethod<[Principal, string], boolean>,
180
- 'updateMemberDocuments' : ActorMethod<[string, string, string], boolean>,
181
- 'updateTransactionMemberRequiredDocs' : ActorMethod<
182
- [string, Array<string>, string],
183
- boolean
184
- >,
185
- 'upgradeToAdmin' : ActorMethod<[Principal, string], boolean>,
186
- 'validateAdmin' : ActorMethod<[Principal], boolean>,
187
- 'validateCSRFToken' : ActorMethod<[string], boolean>,
188
- 'verifyEmail' : ActorMethod<[string, string], boolean>,
189
- 'verifyUser' : ActorMethod<[Principal, string], boolean>,
190
- 'whoAmI' : ActorMethod<[], Principal>,
191
- }
192
- export declare const idlFactory: IDL.InterfaceFactory;
193
- export declare const init: (args: { IDL: typeof IDL }) => IDL.Type[];
1
+ import type { Principal } from '@dfinity/principal';
2
+ import type { ActorMethod } from '@dfinity/agent';
3
+ import type { IDL } from '@dfinity/candid';
4
+
5
+ export type ActorType = { 'agent' : null } |
6
+ { 'systemActor' : null } |
7
+ { 'user' : null };
8
+ export type AdminMutationError = { 'targetIsAnonymous' : null } |
9
+ { 'cannotDemoteController' : null } |
10
+ { 'notSuperAdmin' : null } |
11
+ { 'invalidCsrfToken' : null } |
12
+ { 'anonymousCaller' : null } |
13
+ { 'cannotDemoteLastSuperAdmin' : null };
14
+ export type AdminMutationResult = { 'ok' : AdminRecord } |
15
+ { 'err' : AdminMutationError };
16
+ export type AdminMutationResult_1 = { 'ok' : null } |
17
+ { 'err' : AdminMutationError };
18
+ export interface AdminRecord {
19
+ 'principal' : Principal,
20
+ 'grantedAt' : Time,
21
+ 'grantedBy' : Principal,
22
+ 'note' : [] | [string],
23
+ 'role' : AdminRole,
24
+ }
25
+ export type AdminRole = { 'regular' : null } |
26
+ { 'super' : null };
27
+ export interface AuditLog {
28
+ 'id' : bigint,
29
+ 'action' : string,
30
+ 'actorType' : ActorType,
31
+ 'metadata' : string,
32
+ 'delegatedBy' : [] | [Principal],
33
+ 'targetPrincipal' : [] | [Principal],
34
+ 'timestamp' : Time,
35
+ 'success' : boolean,
36
+ 'actorPrincipal' : Principal,
37
+ 'transactionId' : [] | [string],
38
+ }
39
+ export interface BotActionLog {
40
+ 'id' : bigint,
41
+ 'action' : string,
42
+ 'metadata' : string,
43
+ 'timestamp' : Time,
44
+ 'success' : boolean,
45
+ 'botPrincipal' : Principal,
46
+ 'transactionId' : [] | [string],
47
+ }
48
+ export interface BotAgent {
49
+ 'ownerPrincipal' : Principal,
50
+ 'name' : string,
51
+ 'createdAt' : Time,
52
+ 'role' : BotRole,
53
+ 'description' : string,
54
+ 'isActive' : boolean,
55
+ 'callCount' : bigint,
56
+ 'lastActive' : Time,
57
+ 'botPrincipal' : Principal,
58
+ }
59
+ export type BotRole = { 'BotFirm' : null } |
60
+ { 'BotInternal' : null } |
61
+ { 'BotPersonal' : null };
62
+ export type Permission = { 'ViewTransactionProgress' : string } |
63
+ { 'ViewSharedTransaction' : string } |
64
+ { 'ViewDevelopmentUnits' : string } |
65
+ { 'ManageClientAccess' : Principal } |
66
+ { 'InvitePartyToTransaction' : string } |
67
+ { 'AdminViewAllTransactions' : null } |
68
+ { 'AdminManageUsers' : null } |
69
+ { 'UpdateMemberDocuments' : [string, Principal] };
70
+ export type Result = {
71
+ 'ok' : { 'ownerPrincipal' : Principal, 'role' : BotRole }
72
+ } |
73
+ { 'err' : string };
74
+ export type Result_1 = { 'ok' : string } |
75
+ { 'err' : string };
76
+ export type Result_2 = { 'ok' : BotAgent } |
77
+ { 'err' : string };
78
+ export type Result_3 = { 'ok' : bigint } |
79
+ { 'err' : string };
80
+ export type Result_4 = { 'ok' : null } |
81
+ { 'err' : string };
82
+ export type Result_5 = { 'ok' : SolicitorSubmissionDetails } |
83
+ { 'err' : string };
84
+ export interface SolicitorSubmissionDetails {
85
+ 'firmSRANumber' : [] | [string],
86
+ 'fullName' : string,
87
+ 'firmName' : string,
88
+ 'email' : string,
89
+ 'businessGatewayEnabled' : boolean,
90
+ 'conveyancerReference' : [] | [string],
91
+ 'sraNumber' : string,
92
+ 'principalId' : Principal,
93
+ 'firmAddress' : string,
94
+ }
95
+ export type Time = bigint;
96
+ export interface TransactionMember {
97
+ 'uploadedDocuments' : Array<string>,
98
+ 'principal' : Principal,
99
+ 'requiredDocuments' : Array<string>,
100
+ 'joinedAt' : Time,
101
+ 'role' : UserType,
102
+ 'documentsComplete' : boolean,
103
+ 'canViewProgress' : boolean,
104
+ 'canInviteOthers' : boolean,
105
+ 'lastActivityAt' : Time,
106
+ 'transactionId' : string,
107
+ }
108
+ export interface TransactionProgress {
109
+ 'members' : Array<TransactionMember>,
110
+ 'completionPercentage' : bigint,
111
+ 'readyToExchange' : boolean,
112
+ 'membersComplete' : bigint,
113
+ 'totalMembers' : bigint,
114
+ 'blockingParties' : Array<Principal>,
115
+ 'transactionId' : string,
116
+ }
117
+ export interface UserProfile {
118
+ 'isPlatformOnlySolicitor' : boolean,
119
+ 'userType' : UserType,
120
+ 'principal' : Principal,
121
+ 'managedBySolicitor' : [] | [Principal],
122
+ 'firmSRANumber' : [] | [string],
123
+ 'emailVerified' : boolean,
124
+ 'name' : string,
125
+ 'createdAt' : Time,
126
+ 'role' : [] | [UserRole],
127
+ 'businessGatewayUsername' : [] | [string],
128
+ 'email' : string,
129
+ 'lawFirmName' : [] | [string],
130
+ 'isVerified' : boolean,
131
+ 'clientPrincipals' : Array<Principal>,
132
+ 'businessGatewayEnabled' : boolean,
133
+ 'emailVerificationSentAt' : [] | [Time],
134
+ 'emailVerificationToken' : [] | [string],
135
+ 'conveyancerReference' : [] | [string],
136
+ 'mobile' : string,
137
+ 'solicitorLicenseNumber' : [] | [string],
138
+ 'sraNumber' : [] | [string],
139
+ 'lawFirmAddress' : [] | [string],
140
+ }
141
+ export type UserRole = { 'admin' : null } |
142
+ { 'solicitor' : null } |
143
+ { 'seller' : null } |
144
+ { 'guest' : null } |
145
+ { 'buyer' : null };
146
+ export type UserType = { 'solicitor_platform_only' : null } |
147
+ { 'admin' : null } |
148
+ { 'diy_buyer' : null } |
149
+ { 'solicitor_transparent' : null } |
150
+ { 'platform_admin' : null } |
151
+ { 'solicitor_client_linked' : null } |
152
+ { 'estate_agent' : null } |
153
+ { 'platform_support' : null } |
154
+ { 'mortgage_broker' : null } |
155
+ { 'seller' : null } |
156
+ { 'conveyancer_managed' : null } |
157
+ { 'diy_seller' : null } |
158
+ { 'assisted_seller' : null } |
159
+ { 'conveyancer_transparent' : null } |
160
+ { 'buyer' : null } |
161
+ { 'property_developer' : null } |
162
+ { 'solicitor_managed' : null } |
163
+ { 'assisted_buyer' : null };
164
+ export interface _SERVICE {
165
+ 'addTransactionMember' : ActorMethod<
166
+ [string, Principal, UserType, boolean, boolean, string],
167
+ boolean
168
+ >,
169
+ 'adminLinkPrincipals' : ActorMethod<[Principal, Principal], Result_1>,
170
+ 'amIAdmin' : ActorMethod<[], boolean>,
171
+ 'bootstrapAdmin' : ActorMethod<[string, string], boolean>,
172
+ 'canUserAccessTransaction' : ActorMethod<[Principal, string], boolean>,
173
+ 'checkPermissionWithAudit' : ActorMethod<[Permission], boolean>,
174
+ 'claimLinkCode' : ActorMethod<[string], Result_1>,
175
+ 'createUserForPrincipal' : ActorMethod<
176
+ [Principal, string, string, string, string, string],
177
+ boolean
178
+ >,
179
+ 'deactivateBot' : ActorMethod<[Principal], Result_4>,
180
+ 'deleteUserByPrincipal' : ActorMethod<[Principal, string], boolean>,
181
+ 'demoteAdmin' : ActorMethod<[Principal, string], AdminMutationResult_1>,
182
+ 'generateCSRFToken' : ActorMethod<[], string>,
183
+ 'generateLinkCode' : ActorMethod<[], Result_1>,
184
+ 'getAllBots' : ActorMethod<[], Array<BotAgent>>,
185
+ 'getAllUsers' : ActorMethod<[], Array<UserProfile>>,
186
+ 'getAuditLogs' : ActorMethod<[bigint], Array<AuditLog>>,
187
+ 'getBotActionLogs' : ActorMethod<[Principal, bigint], Array<BotActionLog>>,
188
+ 'getBotAgent' : ActorMethod<[Principal], [] | [BotAgent]>,
189
+ 'getCSRFToken' : ActorMethod<[], [] | [string]>,
190
+ 'getCycles' : ActorMethod<[], bigint>,
191
+ 'getLinkedPrincipals' : ActorMethod<[Principal], Array<Principal>>,
192
+ 'getMyBots' : ActorMethod<[], Array<BotAgent>>,
193
+ 'getMyLinkedPrincipals' : ActorMethod<[], Array<Principal>>,
194
+ 'getMyManagingSolicitor' : ActorMethod<[], [] | [UserProfile]>,
195
+ 'getMyProfile' : ActorMethod<[], [] | [UserProfile]>,
196
+ 'getMyProfileUpdate' : ActorMethod<[], [] | [UserProfile]>,
197
+ 'getMySolicitorClients' : ActorMethod<[], Array<UserProfile>>,
198
+ 'getSolicitorSubmissionDetails' : ActorMethod<[Principal], Result_5>,
199
+ 'getTransactionMembers' : ActorMethod<
200
+ [string],
201
+ [] | [Array<TransactionMember>]
202
+ >,
203
+ 'getTransactionProgress' : ActorMethod<[string], [] | [TransactionProgress]>,
204
+ 'getUserProfile' : ActorMethod<[Principal], [] | [UserProfile]>,
205
+ 'getUserProfileByPrincipal' : ActorMethod<[Principal], [] | [UserProfile]>,
206
+ 'hasPermission' : ActorMethod<[Permission], boolean>,
207
+ 'linkSolicitorToClient' : ActorMethod<[Principal, boolean, string], boolean>,
208
+ 'listAdmins' : ActorMethod<[], Array<AdminRecord>>,
209
+ 'logBotAction' : ActorMethod<
210
+ [Principal, string, [] | [string], boolean, string],
211
+ Result_4
212
+ >,
213
+ 'myAdminRole' : ActorMethod<[], [] | [AdminRole]>,
214
+ 'promoteAdmin' : ActorMethod<
215
+ [Principal, AdminRole, [] | [string], string],
216
+ AdminMutationResult
217
+ >,
218
+ 'reactivateBot' : ActorMethod<[Principal], Result_4>,
219
+ 'recordAuditEntry' : ActorMethod<
220
+ [
221
+ ActorType,
222
+ [] | [Principal],
223
+ string,
224
+ [] | [Principal],
225
+ [] | [string],
226
+ boolean,
227
+ string,
228
+ ],
229
+ Result_3
230
+ >,
231
+ 'registerBot' : ActorMethod<[Principal, string, string, BotRole], Result_2>,
232
+ 'registerUser' : ActorMethod<[string, string, string, string], boolean>,
233
+ 'registerUserV2' : ActorMethod<
234
+ [
235
+ string,
236
+ string,
237
+ string,
238
+ UserType,
239
+ [] | [string],
240
+ [] | [string],
241
+ [] | [string],
242
+ [] | [string],
243
+ string,
244
+ ],
245
+ boolean
246
+ >,
247
+ 'resendVerificationEmail' : ActorMethod<[string], boolean>,
248
+ 'revokeSolicitorAccess' : ActorMethod<[Principal, string], boolean>,
249
+ 'unlinkPrincipal' : ActorMethod<[Principal], Result_1>,
250
+ 'updateMemberDocuments' : ActorMethod<[string, string, string], boolean>,
251
+ 'updateSolicitorLRDetails' : ActorMethod<
252
+ [[] | [string], boolean, [] | [string], [] | [string], [] | [string]],
253
+ Result_1
254
+ >,
255
+ 'updateTransactionMemberRequiredDocs' : ActorMethod<
256
+ [string, Array<string>, string],
257
+ boolean
258
+ >,
259
+ 'validateAdmin' : ActorMethod<[Principal], boolean>,
260
+ 'validateBot' : ActorMethod<[Principal], Result>,
261
+ 'validateCSRFToken' : ActorMethod<[string], boolean>,
262
+ 'verifyEmail' : ActorMethod<[string, string], boolean>,
263
+ 'verifyUser' : ActorMethod<[Principal, string], boolean>,
264
+ 'whoAmI' : ActorMethod<[], Principal>,
265
+ }
266
+ export declare const idlFactory: IDL.InterfaceFactory;
267
+ export declare const init: (args: { IDL: typeof IDL }) => IDL.Type[];