mirror of
https://github.com/wiz0u/WTelegramClient.git
synced 2025-12-06 06:52:01 +01:00
This commit is contained in:
parent
bdcf389ed2
commit
52d948af2a
9
.github/workflows/release.yml
vendored
9
.github/workflows/release.yml
vendored
|
|
@ -54,3 +54,12 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
git tag $VERSION
|
git tag $VERSION
|
||||||
git push --tags
|
git push --tags
|
||||||
|
- name: Deployment Notification
|
||||||
|
env:
|
||||||
|
JSON: |
|
||||||
|
{
|
||||||
|
"status": "success", "complete": true, "commitMessage": ${{ toJSON(github.event.head_commit.message) }},
|
||||||
|
"message": "{ \"commitId\": \"${{ github.sha }}\", \"buildNumber\": \"${{ env.VERSION }}\", \"repoName\": \"${{ github.repository }}\"}"
|
||||||
|
}
|
||||||
|
run: |
|
||||||
|
curl -X POST -H "Content-Type: application/json" -d "$JSON" ${{ secrets.DEPLOYED_WEBHOOK }}
|
||||||
|
|
|
||||||
|
|
@ -2970,14 +2970,14 @@ namespace TL
|
||||||
{
|
{
|
||||||
public Flags flags;
|
public Flags flags;
|
||||||
public StarGiftBase gift;
|
public StarGiftBase gift;
|
||||||
[IfFlag(3)] public int can_export_at;
|
[IfFlag(3)] public DateTime can_export_at;
|
||||||
[IfFlag(4)] public long transfer_stars;
|
[IfFlag(4)] public long transfer_stars;
|
||||||
[IfFlag(6)] public Peer from_id;
|
[IfFlag(6)] public Peer from_id;
|
||||||
[IfFlag(7)] public Peer peer;
|
[IfFlag(7)] public Peer peer;
|
||||||
[IfFlag(7)] public long saved_id;
|
[IfFlag(7)] public long saved_id;
|
||||||
[IfFlag(8)] public long resale_stars;
|
[IfFlag(8)] public long resale_stars;
|
||||||
[IfFlag(9)] public int can_transfer_at;
|
[IfFlag(9)] public DateTime can_transfer_at;
|
||||||
[IfFlag(10)] public int can_resell_at;
|
[IfFlag(10)] public DateTime can_resell_at;
|
||||||
|
|
||||||
[Flags] public enum Flags : uint
|
[Flags] public enum Flags : uint
|
||||||
{
|
{
|
||||||
|
|
@ -19791,7 +19791,7 @@ namespace TL
|
||||||
/// <summary>Total amount of earned Telegram Stars.</summary>
|
/// <summary>Total amount of earned Telegram Stars.</summary>
|
||||||
public StarsAmountBase overall_revenue;
|
public StarsAmountBase overall_revenue;
|
||||||
/// <summary>Unixtime indicating when will withdrawal be available to the user. If not set, withdrawal can be started now.</summary>
|
/// <summary>Unixtime indicating when will withdrawal be available to the user. If not set, withdrawal can be started now.</summary>
|
||||||
[IfFlag(1)] public int next_withdrawal_at;
|
[IfFlag(1)] public DateTime next_withdrawal_at;
|
||||||
|
|
||||||
[Flags] public enum Flags : uint
|
[Flags] public enum Flags : uint
|
||||||
{
|
{
|
||||||
|
|
@ -20518,10 +20518,10 @@ namespace TL
|
||||||
[IfFlag(11)] public long saved_id;
|
[IfFlag(11)] public long saved_id;
|
||||||
[IfFlag(4)] public long convert_stars;
|
[IfFlag(4)] public long convert_stars;
|
||||||
[IfFlag(6)] public long upgrade_stars;
|
[IfFlag(6)] public long upgrade_stars;
|
||||||
[IfFlag(7)] public int can_export_at;
|
[IfFlag(7)] public DateTime can_export_at;
|
||||||
[IfFlag(8)] public long transfer_stars;
|
[IfFlag(8)] public long transfer_stars;
|
||||||
[IfFlag(13)] public int can_transfer_at;
|
[IfFlag(13)] public DateTime can_transfer_at;
|
||||||
[IfFlag(14)] public int can_resell_at;
|
[IfFlag(14)] public DateTime can_resell_at;
|
||||||
|
|
||||||
[Flags] public enum Flags : uint
|
[Flags] public enum Flags : uint
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue