@local-logic/types 0.1.1 → 0.1.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @local-logic/types
2
2
 
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 8af52116: Removed dependency between sdks packages
8
+ - 26aaa752: Added types required for native sdk
9
+
3
10
  ## 0.1.1
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@local-logic/types",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "author": "Local Logic",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
8
  "license": "ISC",
9
- "main": "./dist/index.d.js",
9
+ "main": "./dist/index.d.ts",
10
10
  "scripts": {
11
11
  "dev": "vite",
12
12
  "build": "vite build",
package/src/index.ts CHANGED
@@ -1 +1,2 @@
1
- export { ChannelEvents, type SDKPropsMappings } from "@local-logic/sdks-app";
1
+ export type { SDKPropsMappings, SDKProps } from "@local-logic/sdks-app";
2
+ export { ChannelEvents } from "@local-logic/channel";