@lightsparkdev/core 1.4.1 → 1.4.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 +14 -0
- package/dist/{chunk-NV53XYAS.js → chunk-36QHRQJC.js} +1106 -12
- package/dist/{index-DZbfPQqd.d.cts → index-gUXiTlhb.d.cts} +30 -2
- package/dist/{index-DZbfPQqd.d.ts → index-gUXiTlhb.d.ts} +30 -2
- package/dist/index.cjs +1123 -15
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +22 -4
- package/dist/utils/index.cjs +1111 -13
- package/dist/utils/index.d.cts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/index.js +11 -3
- package/package.json +1 -1
- package/src/requester/Requester.ts +22 -5
- package/src/utils/currency.ts +63 -1
- package/src/utils/environment.ts +7 -0
- package/src/utils/index.ts +1 -0
- package/src/utils/zipcodeToState.ts +1120 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @lightsparkdev/core
|
|
2
2
|
|
|
3
|
+
## 1.4.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e9152bc: - Add INR support to utils/currency
|
|
8
|
+
- Avoid loading graphql-ws in Bare environment due to lack of support there
|
|
9
|
+
|
|
10
|
+
## 1.4.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 52a274f: - Add GBP as valid CurrencyUnit
|
|
15
|
+
- Add zipcodeToState util
|
|
16
|
+
|
|
3
17
|
## 1.4.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|