@coxwave/tap-sdk 0.3.1 → 0.3.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/dist/index.d.cts CHANGED
@@ -36,7 +36,7 @@ declare class TapKit implements TapKitInstance {
36
36
  private load;
37
37
  get ready(): Promise<void>;
38
38
  get events(): {
39
- seekTimeline: (params: _coxwave_tap_kit_types.SeekTimelineParamsType) => Promise<void>;
39
+ seekTimeline: (params: _coxwave_tap_kit_types.SeekTimelineParamsType) => void;
40
40
  onTimelineSeek: (callback: (clipPlayHead: number, clipId: string) => void) => () => void;
41
41
  onChatOpened: (handler: () => void) => () => void;
42
42
  onChatClosed: (handler: () => void) => () => void;
package/dist/index.d.ts CHANGED
@@ -36,7 +36,7 @@ declare class TapKit implements TapKitInstance {
36
36
  private load;
37
37
  get ready(): Promise<void>;
38
38
  get events(): {
39
- seekTimeline: (params: _coxwave_tap_kit_types.SeekTimelineParamsType) => Promise<void>;
39
+ seekTimeline: (params: _coxwave_tap_kit_types.SeekTimelineParamsType) => void;
40
40
  onTimelineSeek: (callback: (clipPlayHead: number, clipId: string) => void) => () => void;
41
41
  onChatOpened: (handler: () => void) => () => void;
42
42
  onChatClosed: (handler: () => void) => () => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coxwave/tap-sdk",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "type": "module",
5
5
  "description": "TapSDK - Minimal wrapper that loads TapSDK from CDN",
6
6
  "main": "dist/index.js",
@@ -15,14 +15,6 @@
15
15
  "require": "./dist/index.js"
16
16
  }
17
17
  },
18
- "scripts": {
19
- "build": "tsup",
20
- "build:analyze": "tsup --metafile",
21
- "dev": "tsup --watch",
22
- "prepublishOnly": "pnpm build",
23
- "lint": "eslint .",
24
- "publish:npm": "./scripts/publish.sh"
25
- },
26
18
  "keywords": [
27
19
  "sdk",
28
20
  "loader",
@@ -36,11 +28,20 @@
36
28
  "dist",
37
29
  "src"
38
30
  ],
31
+ "dependencies": {
32
+ "@coxwave/tap-kit-types": "0.0.43"
33
+ },
39
34
  "devDependencies": {
40
- "@coxwave/config-eslint": "workspace:*",
41
- "@coxwave/config-typescript": "workspace:*",
42
- "@coxwave/tap-messages": "workspace:*",
43
- "@coxwave/tap-kit-types": "workspace:*",
44
- "tsup": "^8.5.0"
35
+ "tsup": "^8.5.0",
36
+ "@coxwave/tap-messages": "0.0.1",
37
+ "@coxwave/config-typescript": "1.0.0",
38
+ "@coxwave/config-eslint": "1.0.0"
39
+ },
40
+ "scripts": {
41
+ "build": "tsup",
42
+ "build:analyze": "tsup --metafile",
43
+ "dev": "tsup --watch",
44
+ "lint": "eslint .",
45
+ "publish:npm": "./scripts/publish.sh"
45
46
  }
46
- }
47
+ }