tiktok-live-proto 0.1.3 → 0.1.4
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/README.md +3 -0
- package/dist/node/v3.d.ts +7250 -0
- package/dist/node/v3.js +36764 -0
- package/dist/web/v3.d.ts +7250 -0
- package/dist/web/v3.js +36764 -0
- package/package.json +11 -1
package/README.md
CHANGED
|
@@ -18,6 +18,9 @@ import { WebcastResponse, WebcastChatMessage } from 'tiktok-live-proto/v1';
|
|
|
18
18
|
|
|
19
19
|
// v2 schema
|
|
20
20
|
import { WebcastResponse } from 'tiktok-live-proto/v2';
|
|
21
|
+
|
|
22
|
+
// v3 schema (multi-package; collisions disambiguated via disambiguation.yaml)
|
|
23
|
+
import { EnvelopeEnigmaInfo, AnchorSubWaveChallengeSettings } from 'tiktok-live-proto/v3';
|
|
21
24
|
```
|
|
22
25
|
|
|
23
26
|
The correct runtime build (Node vs. browser) is selected automatically by the
|