@nirvana-labs/nirvana 1.12.0 → 1.13.1

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 (85) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/client.d.mts.map +1 -1
  3. package/client.d.ts.map +1 -1
  4. package/client.js +1 -1
  5. package/client.js.map +1 -1
  6. package/client.mjs +1 -1
  7. package/client.mjs.map +1 -1
  8. package/package.json +4 -5
  9. package/resources/api-keys.d.mts +2 -2
  10. package/resources/api-keys.d.ts +2 -2
  11. package/resources/api-keys.js +2 -2
  12. package/resources/api-keys.mjs +2 -2
  13. package/resources/connect/flux.d.mts +1 -1
  14. package/resources/connect/flux.d.ts +1 -1
  15. package/resources/connect/flux.js +1 -1
  16. package/resources/connect/flux.mjs +1 -1
  17. package/resources/networking/firewall-rules.d.mts +11 -7
  18. package/resources/networking/firewall-rules.d.mts.map +1 -1
  19. package/resources/networking/firewall-rules.d.ts +11 -7
  20. package/resources/networking/firewall-rules.d.ts.map +1 -1
  21. package/resources/networking/firewall-rules.js +1 -1
  22. package/resources/networking/firewall-rules.mjs +1 -1
  23. package/resources/rpc-nodes/dedicated/dedicated.d.mts +31 -2
  24. package/resources/rpc-nodes/dedicated/dedicated.d.mts.map +1 -1
  25. package/resources/rpc-nodes/dedicated/dedicated.d.ts +31 -2
  26. package/resources/rpc-nodes/dedicated/dedicated.d.ts.map +1 -1
  27. package/resources/rpc-nodes/dedicated/dedicated.js.map +1 -1
  28. package/resources/rpc-nodes/dedicated/dedicated.mjs.map +1 -1
  29. package/resources/rpc-nodes/flex/flex.d.mts +31 -2
  30. package/resources/rpc-nodes/flex/flex.d.mts.map +1 -1
  31. package/resources/rpc-nodes/flex/flex.d.ts +31 -2
  32. package/resources/rpc-nodes/flex/flex.d.ts.map +1 -1
  33. package/resources/rpc-nodes/flex/flex.js.map +1 -1
  34. package/resources/rpc-nodes/flex/flex.mjs.map +1 -1
  35. package/resources/shared.d.mts +1 -1
  36. package/resources/shared.d.mts.map +1 -1
  37. package/resources/shared.d.ts +1 -1
  38. package/resources/shared.d.ts.map +1 -1
  39. package/resources/vektor/executions/steps.d.mts +348 -72
  40. package/resources/vektor/executions/steps.d.mts.map +1 -1
  41. package/resources/vektor/executions/steps.d.ts +348 -72
  42. package/resources/vektor/executions/steps.d.ts.map +1 -1
  43. package/resources/vektor/registry/errors.d.mts +4 -9
  44. package/resources/vektor/registry/errors.d.mts.map +1 -1
  45. package/resources/vektor/registry/errors.d.ts +4 -9
  46. package/resources/vektor/registry/errors.d.ts.map +1 -1
  47. package/resources/vektor/registry/errors.js +2 -1
  48. package/resources/vektor/registry/errors.js.map +1 -1
  49. package/resources/vektor/registry/errors.mjs +2 -1
  50. package/resources/vektor/registry/errors.mjs.map +1 -1
  51. package/resources/vektor/registry/index.d.mts +1 -1
  52. package/resources/vektor/registry/index.d.mts.map +1 -1
  53. package/resources/vektor/registry/index.d.ts +1 -1
  54. package/resources/vektor/registry/index.d.ts.map +1 -1
  55. package/resources/vektor/registry/index.js.map +1 -1
  56. package/resources/vektor/registry/index.mjs.map +1 -1
  57. package/resources/vektor/registry/registry.d.mts +2 -2
  58. package/resources/vektor/registry/registry.d.mts.map +1 -1
  59. package/resources/vektor/registry/registry.d.ts +2 -2
  60. package/resources/vektor/registry/registry.d.ts.map +1 -1
  61. package/resources/vektor/registry/registry.js.map +1 -1
  62. package/resources/vektor/registry/registry.mjs.map +1 -1
  63. package/resources/vektor/vektor.d.mts +397 -84
  64. package/resources/vektor/vektor.d.mts.map +1 -1
  65. package/resources/vektor/vektor.d.ts +397 -84
  66. package/resources/vektor/vektor.d.ts.map +1 -1
  67. package/resources/vektor/vektor.js.map +1 -1
  68. package/resources/vektor/vektor.mjs.map +1 -1
  69. package/src/client.ts +3 -1
  70. package/src/resources/api-keys.ts +2 -2
  71. package/src/resources/connect/flux.ts +1 -1
  72. package/src/resources/networking/firewall-rules.ts +11 -7
  73. package/src/resources/rpc-nodes/dedicated/dedicated.ts +31 -3
  74. package/src/resources/rpc-nodes/flex/flex.ts +31 -3
  75. package/src/resources/shared.ts +0 -2
  76. package/src/resources/vektor/executions/steps.ts +372 -48
  77. package/src/resources/vektor/registry/errors.ts +4 -10
  78. package/src/resources/vektor/registry/index.ts +1 -1
  79. package/src/resources/vektor/registry/registry.ts +2 -6
  80. package/src/resources/vektor/vektor.ts +428 -58
  81. package/src/version.ts +1 -1
  82. package/version.d.mts +1 -1
  83. package/version.d.ts +1 -1
  84. package/version.js +1 -1
  85. package/version.mjs +1 -1
