tiktok-live-proto 0.1.0 → 0.1.1

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/node/v2.d.ts CHANGED
@@ -200,6 +200,7 @@ declare enum EnvelopeBusinessType {
200
200
  BusinessTypePlatformMerch = 5,
201
201
  BusinessTypeEoYDiamond = 6,
202
202
  BusinessTypeFanClubGtM = 7,
203
+ BusinessTypeSuperFanBox = 19,
203
204
  UNRECOGNIZED = -1
204
205
  }
205
206
  declare enum EnvelopeFollowShowStatus {
package/dist/node/v2.js CHANGED
@@ -219,6 +219,7 @@ let EnvelopeBusinessType = /* @__PURE__ */ function(EnvelopeBusinessType) {
219
219
  EnvelopeBusinessType[EnvelopeBusinessType["BusinessTypePlatformMerch"] = 5] = "BusinessTypePlatformMerch";
220
220
  EnvelopeBusinessType[EnvelopeBusinessType["BusinessTypeEoYDiamond"] = 6] = "BusinessTypeEoYDiamond";
221
221
  EnvelopeBusinessType[EnvelopeBusinessType["BusinessTypeFanClubGtM"] = 7] = "BusinessTypeFanClubGtM";
222
+ EnvelopeBusinessType[EnvelopeBusinessType["BusinessTypeSuperFanBox"] = 19] = "BusinessTypeSuperFanBox";
222
223
  EnvelopeBusinessType[EnvelopeBusinessType["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
223
224
  return EnvelopeBusinessType;
224
225
  }({});
package/dist/web/v2.d.ts CHANGED
@@ -200,6 +200,7 @@ declare enum EnvelopeBusinessType {
200
200
  BusinessTypePlatformMerch = 5,
201
201
  BusinessTypeEoYDiamond = 6,
202
202
  BusinessTypeFanClubGtM = 7,
203
+ BusinessTypeSuperFanBox = 19,
203
204
  UNRECOGNIZED = -1
204
205
  }
205
206
  declare enum EnvelopeFollowShowStatus {
package/dist/web/v2.js CHANGED
@@ -219,6 +219,7 @@ let EnvelopeBusinessType = /* @__PURE__ */ function(EnvelopeBusinessType) {
219
219
  EnvelopeBusinessType[EnvelopeBusinessType["BusinessTypePlatformMerch"] = 5] = "BusinessTypePlatformMerch";
220
220
  EnvelopeBusinessType[EnvelopeBusinessType["BusinessTypeEoYDiamond"] = 6] = "BusinessTypeEoYDiamond";
221
221
  EnvelopeBusinessType[EnvelopeBusinessType["BusinessTypeFanClubGtM"] = 7] = "BusinessTypeFanClubGtM";
222
+ EnvelopeBusinessType[EnvelopeBusinessType["BusinessTypeSuperFanBox"] = 19] = "BusinessTypeSuperFanBox";
222
223
  EnvelopeBusinessType[EnvelopeBusinessType["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
223
224
  return EnvelopeBusinessType;
224
225
  }({});
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "tiktok-live-proto",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Clean-room TypeScript bindings for the TikTok Webcast Protobuf schema.",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
+ "repository": {
8
+ "url": "https://github.com/isaackogan/TikTok-Webcast-Protobuf"
9
+ },
7
10
  "sideEffects": false,
8
11
  "files": [
9
12
  "dist",
@@ -31,6 +34,12 @@
31
34
  }
32
35
  }
33
36
  },
37
+ "scripts": {
38
+ "generate": "tsx scripts/generate.mts",
39
+ "build": "tsdown",
40
+ "clean": "rm -rf dist tmp",
41
+ "prepack": "npm run build"
42
+ },
34
43
  "dependencies": {
35
44
  "@bufbuild/protobuf": "^2.2.5"
36
45
  },
@@ -40,10 +49,5 @@
40
49
  "tsdown": "^0.21.0",
41
50
  "tsx": "^4.19.0",
42
51
  "typescript": "^5.6.0"
43
- },
44
- "scripts": {
45
- "generate": "tsx scripts/generate.mts",
46
- "build": "tsdown",
47
- "clean": "rm -rf dist tmp"
48
52
  }
49
- }
53
+ }