@echoxyz/sonar-core 0.4.1 → 0.5.0
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/index.d.cts +6 -6
- package/dist/index.d.ts +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -47,11 +47,11 @@ declare enum SaleEligibility {
|
|
|
47
47
|
UNKNOWN_INCOMPLETE_SETUP = "unknown-incomplete-setup"
|
|
48
48
|
}
|
|
49
49
|
type BasicPermit = {
|
|
50
|
-
EntityID:
|
|
51
|
-
SaleUUID:
|
|
52
|
-
Wallet:
|
|
53
|
-
ExpiresAt:
|
|
54
|
-
Payload:
|
|
50
|
+
EntityID: Hex;
|
|
51
|
+
SaleUUID: Hex;
|
|
52
|
+
Wallet: Hex;
|
|
53
|
+
ExpiresAt: number;
|
|
54
|
+
Payload: Hex;
|
|
55
55
|
};
|
|
56
56
|
type AllocationPermit = {
|
|
57
57
|
Permit: BasicPermit;
|
|
@@ -96,7 +96,7 @@ type PrePurchaseCheckResponse = {
|
|
|
96
96
|
};
|
|
97
97
|
type GeneratePurchasePermitResponse = {
|
|
98
98
|
PermitJSON: BasicPermit | AllocationPermit;
|
|
99
|
-
Signature:
|
|
99
|
+
Signature: Hex;
|
|
100
100
|
};
|
|
101
101
|
type AllocationResponse = {
|
|
102
102
|
HasReservedAllocation: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -47,11 +47,11 @@ declare enum SaleEligibility {
|
|
|
47
47
|
UNKNOWN_INCOMPLETE_SETUP = "unknown-incomplete-setup"
|
|
48
48
|
}
|
|
49
49
|
type BasicPermit = {
|
|
50
|
-
EntityID:
|
|
51
|
-
SaleUUID:
|
|
52
|
-
Wallet:
|
|
53
|
-
ExpiresAt:
|
|
54
|
-
Payload:
|
|
50
|
+
EntityID: Hex;
|
|
51
|
+
SaleUUID: Hex;
|
|
52
|
+
Wallet: Hex;
|
|
53
|
+
ExpiresAt: number;
|
|
54
|
+
Payload: Hex;
|
|
55
55
|
};
|
|
56
56
|
type AllocationPermit = {
|
|
57
57
|
Permit: BasicPermit;
|
|
@@ -96,7 +96,7 @@ type PrePurchaseCheckResponse = {
|
|
|
96
96
|
};
|
|
97
97
|
type GeneratePurchasePermitResponse = {
|
|
98
98
|
PermitJSON: BasicPermit | AllocationPermit;
|
|
99
|
-
Signature:
|
|
99
|
+
Signature: Hex;
|
|
100
100
|
};
|
|
101
101
|
type AllocationResponse = {
|
|
102
102
|
HasReservedAllocation: boolean;
|