@lightsparkdev/lightspark-sdk 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/{chunk-VTPDR6P4.js → chunk-GLL4KTUT.js} +353 -15
- package/dist/{index-5acc6526.d.ts → index-eb604025.d.ts} +662 -3
- package/dist/index.cjs +654 -76
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +265 -17
- package/dist/objects/index.cjs +345 -5
- package/dist/objects/index.d.cts +1 -1
- package/dist/objects/index.d.ts +1 -1
- package/dist/objects/index.js +9 -1
- package/package.json +1 -1
- package/src/client.ts +194 -1
- package/src/graphql/ClaimUmaInvitation.ts +21 -0
- package/src/graphql/ClaimUmaInvitationWithIncentives.ts +25 -0
- package/src/graphql/CreateUmaInvitation.ts +19 -0
- package/src/graphql/CreateUmaInvitationWithIncentives.ts +23 -0
- package/src/graphql/FetchUmaInvitation.ts +15 -0
- package/src/objects/ClaimUmaInvitationInput.ts +26 -0
- package/src/objects/ClaimUmaInvitationOutput.ts +30 -0
- package/src/objects/ClaimUmaInvitationWithIncentivesInput.ts +44 -0
- package/src/objects/ClaimUmaInvitationWithIncentivesOutput.ts +33 -0
- package/src/objects/CreateInvitationWithIncentivesInput.ts +37 -0
- package/src/objects/CreateInvitationWithIncentivesOutput.ts +32 -0
- package/src/objects/CreateUmaInvitationInput.ts +22 -0
- package/src/objects/CreateUmaInvitationOutput.ts +30 -0
- package/src/objects/Entity.ts +13 -0
- package/src/objects/IncentivesIneligibilityReason.ts +24 -0
- package/src/objects/IncentivesStatus.ts +18 -0
- package/src/objects/OutgoingPayment.ts +1 -0
- package/src/objects/OutgoingPaymentAttempt.ts +6 -1
- package/src/objects/RegionCode.ts +510 -0
- package/src/objects/UmaInvitation.ts +113 -0
- package/src/objects/WebhookEventType.ts +4 -0
- package/src/objects/index.ts +15 -0
- package/src/tests/integration/constants.ts +0 -3
- package/src/tests/integration/general-regtest.test.ts +177 -196
|
@@ -1393,12 +1393,14 @@ declare class OutgoingPaymentAttempt implements Entity {
|
|
|
1393
1393
|
* string.
|
|
1394
1394
|
**/
|
|
1395
1395
|
readonly id: string;
|
|
1396
|
-
/** The date and time when the
|
|
1396
|
+
/** The date and time when the entity was first created. **/
|
|
1397
1397
|
readonly createdAt: string;
|
|
1398
1398
|
/** The date and time when the entity was last updated. **/
|
|
1399
1399
|
readonly updatedAt: string;
|
|
1400
1400
|
/** The status of an outgoing payment attempt. **/
|
|
1401
1401
|
readonly status: OutgoingPaymentAttemptStatus;
|
|
1402
|
+
/** The date and time when the attempt was initiated. **/
|
|
1403
|
+
readonly attemptedAt: string;
|
|
1402
1404
|
/** The outgoing payment for this attempt. **/
|
|
1403
1405
|
readonly outgoingPaymentId: string;
|
|
1404
1406
|
/** The typename of the object **/
|
|
@@ -1432,12 +1434,14 @@ declare class OutgoingPaymentAttempt implements Entity {
|
|
|
1432
1434
|
* string.
|
|
1433
1435
|
**/
|
|
1434
1436
|
id: string,
|
|
1435
|
-
/** The date and time when the
|
|
1437
|
+
/** The date and time when the entity was first created. **/
|
|
1436
1438
|
createdAt: string,
|
|
1437
1439
|
/** The date and time when the entity was last updated. **/
|
|
1438
1440
|
updatedAt: string,
|
|
1439
1441
|
/** The status of an outgoing payment attempt. **/
|
|
1440
1442
|
status: OutgoingPaymentAttemptStatus,
|
|
1443
|
+
/** The date and time when the attempt was initiated. **/
|
|
1444
|
+
attemptedAt: string,
|
|
1441
1445
|
/** The outgoing payment for this attempt. **/
|
|
1442
1446
|
outgoingPaymentId: string,
|
|
1443
1447
|
/** The typename of the object **/
|
|
@@ -1475,6 +1479,7 @@ declare class OutgoingPaymentAttempt implements Entity {
|
|
|
1475
1479
|
outgoing_payment_attempt_status: OutgoingPaymentAttemptStatus;
|
|
1476
1480
|
outgoing_payment_attempt_failure_code: HtlcAttemptFailureCode | undefined;
|
|
1477
1481
|
outgoing_payment_attempt_failure_source_index: number | undefined;
|
|
1482
|
+
outgoing_payment_attempt_attempted_at: string;
|
|
1478
1483
|
outgoing_payment_attempt_resolved_at: string | undefined;
|
|
1479
1484
|
outgoing_payment_attempt_amount: any;
|
|
1480
1485
|
outgoing_payment_attempt_fees: any;
|
|
@@ -1603,6 +1608,513 @@ declare class OutgoingPayment implements LightningTransaction, Transaction, Enti
|
|
|
1603
1608
|
};
|
|
1604
1609
|
}
|
|
1605
1610
|
|
|
1611
|
+
/** The alpha-2 representation of a country, as defined by the ISO 3166-1 standard. **/
|
|
1612
|
+
declare enum RegionCode {
|
|
1613
|
+
/**
|
|
1614
|
+
* This is an enum value that represents values that could be added in the future.
|
|
1615
|
+
* Clients should support unknown values as more of them could be added without notice.
|
|
1616
|
+
*/
|
|
1617
|
+
FUTURE_VALUE = "FUTURE_VALUE",
|
|
1618
|
+
/** The code representing the country of Afghanistan. **/
|
|
1619
|
+
AF = "AF",
|
|
1620
|
+
/** The code representing the country of Åland Islands. **/
|
|
1621
|
+
AX = "AX",
|
|
1622
|
+
/** The code representing the country of Albania. **/
|
|
1623
|
+
AL = "AL",
|
|
1624
|
+
/** The code representing the country of Algeria. **/
|
|
1625
|
+
DZ = "DZ",
|
|
1626
|
+
/** The code representing the country of American Samoa. **/
|
|
1627
|
+
AS = "AS",
|
|
1628
|
+
/** The code representing the country of Andorra. **/
|
|
1629
|
+
AD = "AD",
|
|
1630
|
+
/** The code representing the country of Angola. **/
|
|
1631
|
+
AO = "AO",
|
|
1632
|
+
/** The code representing the country of Anguilla. **/
|
|
1633
|
+
AI = "AI",
|
|
1634
|
+
/** The code representing the country of Antarctica. **/
|
|
1635
|
+
AQ = "AQ",
|
|
1636
|
+
/** The code representing the country of Antigua and Barbuda. **/
|
|
1637
|
+
AG = "AG",
|
|
1638
|
+
/** The code representing the country of Argentina. **/
|
|
1639
|
+
AR = "AR",
|
|
1640
|
+
/** The code representing the country of Armenia. **/
|
|
1641
|
+
AM = "AM",
|
|
1642
|
+
/** The code representing the country of Aruba. **/
|
|
1643
|
+
AW = "AW",
|
|
1644
|
+
/** The code representing the country of Australia. **/
|
|
1645
|
+
AU = "AU",
|
|
1646
|
+
/** The code representing the country of Austria. **/
|
|
1647
|
+
AT = "AT",
|
|
1648
|
+
/** The code representing the country of Azerbaijan. **/
|
|
1649
|
+
AZ = "AZ",
|
|
1650
|
+
/** The code representing the country of Bahamas. **/
|
|
1651
|
+
BS = "BS",
|
|
1652
|
+
/** The code representing the country of Bahrain. **/
|
|
1653
|
+
BH = "BH",
|
|
1654
|
+
/** The code representing the country of Bangladesh. **/
|
|
1655
|
+
BD = "BD",
|
|
1656
|
+
/** The code representing the country of Barbados. **/
|
|
1657
|
+
BB = "BB",
|
|
1658
|
+
/** The code representing the country of Belarus. **/
|
|
1659
|
+
BY = "BY",
|
|
1660
|
+
/** The code representing the country of Belgium. **/
|
|
1661
|
+
BE = "BE",
|
|
1662
|
+
/** The code representing the country of Belize. **/
|
|
1663
|
+
BZ = "BZ",
|
|
1664
|
+
/** The code representing the country of Benin. **/
|
|
1665
|
+
BJ = "BJ",
|
|
1666
|
+
/** The code representing the country of Bermuda. **/
|
|
1667
|
+
BM = "BM",
|
|
1668
|
+
/** The code representing the country of Bhutan. **/
|
|
1669
|
+
BT = "BT",
|
|
1670
|
+
/** The code representing the country of The Plurinational State of Bolivia. **/
|
|
1671
|
+
BO = "BO",
|
|
1672
|
+
/** The code representing the country of Bonaire, Sint Eustatius, and Saba. **/
|
|
1673
|
+
BQ = "BQ",
|
|
1674
|
+
/** The code representing the country of Bosnia and Herzegovina. **/
|
|
1675
|
+
BA = "BA",
|
|
1676
|
+
/** The code representing the country of Botswana. **/
|
|
1677
|
+
BW = "BW",
|
|
1678
|
+
/** The code representing the country of Bouvet Island. **/
|
|
1679
|
+
BV = "BV",
|
|
1680
|
+
/** The code representing the country of Brazil. **/
|
|
1681
|
+
BR = "BR",
|
|
1682
|
+
/** The code representing the country of British Indian Ocean Territory. **/
|
|
1683
|
+
IO = "IO",
|
|
1684
|
+
/** The code representing the country of Brunei Darussalam. **/
|
|
1685
|
+
BN = "BN",
|
|
1686
|
+
/** The code representing the country of Bulgaria. **/
|
|
1687
|
+
BG = "BG",
|
|
1688
|
+
/** The code representing the country of Burkina Faso. **/
|
|
1689
|
+
BF = "BF",
|
|
1690
|
+
/** The code representing the country of Burundi. **/
|
|
1691
|
+
BI = "BI",
|
|
1692
|
+
/** The code representing the country of Cambodia. **/
|
|
1693
|
+
KH = "KH",
|
|
1694
|
+
/** The code representing the country of Cameroon. **/
|
|
1695
|
+
CM = "CM",
|
|
1696
|
+
/** The code representing the country of Canada. **/
|
|
1697
|
+
CA = "CA",
|
|
1698
|
+
/** The code representing the country of Cape Verde. **/
|
|
1699
|
+
CV = "CV",
|
|
1700
|
+
/** The code representing the country of Cayman Islands. **/
|
|
1701
|
+
KY = "KY",
|
|
1702
|
+
/** The code representing the country of Central African Republic. **/
|
|
1703
|
+
CF = "CF",
|
|
1704
|
+
/** The code representing the country of Chad. **/
|
|
1705
|
+
TD = "TD",
|
|
1706
|
+
/** The code representing the country of Chile. **/
|
|
1707
|
+
CL = "CL",
|
|
1708
|
+
/** The code representing the country of China. **/
|
|
1709
|
+
CN = "CN",
|
|
1710
|
+
/** The code representing the country of Christmas Island. **/
|
|
1711
|
+
CX = "CX",
|
|
1712
|
+
/** The code representing the country of Cocos (Keeling) Islands. **/
|
|
1713
|
+
CC = "CC",
|
|
1714
|
+
/** The code representing the country of Colombia. **/
|
|
1715
|
+
CO = "CO",
|
|
1716
|
+
/** The code representing the country of Comoros. **/
|
|
1717
|
+
KM = "KM",
|
|
1718
|
+
/** The code representing the country of Congo. **/
|
|
1719
|
+
CG = "CG",
|
|
1720
|
+
/** The code representing the country of The Democratic Republic of the Congo. **/
|
|
1721
|
+
CD = "CD",
|
|
1722
|
+
/** The code representing the country of Cook Islands. **/
|
|
1723
|
+
CK = "CK",
|
|
1724
|
+
/** The code representing the country of Costa Rica. **/
|
|
1725
|
+
CR = "CR",
|
|
1726
|
+
/** The code representing the country of Côte d'Ivoire. **/
|
|
1727
|
+
CI = "CI",
|
|
1728
|
+
/** The code representing the country of Croatia. **/
|
|
1729
|
+
HR = "HR",
|
|
1730
|
+
/** The code representing the country of Cuba. **/
|
|
1731
|
+
CU = "CU",
|
|
1732
|
+
/** The code representing the country of Curaçao. **/
|
|
1733
|
+
CW = "CW",
|
|
1734
|
+
/** The code representing the country of Cyprus. **/
|
|
1735
|
+
CY = "CY",
|
|
1736
|
+
/** The code representing the country of Czech Republic. **/
|
|
1737
|
+
CZ = "CZ",
|
|
1738
|
+
/** The code representing the country of Denmark. **/
|
|
1739
|
+
DK = "DK",
|
|
1740
|
+
/** The code representing the country of Djibouti. **/
|
|
1741
|
+
DJ = "DJ",
|
|
1742
|
+
/** The code representing the country of Dominica. **/
|
|
1743
|
+
DM = "DM",
|
|
1744
|
+
/** The code representing the country of Dominican Republic. **/
|
|
1745
|
+
DO = "DO",
|
|
1746
|
+
/** The code representing the country of Ecuador. **/
|
|
1747
|
+
EC = "EC",
|
|
1748
|
+
/** The code representing the country of Egypt. **/
|
|
1749
|
+
EG = "EG",
|
|
1750
|
+
/** The code representing the country of El Salvador. **/
|
|
1751
|
+
SV = "SV",
|
|
1752
|
+
/** The code representing the country of Equatorial Guinea. **/
|
|
1753
|
+
GQ = "GQ",
|
|
1754
|
+
/** The code representing the country of Eritrea. **/
|
|
1755
|
+
ER = "ER",
|
|
1756
|
+
/** The code representing the country of Estonia. **/
|
|
1757
|
+
EE = "EE",
|
|
1758
|
+
/** The code representing the country of Ethiopia. **/
|
|
1759
|
+
ET = "ET",
|
|
1760
|
+
/** The code representing the country of Falkland Islands (Malvinas). **/
|
|
1761
|
+
FK = "FK",
|
|
1762
|
+
/** The code representing the country of Faroe Islands. **/
|
|
1763
|
+
FO = "FO",
|
|
1764
|
+
/** The code representing the country of Fiji. **/
|
|
1765
|
+
FJ = "FJ",
|
|
1766
|
+
/** The code representing the country of Finland. **/
|
|
1767
|
+
FI = "FI",
|
|
1768
|
+
/** The code representing the country of France. **/
|
|
1769
|
+
FR = "FR",
|
|
1770
|
+
/** The code representing the country of French Guiana. **/
|
|
1771
|
+
GF = "GF",
|
|
1772
|
+
/** The code representing the country of French Polynesia. **/
|
|
1773
|
+
PF = "PF",
|
|
1774
|
+
/** The code representing the country of French Southern Territories. **/
|
|
1775
|
+
TF = "TF",
|
|
1776
|
+
/** The code representing the country of Gabon. **/
|
|
1777
|
+
GA = "GA",
|
|
1778
|
+
/** The code representing the country of Gambia. **/
|
|
1779
|
+
GM = "GM",
|
|
1780
|
+
/** The code representing the country of Georgia. **/
|
|
1781
|
+
GE = "GE",
|
|
1782
|
+
/** The code representing the country of Germany. **/
|
|
1783
|
+
DE = "DE",
|
|
1784
|
+
/** The code representing the country of Ghana. **/
|
|
1785
|
+
GH = "GH",
|
|
1786
|
+
/** The code representing the country of Gibraltar. **/
|
|
1787
|
+
GI = "GI",
|
|
1788
|
+
/** The code representing the country of Greece. **/
|
|
1789
|
+
GR = "GR",
|
|
1790
|
+
/** The code representing the country of Greenland. **/
|
|
1791
|
+
GL = "GL",
|
|
1792
|
+
/** The code representing the country of Grenada. **/
|
|
1793
|
+
GD = "GD",
|
|
1794
|
+
/** The code representing the country of Guadeloupe. **/
|
|
1795
|
+
GP = "GP",
|
|
1796
|
+
/** The code representing the country of Guam. **/
|
|
1797
|
+
GU = "GU",
|
|
1798
|
+
/** The code representing the country of Guatemala. **/
|
|
1799
|
+
GT = "GT",
|
|
1800
|
+
/** The code representing the country of Guernsey. **/
|
|
1801
|
+
GG = "GG",
|
|
1802
|
+
/** The code representing the country of Guinea. **/
|
|
1803
|
+
GN = "GN",
|
|
1804
|
+
/** The code representing the country of Guinea-Bissau. **/
|
|
1805
|
+
GW = "GW",
|
|
1806
|
+
/** The code representing the country of Guyana. **/
|
|
1807
|
+
GY = "GY",
|
|
1808
|
+
/** The code representing the country of Haiti. **/
|
|
1809
|
+
HT = "HT",
|
|
1810
|
+
/** The code representing the country of Heard Island and McDonald Islands. **/
|
|
1811
|
+
HM = "HM",
|
|
1812
|
+
/** The code representing the country of Holy See (Vatican City State). **/
|
|
1813
|
+
VA = "VA",
|
|
1814
|
+
/** The code representing the country of Honduras. **/
|
|
1815
|
+
HN = "HN",
|
|
1816
|
+
/** The code representing the country of Hong Kong. **/
|
|
1817
|
+
HK = "HK",
|
|
1818
|
+
/** The code representing the country of Hungary. **/
|
|
1819
|
+
HU = "HU",
|
|
1820
|
+
/** The code representing the country of Iceland. **/
|
|
1821
|
+
IS = "IS",
|
|
1822
|
+
/** The code representing the country of India. **/
|
|
1823
|
+
IN = "IN",
|
|
1824
|
+
/** The code representing the country of Indonesia. **/
|
|
1825
|
+
ID = "ID",
|
|
1826
|
+
/** The code representing the country of Islamic Republic of Iran. **/
|
|
1827
|
+
IR = "IR",
|
|
1828
|
+
/** The code representing the country of Iraq. **/
|
|
1829
|
+
IQ = "IQ",
|
|
1830
|
+
/** The code representing the country of Ireland. **/
|
|
1831
|
+
IE = "IE",
|
|
1832
|
+
/** The code representing the country of Isle of Man. **/
|
|
1833
|
+
IM = "IM",
|
|
1834
|
+
/** The code representing the country of Israel. **/
|
|
1835
|
+
IL = "IL",
|
|
1836
|
+
/** The code representing the country of Italy. **/
|
|
1837
|
+
IT = "IT",
|
|
1838
|
+
/** The code representing the country of Jamaica. **/
|
|
1839
|
+
JM = "JM",
|
|
1840
|
+
/** The code representing the country of Japan. **/
|
|
1841
|
+
JP = "JP",
|
|
1842
|
+
/** The code representing the country of Jersey. **/
|
|
1843
|
+
JE = "JE",
|
|
1844
|
+
/** The code representing the country of Jordan. **/
|
|
1845
|
+
JO = "JO",
|
|
1846
|
+
/** The code representing the country of Kazakhstan. **/
|
|
1847
|
+
KZ = "KZ",
|
|
1848
|
+
/** The code representing the country of Kenya. **/
|
|
1849
|
+
KE = "KE",
|
|
1850
|
+
/** The code representing the country of Kiribati. **/
|
|
1851
|
+
KI = "KI",
|
|
1852
|
+
/** The code representing the country of Democratic People's Republic ofKorea. **/
|
|
1853
|
+
KP = "KP",
|
|
1854
|
+
/** The code representing the country of Republic of Korea. **/
|
|
1855
|
+
KR = "KR",
|
|
1856
|
+
/** The code representing the country of Kuwait. **/
|
|
1857
|
+
KW = "KW",
|
|
1858
|
+
/** The code representing the country of Kyrgyzstan. **/
|
|
1859
|
+
KG = "KG",
|
|
1860
|
+
/** The code representing the country of Lao People's Democratic Republic. **/
|
|
1861
|
+
LA = "LA",
|
|
1862
|
+
/** The code representing the country of Latvia. **/
|
|
1863
|
+
LV = "LV",
|
|
1864
|
+
/** The code representing the country of Lebanon. **/
|
|
1865
|
+
LB = "LB",
|
|
1866
|
+
/** The code representing the country of Lesotho. **/
|
|
1867
|
+
LS = "LS",
|
|
1868
|
+
/** The code representing the country of Liberia. **/
|
|
1869
|
+
LR = "LR",
|
|
1870
|
+
/** The code representing the country of Libya. **/
|
|
1871
|
+
LY = "LY",
|
|
1872
|
+
/** The code representing the country of Liechtenstein. **/
|
|
1873
|
+
LI = "LI",
|
|
1874
|
+
/** The code representing the country of Lithuania. **/
|
|
1875
|
+
LT = "LT",
|
|
1876
|
+
/** The code representing the country of Luxembourg. **/
|
|
1877
|
+
LU = "LU",
|
|
1878
|
+
/** The code representing the country of Macao. **/
|
|
1879
|
+
MO = "MO",
|
|
1880
|
+
/** The code representing the country of The Former Yugoslav Republic of Macedonia. **/
|
|
1881
|
+
MK = "MK",
|
|
1882
|
+
/** The code representing the country of Madagascar. **/
|
|
1883
|
+
MG = "MG",
|
|
1884
|
+
/** The code representing the country of Malawi. **/
|
|
1885
|
+
MW = "MW",
|
|
1886
|
+
/** The code representing the country of Malaysia. **/
|
|
1887
|
+
MY = "MY",
|
|
1888
|
+
/** The code representing the country of Maldives. **/
|
|
1889
|
+
MV = "MV",
|
|
1890
|
+
/** The code representing the country of Mali. **/
|
|
1891
|
+
ML = "ML",
|
|
1892
|
+
/** The code representing the country of Malta. **/
|
|
1893
|
+
MT = "MT",
|
|
1894
|
+
/** The code representing the country of Marshall Islands. **/
|
|
1895
|
+
MH = "MH",
|
|
1896
|
+
/** The code representing the country of Martinique. **/
|
|
1897
|
+
MQ = "MQ",
|
|
1898
|
+
/** The code representing the country of Mauritania. **/
|
|
1899
|
+
MR = "MR",
|
|
1900
|
+
/** The code representing the country of Mauritius. **/
|
|
1901
|
+
MU = "MU",
|
|
1902
|
+
/** The code representing the country of Mayotte. **/
|
|
1903
|
+
YT = "YT",
|
|
1904
|
+
/** The code representing the country of Mexico. **/
|
|
1905
|
+
MX = "MX",
|
|
1906
|
+
/** The code representing the country of Federated States ofMicronesia. **/
|
|
1907
|
+
FM = "FM",
|
|
1908
|
+
/** The code representing the country of Republic of Moldova. **/
|
|
1909
|
+
MD = "MD",
|
|
1910
|
+
/** The code representing the country of Monaco. **/
|
|
1911
|
+
MC = "MC",
|
|
1912
|
+
/** The code representing the country of Mongolia. **/
|
|
1913
|
+
MN = "MN",
|
|
1914
|
+
/** The code representing the country of Montenegro. **/
|
|
1915
|
+
ME = "ME",
|
|
1916
|
+
/** The code representing the country of Montserrat. **/
|
|
1917
|
+
MS = "MS",
|
|
1918
|
+
/** The code representing the country of Morocco. **/
|
|
1919
|
+
MA = "MA",
|
|
1920
|
+
/** The code representing the country of Mozambique. **/
|
|
1921
|
+
MZ = "MZ",
|
|
1922
|
+
/** The code representing the country of Myanmar. **/
|
|
1923
|
+
MM = "MM",
|
|
1924
|
+
/** The code representing the country of Namibia. **/
|
|
1925
|
+
NA = "NA",
|
|
1926
|
+
/** The code representing the country of Nauru. **/
|
|
1927
|
+
NR = "NR",
|
|
1928
|
+
/** The code representing the country of Nepal. **/
|
|
1929
|
+
NP = "NP",
|
|
1930
|
+
/** The code representing the country of Netherlands. **/
|
|
1931
|
+
NL = "NL",
|
|
1932
|
+
/** The code representing the country of New Caledonia. **/
|
|
1933
|
+
NC = "NC",
|
|
1934
|
+
/** The code representing the country of New Zealand. **/
|
|
1935
|
+
NZ = "NZ",
|
|
1936
|
+
/** The code representing the country of Nicaragua. **/
|
|
1937
|
+
NI = "NI",
|
|
1938
|
+
/** The code representing the country of Niger. **/
|
|
1939
|
+
NE = "NE",
|
|
1940
|
+
/** The code representing the country of Nigeria. **/
|
|
1941
|
+
NG = "NG",
|
|
1942
|
+
/** The code representing the country of Niue. **/
|
|
1943
|
+
NU = "NU",
|
|
1944
|
+
/** The code representing the country of Norfolk Island. **/
|
|
1945
|
+
NF = "NF",
|
|
1946
|
+
/** The code representing the country of Northern Mariana Islands. **/
|
|
1947
|
+
MP = "MP",
|
|
1948
|
+
/** The code representing the country of Norway. **/
|
|
1949
|
+
NO = "NO",
|
|
1950
|
+
/** The code representing the country of Oman. **/
|
|
1951
|
+
OM = "OM",
|
|
1952
|
+
/** The code representing the country of Pakistan. **/
|
|
1953
|
+
PK = "PK",
|
|
1954
|
+
/** The code representing the country of Palau. **/
|
|
1955
|
+
PW = "PW",
|
|
1956
|
+
/** The code representing the country of State of Palestine. **/
|
|
1957
|
+
PS = "PS",
|
|
1958
|
+
/** The code representing the country of Panama. **/
|
|
1959
|
+
PA = "PA",
|
|
1960
|
+
/** The code representing the country of Papua New Guinea. **/
|
|
1961
|
+
PG = "PG",
|
|
1962
|
+
/** The code representing the country of Paraguay. **/
|
|
1963
|
+
PY = "PY",
|
|
1964
|
+
/** The code representing the country of Peru. **/
|
|
1965
|
+
PE = "PE",
|
|
1966
|
+
/** The code representing the country of Philippines. **/
|
|
1967
|
+
PH = "PH",
|
|
1968
|
+
/** The code representing the country of Pitcairn. **/
|
|
1969
|
+
PN = "PN",
|
|
1970
|
+
/** The code representing the country of Poland. **/
|
|
1971
|
+
PL = "PL",
|
|
1972
|
+
/** The code representing the country of Portugal. **/
|
|
1973
|
+
PT = "PT",
|
|
1974
|
+
/** The code representing the country of Puerto Rico. **/
|
|
1975
|
+
PR = "PR",
|
|
1976
|
+
/** The code representing the country of Qatar. **/
|
|
1977
|
+
QA = "QA",
|
|
1978
|
+
/** The code representing the country of Réunion. **/
|
|
1979
|
+
RE = "RE",
|
|
1980
|
+
/** The code representing the country of Romania. **/
|
|
1981
|
+
RO = "RO",
|
|
1982
|
+
/** The code representing the country of Russian Federation. **/
|
|
1983
|
+
RU = "RU",
|
|
1984
|
+
/** The code representing the country of Rwanda. **/
|
|
1985
|
+
RW = "RW",
|
|
1986
|
+
/** The code representing the country of Saint Barthélemy. **/
|
|
1987
|
+
BL = "BL",
|
|
1988
|
+
/** The code representing the country of Saint Helena Ascension and Tristan da Cunha. **/
|
|
1989
|
+
SH = "SH",
|
|
1990
|
+
/** The code representing the country of Saint Kitts and Nevis. **/
|
|
1991
|
+
KN = "KN",
|
|
1992
|
+
/** The code representing the country of Saint Lucia. **/
|
|
1993
|
+
LC = "LC",
|
|
1994
|
+
/** The code representing the country of Saint Martin (French part). **/
|
|
1995
|
+
MF = "MF",
|
|
1996
|
+
/** The code representing the country of Saint Pierre and Miquelon. **/
|
|
1997
|
+
PM = "PM",
|
|
1998
|
+
/** The code representing the country of Saint Vincent and the Grenadines. **/
|
|
1999
|
+
VC = "VC",
|
|
2000
|
+
/** The code representing the country of Samoa. **/
|
|
2001
|
+
WS = "WS",
|
|
2002
|
+
/** The code representing the country of San Marino. **/
|
|
2003
|
+
SM = "SM",
|
|
2004
|
+
/** The code representing the country of Sao Tome and Principe. **/
|
|
2005
|
+
ST = "ST",
|
|
2006
|
+
/** The code representing the country of Saudi Arabia. **/
|
|
2007
|
+
SA = "SA",
|
|
2008
|
+
/** The code representing the country of Senegal. **/
|
|
2009
|
+
SN = "SN",
|
|
2010
|
+
/** The code representing the country of Serbia. **/
|
|
2011
|
+
RS = "RS",
|
|
2012
|
+
/** The code representing the country of Seychelles. **/
|
|
2013
|
+
SC = "SC",
|
|
2014
|
+
/** The code representing the country of Sierra Leone. **/
|
|
2015
|
+
SL = "SL",
|
|
2016
|
+
/** The code representing the country of Singapore. **/
|
|
2017
|
+
SG = "SG",
|
|
2018
|
+
/** The code representing the country of Sint Maarten (Dutch part). **/
|
|
2019
|
+
SX = "SX",
|
|
2020
|
+
/** The code representing the country of Slovakia. **/
|
|
2021
|
+
SK = "SK",
|
|
2022
|
+
/** The code representing the country of Slovenia. **/
|
|
2023
|
+
SI = "SI",
|
|
2024
|
+
/** The code representing the country of Solomon Islands. **/
|
|
2025
|
+
SB = "SB",
|
|
2026
|
+
/** The code representing the country of Somalia. **/
|
|
2027
|
+
SO = "SO",
|
|
2028
|
+
/** The code representing the country of South Africa. **/
|
|
2029
|
+
ZA = "ZA",
|
|
2030
|
+
/** The code representing the country of South Georgia and the South Sandwich Islands. **/
|
|
2031
|
+
GS = "GS",
|
|
2032
|
+
/** The code representing the country of South Sudan. **/
|
|
2033
|
+
SS = "SS",
|
|
2034
|
+
/** The code representing the country of Spain. **/
|
|
2035
|
+
ES = "ES",
|
|
2036
|
+
/** The code representing the country of Sri Lanka. **/
|
|
2037
|
+
LK = "LK",
|
|
2038
|
+
/** The code representing the country of Sudan. **/
|
|
2039
|
+
SD = "SD",
|
|
2040
|
+
/** The code representing the country of Suriname. **/
|
|
2041
|
+
SR = "SR",
|
|
2042
|
+
/** The code representing the country of Svalbard and Jan Mayen. **/
|
|
2043
|
+
SJ = "SJ",
|
|
2044
|
+
/** The code representing the country of Swaziland. **/
|
|
2045
|
+
SZ = "SZ",
|
|
2046
|
+
/** The code representing the country of Sweden. **/
|
|
2047
|
+
SE = "SE",
|
|
2048
|
+
/** The code representing the country of Switzerland. **/
|
|
2049
|
+
CH = "CH",
|
|
2050
|
+
/** The code representing the country of Syrian Arab Republic. **/
|
|
2051
|
+
SY = "SY",
|
|
2052
|
+
/** The code representing the country of Taiwan, Province of China. **/
|
|
2053
|
+
TW = "TW",
|
|
2054
|
+
/** The code representing the country of Tajikistan. **/
|
|
2055
|
+
TJ = "TJ",
|
|
2056
|
+
/** The code representing the country of United Republic of Tanzania. **/
|
|
2057
|
+
TZ = "TZ",
|
|
2058
|
+
/** The code representing the country of Thailand. **/
|
|
2059
|
+
TH = "TH",
|
|
2060
|
+
/** The code representing the country of Timor-Leste. **/
|
|
2061
|
+
TL = "TL",
|
|
2062
|
+
/** The code representing the country of Togo. **/
|
|
2063
|
+
TG = "TG",
|
|
2064
|
+
/** The code representing the country of Tokelau. **/
|
|
2065
|
+
TK = "TK",
|
|
2066
|
+
/** The code representing the country of Tonga. **/
|
|
2067
|
+
TO = "TO",
|
|
2068
|
+
/** The code representing the country of Trinidad and Tobago. **/
|
|
2069
|
+
TT = "TT",
|
|
2070
|
+
/** The code representing the country of Tunisia. **/
|
|
2071
|
+
TN = "TN",
|
|
2072
|
+
/** The code representing the country of Turkey. **/
|
|
2073
|
+
TR = "TR",
|
|
2074
|
+
/** The code representing the country of Turkmenistan. **/
|
|
2075
|
+
TM = "TM",
|
|
2076
|
+
/** The code representing the country of Turks and Caicos Islands. **/
|
|
2077
|
+
TC = "TC",
|
|
2078
|
+
/** The code representing the country of Tuvalu. **/
|
|
2079
|
+
TV = "TV",
|
|
2080
|
+
/** The code representing the country of Uganda. **/
|
|
2081
|
+
UG = "UG",
|
|
2082
|
+
/** The code representing the country of Ukraine. **/
|
|
2083
|
+
UA = "UA",
|
|
2084
|
+
/** The code representing the country of United Arab Emirates. **/
|
|
2085
|
+
AE = "AE",
|
|
2086
|
+
/** The code representing the country of United Kingdom. **/
|
|
2087
|
+
GB = "GB",
|
|
2088
|
+
/** The code representing the country of United States. **/
|
|
2089
|
+
US = "US",
|
|
2090
|
+
/** The code representing the country of United States Minor Outlying Islands. **/
|
|
2091
|
+
UM = "UM",
|
|
2092
|
+
/** The code representing the country of Uruguay. **/
|
|
2093
|
+
UY = "UY",
|
|
2094
|
+
/** The code representing the country of Uzbekistan. **/
|
|
2095
|
+
UZ = "UZ",
|
|
2096
|
+
/** The code representing the country of Vanuatu. **/
|
|
2097
|
+
VU = "VU",
|
|
2098
|
+
/** The code representing the country of Bolivarian Republic of Venezuela. **/
|
|
2099
|
+
VE = "VE",
|
|
2100
|
+
/** The code representing the country of Viet Nam. **/
|
|
2101
|
+
VN = "VN",
|
|
2102
|
+
/** The code representing the country of British Virgin Islands. **/
|
|
2103
|
+
VG = "VG",
|
|
2104
|
+
/** The code representing the country of U.S. Virgin Islands. **/
|
|
2105
|
+
VI = "VI",
|
|
2106
|
+
/** The code representing the country of Wallis and Futuna. **/
|
|
2107
|
+
WF = "WF",
|
|
2108
|
+
/** The code representing the country of Western Sahara. **/
|
|
2109
|
+
EH = "EH",
|
|
2110
|
+
/** The code representing the country of Yemen. **/
|
|
2111
|
+
YE = "YE",
|
|
2112
|
+
/** The code representing the country of Zambia. **/
|
|
2113
|
+
ZM = "ZM",
|
|
2114
|
+
/** The code representing the country of Zimbabwe. **/
|
|
2115
|
+
ZW = "ZW"
|
|
2116
|
+
}
|
|
2117
|
+
|
|
1606
2118
|
type SingleNodeDashboard = {
|
|
1607
2119
|
id: string;
|
|
1608
2120
|
displayName: string;
|
|
@@ -1648,6 +2160,70 @@ type TransactionUpdate = {
|
|
|
1648
2160
|
transactionHash?: string;
|
|
1649
2161
|
};
|
|
1650
2162
|
|
|
2163
|
+
/** Describes the reason for an invitation to not be eligible for incentives. **/
|
|
2164
|
+
declare enum IncentivesIneligibilityReason {
|
|
2165
|
+
/**
|
|
2166
|
+
* This is an enum value that represents values that could be added in the future.
|
|
2167
|
+
* Clients should support unknown values as more of them could be added without notice.
|
|
2168
|
+
*/
|
|
2169
|
+
FUTURE_VALUE = "FUTURE_VALUE",
|
|
2170
|
+
/** This invitation is not eligible for incentives because it has been created outside of the incentives flow. **/
|
|
2171
|
+
DISABLED = "DISABLED",
|
|
2172
|
+
/** This invitation is not eligible for incentives because the sender is not eligible. **/
|
|
2173
|
+
SENDER_NOT_ELIGIBLE = "SENDER_NOT_ELIGIBLE",
|
|
2174
|
+
/** This invitation is not eligible for incentives because the receiver is not eligible. **/
|
|
2175
|
+
RECEIVER_NOT_ELIGIBLE = "RECEIVER_NOT_ELIGIBLE",
|
|
2176
|
+
/** This invitation is not eligible for incentives because the sending VASP is not part of the incentives program. **/
|
|
2177
|
+
SENDING_VASP_NOT_ELIGIBLE = "SENDING_VASP_NOT_ELIGIBLE",
|
|
2178
|
+
/** This invitation is not eligible for incentives because the receiving VASP is not part of the incentives program. **/
|
|
2179
|
+
RECEIVING_VASP_NOT_ELIGIBLE = "RECEIVING_VASP_NOT_ELIGIBLE",
|
|
2180
|
+
/** This invitation is not eligible for incentives because the sender and receiver are in the same region. **/
|
|
2181
|
+
NOT_CROSS_BORDER = "NOT_CROSS_BORDER"
|
|
2182
|
+
}
|
|
2183
|
+
|
|
2184
|
+
/** Describes the status of the incentives for this invitation. **/
|
|
2185
|
+
declare enum IncentivesStatus {
|
|
2186
|
+
/**
|
|
2187
|
+
* This is an enum value that represents values that could be added in the future.
|
|
2188
|
+
* Clients should support unknown values as more of them could be added without notice.
|
|
2189
|
+
*/
|
|
2190
|
+
FUTURE_VALUE = "FUTURE_VALUE",
|
|
2191
|
+
/** The invitation is eligible for incentives in its current state. When it is claimed, we will reassess. **/
|
|
2192
|
+
PENDING = "PENDING",
|
|
2193
|
+
/** The incentives have been validated. **/
|
|
2194
|
+
VALIDATED = "VALIDATED",
|
|
2195
|
+
/** This invitation is not eligible for incentives. A more detailed reason can be found in the `incentives_ineligibility_reason` field. **/
|
|
2196
|
+
INELIGIBLE = "INELIGIBLE"
|
|
2197
|
+
}
|
|
2198
|
+
|
|
2199
|
+
/** This is an object representing an UMA.ME invitation. **/
|
|
2200
|
+
interface UmaInvitation {
|
|
2201
|
+
/**
|
|
2202
|
+
* The unique identifier of this entity across all Lightspark systems. Should be treated as an opaque
|
|
2203
|
+
* string.
|
|
2204
|
+
**/
|
|
2205
|
+
id: string;
|
|
2206
|
+
/** The date and time when the entity was first created. **/
|
|
2207
|
+
createdAt: string;
|
|
2208
|
+
/** The date and time when the entity was last updated. **/
|
|
2209
|
+
updatedAt: string;
|
|
2210
|
+
/** The code that uniquely identifies this invitation. **/
|
|
2211
|
+
code: string;
|
|
2212
|
+
/** The URL where this invitation can be claimed. **/
|
|
2213
|
+
url: string;
|
|
2214
|
+
/** The UMA of the user who created the invitation. **/
|
|
2215
|
+
inviterUma: string;
|
|
2216
|
+
/** The current status of the incentives that may be tied to this invitation. **/
|
|
2217
|
+
incentivesStatus: IncentivesStatus;
|
|
2218
|
+
/** The typename of the object **/
|
|
2219
|
+
typename: string;
|
|
2220
|
+
/** The UMA of the user who claimed the invitation. **/
|
|
2221
|
+
inviteeUma?: string | undefined;
|
|
2222
|
+
/** The reason why the invitation is not eligible for incentives, if applicable. **/
|
|
2223
|
+
incentivesIneligibilityReason?: IncentivesIneligibilityReason | undefined;
|
|
2224
|
+
}
|
|
2225
|
+
declare const getUmaInvitationQuery: (id: string) => Query<UmaInvitation>;
|
|
2226
|
+
|
|
1651
2227
|
/** This is an enum of the potential modes that your Bitcoin withdrawal can take. **/
|
|
1652
2228
|
declare enum WithdrawalMode {
|
|
1653
2229
|
/**
|
|
@@ -2215,6 +2791,49 @@ declare class LightsparkClient {
|
|
|
2215
2791
|
* amount invoices.
|
|
2216
2792
|
*/
|
|
2217
2793
|
createTestModePayment(localNodeId: string, encodedInvoice: string, amountMsats?: number | undefined): Promise<IncomingPayment | null>;
|
|
2794
|
+
/**
|
|
2795
|
+
* Creates an UMA invitation. If you are part of the incentive program, you should use
|
|
2796
|
+
* [createUmaInvitationWithIncentives].
|
|
2797
|
+
*
|
|
2798
|
+
* @param inviterUma The UMA of the inviter.
|
|
2799
|
+
* @returns The invitation that was created.
|
|
2800
|
+
*/
|
|
2801
|
+
createUmaInvitation(inviterUma: string): Promise<UmaInvitation | null>;
|
|
2802
|
+
/**
|
|
2803
|
+
* Creates an UMA invitation as part of the incentive program.
|
|
2804
|
+
* @param inviterUma The UMA of the inviter.
|
|
2805
|
+
* @param inviterPhoneNumber The phone number of the inviter in E164 format.
|
|
2806
|
+
* @param inviterRegion The region of the inviter.
|
|
2807
|
+
* @returns The invitation that was created.
|
|
2808
|
+
*/
|
|
2809
|
+
createUmaInvitationWithIncentives(inviterUma: string, inviterPhoneNumber: string, inviterRegion: RegionCode): Promise<UmaInvitation | null>;
|
|
2810
|
+
/**
|
|
2811
|
+
* Claims an UMA invitation. If you are part of the incentive program, you should use
|
|
2812
|
+
* [claimUmaInvitationWithIncentives].
|
|
2813
|
+
*
|
|
2814
|
+
* @param invitationCode The invitation code to claim.
|
|
2815
|
+
* @param inviteeUma The UMA of the invitee.
|
|
2816
|
+
* @returns The invitation that was claimed.
|
|
2817
|
+
*/
|
|
2818
|
+
claimUmaInvitation(invitationCode: string, inviteeUma: string): Promise<UmaInvitation | null>;
|
|
2819
|
+
/**
|
|
2820
|
+
* Claims an UMA invitation as part of the incentive program.
|
|
2821
|
+
*
|
|
2822
|
+
* @param invitationCode The invitation code to claim.
|
|
2823
|
+
* @param inviteeUma The UMA of the invitee.
|
|
2824
|
+
* @param inviteePhoneNumber The phone number of the invitee in E164 format.
|
|
2825
|
+
* @param inviteeRegion The region of the invitee.
|
|
2826
|
+
* @returns The invitation that was claimed.
|
|
2827
|
+
*/
|
|
2828
|
+
claimUmaInvitationWithIncentives(invitationCode: string, inviteeUma: string, inviteePhoneNumber: string, inviteeRegion: RegionCode): Promise<UmaInvitation | null>;
|
|
2829
|
+
/**
|
|
2830
|
+
* Fetches an UMA invitation by its invitation code.
|
|
2831
|
+
*
|
|
2832
|
+
* @param invitationCode The code of the invitation to fetch.
|
|
2833
|
+
* @returns The invitation with the given code, or null if no invitation exists with that code.
|
|
2834
|
+
*/
|
|
2835
|
+
fetchUmaInvitation(invitationCode: string): Promise<UmaInvitation | null>;
|
|
2836
|
+
private hashPhoneNumber;
|
|
2218
2837
|
/**
|
|
2219
2838
|
* Executes a raw `Query` against the Lightspark API.
|
|
2220
2839
|
*
|
|
@@ -2227,6 +2846,26 @@ declare class LightsparkClient {
|
|
|
2227
2846
|
executeRawQuery<T>(query: Query<T>): Promise<T | null>;
|
|
2228
2847
|
}
|
|
2229
2848
|
|
|
2849
|
+
interface ClaimUmaInvitationInput {
|
|
2850
|
+
invitationCode: string;
|
|
2851
|
+
inviteeUma: string;
|
|
2852
|
+
}
|
|
2853
|
+
|
|
2854
|
+
interface ClaimUmaInvitationOutput {
|
|
2855
|
+
invitationId: string;
|
|
2856
|
+
}
|
|
2857
|
+
|
|
2858
|
+
interface ClaimUmaInvitationWithIncentivesInput {
|
|
2859
|
+
invitationCode: string;
|
|
2860
|
+
inviteeUma: string;
|
|
2861
|
+
inviteePhoneHash: string;
|
|
2862
|
+
inviteeRegion: RegionCode;
|
|
2863
|
+
}
|
|
2864
|
+
|
|
2865
|
+
interface ClaimUmaInvitationWithIncentivesOutput {
|
|
2866
|
+
invitationId: string;
|
|
2867
|
+
}
|
|
2868
|
+
|
|
2230
2869
|
/** This is an enum identifying a type of compliance provider. **/
|
|
2231
2870
|
declare enum ComplianceProvider {
|
|
2232
2871
|
/**
|
|
@@ -2256,6 +2895,16 @@ interface CreateApiTokenInput {
|
|
|
2256
2895
|
permissions: Permission[];
|
|
2257
2896
|
}
|
|
2258
2897
|
|
|
2898
|
+
interface CreateInvitationWithIncentivesInput {
|
|
2899
|
+
inviterUma: string;
|
|
2900
|
+
inviterPhoneHash: string;
|
|
2901
|
+
inviterRegion: RegionCode;
|
|
2902
|
+
}
|
|
2903
|
+
|
|
2904
|
+
interface CreateInvitationWithIncentivesOutput {
|
|
2905
|
+
invitationId: string;
|
|
2906
|
+
}
|
|
2907
|
+
|
|
2259
2908
|
interface CreateInvoiceInput {
|
|
2260
2909
|
/** The node from which to create the invoice. **/
|
|
2261
2910
|
nodeId: string;
|
|
@@ -2329,6 +2978,14 @@ interface CreateTestModePaymentoutput {
|
|
|
2329
2978
|
incomingPaymentId: string;
|
|
2330
2979
|
}
|
|
2331
2980
|
|
|
2981
|
+
interface CreateUmaInvitationInput {
|
|
2982
|
+
inviterUma: string;
|
|
2983
|
+
}
|
|
2984
|
+
|
|
2985
|
+
interface CreateUmaInvitationOutput {
|
|
2986
|
+
invitationId: string;
|
|
2987
|
+
}
|
|
2988
|
+
|
|
2332
2989
|
interface CreateUmaInvoiceInput {
|
|
2333
2990
|
nodeId: string;
|
|
2334
2991
|
amountMsats: number;
|
|
@@ -3306,9 +3963,11 @@ declare enum WebhookEventType {
|
|
|
3306
3963
|
*/
|
|
3307
3964
|
FUTURE_VALUE = "FUTURE_VALUE",
|
|
3308
3965
|
PAYMENT_FINISHED = "PAYMENT_FINISHED",
|
|
3966
|
+
FORCE_CLOSURE = "FORCE_CLOSURE",
|
|
3309
3967
|
WITHDRAWAL_FINISHED = "WITHDRAWAL_FINISHED",
|
|
3310
3968
|
FUNDS_RECEIVED = "FUNDS_RECEIVED",
|
|
3311
3969
|
NODE_STATUS = "NODE_STATUS",
|
|
3970
|
+
UMA_INVITATION_CLAIMED = "UMA_INVITATION_CLAIMED",
|
|
3312
3971
|
WALLET_STATUS = "WALLET_STATUS",
|
|
3313
3972
|
WALLET_OUTGOING_PAYMENT_FINISHED = "WALLET_OUTGOING_PAYMENT_FINISHED",
|
|
3314
3973
|
WALLET_INCOMING_PAYMENT_FINISHED = "WALLET_INCOMING_PAYMENT_FINISHED",
|
|
@@ -3363,4 +4022,4 @@ interface Withdrawal {
|
|
|
3363
4022
|
}
|
|
3364
4023
|
declare const getWithdrawalQuery: (id: string) => Query<Withdrawal>;
|
|
3365
4024
|
|
|
3366
|
-
export {
|
|
4025
|
+
export { FeeEstimate as $, Account as A, Balances as B, Channel as C, CreateInvitationWithIncentivesOutput as D, CreateInvoiceInput as E, CreateInvoiceOutput as F, CreateLnurlInvoiceInput as G, CreateNodeWalletAddressInput as H, CreateNodeWalletAddressOutput as I, CreateTestModeInvoiceInput as J, CreateTestModeInvoiceOutput as K, LightsparkClient as L, CreateTestModePaymentInput as M, CreateTestModePaymentoutput as N, CreateUmaInvitationInput as O, CreateUmaInvitationOutput as P, CreateUmaInvoiceInput as Q, CurrencyAmount as R, CurrencyUnit as S, DeclineToSignMessagesInput as T, DeclineToSignMessagesOutput as U, DeleteApiTokenInput as V, WebhookEventType as W, DeleteApiTokenOutput as X, Deposit as Y, getDepositQuery as Z, Entity as _, AccountToApiTokensConnection as a, ReleasePaymentPreimageOutput as a$, FundNodeInput as a0, FundNodeOutput as a1, GraphNode as a2, Hop as a3, getHopQuery as a4, HtlcAttemptFailureCode as a5, IdAndSignature as a6, IncentivesIneligibilityReason as a7, IncentivesStatus as a8, IncomingPayment as a9, OnChainTransaction as aA, getOnChainTransactionQuery as aB, OutgoingPayment as aC, OutgoingPaymentAttempt as aD, OutgoingPaymentAttemptStatus as aE, OutgoingPaymentAttemptToHopsConnection as aF, OutgoingPaymentsForInvoiceQueryInput as aG, OutgoingPaymentsForInvoiceQueryOutput as aH, OutgoingPaymentToAttemptsConnection as aI, PageInfo as aJ, PayInvoiceInput as aK, PayInvoiceOutput as aL, PaymentDirection as aM, PaymentFailureReason as aN, PaymentRequest as aO, getPaymentRequestQuery as aP, PaymentRequestData as aQ, PaymentRequestStatus as aR, PayUmaInvoiceInput as aS, Permission as aT, PostTransactionData as aU, RegionCode as aV, RegisterPaymentInput as aW, RegisterPaymentOutput as aX, ReleaseChannelPerCommitmentSecretInput as aY, ReleaseChannelPerCommitmentSecretOutput as aZ, ReleasePaymentPreimageInput as a_, IncomingPaymentAttempt as aa, getIncomingPaymentAttemptQuery as ab, IncomingPaymentAttemptStatus as ac, IncomingPaymentToAttemptsConnection as ad, Invoice as ae, getInvoiceQuery as af, InvoiceData as ag, InvoiceType as ah, LightningFeeEstimateForInvoiceInput as ai, LightningFeeEstimateForNodeInput as aj, LightningFeeEstimateOutput as ak, LightningTransaction as al, getLightningTransactionQuery as am, LightsparkNode as an, getLightsparkNodeQuery as ao, LightsparkNodeOwner as ap, getLightsparkNodeOwnerQuery as aq, LightsparkNodeStatus as ar, LightsparkNodeToChannelsConnection as as, LightsparkNodeWithOSK as at, LightsparkNodeWithRemoteSigning as au, Node as av, getNodeQuery as aw, NodeAddress as ax, NodeAddressType as ay, NodeToAddressesConnection as az, AccountToChannelsConnection as b, RemoteSigningSubEventType as b0, RequestWithdrawalInput as b1, RequestWithdrawalOutput as b2, RichText as b3, RiskRating as b4, RoutingTransaction as b5, getRoutingTransactionQuery as b6, RoutingTransactionFailureReason as b7, ScreenNodeInput as b8, ScreenNodeOutput as b9, UpdateNodeSharedSecretOutput as bA, Wallet as bB, WalletStatus as bC, WalletToPaymentRequestsConnection as bD, WalletToTransactionsConnection as bE, Withdrawal as bF, getWithdrawalQuery as bG, WithdrawalMode as bH, WithdrawalRequest as bI, WithdrawalRequestStatus as bJ, WithdrawalRequestToChannelClosingTransactionsConnection as bK, WithdrawalRequestToChannelOpeningTransactionsConnection as bL, Secret as ba, SendPaymentInput as bb, SendPaymentOutput as bc, SetInvoicePaymentHashInput as bd, SetInvoicePaymentHashOutput as be, Signable as bf, getSignableQuery as bg, SignablePayload as bh, getSignablePayloadQuery as bi, SignablePayloadStatus as bj, SignInvoiceInput as bk, SignInvoiceOutput as bl, SignMessagesInput as bm, SignMessagesOutput as bn, SingleNodeDashboard as bo, Transaction as bp, getTransactionQuery as bq, TransactionFailures as br, TransactionStatus as bs, TransactionType as bt, TransactionUpdate as bu, UmaInvitation as bv, getUmaInvitationQuery as bw, UpdateChannelPerCommitmentPointInput as bx, UpdateChannelPerCommitmentPointOutput as by, UpdateNodeSharedSecretInput as bz, AccountToNodesConnection as c, AccountToPaymentRequestsConnection as d, AccountToTransactionsConnection as e, AccountToWalletsConnection as f, ApiToken as g, getApiTokenQuery as h, BlockchainBalance as i, ChannelClosingTransaction as j, getChannelClosingTransactionQuery as k, ChannelFees as l, ChannelOpeningTransaction as m, getChannelOpeningTransactionQuery as n, ChannelSnapshot as o, ChannelStatus as p, ChannelToTransactionsConnection as q, ClaimUmaInvitationInput as r, ClaimUmaInvitationOutput as s, ClaimUmaInvitationWithIncentivesInput as t, ClaimUmaInvitationWithIncentivesOutput as u, ComplianceProvider as v, Connection as w, CreateApiTokenInput as x, CreateApiTokenOutput as y, CreateInvitationWithIncentivesInput as z };
|