@echoxyz/sonar-core 0.14.2 → 0.14.3

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.14.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 5a7d0b3: Add support for "eu" investing region
8
+
3
9
  ## 0.14.2
4
10
 
5
11
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -434,6 +434,7 @@ var InvestingRegion = /* @__PURE__ */ ((InvestingRegion2) => {
434
434
  InvestingRegion2["UNKNOWN"] = "unknown";
435
435
  InvestingRegion2["OTHER"] = "other";
436
436
  InvestingRegion2["US"] = "us";
437
+ InvestingRegion2["EU"] = "eu";
437
438
  return InvestingRegion2;
438
439
  })(InvestingRegion || {});
439
440
 
package/dist/index.d.cts CHANGED
@@ -104,7 +104,8 @@ declare enum PrePurchaseFailureReason {
104
104
  declare enum InvestingRegion {
105
105
  UNKNOWN = "unknown",
106
106
  OTHER = "other",
107
- US = "us"
107
+ US = "us",
108
+ EU = "eu"
108
109
  }
109
110
  type EntityDetails = {
110
111
  Label: string;
package/dist/index.d.ts CHANGED
@@ -104,7 +104,8 @@ declare enum PrePurchaseFailureReason {
104
104
  declare enum InvestingRegion {
105
105
  UNKNOWN = "unknown",
106
106
  OTHER = "other",
107
- US = "us"
107
+ US = "us",
108
+ EU = "eu"
108
109
  }
109
110
  type EntityDetails = {
110
111
  Label: string;
package/dist/index.js CHANGED
@@ -397,6 +397,7 @@ var InvestingRegion = /* @__PURE__ */ ((InvestingRegion2) => {
397
397
  InvestingRegion2["UNKNOWN"] = "unknown";
398
398
  InvestingRegion2["OTHER"] = "other";
399
399
  InvestingRegion2["US"] = "us";
400
+ InvestingRegion2["EU"] = "eu";
400
401
  return InvestingRegion2;
401
402
  })(InvestingRegion || {});
402
403
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@echoxyz/sonar-core",
3
- "version": "0.14.2",
3
+ "version": "0.14.3",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "repository": {
20
20
  "type": "git",
21
- "url": "https://github.com/echoxyz/sonar"
21
+ "url": "https://github.com/sunrisedotdev/sonar"
22
22
  },
23
23
  "publishConfig": {
24
24
  "access": "public"