@notabene/javascript-sdk 2.0.0-next.2 → 2.0.0-next.20

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 (64) hide show
  1. package/LICENSE.md +21 -0
  2. package/README.md +281 -231
  3. package/dist/js/notabene.js +1 -0
  4. package/dist/notabene.cjs +1 -1
  5. package/dist/notabene.d.ts +1052 -209
  6. package/dist/notabene.js +275 -105
  7. package/dist/tsdoc-metadata.json +1 -1
  8. package/package.json +36 -26
  9. package/src/__tests__/notabene.test.ts +43 -0
  10. package/src/components/EmbeddedComponent.ts +141 -22
  11. package/src/components/__tests__/EmbeddedComponent.test.ts +73 -20
  12. package/src/ivms/types.ts +230 -152
  13. package/src/locales.ts +47 -0
  14. package/src/notabene.ts +243 -90
  15. package/src/types.ts +723 -144
  16. package/src/utils/MessageEventManager.ts +70 -12
  17. package/src/utils/__tests__/MessageEventManager.test.ts +13 -5
  18. package/src/utils/arbitraries.ts +9 -4
  19. package/.editorconfig +0 -10
  20. package/.gitlab-ci.yml +0 -85
  21. package/.husky/commit-msg +0 -4
  22. package/.husky/pre-commit +0 -4
  23. package/.husky/pre-push +0 -4
  24. package/.prettierrc +0 -4
  25. package/.releaserc.json +0 -16
  26. package/.vscode/extensions.json +0 -3
  27. package/.vscode/settings.json +0 -11
  28. package/.yarn/releases/yarn-berry.cjs +0 -925
  29. package/.yarnrc.yml +0 -3
  30. package/CODEOWNERS +0 -1
  31. package/api-extractor.json +0 -434
  32. package/eslint.config.js +0 -24
  33. package/etc/javascript-sdk.api.md +0 -363
  34. package/index.html +0 -137
  35. package/temp/javascript-sdk.api.json +0 -3509
  36. package/temp/javascript-sdk.api.md +0 -363
  37. package/ts-out/src/__tests__/notabene.test.d.ts +0 -1
  38. package/ts-out/src/__tests__/notabene.test.js +0 -88
  39. package/ts-out/src/arbitraries.d.ts +0 -4
  40. package/ts-out/src/arbitraries.js +0 -8
  41. package/ts-out/src/components/EmbeddedComponent.d.ts +0 -25
  42. package/ts-out/src/components/EmbeddedComponent.js +0 -87
  43. package/ts-out/src/components/__tests__/EmbeddedComponent.test.d.ts +0 -1
  44. package/ts-out/src/components/__tests__/EmbeddedComponent.test.js +0 -132
  45. package/ts-out/src/ivms/types.d.ts +0 -252
  46. package/ts-out/src/ivms/types.js +0 -1
  47. package/ts-out/src/notabene.d.ts +0 -35
  48. package/ts-out/src/notabene.js +0 -59
  49. package/ts-out/src/types.d.ts +0 -357
  50. package/ts-out/src/types.js +0 -85
  51. package/ts-out/src/utils/MessageEventManager.d.ts +0 -12
  52. package/ts-out/src/utils/MessageEventManager.js +0 -45
  53. package/ts-out/src/utils/__tests__/MessageEventManager.test.d.ts +0 -1
  54. package/ts-out/src/utils/__tests__/MessageEventManager.test.js +0 -73
  55. package/ts-out/src/utils/arbitraries.d.ts +0 -6
  56. package/ts-out/src/utils/arbitraries.js +0 -7
  57. package/ts-out/src/utils/caip.d.ts +0 -13
  58. package/ts-out/src/utils/caip.js +0 -15
  59. package/ts-out/src/utils/urls.d.ts +0 -1
  60. package/ts-out/src/utils/urls.js +0 -14
  61. package/ts-out/tsconfig.tsbuildinfo +0 -1
  62. package/tsconfig.json +0 -22
  63. package/tsconfig.tsbuildinfo +0 -1
  64. package/vite.config.js +0 -13
