discord-protos 1.2.81 → 1.2.82
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/discord_protos/__init__.py +1 -1
- package/discord_protos/discord_experimentation/v1/Experiment.proto +6 -0
- package/discord_protos/discord_experimentation/v1/Experiment_pb2.py +24 -22
- package/dist/discord_protos/discord_users/v1/PreloadedUserSettings.d.ts +8 -0
- package/dist/discord_protos/discord_users/v1/PreloadedUserSettings.js +16 -2
- package/dist/discord_protos/users/v1/GuildShardingConfig.d.ts +26 -0
- package/dist/discord_protos/users/v1/GuildShardingConfig.js +62 -0
- package/dist/discord_protos/users/v1/MediumUser.d.ts +55 -0
- package/dist/discord_protos/users/v1/MediumUser.js +108 -0
- package/dist/discord_protos/users/v1/User.d.ts +552 -0
- package/dist/discord_protos/users/v1/User.js +989 -0
- package/dist/discord_protos/users/v1/UserData.d.ts +802 -0
- package/dist/discord_protos/users/v1/UserData.js +1493 -0
- package/dist/index.d.ts +5 -1
- package/dist/index.js +5 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4,9 +4,13 @@ declare module "@protobuf-ts/runtime" {
|
|
|
4
4
|
fromBase64(base64: string): T;
|
|
5
5
|
}
|
|
6
6
|
}
|
|
7
|
+
export * from "./discord_protos/users/v1/User";
|
|
8
|
+
export * from "./discord_protos/users/v1/MediumUser";
|
|
9
|
+
export * from "./discord_protos/users/v1/UserData";
|
|
10
|
+
export * from "./discord_protos/users/v1/GuildShardingConfig";
|
|
7
11
|
export * from "./discord_protos/discord_users/v1/PreloadedUserSettings";
|
|
8
12
|
export * from "./discord_protos/discord_users/v1/FrecencyUserSettings";
|
|
13
|
+
export * from "./discord_protos/discord_experimentation/v1/Experiment";
|
|
9
14
|
export * from "./discord_protos/discord_kkv_store_value_models/v1/ApplicationUserRoleConnection";
|
|
10
15
|
export * from "./discord_protos/discord_kkv_store_value_models/v1/AcknowledgedApplicationDisclosures";
|
|
11
|
-
export * from "./discord_protos/discord_experimentation/v1/Experiment";
|
|
12
16
|
export * from "./discord_protos/premium_marketing/v1/PremiumMarketingComponentProperties";
|
package/dist/index.js
CHANGED
|
@@ -50,9 +50,13 @@ function fromBase64(base64) {
|
|
|
50
50
|
}
|
|
51
51
|
runtime_1.MessageType.prototype.fromBase64 = fromBase64;
|
|
52
52
|
runtime_1.MessageType.prototype.toBase64 = toBase64;
|
|
53
|
+
__exportStar(require("./discord_protos/users/v1/User"), exports);
|
|
54
|
+
__exportStar(require("./discord_protos/users/v1/MediumUser"), exports);
|
|
55
|
+
__exportStar(require("./discord_protos/users/v1/UserData"), exports);
|
|
56
|
+
__exportStar(require("./discord_protos/users/v1/GuildShardingConfig"), exports);
|
|
53
57
|
__exportStar(require("./discord_protos/discord_users/v1/PreloadedUserSettings"), exports);
|
|
54
58
|
__exportStar(require("./discord_protos/discord_users/v1/FrecencyUserSettings"), exports);
|
|
59
|
+
__exportStar(require("./discord_protos/discord_experimentation/v1/Experiment"), exports);
|
|
55
60
|
__exportStar(require("./discord_protos/discord_kkv_store_value_models/v1/ApplicationUserRoleConnection"), exports);
|
|
56
61
|
__exportStar(require("./discord_protos/discord_kkv_store_value_models/v1/AcknowledgedApplicationDisclosures"), exports);
|
|
57
|
-
__exportStar(require("./discord_protos/discord_experimentation/v1/Experiment"), exports);
|
|
58
62
|
__exportStar(require("./discord_protos/premium_marketing/v1/PremiumMarketingComponentProperties"), exports);
|