@propxchain/core-client 0.3.0-canary.30 → 0.3.0-canary.32
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/canisters/transaction_manager/transaction_manager.did.d.ts.map +1 -1
- package/dist/canisters/transaction_manager/transaction_manager.did.js +347 -47
- package/dist/canisters/transaction_manager/transaction_manager.did.js.map +1 -1
- package/package.json +1 -1
- package/src/canisters/transaction_manager/transaction_manager.did +394 -51
- package/src/canisters/transaction_manager/transaction_manager.did.d.ts +326 -42
- package/src/canisters/transaction_manager/transaction_manager.did.js +347 -47
|
@@ -6,6 +6,25 @@ export type AMLStatus = { 'verified' : null } |
|
|
|
6
6
|
{ 'pending' : null } |
|
|
7
7
|
{ 'rejected' : null } |
|
|
8
8
|
{ 'not_started' : null };
|
|
9
|
+
export interface AlterationTypes {
|
|
10
|
+
'conservatory' : boolean,
|
|
11
|
+
'otherDetails' : [] | [string],
|
|
12
|
+
'other' : boolean,
|
|
13
|
+
'changeOfUse' : boolean,
|
|
14
|
+
'structuralRoofWorks' : boolean,
|
|
15
|
+
'windowsPost2002' : boolean,
|
|
16
|
+
'internalWallsRemoved' : boolean,
|
|
17
|
+
'loftConversion' : boolean,
|
|
18
|
+
'garageConversion' : boolean,
|
|
19
|
+
'extension' : boolean,
|
|
20
|
+
}
|
|
21
|
+
export interface Anomaly {
|
|
22
|
+
'ref' : string,
|
|
23
|
+
'explanation' : string,
|
|
24
|
+
'detectedAt' : bigint,
|
|
25
|
+
'sources' : Array<string>,
|
|
26
|
+
'severity' : Severity,
|
|
27
|
+
}
|
|
9
28
|
export interface ApplicationStatusUpdate {
|
|
10
29
|
'lastUpdated' : string,
|
|
11
30
|
'applicationReference' : string,
|
|
@@ -14,18 +33,63 @@ export interface ApplicationStatusUpdate {
|
|
|
14
33
|
'currentStatus' : LandRegistryStatus,
|
|
15
34
|
'previousStatus' : LandRegistryStatus,
|
|
16
35
|
}
|
|
36
|
+
export interface Arrangement {
|
|
37
|
+
'description' : string,
|
|
38
|
+
'document' : TA6Document,
|
|
39
|
+
'contributionAmount' : [] | [bigint],
|
|
40
|
+
}
|
|
17
41
|
export interface BotConnection {
|
|
18
42
|
'principal' : Principal,
|
|
19
43
|
'name' : string,
|
|
20
44
|
'addedAt' : bigint,
|
|
21
45
|
'addedBy' : Principal,
|
|
22
46
|
}
|
|
47
|
+
export interface BoundaryFeature {
|
|
48
|
+
'ownership' : BoundaryOwnership,
|
|
49
|
+
'position' : string,
|
|
50
|
+
}
|
|
51
|
+
export type BoundaryOwnership = { 'NotKnown' : null } |
|
|
52
|
+
{ 'Shared' : null } |
|
|
53
|
+
{ 'OwnedBySeller' : null } |
|
|
54
|
+
{ 'OwnedByNeighbour' : null };
|
|
55
|
+
export interface CompanySeller {
|
|
56
|
+
'countryOfIncorporation' : string,
|
|
57
|
+
'director' : string,
|
|
58
|
+
'companyNumber' : string,
|
|
59
|
+
'companyName' : string,
|
|
60
|
+
}
|
|
61
|
+
export interface CompletionCommitments {
|
|
62
|
+
'removeSellersItems' : TA6Answer,
|
|
63
|
+
'vacantPossession' : TA6Answer,
|
|
64
|
+
'leaveServiceInfo' : TA6Answer,
|
|
65
|
+
}
|
|
66
|
+
export type DischargeType = { 'GroundWater' : null } |
|
|
67
|
+
{ 'SurfaceWater' : null };
|
|
68
|
+
export interface HeatingSystem {
|
|
69
|
+
'certificate' : TA6Document,
|
|
70
|
+
'otherDetails' : [] | [string],
|
|
71
|
+
'installDate' : [] | [string],
|
|
72
|
+
'heatingType' : HeatingType,
|
|
73
|
+
'lastServiceDate' : [] | [string],
|
|
74
|
+
}
|
|
75
|
+
export type HeatingType = { 'Lpg' : null } |
|
|
76
|
+
{ 'Oil' : null } |
|
|
77
|
+
{ 'SolarThermal' : null } |
|
|
78
|
+
{ 'SolidFuel' : null } |
|
|
79
|
+
{ 'DistrictHeating' : null } |
|
|
80
|
+
{ 'Electric' : null } |
|
|
81
|
+
{ 'HeatPumpAir' : null } |
|
|
82
|
+
{ 'Other' : null } |
|
|
83
|
+
{ 'GasCentral' : null } |
|
|
84
|
+
{ 'HeatPumpGround' : null };
|
|
23
85
|
export interface HmlrFetchRecord {
|
|
24
86
|
'fetchedAt' : bigint,
|
|
25
87
|
'fetchedBy' : Principal,
|
|
26
88
|
'titleNumber' : string,
|
|
27
89
|
'responseHash' : string,
|
|
28
90
|
}
|
|
91
|
+
export type Jurisdiction = { 'Wales' : null } |
|
|
92
|
+
{ 'England' : null };
|
|
29
93
|
export interface LandRegistryIntegration {
|
|
30
94
|
'status' : LandRegistryStatus,
|
|
31
95
|
'lastPolledAt' : [] | [bigint],
|
|
@@ -71,6 +135,12 @@ export type LandRegistryStatus = { 'cancelled' : null } |
|
|
|
71
135
|
{ 'official_search_expired' : null } |
|
|
72
136
|
{ 'failed' : null } |
|
|
73
137
|
{ 'registered' : null };
|
|
138
|
+
export interface MeteredConnection {
|
|
139
|
+
'provider' : [] | [string],
|
|
140
|
+
'supplyNumber' : [] | [string],
|
|
141
|
+
'meterLocation' : [] | [string],
|
|
142
|
+
'connected' : TA6Answer,
|
|
143
|
+
}
|
|
74
144
|
export interface NextStepOption {
|
|
75
145
|
'action' : string,
|
|
76
146
|
'displayLabel' : string,
|
|
@@ -96,6 +166,11 @@ export interface Notification {
|
|
|
96
166
|
'uploadedBy' : Principal,
|
|
97
167
|
'transactionId' : string,
|
|
98
168
|
}
|
|
169
|
+
export interface Occupier {
|
|
170
|
+
'age' : [] | [bigint],
|
|
171
|
+
'fullName' : string,
|
|
172
|
+
'tenancyAgreement' : TA6Document,
|
|
173
|
+
}
|
|
99
174
|
export interface OfficialSearchResult {
|
|
100
175
|
'officialCopyTimestamp' : [] | [string],
|
|
101
176
|
'advisoryEntries' : Array<string>,
|
|
@@ -104,6 +179,13 @@ export interface OfficialSearchResult {
|
|
|
104
179
|
'priorityExpiry' : string,
|
|
105
180
|
'certificateRef' : string,
|
|
106
181
|
}
|
|
182
|
+
export type ParkingType = { 'OnRoad' : null } |
|
|
183
|
+
{ 'None' : null } |
|
|
184
|
+
{ 'Permit' : null } |
|
|
185
|
+
{ 'Garage' : null } |
|
|
186
|
+
{ 'Other' : null } |
|
|
187
|
+
{ 'Allocated' : null } |
|
|
188
|
+
{ 'Driveway' : null };
|
|
107
189
|
export interface PartyProgress {
|
|
108
190
|
'completedParties' : bigint,
|
|
109
191
|
'overallProgress' : bigint,
|
|
@@ -164,17 +246,19 @@ export type Result_19 = { 'ok' : Phase } |
|
|
|
164
246
|
{ 'err' : string };
|
|
165
247
|
export type Result_2 = { 'ok' : TransactionParty } |
|
|
166
248
|
{ 'err' : string };
|
|
167
|
-
export type Result_20 = { 'ok' :
|
|
249
|
+
export type Result_20 = { 'ok' : Array<Anomaly> } |
|
|
250
|
+
{ 'err' : string };
|
|
251
|
+
export type Result_21 = { 'ok' : [string, string] } |
|
|
168
252
|
{ 'err' : string };
|
|
169
|
-
export type
|
|
253
|
+
export type Result_22 = {
|
|
170
254
|
'ok' : { 'registrations' : bigint, 'transactions' : bigint }
|
|
171
255
|
} |
|
|
172
256
|
{ 'err' : string };
|
|
173
|
-
export type Result_3 = { 'ok' :
|
|
257
|
+
export type Result_3 = { 'ok' : bigint } |
|
|
174
258
|
{ 'err' : string };
|
|
175
|
-
export type Result_4 = { 'ok' :
|
|
259
|
+
export type Result_4 = { 'ok' : OfficialSearchResult } |
|
|
176
260
|
{ 'err' : string };
|
|
177
|
-
export type Result_5 = { 'ok' :
|
|
261
|
+
export type Result_5 = { 'ok' : ApplicationStatusUpdate } |
|
|
178
262
|
{ 'err' : string };
|
|
179
263
|
export type Result_6 = { 'ok' : Transaction } |
|
|
180
264
|
{ 'err' : string };
|
|
@@ -189,6 +273,196 @@ export type Result_8 = { 'ok' : Array<Notification> } |
|
|
|
189
273
|
{ 'err' : string };
|
|
190
274
|
export type Result_9 = { 'ok' : Array<Transaction> } |
|
|
191
275
|
{ 'err' : string };
|
|
276
|
+
export interface Right {
|
|
277
|
+
'overProperty' : [] | [string],
|
|
278
|
+
'description' : string,
|
|
279
|
+
}
|
|
280
|
+
export interface Section10Parking {
|
|
281
|
+
'q10_3InstallConsent' : TA6Document,
|
|
282
|
+
'q10_1Details' : [] | [string],
|
|
283
|
+
'q10_1Arrangements' : Array<ParkingType>,
|
|
284
|
+
'q10_2PermitRequired' : TA6Response,
|
|
285
|
+
'q10_3EvChargingPoint' : TA6Response,
|
|
286
|
+
}
|
|
287
|
+
export interface Section11Services {
|
|
288
|
+
'q11_2Document' : TA6Document,
|
|
289
|
+
'q11_5bSurfaceWaterMains' : TA6Answer,
|
|
290
|
+
'q11_4HeatingSystems' : Array<HeatingSystem>,
|
|
291
|
+
'q11_3Date' : [] | [string],
|
|
292
|
+
'q11_3Eicr' : TA6Answer,
|
|
293
|
+
'q11_6SewerageSource' : [] | [SewerageSource],
|
|
294
|
+
'q11_1ElectricalWorks' : TA6Response,
|
|
295
|
+
'q11_5aFoulWaterMains' : TA6Answer,
|
|
296
|
+
'q11_2ElectricalCertificates' : TA6Answer,
|
|
297
|
+
'q11_3Report' : TA6Document,
|
|
298
|
+
'q11_7SewerageSystem' : [] | [SewerageSystem],
|
|
299
|
+
}
|
|
300
|
+
export interface Section12Connections {
|
|
301
|
+
'sharedHeatPumps' : ServicedPlantConnection,
|
|
302
|
+
'mainsWater' : WaterConnection,
|
|
303
|
+
'mainsGas' : MeteredConnection,
|
|
304
|
+
'smallSewageTreatmentPlant' : ServicedPlantConnection,
|
|
305
|
+
'mainsSewerage' : ServiceConnection,
|
|
306
|
+
'telephone' : ServiceConnection,
|
|
307
|
+
'broadband' : ServiceConnection,
|
|
308
|
+
'otherServices' : [] | [string],
|
|
309
|
+
'mainsElectricity' : MeteredConnection,
|
|
310
|
+
}
|
|
311
|
+
export interface Section13Transaction {
|
|
312
|
+
'q13_5VacantPossession' : TA6Answer,
|
|
313
|
+
'q13_4OtherOccupiers17Plus' : TA6Response,
|
|
314
|
+
'q13_4bTenantsOrLodgers' : TA6Answer,
|
|
315
|
+
'q13_1DependentPurchase' : TA6Response,
|
|
316
|
+
'q13_7Occupiers' : Array<Occupier>,
|
|
317
|
+
'q13_6OccupiersAgreedSignVacate' : TA6Answer,
|
|
318
|
+
'q13_3SellerLivesAtProperty' : TA6Answer,
|
|
319
|
+
'q13_2MovingDateRequirements' : TA6Response,
|
|
320
|
+
}
|
|
321
|
+
export interface Section14Completion {
|
|
322
|
+
'q14_2Commitments' : CompletionCommitments,
|
|
323
|
+
'q14_1ProceedsClearCharges' : TA6Response,
|
|
324
|
+
}
|
|
325
|
+
export interface Section15AdditionalInfo {
|
|
326
|
+
'additionalNotes' : [] | [string],
|
|
327
|
+
'q15_1ConsentsAttached' : Array<TA6Document>,
|
|
328
|
+
'consentsNotAvailableList' : [] | [string],
|
|
329
|
+
'consentsToFollowList' : [] | [string],
|
|
330
|
+
'consentsAttachedList' : [] | [string],
|
|
331
|
+
}
|
|
332
|
+
export interface Section1PropertyAndSeller {
|
|
333
|
+
'postcode' : string,
|
|
334
|
+
'uprn' : [] | [string],
|
|
335
|
+
'solicitor' : SolicitorContact,
|
|
336
|
+
'propertyAddress' : string,
|
|
337
|
+
'sellers' : Array<SellerParty>,
|
|
338
|
+
'sellerCompany' : [] | [CompanySeller],
|
|
339
|
+
}
|
|
340
|
+
export interface Section2Boundaries {
|
|
341
|
+
'q2_3MovedOrAltered' : TA6Response,
|
|
342
|
+
'q2_2IrregularDescription' : [] | [string],
|
|
343
|
+
'q2_1Features' : Array<BoundaryFeature>,
|
|
344
|
+
}
|
|
345
|
+
export interface Section3Disputes {
|
|
346
|
+
'q3_2PotentialDisputes' : TA6Response,
|
|
347
|
+
'q3_1ExistingDisputes' : TA6Response,
|
|
348
|
+
}
|
|
349
|
+
export interface Section4Notices {
|
|
350
|
+
'q4_2NearbyDevelopment' : TA6Response,
|
|
351
|
+
'q4_1NoticesReceived' : TA6Response,
|
|
352
|
+
'q4_3NearbyUseChange' : TA6Response,
|
|
353
|
+
}
|
|
354
|
+
export interface Section5Alterations {
|
|
355
|
+
'q5_6Solar' : [] | [SolarPower],
|
|
356
|
+
'q5_3NonResidentialUse' : TA6Response,
|
|
357
|
+
'q5_8ConservationArea' : TA6Response,
|
|
358
|
+
'q5_9TreePreservationOrder' : TA6Response,
|
|
359
|
+
'q5_2Documents' : Array<TA6Document>,
|
|
360
|
+
'q5_4Breaches' : TA6Response,
|
|
361
|
+
'q5_5UnresolvedIssues' : TA6Response,
|
|
362
|
+
'q5_1Alterations' : AlterationTypes,
|
|
363
|
+
'q5_7ListedBuilding' : TA6Response,
|
|
364
|
+
}
|
|
365
|
+
export interface Section6Guarantees {
|
|
366
|
+
'q6_1CentralHeating' : WarrantyItem,
|
|
367
|
+
'q6_3Breaches' : TA6Response,
|
|
368
|
+
'q6_1DampProofing' : WarrantyItem,
|
|
369
|
+
'q6_1Roofing' : WarrantyItem,
|
|
370
|
+
'q6_1NewHomeWarranty' : WarrantyItem,
|
|
371
|
+
'q6_1ElectricalWork' : WarrantyItem,
|
|
372
|
+
'q6_1WindowsDoors' : WarrantyItem,
|
|
373
|
+
'q6_1Underpinning' : WarrantyItem,
|
|
374
|
+
'q6_1TimberTreatment' : WarrantyItem,
|
|
375
|
+
'q6_1OtherDetails' : [] | [string],
|
|
376
|
+
'q6_2Claims' : TA6Response,
|
|
377
|
+
'q6_1Other' : WarrantyItem,
|
|
378
|
+
}
|
|
379
|
+
export interface Section7Insurance {
|
|
380
|
+
'q7_2DifficultOrSpecialConditions' : TA6Response,
|
|
381
|
+
'q7_1DoYouInsure' : TA6Answer,
|
|
382
|
+
'q7_1WhoInsuresIfNot' : [] | [string],
|
|
383
|
+
'q7_3Claims' : TA6Response,
|
|
384
|
+
}
|
|
385
|
+
export interface Section8Environmental {
|
|
386
|
+
'q8_5GreenDeal' : TA6Response,
|
|
387
|
+
'q8_6JapaneseKnotweed' : TA6Response,
|
|
388
|
+
'q8_5CurrentBill' : TA6Document,
|
|
389
|
+
'q8_3bBelowActionLevel' : TA6Answer,
|
|
390
|
+
'q8_4RadonRemedialMeasures' : TA6Response,
|
|
391
|
+
'q8_7SurveyDocument' : TA6Document,
|
|
392
|
+
'q8_3aReport' : TA6Document,
|
|
393
|
+
'q8_3RadonTest' : TA6Response,
|
|
394
|
+
'q8_7KnotweedSurvey' : TA6Answer,
|
|
395
|
+
'q8_1Flooded' : TA6Response,
|
|
396
|
+
'q8_2FloodDefences' : TA6Response,
|
|
397
|
+
}
|
|
398
|
+
export interface Section9Rights {
|
|
399
|
+
'q9_4Rights' : Array<Right>,
|
|
400
|
+
'q9_9Arrangement' : [] | [Arrangement],
|
|
401
|
+
'q9_1RightsExercised' : TA6Response,
|
|
402
|
+
'q9_4OthersRights' : TA6Response,
|
|
403
|
+
'q9_2Amount' : [] | [bigint],
|
|
404
|
+
'q9_8LeadingToOthers' : TA6Response,
|
|
405
|
+
'q9_7CrossingOtherProperty' : TA6Response,
|
|
406
|
+
'q9_5ContributionsReceived' : TA6Response,
|
|
407
|
+
'q9_1Rights' : Array<Right>,
|
|
408
|
+
'q9_3Disagreements' : TA6Response,
|
|
409
|
+
'q9_5Amount' : [] | [bigint],
|
|
410
|
+
'q9_2Contributions' : TA6Response,
|
|
411
|
+
'q9_6Disagreements' : TA6Response,
|
|
412
|
+
}
|
|
413
|
+
export interface SellerParty {
|
|
414
|
+
'role' : SellerRole,
|
|
415
|
+
'fullName' : string,
|
|
416
|
+
'ownershipOrAuthorityDate' : [] | [string],
|
|
417
|
+
}
|
|
418
|
+
export type SellerRole = { 'Administrator' : null } |
|
|
419
|
+
{ 'Executor' : null } |
|
|
420
|
+
{ 'Seller' : null } |
|
|
421
|
+
{ 'Trustee' : null } |
|
|
422
|
+
{ 'Attorney' : null };
|
|
423
|
+
export interface ServiceConnection {
|
|
424
|
+
'provider' : [] | [string],
|
|
425
|
+
'connected' : TA6Answer,
|
|
426
|
+
}
|
|
427
|
+
export interface ServicedPlantConnection {
|
|
428
|
+
'provider' : [] | [string],
|
|
429
|
+
'serviceProvider' : [] | [string],
|
|
430
|
+
'connected' : TA6Answer,
|
|
431
|
+
'makeModel' : [] | [string],
|
|
432
|
+
}
|
|
433
|
+
export type Severity = { 'Info' : null } |
|
|
434
|
+
{ 'Warning' : null } |
|
|
435
|
+
{ 'Conflict' : null };
|
|
436
|
+
export type SewerageSource = { 'SewageTreatmentPlant' : null } |
|
|
437
|
+
{ 'Mains' : null } |
|
|
438
|
+
{ 'SepticTank' : null } |
|
|
439
|
+
{ 'Other' : null } |
|
|
440
|
+
{ 'Cesspool' : null };
|
|
441
|
+
export interface SewerageSystem {
|
|
442
|
+
'otherDetails' : [] | [string],
|
|
443
|
+
'source' : SewerageSource,
|
|
444
|
+
'infiltrationSystem' : TA6Answer,
|
|
445
|
+
'lastServiceDate' : [] | [string],
|
|
446
|
+
'regulationCompliant' : TA6Answer,
|
|
447
|
+
'location' : [] | [string],
|
|
448
|
+
'dischargeType' : [] | [DischargeType],
|
|
449
|
+
}
|
|
450
|
+
export interface SolarPower {
|
|
451
|
+
'supplyAgreement' : TA6Document,
|
|
452
|
+
'ownedOutright' : [] | [boolean],
|
|
453
|
+
'mcsCertificate' : TA6Document,
|
|
454
|
+
'installDate' : [] | [string],
|
|
455
|
+
'electricityBill' : TA6Document,
|
|
456
|
+
'fitOrSegAgreement' : TA6Document,
|
|
457
|
+
}
|
|
458
|
+
export interface SolicitorContact {
|
|
459
|
+
'postcode' : string,
|
|
460
|
+
'contactName' : string,
|
|
461
|
+
'firmName' : string,
|
|
462
|
+
'email' : [] | [string],
|
|
463
|
+
'address' : string,
|
|
464
|
+
'phone' : [] | [string],
|
|
465
|
+
}
|
|
192
466
|
export interface SolicitorRecord {
|
|
193
467
|
'consentRecordedAt' : Time,
|
|
194
468
|
'tasks' : Array<SolicitorTask>,
|
|
@@ -239,44 +513,40 @@ export interface TA10Room {
|
|
|
239
513
|
'fittings' : Array<TA10FittingItem>,
|
|
240
514
|
'roomName' : string,
|
|
241
515
|
}
|
|
242
|
-
export
|
|
243
|
-
'
|
|
244
|
-
'
|
|
245
|
-
'
|
|
246
|
-
}
|
|
247
|
-
export
|
|
248
|
-
'
|
|
249
|
-
'
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
export interface TA6EstateManagement {
|
|
253
|
-
'isManaged' : boolean,
|
|
254
|
-
'annualCharge' : bigint,
|
|
255
|
-
'managementCompany' : string,
|
|
256
|
-
}
|
|
257
|
-
export interface TA6Notices { 'noticeType' : string, 'details' : string }
|
|
516
|
+
export type TA6Answer = { 'No' : null } |
|
|
517
|
+
{ 'Yes' : null } |
|
|
518
|
+
{ 'NotApplicable' : null } |
|
|
519
|
+
{ 'NotKnown' : null } |
|
|
520
|
+
{ 'NotAnswered' : null };
|
|
521
|
+
export type TA6Document = { 'NotApplicable' : null } |
|
|
522
|
+
{ 'NotAvailable' : null } |
|
|
523
|
+
{ 'NotAnswered' : null } |
|
|
524
|
+
{ 'Attached' : bigint } |
|
|
525
|
+
{ 'ToFollow' : null };
|
|
258
526
|
export interface TA6PropertyInformation {
|
|
259
527
|
'completedAt' : [] | [bigint],
|
|
260
528
|
'completedBy' : Principal,
|
|
261
|
-
'
|
|
262
|
-
'
|
|
263
|
-
'
|
|
264
|
-
'
|
|
265
|
-
'
|
|
266
|
-
'
|
|
267
|
-
'
|
|
268
|
-
'
|
|
269
|
-
'estateManagement' : [] | [TA6EstateManagement],
|
|
270
|
-
'environmentalIssues' : Array<string>,
|
|
271
|
-
'boundaryDisputes' : [] | [TA6BoundaryDisputes],
|
|
529
|
+
'formVersion' : string,
|
|
530
|
+
'jurisdiction' : Jurisdiction,
|
|
531
|
+
'section10' : Section10Parking,
|
|
532
|
+
'section11' : Section11Services,
|
|
533
|
+
'section12' : Section12Connections,
|
|
534
|
+
'section13' : Section13Transaction,
|
|
535
|
+
'section14' : Section14Completion,
|
|
536
|
+
'section15' : Section15AdditionalInfo,
|
|
272
537
|
'lastModifiedAt' : bigint,
|
|
273
538
|
'lastModifiedBy' : Principal,
|
|
274
|
-
'
|
|
275
|
-
'
|
|
276
|
-
'
|
|
277
|
-
'
|
|
278
|
-
'
|
|
539
|
+
'section1' : Section1PropertyAndSeller,
|
|
540
|
+
'section2' : Section2Boundaries,
|
|
541
|
+
'section3' : Section3Disputes,
|
|
542
|
+
'section4' : Section4Notices,
|
|
543
|
+
'section5' : Section5Alterations,
|
|
544
|
+
'section6' : Section6Guarantees,
|
|
545
|
+
'section7' : Section7Insurance,
|
|
546
|
+
'section8' : Section8Environmental,
|
|
547
|
+
'section9' : Section9Rights,
|
|
279
548
|
}
|
|
549
|
+
export interface TA6Response { 'answer' : TA6Answer, 'details' : [] | [string] }
|
|
280
550
|
export interface TA7LeaseholdInformation {
|
|
281
551
|
'completedAt' : [] | [bigint],
|
|
282
552
|
'completedBy' : Principal,
|
|
@@ -386,13 +656,24 @@ export interface TransactionTimeline {
|
|
|
386
656
|
export type Urgency = { 'blocking' : null } |
|
|
387
657
|
{ 'soon' : null } |
|
|
388
658
|
{ 'later' : null };
|
|
659
|
+
export interface WarrantyItem {
|
|
660
|
+
'present' : TA6Answer,
|
|
661
|
+
'document' : TA6Document,
|
|
662
|
+
}
|
|
663
|
+
export interface WaterConnection {
|
|
664
|
+
'provider' : [] | [string],
|
|
665
|
+
'stopcockLocation' : [] | [string],
|
|
666
|
+
'meterLocation' : [] | [string],
|
|
667
|
+
'connected' : TA6Answer,
|
|
668
|
+
}
|
|
389
669
|
export interface _SERVICE {
|
|
670
|
+
'acknowledgeTA6Wording' : ActorMethod<[string], Result_1>,
|
|
390
671
|
'addParty' : ActorMethod<[string, string, string, string, boolean], Result_2>,
|
|
391
672
|
'adminForceDeleteTransaction' : ActorMethod<[string], Result>,
|
|
392
673
|
'assignBuyer' : ActorMethod<[string, Principal], Result>,
|
|
393
674
|
'assignSolicitor' : ActorMethod<[string, Principal], Result>,
|
|
394
675
|
'assignSolicitorRecord' : ActorMethod<[string, SolicitorRecord], Result_1>,
|
|
395
|
-
'backfillTransactionMembers' : ActorMethod<[],
|
|
676
|
+
'backfillTransactionMembers' : ActorMethod<[], Result_22>,
|
|
396
677
|
'bootstrapDocumentStorageCanister' : ActorMethod<[Principal], Result>,
|
|
397
678
|
'canAccessTransaction' : ActorMethod<[string], boolean>,
|
|
398
679
|
'connectBot' : ActorMethod<[string, Principal, string], Result_1>,
|
|
@@ -438,13 +719,14 @@ export interface _SERVICE {
|
|
|
438
719
|
bigint,
|
|
439
720
|
string,
|
|
440
721
|
],
|
|
441
|
-
|
|
722
|
+
Result_21
|
|
442
723
|
>,
|
|
443
724
|
'deleteTransaction' : ActorMethod<[string], Result>,
|
|
444
725
|
'disconnectBot' : ActorMethod<[string, Principal], Result_1>,
|
|
445
726
|
'doesTransactionExist' : ActorMethod<[string], boolean>,
|
|
446
727
|
'getAllInviteCodes' : ActorMethod<[], Array<[string, string]>>,
|
|
447
728
|
'getAllTransactions' : ActorMethod<[], Array<Transaction>>,
|
|
729
|
+
'getAnomalies' : ActorMethod<[string], Result_20>,
|
|
448
730
|
'getCurrentPhase' : ActorMethod<[string], Result_19>,
|
|
449
731
|
'getCycles' : ActorMethod<[], bigint>,
|
|
450
732
|
'getDocumentStorageCanister' : ActorMethod<[], [] | [Principal]>,
|
|
@@ -490,6 +772,7 @@ export interface _SERVICE {
|
|
|
490
772
|
[string],
|
|
491
773
|
[] | [TransactionTimeline]
|
|
492
774
|
>,
|
|
775
|
+
'hasAcknowledgedTA6Wording' : ActorMethod<[string], boolean>,
|
|
493
776
|
'initiate_blockchain_completion' : ActorMethod<
|
|
494
777
|
[string, string, string],
|
|
495
778
|
Result
|
|
@@ -549,8 +832,8 @@ export interface _SERVICE {
|
|
|
549
832
|
undefined
|
|
550
833
|
>,
|
|
551
834
|
'on_blockchain_completion_success' : ActorMethod<[string], Result>,
|
|
552
|
-
'pollAllPendingApplications' : ActorMethod<[],
|
|
553
|
-
'pollApplicationStatus' : ActorMethod<[string],
|
|
835
|
+
'pollAllPendingApplications' : ActorMethod<[], Result_3>,
|
|
836
|
+
'pollApplicationStatus' : ActorMethod<[string], Result_5>,
|
|
554
837
|
/**
|
|
555
838
|
* / Closes #31 (TOCTOU): per-transaction lock blocks concurrent solicitors
|
|
556
839
|
* / from racing to record exchange while canModifyTransaction await is in flight.
|
|
@@ -585,7 +868,7 @@ export interface _SERVICE {
|
|
|
585
868
|
[string, { 'seller' : null } | { 'buyer' : null }],
|
|
586
869
|
Result_1
|
|
587
870
|
>,
|
|
588
|
-
'requestOfficialSearch' : ActorMethod<[string],
|
|
871
|
+
'requestOfficialSearch' : ActorMethod<[string], Result_4>,
|
|
589
872
|
/**
|
|
590
873
|
* / Closes #31 (TOCTOU): per-transaction lock blocks concurrent mutation
|
|
591
874
|
* / while canModifyTransaction await is in flight.
|
|
@@ -595,6 +878,7 @@ export interface _SERVICE {
|
|
|
595
878
|
Result_1
|
|
596
879
|
>,
|
|
597
880
|
'revokeBuyer' : ActorMethod<[string, Principal], Result>,
|
|
881
|
+
'runCrossReference' : ActorMethod<[string], Result_3>,
|
|
598
882
|
'setDocumentStorageCanister' : ActorMethod<[Principal], Result>,
|
|
599
883
|
'setFlowState' : ActorMethod<[string, string], Result>,
|
|
600
884
|
'setLandRegistryCanister' : ActorMethod<[string], Result>,
|