@@ -146,7 +146,7 @@ export namespace StepGetResponse {
146
146
  effective_gas_price: string | null;
147
147
 
148
148
  /**
149
- * An error
149
+ * Vektor error
150
150
  */
151
151
  error: ExecutionEVMTransactionApprove.Error | null;
152
152
 
@@ -213,24 +213,51 @@ export namespace StepGetResponse {
213
213
 
214
214
  export namespace ExecutionEVMTransactionApprove {
215
215
  /**
216
- * An error
216
+ * Vektor error
217
217
  */
218
218
  export interface Error {
219
+ /**
220
+ * Error context
221
+ */
222
+ context: Error.Context;
223
+
219
224
  /**
220
225
  * Error message
221
226
  */
222
227
  message: string;
223
228
 
224
229
  /**
225
- * Error parameters
230
+ * Request ID
231
+ */
232
+ request_id: string;
233
+
234
+ /**
235
+ * Error resource
226
236
  */
227
- params: { [key: string]: unknown };
237
+ resource: string | null;
238
+
239
+ /**
240
+ * ISO8601 Timestamp
241
+ */
242
+ timestamp: VektorAPI.Timestamp;
228
243
 
229
244
  /**
230
245
  * Error type
231
246
  */
232
247
  type: string;
233
248
  }
249
+
250
+ export namespace Error {
251
+ /**
252
+ * Error context
253
+ */
254
+ export interface Context {
255
+ /**
256
+ * Error parameters
257
+ */
258
+ parameters: { [key: string]: unknown };
259
+ }
260
+ }
234
261
  }
235
262
 
236
263
  /**
@@ -277,7 +304,7 @@ export namespace StepGetResponse {
277
304
  effective_gas_price: string | null;
278
305
 
279
306
  /**
280
- * An error
307
+ * Vektor error
281
308
  */
282
309
  error: ExecutionEVMTransactionBorrow.Error | null;
283
310
 
@@ -345,24 +372,51 @@ export namespace StepGetResponse {
345
372
 
346
373
  export namespace ExecutionEVMTransactionBorrow {
347
374
  /**
348
- * An error
375
+ * Vektor error
349
376
  */
350
377
  export interface Error {
378
+ /**
379
+ * Error context
380
+ */
381
+ context: Error.Context;
382
+
351
383
  /**
352
384
  * Error message
353
385
  */
354
386
  message: string;
355
387
 
356
388
  /**
357
- * Error parameters
389
+ * Request ID
358
390
  */
359
- params: { [key: string]: unknown };
391
+ request_id: string;
392
+
393
+ /**
394
+ * Error resource
395
+ */
396
+ resource: string | null;
397
+
398
+ /**
399
+ * ISO8601 Timestamp
400
+ */
401
+ timestamp: VektorAPI.Timestamp;
360
402
 
361
403
  /**
362
404
  * Error type
363
405
  */
364
406
  type: string;
365
407
  }
408
+
409
+ export namespace Error {
410
+ /**
411
+ * Error context
412
+ */
413
+ export interface Context {
414
+ /**
415
+ * Error parameters
416
+ */
417
+ parameters: { [key: string]: unknown };
418
+ }
419
+ }
366
420
  }
367
421
 
368
422
  /**
@@ -409,7 +463,7 @@ export namespace StepGetResponse {
409
463
  effective_gas_price: string | null;
410
464
 
411
465
  /**
412
- * An error
466
+ * Vektor error
413
467
  */
414
468
  error: ExecutionEVMTransactionBorrowRepay.Error | null;
415
469
 
@@ -472,24 +526,51 @@ export namespace StepGetResponse {
472
526
 
473
527
  export namespace ExecutionEVMTransactionBorrowRepay {
474
528
  /**
475
- * An error
529
+ * Vektor error
476
530
  */
477
531
  export interface Error {
532
+ /**
533
+ * Error context
534
+ */
535
+ context: Error.Context;
536
+
478
537
  /**
479
538
  * Error message
480
539
  */
481
540
  message: string;
482
541
 
483
542
  /**
484
- * Error parameters
543
+ * Request ID
485
544
  */
486
- params: { [key: string]: unknown };
545
+ request_id: string;
546
+
547
+ /**
548
+ * Error resource
549
+ */
550
+ resource: string | null;
551
+
552
+ /**
553
+ * ISO8601 Timestamp
554
+ */
555
+ timestamp: VektorAPI.Timestamp;
487
556
 
488
557
  /**
489
558
  * Error type
490
559
  */
491
560
  type: string;
492
561
  }
562
+
563
+ export namespace Error {
564
+ /**
565
+ * Error context
566
+ */
567
+ export interface Context {
568
+ /**
569
+ * Error parameters
570
+ */
571
+ parameters: { [key: string]: unknown };
572
+ }
573
+ }
493
574
  }
494
575
 
495
576
  /**
@@ -531,7 +612,7 @@ export namespace StepGetResponse {
531
612
  effective_gas_price: string | null;
532
613
 
533
614
  /**
534
- * An error
615
+ * Vektor error
535
616
  */
536
617
  error: ExecutionEVMTransactionBuy.Error | null;
537
618
 
@@ -603,24 +684,51 @@ export namespace StepGetResponse {
603
684
 
604
685
  export namespace ExecutionEVMTransactionBuy {
605
686
  /**
606
- * An error
687
+ * Vektor error
607
688
  */
608
689
  export interface Error {
690
+ /**
691
+ * Error context
692
+ */
693
+ context: Error.Context;
694
+
609
695
  /**
610
696
  * Error message
611
697
  */
612
698
  message: string;
613
699
 
614
700
  /**
615
- * Error parameters
701
+ * Request ID
702
+ */
703
+ request_id: string;
704
+
705
+ /**
706
+ * Error resource
616
707
  */
617
- params: { [key: string]: unknown };
708
+ resource: string | null;
709
+
710
+ /**
711
+ * ISO8601 Timestamp
712
+ */
713
+ timestamp: VektorAPI.Timestamp;
618
714
 
619
715
  /**
620
716
  * Error type
621
717
  */
622
718
  type: string;
623
719
  }
720
+
721
+ export namespace Error {
722
+ /**
723
+ * Error context
724
+ */
725
+ export interface Context {
726
+ /**
727
+ * Error parameters
728
+ */
729
+ parameters: { [key: string]: unknown };
730
+ }
731
+ }
624
732
  }
625
733
 
626
734
  /**
@@ -667,7 +775,7 @@ export namespace StepGetResponse {
667
775
  effective_gas_price: string | null;
668
776
 
669
777
  /**
670
- * An error
778
+ * Vektor error
671
779
  */
672
780
  error: ExecutionEVMTransactionLend.Error | null;
673
781
 
@@ -735,24 +843,51 @@ export namespace StepGetResponse {
735
843
 
736
844
  export namespace ExecutionEVMTransactionLend {
737
845
  /**
738
- * An error
846
+ * Vektor error
739
847
  */
740
848
  export interface Error {
849
+ /**
850
+ * Error context
851
+ */
852
+ context: Error.Context;
853
+
741
854
  /**
742
855
  * Error message
743
856
  */
744
857
  message: string;
745
858
 
746
859
  /**
747
- * Error parameters
860
+ * Request ID
748
861
  */
749
- params: { [key: string]: unknown };
862
+ request_id: string;
863
+
864
+ /**
865
+ * Error resource
866
+ */
867
+ resource: string | null;
868
+
869
+ /**
870
+ * ISO8601 Timestamp
871
+ */
872
+ timestamp: VektorAPI.Timestamp;
750
873
 
751
874
  /**
752
875
  * Error type
753
876
  */
754
877
  type: string;
755
878
  }
879
+
880
+ export namespace Error {
881
+ /**
882
+ * Error context
883
+ */
884
+ export interface Context {
885
+ /**
886
+ * Error parameters
887
+ */
888
+ parameters: { [key: string]: unknown };
889
+ }
890
+ }
756
891
  }
757
892
 
758
893
  /**
@@ -789,7 +924,7 @@ export namespace StepGetResponse {
789
924
  effective_gas_price: string | null;
790
925
 
791
926
  /**
792
- * An error
927
+ * Vektor error
793
928
  */
794
929
  error: ExecutionEVMTransactionLendSetCollateral.Error | null;
795
930
 
@@ -854,24 +989,51 @@ export namespace StepGetResponse {
854
989
 
855
990
  export namespace ExecutionEVMTransactionLendSetCollateral {
856
991
  /**
857
- * An error
992
+ * Vektor error
858
993
  */
859
994
  export interface Error {
995
+ /**
996
+ * Error context
997
+ */
998
+ context: Error.Context;
999
+
860
1000
  /**
861
1001
  * Error message
862
1002
  */
863
1003
  message: string;
864
1004
 
865
1005
  /**
866
- * Error parameters
1006
+ * Request ID
867
1007
  */
868
- params: { [key: string]: unknown };
1008
+ request_id: string;
1009
+
1010
+ /**
1011
+ * Error resource
1012
+ */
1013
+ resource: string | null;
1014
+
1015
+ /**
1016
+ * ISO8601 Timestamp
1017
+ */
1018
+ timestamp: VektorAPI.Timestamp;
869
1019
 
870
1020
  /**
871
1021
  * Error type
872
1022
  */
873
1023
  type: string;
874
1024
  }
1025
+
1026
+ export namespace Error {
1027
+ /**
1028
+ * Error context
1029
+ */
1030
+ export interface Context {
1031
+ /**
1032
+ * Error parameters
1033
+ */
1034
+ parameters: { [key: string]: unknown };
1035
+ }
1036
+ }
875
1037
  }
876
1038
 
877
1039
  /**
@@ -918,7 +1080,7 @@ export namespace StepGetResponse {
918
1080
  effective_gas_price: string | null;
919
1081
 
920
1082
  /**
921
- * An error
1083
+ * Vektor error
922
1084
  */
923
1085
  error: ExecutionEVMTransactionLendWithdraw.Error | null;
924
1086
 
@@ -981,24 +1143,51 @@ export namespace StepGetResponse {
981
1143
 
982
1144
  export namespace ExecutionEVMTransactionLendWithdraw {
983
1145
  /**
984
- * An error
1146
+ * Vektor error
985
1147
  */
986
1148
  export interface Error {
1149
+ /**
1150
+ * Error context
1151
+ */
1152
+ context: Error.Context;
1153
+
987
1154
  /**
988
1155
  * Error message
989
1156
  */
990
1157
  message: string;
991
1158
 
992
1159
  /**
993
- * Error parameters
1160
+ * Request ID
1161
+ */
1162
+ request_id: string;
1163
+
1164
+ /**
1165
+ * Error resource
994
1166
  */
995
- params: { [key: string]: unknown };
1167
+ resource: string | null;
1168
+
1169
+ /**
1170
+ * ISO8601 Timestamp
1171
+ */
1172
+ timestamp: VektorAPI.Timestamp;
996
1173
 
997
1174
  /**
998
1175
  * Error type
999
1176
  */
1000
1177
  type: string;
1001
1178
  }
1179
+
1180
+ export namespace Error {
1181
+ /**
1182
+ * Error context
1183
+ */
1184
+ export interface Context {
1185
+ /**
1186
+ * Error parameters
1187
+ */
1188
+ parameters: { [key: string]: unknown };
1189
+ }
1190
+ }
1002
1191
  }
1003
1192
 
1004
1193
  /**
@@ -1045,7 +1234,7 @@ export namespace StepGetResponse {
1045
1234
  effective_gas_price: string | null;
1046
1235
 
1047
1236
  /**
1048
- * An error
1237
+ * Vektor error
1049
1238
  */
1050
1239
  error: ExecutionEVMTransactionMove.Error | null;
1051
1240
 
@@ -1102,24 +1291,51 @@ export namespace StepGetResponse {
1102
1291
 
1103
1292
  export namespace ExecutionEVMTransactionMove {
1104
1293
  /**
1105
- * An error
1294
+ * Vektor error
1106
1295
  */
1107
1296
  export interface Error {
1297
+ /**
1298
+ * Error context
1299
+ */
1300
+ context: Error.Context;
1301
+
1108
1302
  /**
1109
1303
  * Error message
1110
1304
  */
1111
1305
  message: string;
1112
1306
 
1113
1307
  /**
1114
- * Error parameters
1308
+ * Request ID
1115
1309
  */
1116
- params: { [key: string]: unknown };
1310
+ request_id: string;
1311
+
1312
+ /**
1313
+ * Error resource
1314
+ */
1315
+ resource: string | null;
1316
+
1317
+ /**
1318
+ * ISO8601 Timestamp
1319
+ */
1320
+ timestamp: VektorAPI.Timestamp;
1117
1321
 
1118
1322
  /**
1119
1323
  * Error type
1120
1324
  */
1121
1325
  type: string;
1122
1326
  }
1327
+
1328
+ export namespace Error {
1329
+ /**
1330
+ * Error context
1331
+ */
1332
+ export interface Context {
1333
+ /**
1334
+ * Error parameters
1335
+ */
1336
+ parameters: { [key: string]: unknown };
1337
+ }
1338
+ }
1123
1339
  }
1124
1340
 
1125
1341
  /**
@@ -1161,7 +1377,7 @@ export namespace StepGetResponse {
1161
1377
  effective_gas_price: string | null;
1162
1378
 
1163
1379
  /**
1164
- * An error
1380
+ * Vektor error
1165
1381
  */
1166
1382
  error: ExecutionEVMTransactionPermission.Error | null;
1167
1383
 
@@ -1236,24 +1452,51 @@ export namespace StepGetResponse {
1236
1452
 
1237
1453
  export namespace ExecutionEVMTransactionPermission {
1238
1454
  /**
1239
- * An error
1455
+ * Vektor error
1240
1456
  */
1241
1457
  export interface Error {
1458
+ /**
1459
+ * Error context
1460
+ */
1461
+ context: Error.Context;
1462
+
1242
1463
  /**
1243
1464
  * Error message
1244
1465
  */
1245
1466
  message: string;
1246
1467
 
1247
1468
  /**
1248
- * Error parameters
1469
+ * Request ID
1249
1470
  */
1250
- params: { [key: string]: unknown };
1471
+ request_id: string;
1472
+
1473
+ /**
1474
+ * Error resource
1475
+ */
1476
+ resource: string | null;
1477
+
1478
+ /**
1479
+ * ISO8601 Timestamp
1480
+ */
1481
+ timestamp: VektorAPI.Timestamp;
1251
1482
 
1252
1483
  /**
1253
1484
  * Error type
1254
1485
  */
1255
1486
  type: string;
1256
1487
  }
1488
+
1489
+ export namespace Error {
1490
+ /**
1491
+ * Error context
1492
+ */
1493
+ export interface Context {
1494
+ /**
1495
+ * Error parameters
1496
+ */
1497
+ parameters: { [key: string]: unknown };
1498
+ }
1499
+ }
1257
1500
  }
1258
1501
 
1259
1502
  /**
@@ -1295,7 +1538,7 @@ export namespace StepGetResponse {
1295
1538
  effective_gas_price: string | null;
1296
1539
 
1297
1540
  /**
1298
- * An error
1541
+ * Vektor error
1299
1542
  */
1300
1543
  error: ExecutionEVMTransactionUnwrap.Error | null;
1301
1544
 
@@ -1352,24 +1595,51 @@ export namespace StepGetResponse {
1352
1595
 
1353
1596
  export namespace ExecutionEVMTransactionUnwrap {
1354
1597
  /**
1355
- * An error
1598
+ * Vektor error
1356
1599
  */
1357
1600
  export interface Error {
1601
+ /**
1602
+ * Error context
1603
+ */
1604
+ context: Error.Context;
1605
+
1358
1606
  /**
1359
1607
  * Error message
1360
1608
  */
1361
1609
  message: string;
1362
1610
 
1363
1611
  /**
1364
- * Error parameters
1612
+ * Request ID
1613
+ */
1614
+ request_id: string;
1615
+
1616
+ /**
1617
+ * Error resource
1365
1618
  */
1366
- params: { [key: string]: unknown };
1619
+ resource: string | null;
1620
+
1621
+ /**
1622
+ * ISO8601 Timestamp
1623
+ */
1624
+ timestamp: VektorAPI.Timestamp;
1367
1625
 
1368
1626
  /**
1369
1627
  * Error type
1370
1628
  */
1371
1629
  type: string;
1372
1630
  }
1631
+
1632
+ export namespace Error {
1633
+ /**
1634
+ * Error context
1635
+ */
1636
+ export interface Context {
1637
+ /**
1638
+ * Error parameters
1639
+ */
1640
+ parameters: { [key: string]: unknown };
1641
+ }
1642
+ }
1373
1643
  }
1374
1644
 
1375
1645
  /**
@@ -1411,7 +1681,7 @@ export namespace StepGetResponse {
1411
1681
  effective_gas_price: string | null;
1412
1682
 
1413
1683
  /**
1414
- * An error
1684
+ * Vektor error
1415
1685
  */
1416
1686
  error: ExecutionEVMTransactionWrap.Error | null;
1417
1687
 
@@ -1468,24 +1738,51 @@ export namespace StepGetResponse {
1468
1738
 
1469
1739
  export namespace ExecutionEVMTransactionWrap {
1470
1740
  /**
1471
- * An error
1741
+ * Vektor error
1472
1742
  */
1473
1743
  export interface Error {
1744
+ /**
1745
+ * Error context
1746
+ */
1747
+ context: Error.Context;
1748
+
1474
1749
  /**
1475
1750
  * Error message
1476
1751
  */
1477
1752
  message: string;
1478
1753
 
1479
1754
  /**
1480
- * Error parameters
1755
+ * Request ID
1481
1756
  */
1482
- params: { [key: string]: unknown };
1757
+ request_id: string;
1758
+
1759
+ /**
1760
+ * Error resource
1761
+ */
1762
+ resource: string | null;
1763
+
1764
+ /**
1765
+ * ISO8601 Timestamp
1766
+ */
1767
+ timestamp: VektorAPI.Timestamp;
1483
1768
 
1484
1769
  /**
1485
1770
  * Error type
1486
1771
  */
1487
1772
  type: string;
1488
1773
  }
1774
+
1775
+ export namespace Error {
1776
+ /**
1777
+ * Error context
1778
+ */
1779
+ export interface Context {
1780
+ /**
1781
+ * Error parameters
1782
+ */
1783
+ parameters: { [key: string]: unknown };
1784
+ }
1785
+ }
1489
1786
  }
1490
1787
 
1491
1788
  /**
@@ -1527,7 +1824,7 @@ export namespace StepGetResponse {
1527
1824
  effective_gas_price: string | null;
1528
1825
 
1529
1826
  /**
1530
- * An error
1827
+ * Vektor error
1531
1828
  */
1532
1829
  error: ExecutionEVMTransactionSell.Error | null;
1533
1830
 
@@ -1599,24 +1896,51 @@ export namespace StepGetResponse {
1599
1896
 
1600
1897
  export namespace ExecutionEVMTransactionSell {
1601
1898
  /**
1602
- * An error
1899
+ * Vektor error
1603
1900
  */
1604
1901
  export interface Error {
1902
+ /**
1903
+ * Error context
1904
+ */
1905
+ context: Error.Context;
1906
+
1605
1907
  /**
1606
1908
  * Error message
1607
1909
  */
1608
1910
  message: string;
1609
1911
 
1610
1912
  /**
1611
- * Error parameters
1913
+ * Request ID
1612
1914
  */
1613
- params: { [key: string]: unknown };
1915
+ request_id: string;
1916
+
1917
+ /**
1918
+ * Error resource
1919
+ */
1920
+ resource: string | null;
1921
+
1922
+ /**
1923
+ * ISO8601 Timestamp
1924
+ */
1925
+ timestamp: VektorAPI.Timestamp;
1614
1926
 
1615
1927
  /**
1616
1928
  * Error type
1617
1929
  */
1618
1930
  type: string;
1619
1931
  }
1932
+
1933
+ export namespace Error {
1934
+ /**
1935
+ * Error context
1936
+ */
1937
+ export interface Context {
1938
+ /**
1939
+ * Error parameters
1940
+ */
1941
+ parameters: { [key: string]: unknown };
1942
+ }
1943
+ }
1620
1944
  }
1621
1945
  }
1622
1946