@@ -1,3509 +0,0 @@
1
- {
2
- "metadata": {
3
- "toolPackage": "@microsoft/api-extractor",
4
- "toolVersion": "7.47.7",
5
- "schemaVersion": 1011,
6
- "oldestForwardsCompatibleVersion": 1001,
7
- "tsdocConfig": {
8
- "$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
9
- "noStandardTags": true,
10
- "tagDefinitions": [
11
- {
12
- "tagName": "@alpha",
13
- "syntaxKind": "modifier"
14
- },
15
- {
16
- "tagName": "@beta",
17
- "syntaxKind": "modifier"
18
- },
19
- {
20
- "tagName": "@defaultValue",
21
- "syntaxKind": "block"
22
- },
23
- {
24
- "tagName": "@decorator",
25
- "syntaxKind": "block",
26
- "allowMultiple": true
27
- },
28
- {
29
- "tagName": "@deprecated",
30
- "syntaxKind": "block"
31
- },
32
- {
33
- "tagName": "@eventProperty",
34
- "syntaxKind": "modifier"
35
- },
36
- {
37
- "tagName": "@example",
38
- "syntaxKind": "block",
39
- "allowMultiple": true
40
- },
41
- {
42
- "tagName": "@experimental",
43
- "syntaxKind": "modifier"
44
- },
45
- {
46
- "tagName": "@inheritDoc",
47
- "syntaxKind": "inline"
48
- },
49
- {
50
- "tagName": "@internal",
51
- "syntaxKind": "modifier"
52
- },
53
- {
54
- "tagName": "@label",
55
- "syntaxKind": "inline"
56
- },
57
- {
58
- "tagName": "@link",
59
- "syntaxKind": "inline",
60
- "allowMultiple": true
61
- },
62
- {
63
- "tagName": "@override",
64
- "syntaxKind": "modifier"
65
- },
66
- {
67
- "tagName": "@packageDocumentation",
68
- "syntaxKind": "modifier"
69
- },
70
- {
71
- "tagName": "@param",
72
- "syntaxKind": "block",
73
- "allowMultiple": true
74
- },
75
- {
76
- "tagName": "@privateRemarks",
77
- "syntaxKind": "block"
78
- },
79
- {
80
- "tagName": "@public",
81
- "syntaxKind": "modifier"
82
- },
83
- {
84
- "tagName": "@readonly",
85
- "syntaxKind": "modifier"
86
- },
87
- {
88
- "tagName": "@remarks",
89
- "syntaxKind": "block"
90
- },
91
- {
92
- "tagName": "@returns",
93
- "syntaxKind": "block"
94
- },
95
- {
96
- "tagName": "@sealed",
97
- "syntaxKind": "modifier"
98
- },
99
- {
100
- "tagName": "@see",
101
- "syntaxKind": "block"
102
- },
103
- {
104
- "tagName": "@throws",
105
- "syntaxKind": "block",
106
- "allowMultiple": true
107
- },
108
- {
109
- "tagName": "@typeParam",
110
- "syntaxKind": "block",
111
- "allowMultiple": true
112
- },
113
- {
114
- "tagName": "@virtual",
115
- "syntaxKind": "modifier"
116
- },
117
- {
118
- "tagName": "@betaDocumentation",
119
- "syntaxKind": "modifier"
120
- },
121
- {
122
- "tagName": "@internalRemarks",
123
- "syntaxKind": "block"
124
- },
125
- {
126
- "tagName": "@preapproved",
127
- "syntaxKind": "modifier"
128
- }
129
- ],
130
- "supportForTags": {
131
- "@alpha": true,
132
- "@beta": true,
133
- "@defaultValue": true,
134
- "@decorator": true,
135
- "@deprecated": true,
136
- "@eventProperty": true,
137
- "@example": true,
138
- "@experimental": true,
139
- "@inheritDoc": true,
140
- "@internal": true,
141
- "@label": true,
142
- "@link": true,
143
- "@override": true,
144
- "@packageDocumentation": true,
145
- "@param": true,
146
- "@privateRemarks": true,
147
- "@public": true,
148
- "@readonly": true,
149
- "@remarks": true,
150
- "@returns": true,
151
- "@sealed": true,
152
- "@see": true,
153
- "@throws": true,
154
- "@typeParam": true,
155
- "@virtual": true,
156
- "@betaDocumentation": true,
157
- "@internalRemarks": true,
158
- "@preapproved": true
159
- },
160
- "reportUnsupportedHtmlElements": false
161
- }
162
- },
163
- "kind": "Package",
164
- "canonicalReference": "@notabene/javascript-sdk!",
165
- "docComment": "",
166
- "name": "@notabene/javascript-sdk",
167
- "preserveMemberOrder": false,
168
- "members": [
169
- {
170
- "kind": "EntryPoint",
171
- "canonicalReference": "@notabene/javascript-sdk!",
172
- "name": "",
173
- "preserveMemberOrder": false,
174
- "members": [
175
- {
176
- "kind": "Interface",
177
- "canonicalReference": "@notabene/javascript-sdk!Agent:interface",
178
- "docComment": "/**\n * Who is the agent acting on behalf of the counterparty\n *\n * @public\n */\n",
179
- "excerptTokens": [
180
- {
181
- "kind": "Content",
182
- "text": "export declare interface Agent "
183
- }
184
- ],
185
- "fileUrlPath": "ts-out/src/types.d.ts",
186
- "releaseTag": "Public",
187
- "name": "Agent",
188
- "preserveMemberOrder": false,
189
- "members": [
190
- {
191
- "kind": "PropertySignature",
192
- "canonicalReference": "@notabene/javascript-sdk!Agent#did:member",
193
- "docComment": "",
194
- "excerptTokens": [
195
- {
196
- "kind": "Content",
197
- "text": "did: "
198
- },
199
- {
200
- "kind": "Reference",
201
- "text": "DID",
202
- "canonicalReference": "@notabene/javascript-sdk!~DID:type"
203
- },
204
- {
205
- "kind": "Content",
206
- "text": ";"
207
- }
208
- ],
209
- "isReadonly": false,
210
- "isOptional": false,
211
- "releaseTag": "Public",
212
- "name": "did",
213
- "propertyTypeTokenRange": {
214
- "startIndex": 1,
215
- "endIndex": 2
216
- }
217
- },
218
- {
219
- "kind": "PropertySignature",
220
- "canonicalReference": "@notabene/javascript-sdk!Agent#logo:member",
221
- "docComment": "",
222
- "excerptTokens": [
223
- {
224
- "kind": "Content",
225
- "text": "logo?: "
226
- },
227
- {
228
- "kind": "Content",
229
- "text": "string"
230
- },
231
- {
232
- "kind": "Content",
233
- "text": ";"
234
- }
235
- ],
236
- "isReadonly": false,
237
- "isOptional": true,
238
- "releaseTag": "Public",
239
- "name": "logo",
240
- "propertyTypeTokenRange": {
241
- "startIndex": 1,
242
- "endIndex": 2
243
- }
244
- },
245
- {
246
- "kind": "PropertySignature",
247
- "canonicalReference": "@notabene/javascript-sdk!Agent#name:member",
248
- "docComment": "",
249
- "excerptTokens": [
250
- {
251
- "kind": "Content",
252
- "text": "name?: "
253
- },
254
- {
255
- "kind": "Content",
256
- "text": "string"
257
- },
258
- {
259
- "kind": "Content",
260
- "text": ";"
261
- }
262
- ],
263
- "isReadonly": false,
264
- "isOptional": true,
265
- "releaseTag": "Public",
266
- "name": "name",
267
- "propertyTypeTokenRange": {
268
- "startIndex": 1,
269
- "endIndex": 2
270
- }
271
- },
272
- {
273
- "kind": "PropertySignature",
274
- "canonicalReference": "@notabene/javascript-sdk!Agent#type:member",
275
- "docComment": "",
276
- "excerptTokens": [
277
- {
278
- "kind": "Content",
279
- "text": "type: "
280
- },
281
- {
282
- "kind": "Reference",
283
- "text": "AgentType",
284
- "canonicalReference": "@notabene/javascript-sdk!AgentType:enum"
285
- },
286
- {
287
- "kind": "Content",
288
- "text": ";"
289
- }
290
- ],
291
- "isReadonly": false,
292
- "isOptional": false,
293
- "releaseTag": "Public",
294
- "name": "type",
295
- "propertyTypeTokenRange": {
296
- "startIndex": 1,
297
- "endIndex": 2
298
- }
299
- },
300
- {
301
- "kind": "PropertySignature",
302
- "canonicalReference": "@notabene/javascript-sdk!Agent#url:member",
303
- "docComment": "",
304
- "excerptTokens": [
305
- {
306
- "kind": "Content",
307
- "text": "url?: "
308
- },
309
- {
310
- "kind": "Content",
311
- "text": "string"
312
- },
313
- {
314
- "kind": "Content",
315
- "text": ";"
316
- }
317
- ],
318
- "isReadonly": false,
319
- "isOptional": true,
320
- "releaseTag": "Public",
321
- "name": "url",
322
- "propertyTypeTokenRange": {
323
- "startIndex": 1,
324
- "endIndex": 2
325
- }
326
- },
327
- {
328
- "kind": "PropertySignature",
329
- "canonicalReference": "@notabene/javascript-sdk!Agent#verified:member",
330
- "docComment": "",
331
- "excerptTokens": [
332
- {
333
- "kind": "Content",
334
- "text": "verified?: "
335
- },
336
- {
337
- "kind": "Content",
338
- "text": "boolean"
339
- },
340
- {
341
- "kind": "Content",
342
- "text": ";"
343
- }
344
- ],
345
- "isReadonly": false,
346
- "isOptional": true,
347
- "releaseTag": "Public",
348
- "name": "verified",
349
- "propertyTypeTokenRange": {
350
- "startIndex": 1,
351
- "endIndex": 2
352
- }
353
- }
354
- ],
355
- "extendsTokenRanges": []
356
- },
357
- {
358
- "kind": "Enum",
359
- "canonicalReference": "@notabene/javascript-sdk!AgentType:enum",
360
- "docComment": "/**\n * The type of Agent. Either a wallet or a VASP\n *\n * @public\n */\n",
361
- "excerptTokens": [
362
- {
363
- "kind": "Content",
364
- "text": "export declare enum AgentType "
365
- }
366
- ],
367
- "fileUrlPath": "ts-out/src/types.d.ts",
368
- "releaseTag": "Public",
369
- "name": "AgentType",
370
- "preserveMemberOrder": false,
371
- "members": [
372
- {
373
- "kind": "EnumMember",
374
- "canonicalReference": "@notabene/javascript-sdk!AgentType.PRIVATE:member",
375
- "docComment": "",
376
- "excerptTokens": [
377
- {
378
- "kind": "Content",
379
- "text": "PRIVATE = "
380
- },
381
- {
382
- "kind": "Content",
383
- "text": "\"WALLET\""
384
- }
385
- ],
386
- "initializerTokenRange": {
387
- "startIndex": 1,
388
- "endIndex": 2
389
- },
390
- "releaseTag": "Public",
391
- "name": "PRIVATE"
392
- },
393
- {
394
- "kind": "EnumMember",
395
- "canonicalReference": "@notabene/javascript-sdk!AgentType.VASP:member",
396
- "docComment": "",
397
- "excerptTokens": [
398
- {
399
- "kind": "Content",
400
- "text": "VASP = "
401
- },
402
- {
403
- "kind": "Content",
404
- "text": "\"VASP\""
405
- }
406
- ],
407
- "initializerTokenRange": {
408
- "startIndex": 1,
409
- "endIndex": 2
410
- },
411
- "releaseTag": "Public",
412
- "name": "VASP"
413
- }
414
- ]
415
- },
416
- {
417
- "kind": "Interface",
418
- "canonicalReference": "@notabene/javascript-sdk!Counterparty:interface",
419
- "docComment": "/**\n * The counterparty of a transaction.\n *\n * @public\n */\n",
420
- "excerptTokens": [
421
- {
422
- "kind": "Content",
423
- "text": "export interface Counterparty "
424
- }
425
- ],
426
- "fileUrlPath": "ts-out/src/types.d.ts",
427
- "releaseTag": "Public",
428
- "name": "Counterparty",
429
- "preserveMemberOrder": false,
430
- "members": [
431
- {
432
- "kind": "PropertySignature",
433
- "canonicalReference": "@notabene/javascript-sdk!Counterparty#accountNumber:member",
434
- "docComment": "",
435
- "excerptTokens": [
436
- {
437
- "kind": "Content",
438
- "text": "accountNumber?: "
439
- },
440
- {
441
- "kind": "Content",
442
- "text": "string"
443
- },
444
- {
445
- "kind": "Content",
446
- "text": ";"
447
- }
448
- ],
449
- "isReadonly": false,
450
- "isOptional": true,
451
- "releaseTag": "Public",
452
- "name": "accountNumber",
453
- "propertyTypeTokenRange": {
454
- "startIndex": 1,
455
- "endIndex": 2
456
- }
457
- },
458
- {
459
- "kind": "PropertySignature",
460
- "canonicalReference": "@notabene/javascript-sdk!Counterparty#did:member",
461
- "docComment": "",
462
- "excerptTokens": [
463
- {
464
- "kind": "Content",
465
- "text": "did?: "
466
- },
467
- {
468
- "kind": "Content",
469
- "text": "string"
470
- },
471
- {
472
- "kind": "Content",
473
- "text": ";"
474
- }
475
- ],
476
- "isReadonly": false,
477
- "isOptional": true,
478
- "releaseTag": "Public",
479
- "name": "did",
480
- "propertyTypeTokenRange": {
481
- "startIndex": 1,
482
- "endIndex": 2
483
- }
484
- },
485
- {
486
- "kind": "PropertySignature",
487
- "canonicalReference": "@notabene/javascript-sdk!Counterparty#geographicAddress:member",
488
- "docComment": "",
489
- "excerptTokens": [
490
- {
491
- "kind": "Content",
492
- "text": "geographicAddress?: "
493
- },
494
- {
495
- "kind": "Content",
496
- "text": "string"
497
- },
498
- {
499
- "kind": "Content",
500
- "text": ";"
501
- }
502
- ],
503
- "isReadonly": false,
504
- "isOptional": true,
505
- "releaseTag": "Public",
506
- "name": "geographicAddress",
507
- "propertyTypeTokenRange": {
508
- "startIndex": 1,
509
- "endIndex": 2
510
- }
511
- },
512
- {
513
- "kind": "PropertySignature",
514
- "canonicalReference": "@notabene/javascript-sdk!Counterparty#name:member",
515
- "docComment": "",
516
- "excerptTokens": [
517
- {
518
- "kind": "Content",
519
- "text": "name?: "
520
- },
521
- {
522
- "kind": "Content",
523
- "text": "string"
524
- },
525
- {
526
- "kind": "Content",
527
- "text": ";"
528
- }
529
- ],
530
- "isReadonly": false,
531
- "isOptional": true,
532
- "releaseTag": "Public",
533
- "name": "name",
534
- "propertyTypeTokenRange": {
535
- "startIndex": 1,
536
- "endIndex": 2
537
- }
538
- },
539
- {
540
- "kind": "PropertySignature",
541
- "canonicalReference": "@notabene/javascript-sdk!Counterparty#type:member",
542
- "docComment": "",
543
- "excerptTokens": [
544
- {
545
- "kind": "Content",
546
- "text": "type?: "
547
- },
548
- {
549
- "kind": "Reference",
550
- "text": "PersonType",
551
- "canonicalReference": "@notabene/javascript-sdk!PersonType:enum"
552
- },
553
- {
554
- "kind": "Content",
555
- "text": ";"
556
- }
557
- ],
558
- "isReadonly": false,
559
- "isOptional": true,
560
- "releaseTag": "Public",
561
- "name": "type",
562
- "propertyTypeTokenRange": {
563
- "startIndex": 1,
564
- "endIndex": 2
565
- }
566
- },
567
- {
568
- "kind": "PropertySignature",
569
- "canonicalReference": "@notabene/javascript-sdk!Counterparty#verified:member",
570
- "docComment": "",
571
- "excerptTokens": [
572
- {
573
- "kind": "Content",
574
- "text": "verified?: "
575
- },
576
- {
577
- "kind": "Content",
578
- "text": "boolean"
579
- },
580
- {
581
- "kind": "Content",
582
- "text": ";"
583
- }
584
- ],
585
- "isReadonly": false,
586
- "isOptional": true,
587
- "releaseTag": "Public",
588
- "name": "verified",
589
- "propertyTypeTokenRange": {
590
- "startIndex": 1,
591
- "endIndex": 2
592
- }
593
- }
594
- ],
595
- "extendsTokenRanges": []
596
- },
597
- {
598
- "kind": "Interface",
599
- "canonicalReference": "@notabene/javascript-sdk!DeclarationProof:interface",
600
- "docComment": "/**\n * Ownership Proof using Self Declaration\n *\n * @public\n */\n",
601
- "excerptTokens": [
602
- {
603
- "kind": "Content",
604
- "text": "export interface DeclarationProof extends "
605
- },
606
- {
607
- "kind": "Reference",
608
- "text": "OwnershipProof",
609
- "canonicalReference": "@notabene/javascript-sdk!OwnershipProof:interface"
610
- },
611
- {
612
- "kind": "Content",
613
- "text": " "
614
- }
615
- ],
616
- "fileUrlPath": "ts-out/src/types.d.ts",
617
- "releaseTag": "Public",
618
- "name": "DeclarationProof",
619
- "preserveMemberOrder": false,
620
- "members": [
621
- {
622
- "kind": "PropertySignature",
623
- "canonicalReference": "@notabene/javascript-sdk!DeclarationProof#attestation:member",
624
- "docComment": "",
625
- "excerptTokens": [
626
- {
627
- "kind": "Content",
628
- "text": "attestation: "
629
- },
630
- {
631
- "kind": "Content",
632
- "text": "string"
633
- },
634
- {
635
- "kind": "Content",
636
- "text": ";"
637
- }
638
- ],
639
- "isReadonly": false,
640
- "isOptional": false,
641
- "releaseTag": "Public",
642
- "name": "attestation",
643
- "propertyTypeTokenRange": {
644
- "startIndex": 1,
645
- "endIndex": 2
646
- }
647
- },
648
- {
649
- "kind": "PropertySignature",
650
- "canonicalReference": "@notabene/javascript-sdk!DeclarationProof#confirmed:member",
651
- "docComment": "",
652
- "excerptTokens": [
653
- {
654
- "kind": "Content",
655
- "text": "confirmed: "
656
- },
657
- {
658
- "kind": "Content",
659
- "text": "boolean"
660
- },
661
- {
662
- "kind": "Content",
663
- "text": ";"
664
- }
665
- ],
666
- "isReadonly": false,
667
- "isOptional": false,
668
- "releaseTag": "Public",
669
- "name": "confirmed",
670
- "propertyTypeTokenRange": {
671
- "startIndex": 1,
672
- "endIndex": 2
673
- }
674
- },
675
- {
676
- "kind": "PropertySignature",
677
- "canonicalReference": "@notabene/javascript-sdk!DeclarationProof#type:member",
678
- "docComment": "",
679
- "excerptTokens": [
680
- {
681
- "kind": "Content",
682
- "text": "type: "
683
- },
684
- {
685
- "kind": "Reference",
686
- "text": "ProofTypes.SelfDeclaration",
687
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes.SelfDeclaration:member"
688
- },
689
- {
690
- "kind": "Content",
691
- "text": ";"
692
- }
693
- ],
694
- "isReadonly": false,
695
- "isOptional": false,
696
- "releaseTag": "Public",
697
- "name": "type",
698
- "propertyTypeTokenRange": {
699
- "startIndex": 1,
700
- "endIndex": 2
701
- }
702
- }
703
- ],
704
- "extendsTokenRanges": [
705
- {
706
- "startIndex": 1,
707
- "endIndex": 2
708
- }
709
- ]
710
- },
711
- {
712
- "kind": "TypeAlias",
713
- "canonicalReference": "@notabene/javascript-sdk!destination:type",
714
- "docComment": "/**\n * The destination of a transaction either a blockchain address, a CAIP-19 address, or a travel address.\n *\n * @public\n */\n",
715
- "excerptTokens": [
716
- {
717
- "kind": "Content",
718
- "text": "export type Destination = "
719
- },
720
- {
721
- "kind": "Reference",
722
- "text": "BlockchainAddress",
723
- "canonicalReference": "@notabene/javascript-sdk!~BlockchainAddress:type"
724
- },
725
- {
726
- "kind": "Content",
727
- "text": " | "
728
- },
729
- {
730
- "kind": "Reference",
731
- "text": "CAIP19",
732
- "canonicalReference": "@notabene/javascript-sdk!~CAIP19:type"
733
- },
734
- {
735
- "kind": "Content",
736
- "text": " | "
737
- },
738
- {
739
- "kind": "Reference",
740
- "text": "TravelAddress",
741
- "canonicalReference": "@notabene/javascript-sdk!~TravelAddress:type"
742
- },
743
- {
744
- "kind": "Content",
745
- "text": ";"
746
- }
747
- ],
748
- "fileUrlPath": "ts-out/src/types.d.ts",
749
- "releaseTag": "Public",
750
- "name": "destination",
751
- "typeTokenRange": {
752
- "startIndex": 1,
753
- "endIndex": 6
754
- }
755
- },
756
- {
757
- "kind": "Class",
758
- "canonicalReference": "@notabene/javascript-sdk!EmbeddedComponent:class",
759
- "docComment": "/**\n * An embedded Notabene component\n *\n * @public\n */\n",
760
- "excerptTokens": [
761
- {
762
- "kind": "Content",
763
- "text": "export default class EmbeddedComponent "
764
- }
765
- ],
766
- "fileUrlPath": "ts-out/src/components/EmbeddedComponent.d.ts",
767
- "releaseTag": "Public",
768
- "isAbstract": false,
769
- "name": "EmbeddedComponent",
770
- "preserveMemberOrder": false,
771
- "members": [
772
- {
773
- "kind": "Constructor",
774
- "canonicalReference": "@notabene/javascript-sdk!EmbeddedComponent:constructor(1)",
775
- "docComment": "/**\n * Constructs a new instance of the `EmbeddedComponent` class\n */\n",
776
- "excerptTokens": [
777
- {
778
- "kind": "Content",
779
- "text": "constructor(url: "
780
- },
781
- {
782
- "kind": "Content",
783
- "text": "string"
784
- },
785
- {
786
- "kind": "Content",
787
- "text": ", value: "
788
- },
789
- {
790
- "kind": "Reference",
791
- "text": "Partial",
792
- "canonicalReference": "!Partial:type"
793
- },
794
- {
795
- "kind": "Content",
796
- "text": "<"
797
- },
798
- {
799
- "kind": "Reference",
800
- "text": "Transaction",
801
- "canonicalReference": "@notabene/javascript-sdk!Transaction:interface"
802
- },
803
- {
804
- "kind": "Content",
805
- "text": ">"
806
- },
807
- {
808
- "kind": "Content",
809
- "text": ");"
810
- }
811
- ],
812
- "releaseTag": "Public",
813
- "isProtected": false,
814
- "overloadIndex": 1,
815
- "parameters": [
816
- {
817
- "parameterName": "url",
818
- "parameterTypeTokenRange": {
819
- "startIndex": 1,
820
- "endIndex": 2
821
- },
822
- "isOptional": false
823
- },
824
- {
825
- "parameterName": "value",
826
- "parameterTypeTokenRange": {
827
- "startIndex": 3,
828
- "endIndex": 7
829
- },
830
- "isOptional": false
831
- }
832
- ]
833
- },
834
- {
835
- "kind": "Method",
836
- "canonicalReference": "@notabene/javascript-sdk!EmbeddedComponent#completion:member(1)",
837
- "docComment": "",
838
- "excerptTokens": [
839
- {
840
- "kind": "Content",
841
- "text": "completion(): "
842
- },
843
- {
844
- "kind": "Reference",
845
- "text": "Promise",
846
- "canonicalReference": "!Promise:interface"
847
- },
848
- {
849
- "kind": "Content",
850
- "text": "<"
851
- },
852
- {
853
- "kind": "Reference",
854
- "text": "TransactionResponse",
855
- "canonicalReference": "@notabene/javascript-sdk!TransactionResponse:type"
856
- },
857
- {
858
- "kind": "Content",
859
- "text": ">"
860
- },
861
- {
862
- "kind": "Content",
863
- "text": ";"
864
- }
865
- ],
866
- "isStatic": false,
867
- "returnTypeTokenRange": {
868
- "startIndex": 1,
869
- "endIndex": 5
870
- },
871
- "releaseTag": "Public",
872
- "isProtected": false,
873
- "overloadIndex": 1,
874
- "parameters": [],
875
- "isOptional": false,
876
- "isAbstract": false,
877
- "name": "completion"
878
- },
879
- {
880
- "kind": "Property",
881
- "canonicalReference": "@notabene/javascript-sdk!EmbeddedComponent#errors:member",
882
- "docComment": "",
883
- "excerptTokens": [
884
- {
885
- "kind": "Content",
886
- "text": "get errors(): "
887
- },
888
- {
889
- "kind": "Reference",
890
- "text": "ValidationError",
891
- "canonicalReference": "@notabene/javascript-sdk!~ValidationError:type"
892
- },
893
- {
894
- "kind": "Content",
895
- "text": "[]"
896
- },
897
- {
898
- "kind": "Content",
899
- "text": ";"
900
- }
901
- ],
902
- "isReadonly": true,
903
- "isOptional": false,
904
- "releaseTag": "Public",
905
- "name": "errors",
906
- "propertyTypeTokenRange": {
907
- "startIndex": 1,
908
- "endIndex": 3
909
- },
910
- "isStatic": false,
911
- "isProtected": false,
912
- "isAbstract": false
913
- },
914
- {
915
- "kind": "Method",
916
- "canonicalReference": "@notabene/javascript-sdk!EmbeddedComponent#mount:member(1)",
917
- "docComment": "",
918
- "excerptTokens": [
919
- {
920
- "kind": "Content",
921
- "text": "mount(parentId: "
922
- },
923
- {
924
- "kind": "Content",
925
- "text": "string"
926
- },
927
- {
928
- "kind": "Content",
929
- "text": "): "
930
- },
931
- {
932
- "kind": "Content",
933
- "text": "void"
934
- },
935
- {
936
- "kind": "Content",
937
- "text": ";"
938
- }
939
- ],
940
- "isStatic": false,
941
- "returnTypeTokenRange": {
942
- "startIndex": 3,
943
- "endIndex": 4
944
- },
945
- "releaseTag": "Public",
946
- "isProtected": false,
947
- "overloadIndex": 1,
948
- "parameters": [
949
- {
950
- "parameterName": "parentId",
951
- "parameterTypeTokenRange": {
952
- "startIndex": 1,
953
- "endIndex": 2
954
- },
955
- "isOptional": false
956
- }
957
- ],
958
- "isOptional": false,
959
- "isAbstract": false,
960
- "name": "mount"
961
- },
962
- {
963
- "kind": "Method",
964
- "canonicalReference": "@notabene/javascript-sdk!EmbeddedComponent#off:member(1)",
965
- "docComment": "",
966
- "excerptTokens": [
967
- {
968
- "kind": "Content",
969
- "text": "off(messageType: "
970
- },
971
- {
972
- "kind": "Content",
973
- "text": "string"
974
- },
975
- {
976
- "kind": "Content",
977
- "text": ", callback: "
978
- },
979
- {
980
- "kind": "Reference",
981
- "text": "MessageCallback",
982
- "canonicalReference": "@notabene/javascript-sdk!~MessageCallback:type"
983
- },
984
- {
985
- "kind": "Content",
986
- "text": "): "
987
- },
988
- {
989
- "kind": "Content",
990
- "text": "void"
991
- },
992
- {
993
- "kind": "Content",
994
- "text": ";"
995
- }
996
- ],
997
- "isStatic": false,
998
- "returnTypeTokenRange": {
999
- "startIndex": 5,
1000
- "endIndex": 6
1001
- },
1002
- "releaseTag": "Public",
1003
- "isProtected": false,
1004
- "overloadIndex": 1,
1005
- "parameters": [
1006
- {
1007
- "parameterName": "messageType",
1008
- "parameterTypeTokenRange": {
1009
- "startIndex": 1,
1010
- "endIndex": 2
1011
- },
1012
- "isOptional": false
1013
- },
1014
- {
1015
- "parameterName": "callback",
1016
- "parameterTypeTokenRange": {
1017
- "startIndex": 3,
1018
- "endIndex": 4
1019
- },
1020
- "isOptional": false
1021
- }
1022
- ],
1023
- "isOptional": false,
1024
- "isAbstract": false,
1025
- "name": "off"
1026
- },
1027
- {
1028
- "kind": "Method",
1029
- "canonicalReference": "@notabene/javascript-sdk!EmbeddedComponent#on:member(1)",
1030
- "docComment": "",
1031
- "excerptTokens": [
1032
- {
1033
- "kind": "Content",
1034
- "text": "on(messageType: "
1035
- },
1036
- {
1037
- "kind": "Content",
1038
- "text": "string"
1039
- },
1040
- {
1041
- "kind": "Content",
1042
- "text": ", callback: "
1043
- },
1044
- {
1045
- "kind": "Reference",
1046
- "text": "MessageCallback",
1047
- "canonicalReference": "@notabene/javascript-sdk!~MessageCallback:type"
1048
- },
1049
- {
1050
- "kind": "Content",
1051
- "text": "): "
1052
- },
1053
- {
1054
- "kind": "Content",
1055
- "text": "void"
1056
- },
1057
- {
1058
- "kind": "Content",
1059
- "text": ";"
1060
- }
1061
- ],
1062
- "isStatic": false,
1063
- "returnTypeTokenRange": {
1064
- "startIndex": 5,
1065
- "endIndex": 6
1066
- },
1067
- "releaseTag": "Public",
1068
- "isProtected": false,
1069
- "overloadIndex": 1,
1070
- "parameters": [
1071
- {
1072
- "parameterName": "messageType",
1073
- "parameterTypeTokenRange": {
1074
- "startIndex": 1,
1075
- "endIndex": 2
1076
- },
1077
- "isOptional": false
1078
- },
1079
- {
1080
- "parameterName": "callback",
1081
- "parameterTypeTokenRange": {
1082
- "startIndex": 3,
1083
- "endIndex": 4
1084
- },
1085
- "isOptional": false
1086
- }
1087
- ],
1088
- "isOptional": false,
1089
- "isAbstract": false,
1090
- "name": "on"
1091
- },
1092
- {
1093
- "kind": "Method",
1094
- "canonicalReference": "@notabene/javascript-sdk!EmbeddedComponent#open:member(1)",
1095
- "docComment": "",
1096
- "excerptTokens": [
1097
- {
1098
- "kind": "Content",
1099
- "text": "open(): "
1100
- },
1101
- {
1102
- "kind": "Content",
1103
- "text": "void"
1104
- },
1105
- {
1106
- "kind": "Content",
1107
- "text": ";"
1108
- }
1109
- ],
1110
- "isStatic": false,
1111
- "returnTypeTokenRange": {
1112
- "startIndex": 1,
1113
- "endIndex": 2
1114
- },
1115
- "releaseTag": "Public",
1116
- "isProtected": false,
1117
- "overloadIndex": 1,
1118
- "parameters": [],
1119
- "isOptional": false,
1120
- "isAbstract": false,
1121
- "name": "open"
1122
- },
1123
- {
1124
- "kind": "Method",
1125
- "canonicalReference": "@notabene/javascript-sdk!EmbeddedComponent#send:member(1)",
1126
- "docComment": "",
1127
- "excerptTokens": [
1128
- {
1129
- "kind": "Content",
1130
- "text": "send(message: "
1131
- },
1132
- {
1133
- "kind": "Reference",
1134
- "text": "HostMessage",
1135
- "canonicalReference": "@notabene/javascript-sdk!HostMessage:type"
1136
- },
1137
- {
1138
- "kind": "Content",
1139
- "text": "): "
1140
- },
1141
- {
1142
- "kind": "Content",
1143
- "text": "void"
1144
- },
1145
- {
1146
- "kind": "Content",
1147
- "text": ";"
1148
- }
1149
- ],
1150
- "isStatic": false,
1151
- "returnTypeTokenRange": {
1152
- "startIndex": 3,
1153
- "endIndex": 4
1154
- },
1155
- "releaseTag": "Public",
1156
- "isProtected": false,
1157
- "overloadIndex": 1,
1158
- "parameters": [
1159
- {
1160
- "parameterName": "message",
1161
- "parameterTypeTokenRange": {
1162
- "startIndex": 1,
1163
- "endIndex": 2
1164
- },
1165
- "isOptional": false
1166
- }
1167
- ],
1168
- "isOptional": false,
1169
- "isAbstract": false,
1170
- "name": "send"
1171
- },
1172
- {
1173
- "kind": "Method",
1174
- "canonicalReference": "@notabene/javascript-sdk!EmbeddedComponent#update:member(1)",
1175
- "docComment": "",
1176
- "excerptTokens": [
1177
- {
1178
- "kind": "Content",
1179
- "text": "update(value: "
1180
- },
1181
- {
1182
- "kind": "Reference",
1183
- "text": "Partial",
1184
- "canonicalReference": "!Partial:type"
1185
- },
1186
- {
1187
- "kind": "Content",
1188
- "text": "<"
1189
- },
1190
- {
1191
- "kind": "Reference",
1192
- "text": "Transaction",
1193
- "canonicalReference": "@notabene/javascript-sdk!Transaction:interface"
1194
- },
1195
- {
1196
- "kind": "Content",
1197
- "text": ">"
1198
- },
1199
- {
1200
- "kind": "Content",
1201
- "text": "): "
1202
- },
1203
- {
1204
- "kind": "Content",
1205
- "text": "void"
1206
- },
1207
- {
1208
- "kind": "Content",
1209
- "text": ";"
1210
- }
1211
- ],
1212
- "isStatic": false,
1213
- "returnTypeTokenRange": {
1214
- "startIndex": 6,
1215
- "endIndex": 7
1216
- },
1217
- "releaseTag": "Public",
1218
- "isProtected": false,
1219
- "overloadIndex": 1,
1220
- "parameters": [
1221
- {
1222
- "parameterName": "value",
1223
- "parameterTypeTokenRange": {
1224
- "startIndex": 1,
1225
- "endIndex": 5
1226
- },
1227
- "isOptional": false
1228
- }
1229
- ],
1230
- "isOptional": false,
1231
- "isAbstract": false,
1232
- "name": "update"
1233
- },
1234
- {
1235
- "kind": "Property",
1236
- "canonicalReference": "@notabene/javascript-sdk!EmbeddedComponent#url:member",
1237
- "docComment": "",
1238
- "excerptTokens": [
1239
- {
1240
- "kind": "Content",
1241
- "text": "get url(): "
1242
- },
1243
- {
1244
- "kind": "Content",
1245
- "text": "string"
1246
- },
1247
- {
1248
- "kind": "Content",
1249
- "text": ";"
1250
- }
1251
- ],
1252
- "isReadonly": true,
1253
- "isOptional": false,
1254
- "releaseTag": "Public",
1255
- "name": "url",
1256
- "propertyTypeTokenRange": {
1257
- "startIndex": 1,
1258
- "endIndex": 2
1259
- },
1260
- "isStatic": false,
1261
- "isProtected": false,
1262
- "isAbstract": false
1263
- },
1264
- {
1265
- "kind": "Property",
1266
- "canonicalReference": "@notabene/javascript-sdk!EmbeddedComponent#value:member",
1267
- "docComment": "",
1268
- "excerptTokens": [
1269
- {
1270
- "kind": "Content",
1271
- "text": "get value(): "
1272
- },
1273
- {
1274
- "kind": "Reference",
1275
- "text": "Partial",
1276
- "canonicalReference": "!Partial:type"
1277
- },
1278
- {
1279
- "kind": "Content",
1280
- "text": "<"
1281
- },
1282
- {
1283
- "kind": "Reference",
1284
- "text": "Transaction",
1285
- "canonicalReference": "@notabene/javascript-sdk!Transaction:interface"
1286
- },
1287
- {
1288
- "kind": "Content",
1289
- "text": ">"
1290
- },
1291
- {
1292
- "kind": "Content",
1293
- "text": ";"
1294
- }
1295
- ],
1296
- "isReadonly": true,
1297
- "isOptional": false,
1298
- "releaseTag": "Public",
1299
- "name": "value",
1300
- "propertyTypeTokenRange": {
1301
- "startIndex": 1,
1302
- "endIndex": 5
1303
- },
1304
- "isStatic": false,
1305
- "isProtected": false,
1306
- "isAbstract": false
1307
- }
1308
- ],
1309
- "implementsTokenRanges": []
1310
- },
1311
- {
1312
- "kind": "TypeAlias",
1313
- "canonicalReference": "@notabene/javascript-sdk!IVMS101:type",
1314
- "docComment": "/**\n * IVMS101 definition\n *\n * @public\n */\n",
1315
- "excerptTokens": [
1316
- {
1317
- "kind": "Content",
1318
- "text": "export type IVMS101 = "
1319
- },
1320
- {
1321
- "kind": "Content",
1322
- "text": "{\n originator?: "
1323
- },
1324
- {
1325
- "kind": "Reference",
1326
- "text": "Originator",
1327
- "canonicalReference": "@notabene/javascript-sdk!~Originator:type"
1328
- },
1329
- {
1330
- "kind": "Content",
1331
- "text": ";\n beneficiary?: "
1332
- },
1333
- {
1334
- "kind": "Reference",
1335
- "text": "Beneficiary",
1336
- "canonicalReference": "@notabene/javascript-sdk!~Beneficiary:type"
1337
- },
1338
- {
1339
- "kind": "Content",
1340
- "text": ";\n originatingVASP?: "
1341
- },
1342
- {
1343
- "kind": "Reference",
1344
- "text": "OriginatingVASP",
1345
- "canonicalReference": "@notabene/javascript-sdk!~OriginatingVASP:type"
1346
- },
1347
- {
1348
- "kind": "Content",
1349
- "text": ";\n beneficiaryVASP?: "
1350
- },
1351
- {
1352
- "kind": "Reference",
1353
- "text": "BeneficiaryVASP",
1354
- "canonicalReference": "@notabene/javascript-sdk!~BeneficiaryVASP:type"
1355
- },
1356
- {
1357
- "kind": "Content",
1358
- "text": ";\n transferPath?: "
1359
- },
1360
- {
1361
- "kind": "Reference",
1362
- "text": "TransferPath",
1363
- "canonicalReference": "@notabene/javascript-sdk!~TransferPath:type"
1364
- },
1365
- {
1366
- "kind": "Content",
1367
- "text": ";\n payloadMetadata?: "
1368
- },
1369
- {
1370
- "kind": "Reference",
1371
- "text": "PayloadMetadata",
1372
- "canonicalReference": "@notabene/javascript-sdk!~PayloadMetadata:type"
1373
- },
1374
- {
1375
- "kind": "Content",
1376
- "text": ";\n}"
1377
- },
1378
- {
1379
- "kind": "Content",
1380
- "text": ";"
1381
- }
1382
- ],
1383
- "fileUrlPath": "ts-out/src/ivms/types.d.ts",
1384
- "releaseTag": "Public",
1385
- "name": "IVMS101",
1386
- "typeTokenRange": {
1387
- "startIndex": 1,
1388
- "endIndex": 14
1389
- }
1390
- },
1391
- {
1392
- "kind": "Interface",
1393
- "canonicalReference": "@notabene/javascript-sdk!MicroTransferProof:interface",
1394
- "docComment": "/**\n * Ownership Proof using Micro Transfer\n *\n * @public\n */\n",
1395
- "excerptTokens": [
1396
- {
1397
- "kind": "Content",
1398
- "text": "export interface MicroTransferProof extends "
1399
- },
1400
- {
1401
- "kind": "Reference",
1402
- "text": "OwnershipProof",
1403
- "canonicalReference": "@notabene/javascript-sdk!OwnershipProof:interface"
1404
- },
1405
- {
1406
- "kind": "Content",
1407
- "text": " "
1408
- }
1409
- ],
1410
- "fileUrlPath": "ts-out/src/types.d.ts",
1411
- "releaseTag": "Public",
1412
- "name": "MicroTransferProof",
1413
- "preserveMemberOrder": false,
1414
- "members": [
1415
- {
1416
- "kind": "PropertySignature",
1417
- "canonicalReference": "@notabene/javascript-sdk!MicroTransferProof#amount:member",
1418
- "docComment": "",
1419
- "excerptTokens": [
1420
- {
1421
- "kind": "Content",
1422
- "text": "amount: "
1423
- },
1424
- {
1425
- "kind": "Content",
1426
- "text": "number"
1427
- },
1428
- {
1429
- "kind": "Content",
1430
- "text": ";"
1431
- }
1432
- ],
1433
- "isReadonly": false,
1434
- "isOptional": false,
1435
- "releaseTag": "Public",
1436
- "name": "amount",
1437
- "propertyTypeTokenRange": {
1438
- "startIndex": 1,
1439
- "endIndex": 2
1440
- }
1441
- },
1442
- {
1443
- "kind": "PropertySignature",
1444
- "canonicalReference": "@notabene/javascript-sdk!MicroTransferProof#chain:member",
1445
- "docComment": "",
1446
- "excerptTokens": [
1447
- {
1448
- "kind": "Content",
1449
- "text": "chain: "
1450
- },
1451
- {
1452
- "kind": "Reference",
1453
- "text": "CAIP2",
1454
- "canonicalReference": "@notabene/javascript-sdk!~CAIP2:type"
1455
- },
1456
- {
1457
- "kind": "Content",
1458
- "text": ";"
1459
- }
1460
- ],
1461
- "isReadonly": false,
1462
- "isOptional": false,
1463
- "releaseTag": "Public",
1464
- "name": "chain",
1465
- "propertyTypeTokenRange": {
1466
- "startIndex": 1,
1467
- "endIndex": 2
1468
- }
1469
- },
1470
- {
1471
- "kind": "PropertySignature",
1472
- "canonicalReference": "@notabene/javascript-sdk!MicroTransferProof#txhash:member",
1473
- "docComment": "",
1474
- "excerptTokens": [
1475
- {
1476
- "kind": "Content",
1477
- "text": "txhash: "
1478
- },
1479
- {
1480
- "kind": "Content",
1481
- "text": "string"
1482
- },
1483
- {
1484
- "kind": "Content",
1485
- "text": ";"
1486
- }
1487
- ],
1488
- "isReadonly": false,
1489
- "isOptional": false,
1490
- "releaseTag": "Public",
1491
- "name": "txhash",
1492
- "propertyTypeTokenRange": {
1493
- "startIndex": 1,
1494
- "endIndex": 2
1495
- }
1496
- },
1497
- {
1498
- "kind": "PropertySignature",
1499
- "canonicalReference": "@notabene/javascript-sdk!MicroTransferProof#type:member",
1500
- "docComment": "",
1501
- "excerptTokens": [
1502
- {
1503
- "kind": "Content",
1504
- "text": "type: "
1505
- },
1506
- {
1507
- "kind": "Reference",
1508
- "text": "ProofTypes.MicroTransfer",
1509
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes.MicroTransfer:member"
1510
- },
1511
- {
1512
- "kind": "Content",
1513
- "text": ";"
1514
- }
1515
- ],
1516
- "isReadonly": false,
1517
- "isOptional": false,
1518
- "releaseTag": "Public",
1519
- "name": "type",
1520
- "propertyTypeTokenRange": {
1521
- "startIndex": 1,
1522
- "endIndex": 2
1523
- }
1524
- }
1525
- ],
1526
- "extendsTokenRanges": [
1527
- {
1528
- "startIndex": 1,
1529
- "endIndex": 2
1530
- }
1531
- ]
1532
- },
1533
- {
1534
- "kind": "Class",
1535
- "canonicalReference": "@notabene/javascript-sdk!Notabene:class",
1536
- "docComment": "/**\n * Primary constructor for Notabene UX elements\n *\n * @public\n */\n",
1537
- "excerptTokens": [
1538
- {
1539
- "kind": "Content",
1540
- "text": "export default class Notabene "
1541
- }
1542
- ],
1543
- "fileUrlPath": "ts-out/src/notabene.d.ts",
1544
- "releaseTag": "Public",
1545
- "isAbstract": false,
1546
- "name": "Notabene",
1547
- "preserveMemberOrder": false,
1548
- "members": [
1549
- {
1550
- "kind": "Constructor",
1551
- "canonicalReference": "@notabene/javascript-sdk!Notabene:constructor(1)",
1552
- "docComment": "/**\n * Constructs a new instance of the `Notabene` class\n */\n",
1553
- "excerptTokens": [
1554
- {
1555
- "kind": "Content",
1556
- "text": "constructor(config: "
1557
- },
1558
- {
1559
- "kind": "Reference",
1560
- "text": "NotabeneConfig",
1561
- "canonicalReference": "@notabene/javascript-sdk!NotabeneConfig:interface"
1562
- },
1563
- {
1564
- "kind": "Content",
1565
- "text": ");"
1566
- }
1567
- ],
1568
- "releaseTag": "Public",
1569
- "isProtected": false,
1570
- "overloadIndex": 1,
1571
- "parameters": [
1572
- {
1573
- "parameterName": "config",
1574
- "parameterTypeTokenRange": {
1575
- "startIndex": 1,
1576
- "endIndex": 2
1577
- },
1578
- "isOptional": false
1579
- }
1580
- ]
1581
- },
1582
- {
1583
- "kind": "Method",
1584
- "canonicalReference": "@notabene/javascript-sdk!Notabene#componentUrl:member(1)",
1585
- "docComment": "",
1586
- "excerptTokens": [
1587
- {
1588
- "kind": "Content",
1589
- "text": "componentUrl(path: "
1590
- },
1591
- {
1592
- "kind": "Content",
1593
- "text": "string"
1594
- },
1595
- {
1596
- "kind": "Content",
1597
- "text": ", value: "
1598
- },
1599
- {
1600
- "kind": "Reference",
1601
- "text": "Partial",
1602
- "canonicalReference": "!Partial:type"
1603
- },
1604
- {
1605
- "kind": "Content",
1606
- "text": "<"
1607
- },
1608
- {
1609
- "kind": "Reference",
1610
- "text": "Transaction",
1611
- "canonicalReference": "@notabene/javascript-sdk!Transaction:interface"
1612
- },
1613
- {
1614
- "kind": "Content",
1615
- "text": ">"
1616
- },
1617
- {
1618
- "kind": "Content",
1619
- "text": ", configuration?: "
1620
- },
1621
- {
1622
- "kind": "Content",
1623
- "text": "any"
1624
- },
1625
- {
1626
- "kind": "Content",
1627
- "text": ", callbacks?: "
1628
- },
1629
- {
1630
- "kind": "Reference",
1631
- "text": "CallbackOptions",
1632
- "canonicalReference": "@notabene/javascript-sdk!~CallbackOptions:interface"
1633
- },
1634
- {
1635
- "kind": "Content",
1636
- "text": "): "
1637
- },
1638
- {
1639
- "kind": "Content",
1640
- "text": "string"
1641
- },
1642
- {
1643
- "kind": "Content",
1644
- "text": ";"
1645
- }
1646
- ],
1647
- "isStatic": false,
1648
- "returnTypeTokenRange": {
1649
- "startIndex": 12,
1650
- "endIndex": 13
1651
- },
1652
- "releaseTag": "Public",
1653
- "isProtected": false,
1654
- "overloadIndex": 1,
1655
- "parameters": [
1656
- {
1657
- "parameterName": "path",
1658
- "parameterTypeTokenRange": {
1659
- "startIndex": 1,
1660
- "endIndex": 2
1661
- },
1662
- "isOptional": false
1663
- },
1664
- {
1665
- "parameterName": "value",
1666
- "parameterTypeTokenRange": {
1667
- "startIndex": 3,
1668
- "endIndex": 7
1669
- },
1670
- "isOptional": false
1671
- },
1672
- {
1673
- "parameterName": "configuration",
1674
- "parameterTypeTokenRange": {
1675
- "startIndex": 8,
1676
- "endIndex": 9
1677
- },
1678
- "isOptional": true
1679
- },
1680
- {
1681
- "parameterName": "callbacks",
1682
- "parameterTypeTokenRange": {
1683
- "startIndex": 10,
1684
- "endIndex": 11
1685
- },
1686
- "isOptional": true
1687
- }
1688
- ],
1689
- "isOptional": false,
1690
- "isAbstract": false,
1691
- "name": "componentUrl"
1692
- },
1693
- {
1694
- "kind": "Method",
1695
- "canonicalReference": "@notabene/javascript-sdk!Notabene#createComponent:member(1)",
1696
- "docComment": "",
1697
- "excerptTokens": [
1698
- {
1699
- "kind": "Content",
1700
- "text": "createComponent(path: "
1701
- },
1702
- {
1703
- "kind": "Content",
1704
- "text": "string"
1705
- },
1706
- {
1707
- "kind": "Content",
1708
- "text": ", value: "
1709
- },
1710
- {
1711
- "kind": "Reference",
1712
- "text": "Partial",
1713
- "canonicalReference": "!Partial:type"
1714
- },
1715
- {
1716
- "kind": "Content",
1717
- "text": "<"
1718
- },
1719
- {
1720
- "kind": "Reference",
1721
- "text": "Transaction",
1722
- "canonicalReference": "@notabene/javascript-sdk!Transaction:interface"
1723
- },
1724
- {
1725
- "kind": "Content",
1726
- "text": ">"
1727
- },
1728
- {
1729
- "kind": "Content",
1730
- "text": ", options?: "
1731
- },
1732
- {
1733
- "kind": "Content",
1734
- "text": "any"
1735
- },
1736
- {
1737
- "kind": "Content",
1738
- "text": ", callbacks?: "
1739
- },
1740
- {
1741
- "kind": "Reference",
1742
- "text": "CallbackOptions",
1743
- "canonicalReference": "@notabene/javascript-sdk!~CallbackOptions:interface"
1744
- },
1745
- {
1746
- "kind": "Content",
1747
- "text": "): "
1748
- },
1749
- {
1750
- "kind": "Reference",
1751
- "text": "EmbeddedComponent",
1752
- "canonicalReference": "@notabene/javascript-sdk!EmbeddedComponent:class"
1753
- },
1754
- {
1755
- "kind": "Content",
1756
- "text": ";"
1757
- }
1758
- ],
1759
- "isStatic": false,
1760
- "returnTypeTokenRange": {
1761
- "startIndex": 12,
1762
- "endIndex": 13
1763
- },
1764
- "releaseTag": "Public",
1765
- "isProtected": false,
1766
- "overloadIndex": 1,
1767
- "parameters": [
1768
- {
1769
- "parameterName": "path",
1770
- "parameterTypeTokenRange": {
1771
- "startIndex": 1,
1772
- "endIndex": 2
1773
- },
1774
- "isOptional": false
1775
- },
1776
- {
1777
- "parameterName": "value",
1778
- "parameterTypeTokenRange": {
1779
- "startIndex": 3,
1780
- "endIndex": 7
1781
- },
1782
- "isOptional": false
1783
- },
1784
- {
1785
- "parameterName": "options",
1786
- "parameterTypeTokenRange": {
1787
- "startIndex": 8,
1788
- "endIndex": 9
1789
- },
1790
- "isOptional": true
1791
- },
1792
- {
1793
- "parameterName": "callbacks",
1794
- "parameterTypeTokenRange": {
1795
- "startIndex": 10,
1796
- "endIndex": 11
1797
- },
1798
- "isOptional": true
1799
- }
1800
- ],
1801
- "isOptional": false,
1802
- "isAbstract": false,
1803
- "name": "createComponent"
1804
- },
1805
- {
1806
- "kind": "Method",
1807
- "canonicalReference": "@notabene/javascript-sdk!Notabene#createWithdrawalAssist:member(1)",
1808
- "docComment": "",
1809
- "excerptTokens": [
1810
- {
1811
- "kind": "Content",
1812
- "text": "createWithdrawalAssist(value: "
1813
- },
1814
- {
1815
- "kind": "Reference",
1816
- "text": "Partial",
1817
- "canonicalReference": "!Partial:type"
1818
- },
1819
- {
1820
- "kind": "Content",
1821
- "text": "<"
1822
- },
1823
- {
1824
- "kind": "Reference",
1825
- "text": "Withdrawal",
1826
- "canonicalReference": "@notabene/javascript-sdk!Withdrawal:interface"
1827
- },
1828
- {
1829
- "kind": "Content",
1830
- "text": ">"
1831
- },
1832
- {
1833
- "kind": "Content",
1834
- "text": ", options?: "
1835
- },
1836
- {
1837
- "kind": "Content",
1838
- "text": "any"
1839
- },
1840
- {
1841
- "kind": "Content",
1842
- "text": ", callbacks?: "
1843
- },
1844
- {
1845
- "kind": "Reference",
1846
- "text": "CallbackOptions",
1847
- "canonicalReference": "@notabene/javascript-sdk!~CallbackOptions:interface"
1848
- },
1849
- {
1850
- "kind": "Content",
1851
- "text": "): "
1852
- },
1853
- {
1854
- "kind": "Reference",
1855
- "text": "EmbeddedComponent",
1856
- "canonicalReference": "@notabene/javascript-sdk!EmbeddedComponent:class"
1857
- },
1858
- {
1859
- "kind": "Content",
1860
- "text": ";"
1861
- }
1862
- ],
1863
- "isStatic": false,
1864
- "returnTypeTokenRange": {
1865
- "startIndex": 10,
1866
- "endIndex": 11
1867
- },
1868
- "releaseTag": "Public",
1869
- "isProtected": false,
1870
- "overloadIndex": 1,
1871
- "parameters": [
1872
- {
1873
- "parameterName": "value",
1874
- "parameterTypeTokenRange": {
1875
- "startIndex": 1,
1876
- "endIndex": 5
1877
- },
1878
- "isOptional": false
1879
- },
1880
- {
1881
- "parameterName": "options",
1882
- "parameterTypeTokenRange": {
1883
- "startIndex": 6,
1884
- "endIndex": 7
1885
- },
1886
- "isOptional": true
1887
- },
1888
- {
1889
- "parameterName": "callbacks",
1890
- "parameterTypeTokenRange": {
1891
- "startIndex": 8,
1892
- "endIndex": 9
1893
- },
1894
- "isOptional": true
1895
- }
1896
- ],
1897
- "isOptional": false,
1898
- "isAbstract": false,
1899
- "name": "createWithdrawalAssist"
1900
- },
1901
- {
1902
- "kind": "Method",
1903
- "canonicalReference": "@notabene/javascript-sdk!Notabene#decodeFragmentToObject:member(1)",
1904
- "docComment": "",
1905
- "excerptTokens": [
1906
- {
1907
- "kind": "Content",
1908
- "text": "decodeFragmentToObject(fragment: "
1909
- },
1910
- {
1911
- "kind": "Content",
1912
- "text": "string"
1913
- },
1914
- {
1915
- "kind": "Content",
1916
- "text": "): "
1917
- },
1918
- {
1919
- "kind": "Reference",
1920
- "text": "Record",
1921
- "canonicalReference": "!Record:type"
1922
- },
1923
- {
1924
- "kind": "Content",
1925
- "text": "<string, string>"
1926
- },
1927
- {
1928
- "kind": "Content",
1929
- "text": ";"
1930
- }
1931
- ],
1932
- "isStatic": false,
1933
- "returnTypeTokenRange": {
1934
- "startIndex": 3,
1935
- "endIndex": 5
1936
- },
1937
- "releaseTag": "Public",
1938
- "isProtected": false,
1939
- "overloadIndex": 1,
1940
- "parameters": [
1941
- {
1942
- "parameterName": "fragment",
1943
- "parameterTypeTokenRange": {
1944
- "startIndex": 1,
1945
- "endIndex": 2
1946
- },
1947
- "isOptional": false
1948
- }
1949
- ],
1950
- "isOptional": false,
1951
- "isAbstract": false,
1952
- "name": "decodeFragmentToObject"
1953
- }
1954
- ],
1955
- "implementsTokenRanges": []
1956
- },
1957
- {
1958
- "kind": "Interface",
1959
- "canonicalReference": "@notabene/javascript-sdk!NotabeneConfig:interface",
1960
- "docComment": "/**\n * Configuration for the Notabene SDK\n *\n * @public\n */\n",
1961
- "excerptTokens": [
1962
- {
1963
- "kind": "Content",
1964
- "text": "export interface NotabeneConfig "
1965
- }
1966
- ],
1967
- "fileUrlPath": "ts-out/src/notabene.d.ts",
1968
- "releaseTag": "Public",
1969
- "name": "NotabeneConfig",
1970
- "preserveMemberOrder": false,
1971
- "members": [
1972
- {
1973
- "kind": "PropertySignature",
1974
- "canonicalReference": "@notabene/javascript-sdk!NotabeneConfig#authToken:member",
1975
- "docComment": "",
1976
- "excerptTokens": [
1977
- {
1978
- "kind": "Content",
1979
- "text": "authToken: "
1980
- },
1981
- {
1982
- "kind": "Content",
1983
- "text": "string"
1984
- },
1985
- {
1986
- "kind": "Content",
1987
- "text": ";"
1988
- }
1989
- ],
1990
- "isReadonly": false,
1991
- "isOptional": false,
1992
- "releaseTag": "Public",
1993
- "name": "authToken",
1994
- "propertyTypeTokenRange": {
1995
- "startIndex": 1,
1996
- "endIndex": 2
1997
- }
1998
- },
1999
- {
2000
- "kind": "PropertySignature",
2001
- "canonicalReference": "@notabene/javascript-sdk!NotabeneConfig#dictionary:member",
2002
- "docComment": "",
2003
- "excerptTokens": [
2004
- {
2005
- "kind": "Content",
2006
- "text": "dictionary?: "
2007
- },
2008
- {
2009
- "kind": "Content",
2010
- "text": "{\n [key: string]: string;\n }"
2011
- },
2012
- {
2013
- "kind": "Content",
2014
- "text": ";"
2015
- }
2016
- ],
2017
- "isReadonly": false,
2018
- "isOptional": true,
2019
- "releaseTag": "Public",
2020
- "name": "dictionary",
2021
- "propertyTypeTokenRange": {
2022
- "startIndex": 1,
2023
- "endIndex": 2
2024
- }
2025
- },
2026
- {
2027
- "kind": "PropertySignature",
2028
- "canonicalReference": "@notabene/javascript-sdk!NotabeneConfig#nodeUrl:member",
2029
- "docComment": "",
2030
- "excerptTokens": [
2031
- {
2032
- "kind": "Content",
2033
- "text": "nodeUrl: "
2034
- },
2035
- {
2036
- "kind": "Content",
2037
- "text": "string"
2038
- },
2039
- {
2040
- "kind": "Content",
2041
- "text": ";"
2042
- }
2043
- ],
2044
- "isReadonly": false,
2045
- "isOptional": false,
2046
- "releaseTag": "Public",
2047
- "name": "nodeUrl",
2048
- "propertyTypeTokenRange": {
2049
- "startIndex": 1,
2050
- "endIndex": 2
2051
- }
2052
- },
2053
- {
2054
- "kind": "PropertySignature",
2055
- "canonicalReference": "@notabene/javascript-sdk!NotabeneConfig#theme:member",
2056
- "docComment": "",
2057
- "excerptTokens": [
2058
- {
2059
- "kind": "Content",
2060
- "text": "theme?: "
2061
- },
2062
- {
2063
- "kind": "Reference",
2064
- "text": "Theme",
2065
- "canonicalReference": "@notabene/javascript-sdk!Theme:type"
2066
- },
2067
- {
2068
- "kind": "Content",
2069
- "text": ";"
2070
- }
2071
- ],
2072
- "isReadonly": false,
2073
- "isOptional": true,
2074
- "releaseTag": "Public",
2075
- "name": "theme",
2076
- "propertyTypeTokenRange": {
2077
- "startIndex": 1,
2078
- "endIndex": 2
2079
- }
2080
- },
2081
- {
2082
- "kind": "PropertySignature",
2083
- "canonicalReference": "@notabene/javascript-sdk!NotabeneConfig#uxUrl:member",
2084
- "docComment": "",
2085
- "excerptTokens": [
2086
- {
2087
- "kind": "Content",
2088
- "text": "uxUrl?: "
2089
- },
2090
- {
2091
- "kind": "Content",
2092
- "text": "string"
2093
- },
2094
- {
2095
- "kind": "Content",
2096
- "text": ";"
2097
- }
2098
- ],
2099
- "isReadonly": false,
2100
- "isOptional": true,
2101
- "releaseTag": "Public",
2102
- "name": "uxUrl",
2103
- "propertyTypeTokenRange": {
2104
- "startIndex": 1,
2105
- "endIndex": 2
2106
- }
2107
- }
2108
- ],
2109
- "extendsTokenRanges": []
2110
- },
2111
- {
2112
- "kind": "Interface",
2113
- "canonicalReference": "@notabene/javascript-sdk!OwnershipProof:interface",
2114
- "docComment": "/**\n * Ownership Proof\n *\n * @public\n */\n",
2115
- "excerptTokens": [
2116
- {
2117
- "kind": "Content",
2118
- "text": "export interface OwnershipProof "
2119
- }
2120
- ],
2121
- "fileUrlPath": "ts-out/src/types.d.ts",
2122
- "releaseTag": "Public",
2123
- "name": "OwnershipProof",
2124
- "preserveMemberOrder": false,
2125
- "members": [
2126
- {
2127
- "kind": "PropertySignature",
2128
- "canonicalReference": "@notabene/javascript-sdk!OwnershipProof#address:member",
2129
- "docComment": "",
2130
- "excerptTokens": [
2131
- {
2132
- "kind": "Content",
2133
- "text": "address: "
2134
- },
2135
- {
2136
- "kind": "Reference",
2137
- "text": "CAIP10",
2138
- "canonicalReference": "@notabene/javascript-sdk!~CAIP10:type"
2139
- },
2140
- {
2141
- "kind": "Content",
2142
- "text": ";"
2143
- }
2144
- ],
2145
- "isReadonly": false,
2146
- "isOptional": false,
2147
- "releaseTag": "Public",
2148
- "name": "address",
2149
- "propertyTypeTokenRange": {
2150
- "startIndex": 1,
2151
- "endIndex": 2
2152
- }
2153
- },
2154
- {
2155
- "kind": "PropertySignature",
2156
- "canonicalReference": "@notabene/javascript-sdk!OwnershipProof#did:member",
2157
- "docComment": "",
2158
- "excerptTokens": [
2159
- {
2160
- "kind": "Content",
2161
- "text": "did: "
2162
- },
2163
- {
2164
- "kind": "Reference",
2165
- "text": "DID",
2166
- "canonicalReference": "@notabene/javascript-sdk!~DID:type"
2167
- },
2168
- {
2169
- "kind": "Content",
2170
- "text": ";"
2171
- }
2172
- ],
2173
- "isReadonly": false,
2174
- "isOptional": false,
2175
- "releaseTag": "Public",
2176
- "name": "did",
2177
- "propertyTypeTokenRange": {
2178
- "startIndex": 1,
2179
- "endIndex": 2
2180
- }
2181
- },
2182
- {
2183
- "kind": "PropertySignature",
2184
- "canonicalReference": "@notabene/javascript-sdk!OwnershipProof#status:member",
2185
- "docComment": "",
2186
- "excerptTokens": [
2187
- {
2188
- "kind": "Content",
2189
- "text": "status: "
2190
- },
2191
- {
2192
- "kind": "Reference",
2193
- "text": "ProofStatus",
2194
- "canonicalReference": "@notabene/javascript-sdk!ProofStatus:enum"
2195
- },
2196
- {
2197
- "kind": "Content",
2198
- "text": ";"
2199
- }
2200
- ],
2201
- "isReadonly": false,
2202
- "isOptional": false,
2203
- "releaseTag": "Public",
2204
- "name": "status",
2205
- "propertyTypeTokenRange": {
2206
- "startIndex": 1,
2207
- "endIndex": 2
2208
- }
2209
- },
2210
- {
2211
- "kind": "PropertySignature",
2212
- "canonicalReference": "@notabene/javascript-sdk!OwnershipProof#type:member",
2213
- "docComment": "",
2214
- "excerptTokens": [
2215
- {
2216
- "kind": "Content",
2217
- "text": "type: "
2218
- },
2219
- {
2220
- "kind": "Reference",
2221
- "text": "ProofTypes",
2222
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes:enum"
2223
- },
2224
- {
2225
- "kind": "Content",
2226
- "text": ";"
2227
- }
2228
- ],
2229
- "isReadonly": false,
2230
- "isOptional": false,
2231
- "releaseTag": "Public",
2232
- "name": "type",
2233
- "propertyTypeTokenRange": {
2234
- "startIndex": 1,
2235
- "endIndex": 2
2236
- }
2237
- }
2238
- ],
2239
- "extendsTokenRanges": []
2240
- },
2241
- {
2242
- "kind": "Enum",
2243
- "canonicalReference": "@notabene/javascript-sdk!PersonType:enum",
2244
- "docComment": "/**\n * The type of counterparty. Either a natural person or a legal person. If the customer is the same as the counterparty then the counterparty is a self.\n *\n * @public\n */\n",
2245
- "excerptTokens": [
2246
- {
2247
- "kind": "Content",
2248
- "text": "export declare enum PersonType "
2249
- }
2250
- ],
2251
- "fileUrlPath": "ts-out/src/types.d.ts",
2252
- "releaseTag": "Public",
2253
- "name": "PersonType",
2254
- "preserveMemberOrder": false,
2255
- "members": [
2256
- {
2257
- "kind": "EnumMember",
2258
- "canonicalReference": "@notabene/javascript-sdk!PersonType.LEGAL:member",
2259
- "docComment": "",
2260
- "excerptTokens": [
2261
- {
2262
- "kind": "Content",
2263
- "text": "LEGAL = "
2264
- },
2265
- {
2266
- "kind": "Content",
2267
- "text": "\"legal\""
2268
- }
2269
- ],
2270
- "initializerTokenRange": {
2271
- "startIndex": 1,
2272
- "endIndex": 2
2273
- },
2274
- "releaseTag": "Public",
2275
- "name": "LEGAL"
2276
- },
2277
- {
2278
- "kind": "EnumMember",
2279
- "canonicalReference": "@notabene/javascript-sdk!PersonType.NATURAL:member",
2280
- "docComment": "",
2281
- "excerptTokens": [
2282
- {
2283
- "kind": "Content",
2284
- "text": "NATURAL = "
2285
- },
2286
- {
2287
- "kind": "Content",
2288
- "text": "\"natural\""
2289
- }
2290
- ],
2291
- "initializerTokenRange": {
2292
- "startIndex": 1,
2293
- "endIndex": 2
2294
- },
2295
- "releaseTag": "Public",
2296
- "name": "NATURAL"
2297
- },
2298
- {
2299
- "kind": "EnumMember",
2300
- "canonicalReference": "@notabene/javascript-sdk!PersonType.SELF:member",
2301
- "docComment": "",
2302
- "excerptTokens": [
2303
- {
2304
- "kind": "Content",
2305
- "text": "SELF = "
2306
- },
2307
- {
2308
- "kind": "Content",
2309
- "text": "\"self\""
2310
- }
2311
- ],
2312
- "initializerTokenRange": {
2313
- "startIndex": 1,
2314
- "endIndex": 2
2315
- },
2316
- "releaseTag": "Public",
2317
- "name": "SELF"
2318
- }
2319
- ]
2320
- },
2321
- {
2322
- "kind": "Enum",
2323
- "canonicalReference": "@notabene/javascript-sdk!ProofStatus:enum",
2324
- "docComment": "/**\n * Status of the proof\n *\n * @public\n */\n",
2325
- "excerptTokens": [
2326
- {
2327
- "kind": "Content",
2328
- "text": "export declare enum ProofStatus "
2329
- }
2330
- ],
2331
- "fileUrlPath": "ts-out/src/types.d.ts",
2332
- "releaseTag": "Public",
2333
- "name": "ProofStatus",
2334
- "preserveMemberOrder": false,
2335
- "members": [
2336
- {
2337
- "kind": "EnumMember",
2338
- "canonicalReference": "@notabene/javascript-sdk!ProofStatus.FAILED:member",
2339
- "docComment": "",
2340
- "excerptTokens": [
2341
- {
2342
- "kind": "Content",
2343
- "text": "FAILED = "
2344
- },
2345
- {
2346
- "kind": "Content",
2347
- "text": "\"rejected\""
2348
- }
2349
- ],
2350
- "initializerTokenRange": {
2351
- "startIndex": 1,
2352
- "endIndex": 2
2353
- },
2354
- "releaseTag": "Public",
2355
- "name": "FAILED"
2356
- },
2357
- {
2358
- "kind": "EnumMember",
2359
- "canonicalReference": "@notabene/javascript-sdk!ProofStatus.FLAGGED:member",
2360
- "docComment": "",
2361
- "excerptTokens": [
2362
- {
2363
- "kind": "Content",
2364
- "text": "FLAGGED = "
2365
- },
2366
- {
2367
- "kind": "Content",
2368
- "text": "\"flagged\""
2369
- }
2370
- ],
2371
- "initializerTokenRange": {
2372
- "startIndex": 1,
2373
- "endIndex": 2
2374
- },
2375
- "releaseTag": "Public",
2376
- "name": "FLAGGED"
2377
- },
2378
- {
2379
- "kind": "EnumMember",
2380
- "canonicalReference": "@notabene/javascript-sdk!ProofStatus.PENDING:member",
2381
- "docComment": "",
2382
- "excerptTokens": [
2383
- {
2384
- "kind": "Content",
2385
- "text": "PENDING = "
2386
- },
2387
- {
2388
- "kind": "Content",
2389
- "text": "\"pending\""
2390
- }
2391
- ],
2392
- "initializerTokenRange": {
2393
- "startIndex": 1,
2394
- "endIndex": 2
2395
- },
2396
- "releaseTag": "Public",
2397
- "name": "PENDING"
2398
- },
2399
- {
2400
- "kind": "EnumMember",
2401
- "canonicalReference": "@notabene/javascript-sdk!ProofStatus.VERIFIED:member",
2402
- "docComment": "",
2403
- "excerptTokens": [
2404
- {
2405
- "kind": "Content",
2406
- "text": "VERIFIED = "
2407
- },
2408
- {
2409
- "kind": "Content",
2410
- "text": "\"verified\""
2411
- }
2412
- ],
2413
- "initializerTokenRange": {
2414
- "startIndex": 1,
2415
- "endIndex": 2
2416
- },
2417
- "releaseTag": "Public",
2418
- "name": "VERIFIED"
2419
- }
2420
- ]
2421
- },
2422
- {
2423
- "kind": "Enum",
2424
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes:enum",
2425
- "docComment": "/**\n * The type of Proofs supported\n *\n * @public\n */\n",
2426
- "excerptTokens": [
2427
- {
2428
- "kind": "Content",
2429
- "text": "export declare enum ProofTypes "
2430
- }
2431
- ],
2432
- "fileUrlPath": "ts-out/src/types.d.ts",
2433
- "releaseTag": "Public",
2434
- "name": "ProofTypes",
2435
- "preserveMemberOrder": false,
2436
- "members": [
2437
- {
2438
- "kind": "EnumMember",
2439
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes.MicroTransfer:member",
2440
- "docComment": "",
2441
- "excerptTokens": [
2442
- {
2443
- "kind": "Content",
2444
- "text": "MicroTransfer = "
2445
- },
2446
- {
2447
- "kind": "Content",
2448
- "text": "\"microtransfer\""
2449
- }
2450
- ],
2451
- "initializerTokenRange": {
2452
- "startIndex": 1,
2453
- "endIndex": 2
2454
- },
2455
- "releaseTag": "Public",
2456
- "name": "MicroTransfer"
2457
- },
2458
- {
2459
- "kind": "EnumMember",
2460
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes.PersonalSignBIP137:member",
2461
- "docComment": "",
2462
- "excerptTokens": [
2463
- {
2464
- "kind": "Content",
2465
- "text": "PersonalSignBIP137 = "
2466
- },
2467
- {
2468
- "kind": "Content",
2469
- "text": "\"bip-137\""
2470
- }
2471
- ],
2472
- "initializerTokenRange": {
2473
- "startIndex": 1,
2474
- "endIndex": 2
2475
- },
2476
- "releaseTag": "Public",
2477
- "name": "PersonalSignBIP137"
2478
- },
2479
- {
2480
- "kind": "EnumMember",
2481
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes.PersonalSignEIP191:member",
2482
- "docComment": "",
2483
- "excerptTokens": [
2484
- {
2485
- "kind": "Content",
2486
- "text": "PersonalSignEIP191 = "
2487
- },
2488
- {
2489
- "kind": "Content",
2490
- "text": "\"eip-191\""
2491
- }
2492
- ],
2493
- "initializerTokenRange": {
2494
- "startIndex": 1,
2495
- "endIndex": 2
2496
- },
2497
- "releaseTag": "Public",
2498
- "name": "PersonalSignEIP191"
2499
- },
2500
- {
2501
- "kind": "EnumMember",
2502
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes.PersonalSignEIP712:member",
2503
- "docComment": "",
2504
- "excerptTokens": [
2505
- {
2506
- "kind": "Content",
2507
- "text": "PersonalSignEIP712 = "
2508
- },
2509
- {
2510
- "kind": "Content",
2511
- "text": "\"eip-712\""
2512
- }
2513
- ],
2514
- "initializerTokenRange": {
2515
- "startIndex": 1,
2516
- "endIndex": 2
2517
- },
2518
- "releaseTag": "Public",
2519
- "name": "PersonalSignEIP712"
2520
- },
2521
- {
2522
- "kind": "EnumMember",
2523
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes.PersonalSignXPUB:member",
2524
- "docComment": "",
2525
- "excerptTokens": [
2526
- {
2527
- "kind": "Content",
2528
- "text": "PersonalSignXPUB = "
2529
- },
2530
- {
2531
- "kind": "Content",
2532
- "text": "\"xpub\""
2533
- }
2534
- ],
2535
- "initializerTokenRange": {
2536
- "startIndex": 1,
2537
- "endIndex": 2
2538
- },
2539
- "releaseTag": "Public",
2540
- "name": "PersonalSignXPUB"
2541
- },
2542
- {
2543
- "kind": "EnumMember",
2544
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes.Screenshot:member",
2545
- "docComment": "",
2546
- "excerptTokens": [
2547
- {
2548
- "kind": "Content",
2549
- "text": "Screenshot = "
2550
- },
2551
- {
2552
- "kind": "Content",
2553
- "text": "\"screenshot\""
2554
- }
2555
- ],
2556
- "initializerTokenRange": {
2557
- "startIndex": 1,
2558
- "endIndex": 2
2559
- },
2560
- "releaseTag": "Public",
2561
- "name": "Screenshot"
2562
- },
2563
- {
2564
- "kind": "EnumMember",
2565
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes.SelfDeclaration:member",
2566
- "docComment": "",
2567
- "excerptTokens": [
2568
- {
2569
- "kind": "Content",
2570
- "text": "SelfDeclaration = "
2571
- },
2572
- {
2573
- "kind": "Content",
2574
- "text": "\"self-declaration\""
2575
- }
2576
- ],
2577
- "initializerTokenRange": {
2578
- "startIndex": 1,
2579
- "endIndex": 2
2580
- },
2581
- "releaseTag": "Public",
2582
- "name": "SelfDeclaration"
2583
- }
2584
- ]
2585
- },
2586
- {
2587
- "kind": "Interface",
2588
- "canonicalReference": "@notabene/javascript-sdk!ScreenshotProof:interface",
2589
- "docComment": "/**\n * Ownership Proof using Screenshot\n *\n * @public\n */\n",
2590
- "excerptTokens": [
2591
- {
2592
- "kind": "Content",
2593
- "text": "export interface ScreenshotProof extends "
2594
- },
2595
- {
2596
- "kind": "Reference",
2597
- "text": "OwnershipProof",
2598
- "canonicalReference": "@notabene/javascript-sdk!OwnershipProof:interface"
2599
- },
2600
- {
2601
- "kind": "Content",
2602
- "text": " "
2603
- }
2604
- ],
2605
- "fileUrlPath": "ts-out/src/types.d.ts",
2606
- "releaseTag": "Public",
2607
- "name": "ScreenshotProof",
2608
- "preserveMemberOrder": false,
2609
- "members": [
2610
- {
2611
- "kind": "PropertySignature",
2612
- "canonicalReference": "@notabene/javascript-sdk!ScreenshotProof#type:member",
2613
- "docComment": "",
2614
- "excerptTokens": [
2615
- {
2616
- "kind": "Content",
2617
- "text": "type: "
2618
- },
2619
- {
2620
- "kind": "Reference",
2621
- "text": "ProofTypes.Screenshot",
2622
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes.Screenshot:member"
2623
- },
2624
- {
2625
- "kind": "Content",
2626
- "text": ";"
2627
- }
2628
- ],
2629
- "isReadonly": false,
2630
- "isOptional": false,
2631
- "releaseTag": "Public",
2632
- "name": "type",
2633
- "propertyTypeTokenRange": {
2634
- "startIndex": 1,
2635
- "endIndex": 2
2636
- }
2637
- },
2638
- {
2639
- "kind": "PropertySignature",
2640
- "canonicalReference": "@notabene/javascript-sdk!ScreenshotProof#url:member",
2641
- "docComment": "",
2642
- "excerptTokens": [
2643
- {
2644
- "kind": "Content",
2645
- "text": "url: "
2646
- },
2647
- {
2648
- "kind": "Content",
2649
- "text": "string"
2650
- },
2651
- {
2652
- "kind": "Content",
2653
- "text": ";"
2654
- }
2655
- ],
2656
- "isReadonly": false,
2657
- "isOptional": false,
2658
- "releaseTag": "Public",
2659
- "name": "url",
2660
- "propertyTypeTokenRange": {
2661
- "startIndex": 1,
2662
- "endIndex": 2
2663
- }
2664
- }
2665
- ],
2666
- "extendsTokenRanges": [
2667
- {
2668
- "startIndex": 1,
2669
- "endIndex": 2
2670
- }
2671
- ]
2672
- },
2673
- {
2674
- "kind": "Interface",
2675
- "canonicalReference": "@notabene/javascript-sdk!SignatureProof:interface",
2676
- "docComment": "/**\n * Ownership Proof using Message Signature\n *\n * @public\n */\n",
2677
- "excerptTokens": [
2678
- {
2679
- "kind": "Content",
2680
- "text": "export interface SignatureProof extends "
2681
- },
2682
- {
2683
- "kind": "Reference",
2684
- "text": "OwnershipProof",
2685
- "canonicalReference": "@notabene/javascript-sdk!OwnershipProof:interface"
2686
- },
2687
- {
2688
- "kind": "Content",
2689
- "text": " "
2690
- }
2691
- ],
2692
- "fileUrlPath": "ts-out/src/types.d.ts",
2693
- "releaseTag": "Public",
2694
- "name": "SignatureProof",
2695
- "preserveMemberOrder": false,
2696
- "members": [
2697
- {
2698
- "kind": "PropertySignature",
2699
- "canonicalReference": "@notabene/javascript-sdk!SignatureProof#attestation:member",
2700
- "docComment": "",
2701
- "excerptTokens": [
2702
- {
2703
- "kind": "Content",
2704
- "text": "attestation: "
2705
- },
2706
- {
2707
- "kind": "Content",
2708
- "text": "string"
2709
- },
2710
- {
2711
- "kind": "Content",
2712
- "text": ";"
2713
- }
2714
- ],
2715
- "isReadonly": false,
2716
- "isOptional": false,
2717
- "releaseTag": "Public",
2718
- "name": "attestation",
2719
- "propertyTypeTokenRange": {
2720
- "startIndex": 1,
2721
- "endIndex": 2
2722
- }
2723
- },
2724
- {
2725
- "kind": "PropertySignature",
2726
- "canonicalReference": "@notabene/javascript-sdk!SignatureProof#proof:member",
2727
- "docComment": "",
2728
- "excerptTokens": [
2729
- {
2730
- "kind": "Content",
2731
- "text": "proof: "
2732
- },
2733
- {
2734
- "kind": "Content",
2735
- "text": "string"
2736
- },
2737
- {
2738
- "kind": "Content",
2739
- "text": ";"
2740
- }
2741
- ],
2742
- "isReadonly": false,
2743
- "isOptional": false,
2744
- "releaseTag": "Public",
2745
- "name": "proof",
2746
- "propertyTypeTokenRange": {
2747
- "startIndex": 1,
2748
- "endIndex": 2
2749
- }
2750
- },
2751
- {
2752
- "kind": "PropertySignature",
2753
- "canonicalReference": "@notabene/javascript-sdk!SignatureProof#type:member",
2754
- "docComment": "",
2755
- "excerptTokens": [
2756
- {
2757
- "kind": "Content",
2758
- "text": "type: "
2759
- },
2760
- {
2761
- "kind": "Reference",
2762
- "text": "ProofTypes.PersonalSignEIP191",
2763
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes.PersonalSignEIP191:member"
2764
- },
2765
- {
2766
- "kind": "Content",
2767
- "text": " | "
2768
- },
2769
- {
2770
- "kind": "Reference",
2771
- "text": "ProofTypes.PersonalSignEIP712",
2772
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes.PersonalSignEIP712:member"
2773
- },
2774
- {
2775
- "kind": "Content",
2776
- "text": " | "
2777
- },
2778
- {
2779
- "kind": "Reference",
2780
- "text": "ProofTypes.PersonalSignBIP137",
2781
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes.PersonalSignBIP137:member"
2782
- },
2783
- {
2784
- "kind": "Content",
2785
- "text": " | "
2786
- },
2787
- {
2788
- "kind": "Reference",
2789
- "text": "ProofTypes.PersonalSignXPUB",
2790
- "canonicalReference": "@notabene/javascript-sdk!ProofTypes.PersonalSignXPUB:member"
2791
- },
2792
- {
2793
- "kind": "Content",
2794
- "text": ";"
2795
- }
2796
- ],
2797
- "isReadonly": false,
2798
- "isOptional": false,
2799
- "releaseTag": "Public",
2800
- "name": "type",
2801
- "propertyTypeTokenRange": {
2802
- "startIndex": 1,
2803
- "endIndex": 8
2804
- }
2805
- },
2806
- {
2807
- "kind": "PropertySignature",
2808
- "canonicalReference": "@notabene/javascript-sdk!SignatureProof#wallet_provider:member",
2809
- "docComment": "",
2810
- "excerptTokens": [
2811
- {
2812
- "kind": "Content",
2813
- "text": "wallet_provider: "
2814
- },
2815
- {
2816
- "kind": "Content",
2817
- "text": "string"
2818
- },
2819
- {
2820
- "kind": "Content",
2821
- "text": ";"
2822
- }
2823
- ],
2824
- "isReadonly": false,
2825
- "isOptional": false,
2826
- "releaseTag": "Public",
2827
- "name": "wallet_provider",
2828
- "propertyTypeTokenRange": {
2829
- "startIndex": 1,
2830
- "endIndex": 2
2831
- }
2832
- }
2833
- ],
2834
- "extendsTokenRanges": [
2835
- {
2836
- "startIndex": 1,
2837
- "endIndex": 2
2838
- }
2839
- ]
2840
- },
2841
- {
2842
- "kind": "Enum",
2843
- "canonicalReference": "@notabene/javascript-sdk!Status:enum",
2844
- "docComment": "/**\n * The verification status of a transaction\n *\n * @public\n */\n",
2845
- "excerptTokens": [
2846
- {
2847
- "kind": "Content",
2848
- "text": "export declare enum Status "
2849
- }
2850
- ],
2851
- "fileUrlPath": "ts-out/src/types.d.ts",
2852
- "releaseTag": "Public",
2853
- "name": "Status",
2854
- "preserveMemberOrder": false,
2855
- "members": [
2856
- {
2857
- "kind": "EnumMember",
2858
- "canonicalReference": "@notabene/javascript-sdk!Status.BANNED:member",
2859
- "docComment": "",
2860
- "excerptTokens": [
2861
- {
2862
- "kind": "Content",
2863
- "text": "BANNED = "
2864
- },
2865
- {
2866
- "kind": "Content",
2867
- "text": "\"banned\""
2868
- }
2869
- ],
2870
- "initializerTokenRange": {
2871
- "startIndex": 1,
2872
- "endIndex": 2
2873
- },
2874
- "releaseTag": "Public",
2875
- "name": "BANNED"
2876
- },
2877
- {
2878
- "kind": "EnumMember",
2879
- "canonicalReference": "@notabene/javascript-sdk!Status.EMPTY:member",
2880
- "docComment": "",
2881
- "excerptTokens": [
2882
- {
2883
- "kind": "Content",
2884
- "text": "EMPTY = "
2885
- },
2886
- {
2887
- "kind": "Content",
2888
- "text": "\"empty\""
2889
- }
2890
- ],
2891
- "initializerTokenRange": {
2892
- "startIndex": 1,
2893
- "endIndex": 2
2894
- },
2895
- "releaseTag": "Public",
2896
- "name": "EMPTY"
2897
- },
2898
- {
2899
- "kind": "EnumMember",
2900
- "canonicalReference": "@notabene/javascript-sdk!Status.PENDING:member",
2901
- "docComment": "",
2902
- "excerptTokens": [
2903
- {
2904
- "kind": "Content",
2905
- "text": "PENDING = "
2906
- },
2907
- {
2908
- "kind": "Content",
2909
- "text": "\"pending\""
2910
- }
2911
- ],
2912
- "initializerTokenRange": {
2913
- "startIndex": 1,
2914
- "endIndex": 2
2915
- },
2916
- "releaseTag": "Public",
2917
- "name": "PENDING"
2918
- },
2919
- {
2920
- "kind": "EnumMember",
2921
- "canonicalReference": "@notabene/javascript-sdk!Status.VERIFIED:member",
2922
- "docComment": "",
2923
- "excerptTokens": [
2924
- {
2925
- "kind": "Content",
2926
- "text": "VERIFIED = "
2927
- },
2928
- {
2929
- "kind": "Content",
2930
- "text": "\"verified\""
2931
- }
2932
- ],
2933
- "initializerTokenRange": {
2934
- "startIndex": 1,
2935
- "endIndex": 2
2936
- },
2937
- "releaseTag": "Public",
2938
- "name": "VERIFIED"
2939
- },
2940
- {
2941
- "kind": "EnumMember",
2942
- "canonicalReference": "@notabene/javascript-sdk!Status.VERIFY:member",
2943
- "docComment": "",
2944
- "excerptTokens": [
2945
- {
2946
- "kind": "Content",
2947
- "text": "VERIFY = "
2948
- },
2949
- {
2950
- "kind": "Content",
2951
- "text": "\"verify\""
2952
- }
2953
- ],
2954
- "initializerTokenRange": {
2955
- "startIndex": 1,
2956
- "endIndex": 2
2957
- },
2958
- "releaseTag": "Public",
2959
- "name": "VERIFY"
2960
- }
2961
- ]
2962
- },
2963
- {
2964
- "kind": "TypeAlias",
2965
- "canonicalReference": "@notabene/javascript-sdk!Theme:type",
2966
- "docComment": "/**\n * The theme of the Notabene SDK\n *\n * @public\n */\n",
2967
- "excerptTokens": [
2968
- {
2969
- "kind": "Content",
2970
- "text": "export type Theme = "
2971
- },
2972
- {
2973
- "kind": "Content",
2974
- "text": "{\n primaryColor: string;\n secondaryColor: string;\n fontFamily: string;\n logo: string;\n}"
2975
- },
2976
- {
2977
- "kind": "Content",
2978
- "text": ";"
2979
- }
2980
- ],
2981
- "fileUrlPath": "ts-out/src/types.d.ts",
2982
- "releaseTag": "Public",
2983
- "name": "Theme",
2984
- "typeTokenRange": {
2985
- "startIndex": 1,
2986
- "endIndex": 2
2987
- }
2988
- },
2989
- {
2990
- "kind": "Interface",
2991
- "canonicalReference": "@notabene/javascript-sdk!Transaction:interface",
2992
- "docComment": "/**\n * An abstract transaction object\n *\n * @public\n */\n",
2993
- "excerptTokens": [
2994
- {
2995
- "kind": "Content",
2996
- "text": "export interface Transaction "
2997
- }
2998
- ],
2999
- "fileUrlPath": "ts-out/src/types.d.ts",
3000
- "releaseTag": "Public",
3001
- "name": "Transaction",
3002
- "preserveMemberOrder": false,
3003
- "members": [
3004
- {
3005
- "kind": "PropertySignature",
3006
- "canonicalReference": "@notabene/javascript-sdk!Transaction#agent:member",
3007
- "docComment": "",
3008
- "excerptTokens": [
3009
- {
3010
- "kind": "Content",
3011
- "text": "agent: "
3012
- },
3013
- {
3014
- "kind": "Reference",
3015
- "text": "Agent",
3016
- "canonicalReference": "@notabene/javascript-sdk!Agent:interface"
3017
- },
3018
- {
3019
- "kind": "Content",
3020
- "text": ";"
3021
- }
3022
- ],
3023
- "isReadonly": false,
3024
- "isOptional": false,
3025
- "releaseTag": "Public",
3026
- "name": "agent",
3027
- "propertyTypeTokenRange": {
3028
- "startIndex": 1,
3029
- "endIndex": 2
3030
- }
3031
- },
3032
- {
3033
- "kind": "PropertySignature",
3034
- "canonicalReference": "@notabene/javascript-sdk!Transaction#amountDecimal:member",
3035
- "docComment": "",
3036
- "excerptTokens": [
3037
- {
3038
- "kind": "Content",
3039
- "text": "amountDecimal: "
3040
- },
3041
- {
3042
- "kind": "Content",
3043
- "text": "number"
3044
- },
3045
- {
3046
- "kind": "Content",
3047
- "text": ";"
3048
- }
3049
- ],
3050
- "isReadonly": false,
3051
- "isOptional": false,
3052
- "releaseTag": "Public",
3053
- "name": "amountDecimal",
3054
- "propertyTypeTokenRange": {
3055
- "startIndex": 1,
3056
- "endIndex": 2
3057
- }
3058
- },
3059
- {
3060
- "kind": "PropertySignature",
3061
- "canonicalReference": "@notabene/javascript-sdk!Transaction#asset:member",
3062
- "docComment": "",
3063
- "excerptTokens": [
3064
- {
3065
- "kind": "Content",
3066
- "text": "asset: "
3067
- },
3068
- {
3069
- "kind": "Reference",
3070
- "text": "TransactionAsset",
3071
- "canonicalReference": "@notabene/javascript-sdk!TransactionAsset:type"
3072
- },
3073
- {
3074
- "kind": "Content",
3075
- "text": ";"
3076
- }
3077
- ],
3078
- "isReadonly": false,
3079
- "isOptional": false,
3080
- "releaseTag": "Public",
3081
- "name": "asset",
3082
- "propertyTypeTokenRange": {
3083
- "startIndex": 1,
3084
- "endIndex": 2
3085
- }
3086
- },
3087
- {
3088
- "kind": "PropertySignature",
3089
- "canonicalReference": "@notabene/javascript-sdk!Transaction#counterparty:member",
3090
- "docComment": "",
3091
- "excerptTokens": [
3092
- {
3093
- "kind": "Content",
3094
- "text": "counterparty: "
3095
- },
3096
- {
3097
- "kind": "Reference",
3098
- "text": "Counterparty",
3099
- "canonicalReference": "@notabene/javascript-sdk!Counterparty:interface"
3100
- },
3101
- {
3102
- "kind": "Content",
3103
- "text": ";"
3104
- }
3105
- ],
3106
- "isReadonly": false,
3107
- "isOptional": false,
3108
- "releaseTag": "Public",
3109
- "name": "counterparty",
3110
- "propertyTypeTokenRange": {
3111
- "startIndex": 1,
3112
- "endIndex": 2
3113
- }
3114
- },
3115
- {
3116
- "kind": "PropertySignature",
3117
- "canonicalReference": "@notabene/javascript-sdk!Transaction#customAssetPrice:member",
3118
- "docComment": "",
3119
- "excerptTokens": [
3120
- {
3121
- "kind": "Content",
3122
- "text": "customAssetPrice?: "
3123
- },
3124
- {
3125
- "kind": "Content",
3126
- "text": "{\n price: number;\n currency: string;\n }"
3127
- },
3128
- {
3129
- "kind": "Content",
3130
- "text": ";"
3131
- }
3132
- ],
3133
- "isReadonly": false,
3134
- "isOptional": true,
3135
- "releaseTag": "Public",
3136
- "name": "customAssetPrice",
3137
- "propertyTypeTokenRange": {
3138
- "startIndex": 1,
3139
- "endIndex": 2
3140
- }
3141
- },
3142
- {
3143
- "kind": "PropertySignature",
3144
- "canonicalReference": "@notabene/javascript-sdk!Transaction#customer:member",
3145
- "docComment": "",
3146
- "excerptTokens": [
3147
- {
3148
- "kind": "Content",
3149
- "text": "customer?: "
3150
- },
3151
- {
3152
- "kind": "Reference",
3153
- "text": "Counterparty",
3154
- "canonicalReference": "@notabene/javascript-sdk!Counterparty:interface"
3155
- },
3156
- {
3157
- "kind": "Content",
3158
- "text": ";"
3159
- }
3160
- ],
3161
- "isReadonly": false,
3162
- "isOptional": true,
3163
- "releaseTag": "Public",
3164
- "name": "customer",
3165
- "propertyTypeTokenRange": {
3166
- "startIndex": 1,
3167
- "endIndex": 2
3168
- }
3169
- }
3170
- ],
3171
- "extendsTokenRanges": []
3172
- },
3173
- {
3174
- "kind": "TypeAlias",
3175
- "canonicalReference": "@notabene/javascript-sdk!TransactionAsset:type",
3176
- "docComment": "/**\n * The asset of a transaction either a Notabene asset, a CAIP-19 asset, or a DTI.\n *\n * @public\n */\n",
3177
- "excerptTokens": [
3178
- {
3179
- "kind": "Content",
3180
- "text": "export type TransactionAsset = "
3181
- },
3182
- {
3183
- "kind": "Reference",
3184
- "text": "NotabeneAsset",
3185
- "canonicalReference": "@notabene/javascript-sdk!~NotabeneAsset:type"
3186
- },
3187
- {
3188
- "kind": "Content",
3189
- "text": " | "
3190
- },
3191
- {
3192
- "kind": "Reference",
3193
- "text": "CAIP19",
3194
- "canonicalReference": "@notabene/javascript-sdk!~CAIP19:type"
3195
- },
3196
- {
3197
- "kind": "Content",
3198
- "text": " | "
3199
- },
3200
- {
3201
- "kind": "Reference",
3202
- "text": "DTI",
3203
- "canonicalReference": "@notabene/javascript-sdk!~DTI:type"
3204
- },
3205
- {
3206
- "kind": "Content",
3207
- "text": ";"
3208
- }
3209
- ],
3210
- "fileUrlPath": "ts-out/src/types.d.ts",
3211
- "releaseTag": "Public",
3212
- "name": "TransactionAsset",
3213
- "typeTokenRange": {
3214
- "startIndex": 1,
3215
- "endIndex": 6
3216
- }
3217
- },
3218
- {
3219
- "kind": "TypeAlias",
3220
- "canonicalReference": "@notabene/javascript-sdk!TransactionResponse:type",
3221
- "docComment": "/**\n * The response of a transaction\n *\n * @public\n */\n",
3222
- "excerptTokens": [
3223
- {
3224
- "kind": "Content",
3225
- "text": "export type TransactionResponse = "
3226
- },
3227
- {
3228
- "kind": "Content",
3229
- "text": "{\n value: "
3230
- },
3231
- {
3232
- "kind": "Reference",
3233
- "text": "Transaction",
3234
- "canonicalReference": "@notabene/javascript-sdk!Transaction:interface"
3235
- },
3236
- {
3237
- "kind": "Content",
3238
- "text": ";\n ivms: "
3239
- },
3240
- {
3241
- "kind": "Reference",
3242
- "text": "IVMS101",
3243
- "canonicalReference": "@notabene/javascript-sdk!IVMS101:type"
3244
- },
3245
- {
3246
- "kind": "Content",
3247
- "text": ";\n proof?: "
3248
- },
3249
- {
3250
- "kind": "Reference",
3251
- "text": "OwnershipProof",
3252
- "canonicalReference": "@notabene/javascript-sdk!OwnershipProof:interface"
3253
- },
3254
- {
3255
- "kind": "Content",
3256
- "text": ";\n valid: boolean;\n status: "
3257
- },
3258
- {
3259
- "kind": "Reference",
3260
- "text": "Status",
3261
- "canonicalReference": "@notabene/javascript-sdk!Status:enum"
3262
- },
3263
- {
3264
- "kind": "Content",
3265
- "text": ";\n errors: "
3266
- },
3267
- {
3268
- "kind": "Reference",
3269
- "text": "ValidationError",
3270
- "canonicalReference": "@notabene/javascript-sdk!~ValidationError:type"
3271
- },
3272
- {
3273
- "kind": "Content",
3274
- "text": "[];\n}"
3275
- },
3276
- {
3277
- "kind": "Content",
3278
- "text": ";"
3279
- }
3280
- ],
3281
- "fileUrlPath": "ts-out/src/types.d.ts",
3282
- "releaseTag": "Public",
3283
- "name": "TransactionResponse",
3284
- "typeTokenRange": {
3285
- "startIndex": 1,
3286
- "endIndex": 12
3287
- }
3288
- },
3289
- {
3290
- "kind": "Interface",
3291
- "canonicalReference": "@notabene/javascript-sdk!VASP:interface",
3292
- "docComment": "/**\n * A VASP agent acting on behalf of the counterparty\n *\n * @public\n */\n",
3293
- "excerptTokens": [
3294
- {
3295
- "kind": "Content",
3296
- "text": "export interface VASP extends "
3297
- },
3298
- {
3299
- "kind": "Reference",
3300
- "text": "Agent",
3301
- "canonicalReference": "@notabene/javascript-sdk!Agent:interface"
3302
- },
3303
- {
3304
- "kind": "Content",
3305
- "text": " "
3306
- }
3307
- ],
3308
- "fileUrlPath": "ts-out/src/types.d.ts",
3309
- "releaseTag": "Public",
3310
- "name": "VASP",
3311
- "preserveMemberOrder": false,
3312
- "members": [
3313
- {
3314
- "kind": "PropertySignature",
3315
- "canonicalReference": "@notabene/javascript-sdk!VASP#name:member",
3316
- "docComment": "",
3317
- "excerptTokens": [
3318
- {
3319
- "kind": "Content",
3320
- "text": "name?: "
3321
- },
3322
- {
3323
- "kind": "Content",
3324
- "text": "string"
3325
- },
3326
- {
3327
- "kind": "Content",
3328
- "text": ";"
3329
- }
3330
- ],
3331
- "isReadonly": false,
3332
- "isOptional": true,
3333
- "releaseTag": "Public",
3334
- "name": "name",
3335
- "propertyTypeTokenRange": {
3336
- "startIndex": 1,
3337
- "endIndex": 2
3338
- }
3339
- },
3340
- {
3341
- "kind": "PropertySignature",
3342
- "canonicalReference": "@notabene/javascript-sdk!VASP#url:member",
3343
- "docComment": "",
3344
- "excerptTokens": [
3345
- {
3346
- "kind": "Content",
3347
- "text": "url?: "
3348
- },
3349
- {
3350
- "kind": "Content",
3351
- "text": "string"
3352
- },
3353
- {
3354
- "kind": "Content",
3355
- "text": ";"
3356
- }
3357
- ],
3358
- "isReadonly": false,
3359
- "isOptional": true,
3360
- "releaseTag": "Public",
3361
- "name": "url",
3362
- "propertyTypeTokenRange": {
3363
- "startIndex": 1,
3364
- "endIndex": 2
3365
- }
3366
- }
3367
- ],
3368
- "extendsTokenRanges": [
3369
- {
3370
- "startIndex": 1,
3371
- "endIndex": 2
3372
- }
3373
- ]
3374
- },
3375
- {
3376
- "kind": "Interface",
3377
- "canonicalReference": "@notabene/javascript-sdk!Wallet:interface",
3378
- "docComment": "/**\n * A wallet agent acting on behalf of the counterparty\n *\n * @public\n */\n",
3379
- "excerptTokens": [
3380
- {
3381
- "kind": "Content",
3382
- "text": "export interface Wallet extends "
3383
- },
3384
- {
3385
- "kind": "Reference",
3386
- "text": "Agent",
3387
- "canonicalReference": "@notabene/javascript-sdk!Agent:interface"
3388
- },
3389
- {
3390
- "kind": "Content",
3391
- "text": " "
3392
- }
3393
- ],
3394
- "fileUrlPath": "ts-out/src/types.d.ts",
3395
- "releaseTag": "Public",
3396
- "name": "Wallet",
3397
- "preserveMemberOrder": false,
3398
- "members": [
3399
- {
3400
- "kind": "PropertySignature",
3401
- "canonicalReference": "@notabene/javascript-sdk!Wallet#proof:member",
3402
- "docComment": "",
3403
- "excerptTokens": [
3404
- {
3405
- "kind": "Content",
3406
- "text": "proof: "
3407
- },
3408
- {
3409
- "kind": "Reference",
3410
- "text": "OwnershipProof",
3411
- "canonicalReference": "@notabene/javascript-sdk!OwnershipProof:interface"
3412
- },
3413
- {
3414
- "kind": "Content",
3415
- "text": ";"
3416
- }
3417
- ],
3418
- "isReadonly": false,
3419
- "isOptional": false,
3420
- "releaseTag": "Public",
3421
- "name": "proof",
3422
- "propertyTypeTokenRange": {
3423
- "startIndex": 1,
3424
- "endIndex": 2
3425
- }
3426
- },
3427
- {
3428
- "kind": "PropertySignature",
3429
- "canonicalReference": "@notabene/javascript-sdk!Wallet#wallet_connect_id:member",
3430
- "docComment": "",
3431
- "excerptTokens": [
3432
- {
3433
- "kind": "Content",
3434
- "text": "wallet_connect_id?: "
3435
- },
3436
- {
3437
- "kind": "Content",
3438
- "text": "string"
3439
- },
3440
- {
3441
- "kind": "Content",
3442
- "text": ";"
3443
- }
3444
- ],
3445
- "isReadonly": false,
3446
- "isOptional": true,
3447
- "releaseTag": "Public",
3448
- "name": "wallet_connect_id",
3449
- "propertyTypeTokenRange": {
3450
- "startIndex": 1,
3451
- "endIndex": 2
3452
- }
3453
- }
3454
- ],
3455
- "extendsTokenRanges": [
3456
- {
3457
- "startIndex": 1,
3458
- "endIndex": 2
3459
- }
3460
- ]
3461
- },
3462
- {
3463
- "kind": "Interface",
3464
- "canonicalReference": "@notabene/javascript-sdk!Withdrawal:interface",
3465
- "docComment": "/**\n * An object representing a withdrawal transaction\n *\n * @public\n */\n",
3466
- "excerptTokens": [
3467
- {
3468
- "kind": "Content",
3469
- "text": "export interface Withdrawal extends "
3470
- },
3471
- {
3472
- "kind": "Reference",
3473
- "text": "BeneficiaryFields",
3474
- "canonicalReference": "@notabene/javascript-sdk!~BeneficiaryFields:type"
3475
- },
3476
- {
3477
- "kind": "Content",
3478
- "text": ", "
3479
- },
3480
- {
3481
- "kind": "Reference",
3482
- "text": "Transaction",
3483
- "canonicalReference": "@notabene/javascript-sdk!Transaction:interface"
3484
- },
3485
- {
3486
- "kind": "Content",
3487
- "text": " "
3488
- }
3489
- ],
3490
- "fileUrlPath": "ts-out/src/types.d.ts",
3491
- "releaseTag": "Public",
3492
- "name": "Withdrawal",
3493
- "preserveMemberOrder": false,
3494
- "members": [],
3495
- "extendsTokenRanges": [
3496
- {
3497
- "startIndex": 1,
3498
- "endIndex": 2
3499
- },
3500
- {
3501
- "startIndex": 3,
3502
- "endIndex": 4
3503
- }
3504
- ]
3505
- }
3506
- ]
3507
- }
3508
- ]
3509
- }