@echoxyz/sonar-core 0.4.0 → 0.4.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @echoxyz/sonar-core
2
2
 
3
+ ## 0.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - d52cd7b: Add MinAmount to AllocationPermit
8
+
3
9
  ## 0.4.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.d.cts CHANGED
@@ -57,6 +57,7 @@ type AllocationPermit = {
57
57
  Permit: BasicPermit;
58
58
  ReservedAmount: string;
59
59
  MaxAmount: string;
60
+ MinAmount: string;
60
61
  };
61
62
  declare enum PurchasePermitType {
62
63
  BASIC = "basic",
package/dist/index.d.ts CHANGED
@@ -57,6 +57,7 @@ type AllocationPermit = {
57
57
  Permit: BasicPermit;
58
58
  ReservedAmount: string;
59
59
  MaxAmount: string;
60
+ MinAmount: string;
60
61
  };
61
62
  declare enum PurchasePermitType {
62
63
  BASIC = "basic",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@echoxyz/sonar-core",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",