@b3dotfun/sdk 0.0.9-alpha.1 → 0.0.9-alpha.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.
|
@@ -78,31 +78,6 @@ export interface paths {
|
|
|
78
78
|
};
|
|
79
79
|
};
|
|
80
80
|
};
|
|
81
|
-
"/health-check": {
|
|
82
|
-
/**
|
|
83
|
-
* Health check
|
|
84
|
-
* @description Returns the health status of the AnySpend service
|
|
85
|
-
*/
|
|
86
|
-
get: {
|
|
87
|
-
responses: {
|
|
88
|
-
/** @description Service is healthy */
|
|
89
|
-
200: {
|
|
90
|
-
content: {
|
|
91
|
-
"application/json": {
|
|
92
|
-
/** @example true */
|
|
93
|
-
success: boolean;
|
|
94
|
-
/** @example Service is healthy */
|
|
95
|
-
message: string;
|
|
96
|
-
/** @example null */
|
|
97
|
-
data?: Record<string, never> | null;
|
|
98
|
-
/** @example 200 */
|
|
99
|
-
statusCode: number;
|
|
100
|
-
};
|
|
101
|
-
};
|
|
102
|
-
};
|
|
103
|
-
};
|
|
104
|
-
};
|
|
105
|
-
};
|
|
106
81
|
"/onramp/coinbase/options": {
|
|
107
82
|
/**
|
|
108
83
|
* Get Coinbase onramp options
|
|
@@ -1581,6 +1556,11 @@ export interface components {
|
|
|
1581
1556
|
*/
|
|
1582
1557
|
createdAt: number;
|
|
1583
1558
|
};
|
|
1559
|
+
/**
|
|
1560
|
+
* @description Relay transaction status
|
|
1561
|
+
* @enum {string}
|
|
1562
|
+
*/
|
|
1563
|
+
RelayStatus: "pending" | "success" | "failure" | "refund" | "delayed" | "waiting";
|
|
1584
1564
|
/** @description Cross-chain relay transaction */
|
|
1585
1565
|
RelayTx: {
|
|
1586
1566
|
/**
|
|
@@ -1599,12 +1579,8 @@ export interface components {
|
|
|
1599
1579
|
* @example 0x9df917e14bb089f74763d1d2662761d75c97a5a068b8a9e411c3d384c9c40d19
|
|
1600
1580
|
*/
|
|
1601
1581
|
txHash: string;
|
|
1602
|
-
/**
|
|
1603
|
-
|
|
1604
|
-
* @example success
|
|
1605
|
-
* @enum {string}
|
|
1606
|
-
*/
|
|
1607
|
-
status: "pending" | "success" | "failure" | "refund" | "delayed" | "waiting";
|
|
1582
|
+
/** @example success */
|
|
1583
|
+
status: components["schemas"]["RelayStatus"];
|
|
1608
1584
|
/**
|
|
1609
1585
|
* @description Relay timestamp
|
|
1610
1586
|
* @example 1752505817654
|
|
@@ -78,31 +78,6 @@ export interface paths {
|
|
|
78
78
|
};
|
|
79
79
|
};
|
|
80
80
|
};
|
|
81
|
-
"/health-check": {
|
|
82
|
-
/**
|
|
83
|
-
* Health check
|
|
84
|
-
* @description Returns the health status of the AnySpend service
|
|
85
|
-
*/
|
|
86
|
-
get: {
|
|
87
|
-
responses: {
|
|
88
|
-
/** @description Service is healthy */
|
|
89
|
-
200: {
|
|
90
|
-
content: {
|
|
91
|
-
"application/json": {
|
|
92
|
-
/** @example true */
|
|
93
|
-
success: boolean;
|
|
94
|
-
/** @example Service is healthy */
|
|
95
|
-
message: string;
|
|
96
|
-
/** @example null */
|
|
97
|
-
data?: Record<string, never> | null;
|
|
98
|
-
/** @example 200 */
|
|
99
|
-
statusCode: number;
|
|
100
|
-
};
|
|
101
|
-
};
|
|
102
|
-
};
|
|
103
|
-
};
|
|
104
|
-
};
|
|
105
|
-
};
|
|
106
81
|
"/onramp/coinbase/options": {
|
|
107
82
|
/**
|
|
108
83
|
* Get Coinbase onramp options
|
|
@@ -1581,6 +1556,11 @@ export interface components {
|
|
|
1581
1556
|
*/
|
|
1582
1557
|
createdAt: number;
|
|
1583
1558
|
};
|
|
1559
|
+
/**
|
|
1560
|
+
* @description Relay transaction status
|
|
1561
|
+
* @enum {string}
|
|
1562
|
+
*/
|
|
1563
|
+
RelayStatus: "pending" | "success" | "failure" | "refund" | "delayed" | "waiting";
|
|
1584
1564
|
/** @description Cross-chain relay transaction */
|
|
1585
1565
|
RelayTx: {
|
|
1586
1566
|
/**
|
|
@@ -1599,12 +1579,8 @@ export interface components {
|
|
|
1599
1579
|
* @example 0x9df917e14bb089f74763d1d2662761d75c97a5a068b8a9e411c3d384c9c40d19
|
|
1600
1580
|
*/
|
|
1601
1581
|
txHash: string;
|
|
1602
|
-
/**
|
|
1603
|
-
|
|
1604
|
-
* @example success
|
|
1605
|
-
* @enum {string}
|
|
1606
|
-
*/
|
|
1607
|
-
status: "pending" | "success" | "failure" | "refund" | "delayed" | "waiting";
|
|
1582
|
+
/** @example success */
|
|
1583
|
+
status: components["schemas"]["RelayStatus"];
|
|
1608
1584
|
/**
|
|
1609
1585
|
* @description Relay timestamp
|
|
1610
1586
|
* @example 1752505817654
|
|
@@ -78,31 +78,6 @@ export interface paths {
|
|
|
78
78
|
};
|
|
79
79
|
};
|
|
80
80
|
};
|
|
81
|
-
"/health-check": {
|
|
82
|
-
/**
|
|
83
|
-
* Health check
|
|
84
|
-
* @description Returns the health status of the AnySpend service
|
|
85
|
-
*/
|
|
86
|
-
get: {
|
|
87
|
-
responses: {
|
|
88
|
-
/** @description Service is healthy */
|
|
89
|
-
200: {
|
|
90
|
-
content: {
|
|
91
|
-
"application/json": {
|
|
92
|
-
/** @example true */
|
|
93
|
-
success: boolean;
|
|
94
|
-
/** @example Service is healthy */
|
|
95
|
-
message: string;
|
|
96
|
-
/** @example null */
|
|
97
|
-
data?: Record<string, never> | null;
|
|
98
|
-
/** @example 200 */
|
|
99
|
-
statusCode: number;
|
|
100
|
-
};
|
|
101
|
-
};
|
|
102
|
-
};
|
|
103
|
-
};
|
|
104
|
-
};
|
|
105
|
-
};
|
|
106
81
|
"/onramp/coinbase/options": {
|
|
107
82
|
/**
|
|
108
83
|
* Get Coinbase onramp options
|
|
@@ -1581,6 +1556,11 @@ export interface components {
|
|
|
1581
1556
|
*/
|
|
1582
1557
|
createdAt: number;
|
|
1583
1558
|
};
|
|
1559
|
+
/**
|
|
1560
|
+
* @description Relay transaction status
|
|
1561
|
+
* @enum {string}
|
|
1562
|
+
*/
|
|
1563
|
+
RelayStatus: "pending" | "success" | "failure" | "refund" | "delayed" | "waiting";
|
|
1584
1564
|
/** @description Cross-chain relay transaction */
|
|
1585
1565
|
RelayTx: {
|
|
1586
1566
|
/**
|
|
@@ -1599,12 +1579,8 @@ export interface components {
|
|
|
1599
1579
|
* @example 0x9df917e14bb089f74763d1d2662761d75c97a5a068b8a9e411c3d384c9c40d19
|
|
1600
1580
|
*/
|
|
1601
1581
|
txHash: string;
|
|
1602
|
-
/**
|
|
1603
|
-
|
|
1604
|
-
* @example success
|
|
1605
|
-
* @enum {string}
|
|
1606
|
-
*/
|
|
1607
|
-
status: "pending" | "success" | "failure" | "refund" | "delayed" | "waiting";
|
|
1582
|
+
/** @example success */
|
|
1583
|
+
status: components["schemas"]["RelayStatus"];
|
|
1608
1584
|
/**
|
|
1609
1585
|
* @description Relay timestamp
|
|
1610
1586
|
* @example 1752505817654
|
package/package.json
CHANGED
|
@@ -79,31 +79,6 @@ export interface paths {
|
|
|
79
79
|
};
|
|
80
80
|
};
|
|
81
81
|
};
|
|
82
|
-
"/health-check": {
|
|
83
|
-
/**
|
|
84
|
-
* Health check
|
|
85
|
-
* @description Returns the health status of the AnySpend service
|
|
86
|
-
*/
|
|
87
|
-
get: {
|
|
88
|
-
responses: {
|
|
89
|
-
/** @description Service is healthy */
|
|
90
|
-
200: {
|
|
91
|
-
content: {
|
|
92
|
-
"application/json": {
|
|
93
|
-
/** @example true */
|
|
94
|
-
success: boolean;
|
|
95
|
-
/** @example Service is healthy */
|
|
96
|
-
message: string;
|
|
97
|
-
/** @example null */
|
|
98
|
-
data?: Record<string, never> | null;
|
|
99
|
-
/** @example 200 */
|
|
100
|
-
statusCode: number;
|
|
101
|
-
};
|
|
102
|
-
};
|
|
103
|
-
};
|
|
104
|
-
};
|
|
105
|
-
};
|
|
106
|
-
};
|
|
107
82
|
"/onramp/coinbase/options": {
|
|
108
83
|
/**
|
|
109
84
|
* Get Coinbase onramp options
|
|
@@ -1606,6 +1581,11 @@ export interface components {
|
|
|
1606
1581
|
*/
|
|
1607
1582
|
createdAt: number;
|
|
1608
1583
|
};
|
|
1584
|
+
/**
|
|
1585
|
+
* @description Relay transaction status
|
|
1586
|
+
* @enum {string}
|
|
1587
|
+
*/
|
|
1588
|
+
RelayStatus: "pending" | "success" | "failure" | "refund" | "delayed" | "waiting";
|
|
1609
1589
|
/** @description Cross-chain relay transaction */
|
|
1610
1590
|
RelayTx: {
|
|
1611
1591
|
/**
|
|
@@ -1624,12 +1604,8 @@ export interface components {
|
|
|
1624
1604
|
* @example 0x9df917e14bb089f74763d1d2662761d75c97a5a068b8a9e411c3d384c9c40d19
|
|
1625
1605
|
*/
|
|
1626
1606
|
txHash: string;
|
|
1627
|
-
/**
|
|
1628
|
-
|
|
1629
|
-
* @example success
|
|
1630
|
-
* @enum {string}
|
|
1631
|
-
*/
|
|
1632
|
-
status: "pending" | "success" | "failure" | "refund" | "delayed" | "waiting";
|
|
1607
|
+
/** @example success */
|
|
1608
|
+
status: components["schemas"]["RelayStatus"];
|
|
1633
1609
|
/**
|
|
1634
1610
|
* @description Relay timestamp
|
|
1635
1611
|
* @example 1752505817654
|