@coxwave/tap-kit-types 0.0.42 → 0.0.43

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +13 -14
package/dist/index.d.ts CHANGED
@@ -104,7 +104,7 @@ declare const TAPKIT_CONFIG_SYMBOL: unique symbol;
104
104
  /** TapKit instance interface - shared by tap-kit-core and tap-sdk */
105
105
  interface TapKitInstance {
106
106
  events: {
107
- seekTimeline: (params: SeekTimelineParamsType) => Promise<void>;
107
+ seekTimeline: (params: SeekTimelineParamsType) => void;
108
108
  onTimelineSeek: (callback: (clipPlayHead: number, clipId: string) => void) => () => void;
109
109
  onChatOpened: (handler: () => void) => () => void;
110
110
  onChatClosed: (handler: () => void) => () => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coxwave/tap-kit-types",
3
- "version": "0.0.42",
3
+ "version": "0.0.43",
4
4
  "type": "module",
5
5
  "description": "Shared TypeScript types for TapKit SDK packages",
6
6
  "main": "dist/index.js",
@@ -11,12 +11,6 @@
11
11
  "import": "./dist/index.js"
12
12
  }
13
13
  },
14
- "scripts": {
15
- "build": "tsup",
16
- "dev": "tsup --watch",
17
- "lint": "eslint .",
18
- "publish:npm": "./scripts/publish.sh"
19
- },
20
14
  "keywords": [
21
15
  "tapkit",
22
16
  "types",
@@ -28,13 +22,18 @@
28
22
  "dist",
29
23
  "index.ts"
30
24
  ],
31
- "peerDependencies": {
32
- "@coxwave/tap-messages": "^0.0.1"
25
+ "dependencies": {
26
+ "@coxwave/tap-messages": "0.0.1"
33
27
  },
34
28
  "devDependencies": {
35
- "@coxwave/config-eslint": "workspace:*",
36
- "@coxwave/config-typescript": "workspace:*",
37
- "@coxwave/tap-messages": "workspace:*",
38
- "tsup": "^8.5.0"
29
+ "tsup": "^8.5.0",
30
+ "@coxwave/config-eslint": "1.0.0",
31
+ "@coxwave/config-typescript": "1.0.0"
32
+ },
33
+ "scripts": {
34
+ "build": "tsup",
35
+ "dev": "tsup --watch",
36
+ "lint": "eslint .",
37
+ "publish:npm": "./scripts/publish.sh"
39
38
  }
40
- }
39
+ }