mezon-js-protobuf 1.8.8 → 1.8.10
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/api/api.ts +557 -43
- package/dist/mezon-js-protobuf/api/api.d.ts +284 -46
- package/package.json +1 -1
|
@@ -1953,6 +1953,7 @@ export interface ClanEmojiCreateRequest {
|
|
|
1953
1953
|
shortname: string;
|
|
1954
1954
|
category: string;
|
|
1955
1955
|
id: string;
|
|
1956
|
+
is_for_sale: boolean;
|
|
1956
1957
|
}
|
|
1957
1958
|
export interface ClanEmojiGetByClanIdRequest {
|
|
1958
1959
|
clan_id: string;
|
|
@@ -2038,11 +2039,13 @@ export interface ClanStickerAddRequest {
|
|
|
2038
2039
|
source: string;
|
|
2039
2040
|
shortname: string;
|
|
2040
2041
|
category: string;
|
|
2041
|
-
clan_id:
|
|
2042
|
+
clan_id: string;
|
|
2042
2043
|
/** UNIQUE include type number */
|
|
2043
2044
|
id: string;
|
|
2044
2045
|
/** media type for image or audio */
|
|
2045
2046
|
media_type: number;
|
|
2047
|
+
/** is for sale */
|
|
2048
|
+
is_for_sale: boolean;
|
|
2046
2049
|
}
|
|
2047
2050
|
export interface ClanStickerListByClanIdRequest {
|
|
2048
2051
|
clan_id: string;
|
|
@@ -2654,9 +2657,11 @@ export interface TokenSentEvent {
|
|
|
2654
2657
|
/** */
|
|
2655
2658
|
transaction_id: string;
|
|
2656
2659
|
}
|
|
2657
|
-
export interface
|
|
2658
|
-
/**
|
|
2659
|
-
|
|
2660
|
+
export interface UnlockItemRequest {
|
|
2661
|
+
/** item id */
|
|
2662
|
+
item_id: string;
|
|
2663
|
+
/** item type */
|
|
2664
|
+
item_type: number;
|
|
2660
2665
|
}
|
|
2661
2666
|
export interface ListOnboardingRequest {
|
|
2662
2667
|
/** clan id */
|
|
@@ -3008,7 +3013,7 @@ export interface MezonOauthClient {
|
|
|
3008
3013
|
userinfo_signed_response_alg: string;
|
|
3009
3014
|
}
|
|
3010
3015
|
export interface MezonOauthClientList {
|
|
3011
|
-
|
|
3016
|
+
list_mezon_oauth_client: MezonOauthClient[];
|
|
3012
3017
|
}
|
|
3013
3018
|
export interface GetMezonOauthClientRequest {
|
|
3014
3019
|
client_id: string;
|
|
@@ -3064,6 +3069,31 @@ export interface AccountMezon_VarsEntry {
|
|
|
3064
3069
|
key: string;
|
|
3065
3070
|
value: string;
|
|
3066
3071
|
}
|
|
3072
|
+
export interface QuickMenuAccessRequest {
|
|
3073
|
+
id: string;
|
|
3074
|
+
bot_id: string;
|
|
3075
|
+
clan_id: string;
|
|
3076
|
+
channel_id: string;
|
|
3077
|
+
menu_name: string;
|
|
3078
|
+
background: string;
|
|
3079
|
+
action_msg: string;
|
|
3080
|
+
}
|
|
3081
|
+
export interface QuickMenuAccess {
|
|
3082
|
+
id: string;
|
|
3083
|
+
bot_id: string;
|
|
3084
|
+
clan_id: string;
|
|
3085
|
+
channel_id: string;
|
|
3086
|
+
menu_name: string;
|
|
3087
|
+
background: string;
|
|
3088
|
+
action_msg: string;
|
|
3089
|
+
}
|
|
3090
|
+
export interface ListQuickMenuAccessRequest {
|
|
3091
|
+
bot_id: string;
|
|
3092
|
+
channel_id: string;
|
|
3093
|
+
}
|
|
3094
|
+
export interface QuickMenuAccessList {
|
|
3095
|
+
list_menus: QuickMenuAccess[];
|
|
3096
|
+
}
|
|
3067
3097
|
export declare const Account: {
|
|
3068
3098
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3069
3099
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -16115,12 +16145,14 @@ export declare const ClanEmojiCreateRequest: {
|
|
|
16115
16145
|
shortname?: string | undefined;
|
|
16116
16146
|
category?: string | undefined;
|
|
16117
16147
|
id?: string | undefined;
|
|
16148
|
+
is_for_sale?: boolean | undefined;
|
|
16118
16149
|
} & {
|
|
16119
16150
|
clan_id?: string | undefined;
|
|
16120
16151
|
source?: string | undefined;
|
|
16121
16152
|
shortname?: string | undefined;
|
|
16122
16153
|
category?: string | undefined;
|
|
16123
16154
|
id?: string | undefined;
|
|
16155
|
+
is_for_sale?: boolean | undefined;
|
|
16124
16156
|
} & { [K in Exclude<keyof I, keyof ClanEmojiCreateRequest>]: never; }>(base?: I | undefined): ClanEmojiCreateRequest;
|
|
16125
16157
|
fromPartial<I_1 extends {
|
|
16126
16158
|
clan_id?: string | undefined;
|
|
@@ -16128,12 +16160,14 @@ export declare const ClanEmojiCreateRequest: {
|
|
|
16128
16160
|
shortname?: string | undefined;
|
|
16129
16161
|
category?: string | undefined;
|
|
16130
16162
|
id?: string | undefined;
|
|
16163
|
+
is_for_sale?: boolean | undefined;
|
|
16131
16164
|
} & {
|
|
16132
16165
|
clan_id?: string | undefined;
|
|
16133
16166
|
source?: string | undefined;
|
|
16134
16167
|
shortname?: string | undefined;
|
|
16135
16168
|
category?: string | undefined;
|
|
16136
16169
|
id?: string | undefined;
|
|
16170
|
+
is_for_sale?: boolean | undefined;
|
|
16137
16171
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanEmojiCreateRequest>]: never; }>(object: I_1): ClanEmojiCreateRequest;
|
|
16138
16172
|
};
|
|
16139
16173
|
export declare const ClanEmojiGetByClanIdRequest: {
|
|
@@ -16607,31 +16641,35 @@ export declare const ClanStickerAddRequest: {
|
|
|
16607
16641
|
source?: string | undefined;
|
|
16608
16642
|
shortname?: string | undefined;
|
|
16609
16643
|
category?: string | undefined;
|
|
16610
|
-
clan_id?:
|
|
16644
|
+
clan_id?: string | undefined;
|
|
16611
16645
|
id?: string | undefined;
|
|
16612
16646
|
media_type?: number | undefined;
|
|
16647
|
+
is_for_sale?: boolean | undefined;
|
|
16613
16648
|
} & {
|
|
16614
16649
|
source?: string | undefined;
|
|
16615
16650
|
shortname?: string | undefined;
|
|
16616
16651
|
category?: string | undefined;
|
|
16617
|
-
clan_id?:
|
|
16652
|
+
clan_id?: string | undefined;
|
|
16618
16653
|
id?: string | undefined;
|
|
16619
16654
|
media_type?: number | undefined;
|
|
16655
|
+
is_for_sale?: boolean | undefined;
|
|
16620
16656
|
} & { [K in Exclude<keyof I, keyof ClanStickerAddRequest>]: never; }>(base?: I | undefined): ClanStickerAddRequest;
|
|
16621
16657
|
fromPartial<I_1 extends {
|
|
16622
16658
|
source?: string | undefined;
|
|
16623
16659
|
shortname?: string | undefined;
|
|
16624
16660
|
category?: string | undefined;
|
|
16625
|
-
clan_id?:
|
|
16661
|
+
clan_id?: string | undefined;
|
|
16626
16662
|
id?: string | undefined;
|
|
16627
16663
|
media_type?: number | undefined;
|
|
16664
|
+
is_for_sale?: boolean | undefined;
|
|
16628
16665
|
} & {
|
|
16629
16666
|
source?: string | undefined;
|
|
16630
16667
|
shortname?: string | undefined;
|
|
16631
16668
|
category?: string | undefined;
|
|
16632
|
-
clan_id?:
|
|
16669
|
+
clan_id?: string | undefined;
|
|
16633
16670
|
id?: string | undefined;
|
|
16634
16671
|
media_type?: number | undefined;
|
|
16672
|
+
is_for_sale?: boolean | undefined;
|
|
16635
16673
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanStickerAddRequest>]: never; }>(object: I_1): ClanStickerAddRequest;
|
|
16636
16674
|
};
|
|
16637
16675
|
export declare const ClanStickerListByClanIdRequest: {
|
|
@@ -20542,21 +20580,25 @@ export declare const TokenSentEvent: {
|
|
|
20542
20580
|
transaction_id?: string | undefined;
|
|
20543
20581
|
} & { [K_1 in Exclude<keyof I_1, keyof TokenSentEvent>]: never; }>(object: I_1): TokenSentEvent;
|
|
20544
20582
|
};
|
|
20545
|
-
export declare const
|
|
20546
|
-
encode(message:
|
|
20547
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
20548
|
-
fromJSON(object: any):
|
|
20549
|
-
toJSON(message:
|
|
20583
|
+
export declare const UnlockItemRequest: {
|
|
20584
|
+
encode(message: UnlockItemRequest, writer?: _m0.Writer): _m0.Writer;
|
|
20585
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UnlockItemRequest;
|
|
20586
|
+
fromJSON(object: any): UnlockItemRequest;
|
|
20587
|
+
toJSON(message: UnlockItemRequest): unknown;
|
|
20550
20588
|
create<I extends {
|
|
20551
|
-
|
|
20589
|
+
item_id?: string | undefined;
|
|
20590
|
+
item_type?: number | undefined;
|
|
20552
20591
|
} & {
|
|
20553
|
-
|
|
20554
|
-
|
|
20592
|
+
item_id?: string | undefined;
|
|
20593
|
+
item_type?: number | undefined;
|
|
20594
|
+
} & { [K in Exclude<keyof I, keyof UnlockItemRequest>]: never; }>(base?: I | undefined): UnlockItemRequest;
|
|
20555
20595
|
fromPartial<I_1 extends {
|
|
20556
|
-
|
|
20596
|
+
item_id?: string | undefined;
|
|
20597
|
+
item_type?: number | undefined;
|
|
20557
20598
|
} & {
|
|
20558
|
-
|
|
20559
|
-
|
|
20599
|
+
item_id?: string | undefined;
|
|
20600
|
+
item_type?: number | undefined;
|
|
20601
|
+
} & { [K_1 in Exclude<keyof I_1, keyof UnlockItemRequest>]: never; }>(object: I_1): UnlockItemRequest;
|
|
20560
20602
|
};
|
|
20561
20603
|
export declare const ListOnboardingRequest: {
|
|
20562
20604
|
encode(message: ListOnboardingRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -23472,7 +23514,7 @@ export declare const MezonOauthClientList: {
|
|
|
23472
23514
|
fromJSON(object: any): MezonOauthClientList;
|
|
23473
23515
|
toJSON(message: MezonOauthClientList): unknown;
|
|
23474
23516
|
create<I extends {
|
|
23475
|
-
|
|
23517
|
+
list_mezon_oauth_client?: {
|
|
23476
23518
|
access_token_strategy?: string | undefined;
|
|
23477
23519
|
allowed_cors_origins?: string[] | undefined;
|
|
23478
23520
|
audience?: string[] | undefined;
|
|
@@ -23522,7 +23564,7 @@ export declare const MezonOauthClientList: {
|
|
|
23522
23564
|
userinfo_signed_response_alg?: string | undefined;
|
|
23523
23565
|
}[] | undefined;
|
|
23524
23566
|
} & {
|
|
23525
|
-
|
|
23567
|
+
list_mezon_oauth_client?: ({
|
|
23526
23568
|
access_token_strategy?: string | undefined;
|
|
23527
23569
|
allowed_cors_origins?: string[] | undefined;
|
|
23528
23570
|
audience?: string[] | undefined;
|
|
@@ -23620,8 +23662,8 @@ export declare const MezonOauthClientList: {
|
|
|
23620
23662
|
userinfo_signed_response_alg?: string | undefined;
|
|
23621
23663
|
} & {
|
|
23622
23664
|
access_token_strategy?: string | undefined;
|
|
23623
|
-
allowed_cors_origins?: (string[] & string[] & { [K in Exclude<keyof I["
|
|
23624
|
-
audience?: (string[] & string[] & { [K_1 in Exclude<keyof I["
|
|
23665
|
+
allowed_cors_origins?: (string[] & string[] & { [K in Exclude<keyof I["list_mezon_oauth_client"][number]["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
23666
|
+
audience?: (string[] & string[] & { [K_1 in Exclude<keyof I["list_mezon_oauth_client"][number]["audience"], keyof string[]>]: never; }) | undefined;
|
|
23625
23667
|
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
23626
23668
|
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
23627
23669
|
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
@@ -23633,29 +23675,29 @@ export declare const MezonOauthClientList: {
|
|
|
23633
23675
|
client_secret?: string | undefined;
|
|
23634
23676
|
client_secret_expires_at?: number | undefined;
|
|
23635
23677
|
client_uri?: string | undefined;
|
|
23636
|
-
contacts?: (string[] & string[] & { [K_2 in Exclude<keyof I["
|
|
23678
|
+
contacts?: (string[] & string[] & { [K_2 in Exclude<keyof I["list_mezon_oauth_client"][number]["contacts"], keyof string[]>]: never; }) | undefined;
|
|
23637
23679
|
created_at?: Date | undefined;
|
|
23638
23680
|
frontchannel_logout_session_required?: boolean | undefined;
|
|
23639
23681
|
frontchannel_logout_uri?: string | undefined;
|
|
23640
|
-
grant_types?: (string[] & string[] & { [K_3 in Exclude<keyof I["
|
|
23682
|
+
grant_types?: (string[] & string[] & { [K_3 in Exclude<keyof I["list_mezon_oauth_client"][number]["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
23641
23683
|
implicit_grant_access_token_lifespan?: string | undefined;
|
|
23642
23684
|
implicit_grant_id_token_lifespan?: string | undefined;
|
|
23643
|
-
jwks?: (string[] & string[] & { [K_4 in Exclude<keyof I["
|
|
23685
|
+
jwks?: (string[] & string[] & { [K_4 in Exclude<keyof I["list_mezon_oauth_client"][number]["jwks"], keyof string[]>]: never; }) | undefined;
|
|
23644
23686
|
jwks_uri?: string | undefined;
|
|
23645
23687
|
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
23646
23688
|
logo_uri?: string | undefined;
|
|
23647
23689
|
owner?: string | undefined;
|
|
23648
23690
|
policy_uri?: string | undefined;
|
|
23649
|
-
post_logout_redirect_uris?: (string[] & string[] & { [K_5 in Exclude<keyof I["
|
|
23650
|
-
redirect_uris?: (string[] & string[] & { [K_6 in Exclude<keyof I["
|
|
23691
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_5 in Exclude<keyof I["list_mezon_oauth_client"][number]["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
23692
|
+
redirect_uris?: (string[] & string[] & { [K_6 in Exclude<keyof I["list_mezon_oauth_client"][number]["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
23651
23693
|
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
23652
23694
|
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
23653
23695
|
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
23654
23696
|
registration_access_token?: string | undefined;
|
|
23655
23697
|
registration_client_uri?: string | undefined;
|
|
23656
23698
|
request_object_signing_alg?: string | undefined;
|
|
23657
|
-
request_uris?: (string[] & string[] & { [K_7 in Exclude<keyof I["
|
|
23658
|
-
response_types?: (string[] & string[] & { [K_8 in Exclude<keyof I["
|
|
23699
|
+
request_uris?: (string[] & string[] & { [K_7 in Exclude<keyof I["list_mezon_oauth_client"][number]["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
23700
|
+
response_types?: (string[] & string[] & { [K_8 in Exclude<keyof I["list_mezon_oauth_client"][number]["response_types"], keyof string[]>]: never; }) | undefined;
|
|
23659
23701
|
scope?: string | undefined;
|
|
23660
23702
|
sector_identifier_uri?: string | undefined;
|
|
23661
23703
|
skip_consent?: boolean | undefined;
|
|
@@ -23666,7 +23708,7 @@ export declare const MezonOauthClientList: {
|
|
|
23666
23708
|
tos_uri?: string | undefined;
|
|
23667
23709
|
updated_at?: Date | undefined;
|
|
23668
23710
|
userinfo_signed_response_alg?: string | undefined;
|
|
23669
|
-
} & { [K_9 in Exclude<keyof I["
|
|
23711
|
+
} & { [K_9 in Exclude<keyof I["list_mezon_oauth_client"][number], keyof MezonOauthClient>]: never; })[] & { [K_10 in Exclude<keyof I["list_mezon_oauth_client"], keyof {
|
|
23670
23712
|
access_token_strategy?: string | undefined;
|
|
23671
23713
|
allowed_cors_origins?: string[] | undefined;
|
|
23672
23714
|
audience?: string[] | undefined;
|
|
@@ -23715,9 +23757,9 @@ export declare const MezonOauthClientList: {
|
|
|
23715
23757
|
updated_at?: Date | undefined;
|
|
23716
23758
|
userinfo_signed_response_alg?: string | undefined;
|
|
23717
23759
|
}[]>]: never; }) | undefined;
|
|
23718
|
-
} & { [K_11 in Exclude<keyof I, "
|
|
23760
|
+
} & { [K_11 in Exclude<keyof I, "list_mezon_oauth_client">]: never; }>(base?: I | undefined): MezonOauthClientList;
|
|
23719
23761
|
fromPartial<I_1 extends {
|
|
23720
|
-
|
|
23762
|
+
list_mezon_oauth_client?: {
|
|
23721
23763
|
access_token_strategy?: string | undefined;
|
|
23722
23764
|
allowed_cors_origins?: string[] | undefined;
|
|
23723
23765
|
audience?: string[] | undefined;
|
|
@@ -23767,7 +23809,7 @@ export declare const MezonOauthClientList: {
|
|
|
23767
23809
|
userinfo_signed_response_alg?: string | undefined;
|
|
23768
23810
|
}[] | undefined;
|
|
23769
23811
|
} & {
|
|
23770
|
-
|
|
23812
|
+
list_mezon_oauth_client?: ({
|
|
23771
23813
|
access_token_strategy?: string | undefined;
|
|
23772
23814
|
allowed_cors_origins?: string[] | undefined;
|
|
23773
23815
|
audience?: string[] | undefined;
|
|
@@ -23865,8 +23907,8 @@ export declare const MezonOauthClientList: {
|
|
|
23865
23907
|
userinfo_signed_response_alg?: string | undefined;
|
|
23866
23908
|
} & {
|
|
23867
23909
|
access_token_strategy?: string | undefined;
|
|
23868
|
-
allowed_cors_origins?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["
|
|
23869
|
-
audience?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["
|
|
23910
|
+
allowed_cors_origins?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
23911
|
+
audience?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["audience"], keyof string[]>]: never; }) | undefined;
|
|
23870
23912
|
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
23871
23913
|
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
23872
23914
|
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
@@ -23878,29 +23920,29 @@ export declare const MezonOauthClientList: {
|
|
|
23878
23920
|
client_secret?: string | undefined;
|
|
23879
23921
|
client_secret_expires_at?: number | undefined;
|
|
23880
23922
|
client_uri?: string | undefined;
|
|
23881
|
-
contacts?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["
|
|
23923
|
+
contacts?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["contacts"], keyof string[]>]: never; }) | undefined;
|
|
23882
23924
|
created_at?: Date | undefined;
|
|
23883
23925
|
frontchannel_logout_session_required?: boolean | undefined;
|
|
23884
23926
|
frontchannel_logout_uri?: string | undefined;
|
|
23885
|
-
grant_types?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["
|
|
23927
|
+
grant_types?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
23886
23928
|
implicit_grant_access_token_lifespan?: string | undefined;
|
|
23887
23929
|
implicit_grant_id_token_lifespan?: string | undefined;
|
|
23888
|
-
jwks?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["
|
|
23930
|
+
jwks?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["jwks"], keyof string[]>]: never; }) | undefined;
|
|
23889
23931
|
jwks_uri?: string | undefined;
|
|
23890
23932
|
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
23891
23933
|
logo_uri?: string | undefined;
|
|
23892
23934
|
owner?: string | undefined;
|
|
23893
23935
|
policy_uri?: string | undefined;
|
|
23894
|
-
post_logout_redirect_uris?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["
|
|
23895
|
-
redirect_uris?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["
|
|
23936
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
23937
|
+
redirect_uris?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
23896
23938
|
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
23897
23939
|
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
23898
23940
|
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
23899
23941
|
registration_access_token?: string | undefined;
|
|
23900
23942
|
registration_client_uri?: string | undefined;
|
|
23901
23943
|
request_object_signing_alg?: string | undefined;
|
|
23902
|
-
request_uris?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["
|
|
23903
|
-
response_types?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["
|
|
23944
|
+
request_uris?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
23945
|
+
response_types?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["response_types"], keyof string[]>]: never; }) | undefined;
|
|
23904
23946
|
scope?: string | undefined;
|
|
23905
23947
|
sector_identifier_uri?: string | undefined;
|
|
23906
23948
|
skip_consent?: boolean | undefined;
|
|
@@ -23911,7 +23953,7 @@ export declare const MezonOauthClientList: {
|
|
|
23911
23953
|
tos_uri?: string | undefined;
|
|
23912
23954
|
updated_at?: Date | undefined;
|
|
23913
23955
|
userinfo_signed_response_alg?: string | undefined;
|
|
23914
|
-
} & { [K_21 in Exclude<keyof I_1["
|
|
23956
|
+
} & { [K_21 in Exclude<keyof I_1["list_mezon_oauth_client"][number], keyof MezonOauthClient>]: never; })[] & { [K_22 in Exclude<keyof I_1["list_mezon_oauth_client"], keyof {
|
|
23915
23957
|
access_token_strategy?: string | undefined;
|
|
23916
23958
|
allowed_cors_origins?: string[] | undefined;
|
|
23917
23959
|
audience?: string[] | undefined;
|
|
@@ -23960,7 +24002,7 @@ export declare const MezonOauthClientList: {
|
|
|
23960
24002
|
updated_at?: Date | undefined;
|
|
23961
24003
|
userinfo_signed_response_alg?: string | undefined;
|
|
23962
24004
|
}[]>]: never; }) | undefined;
|
|
23963
|
-
} & { [K_23 in Exclude<keyof I_1, "
|
|
24005
|
+
} & { [K_23 in Exclude<keyof I_1, "list_mezon_oauth_client">]: never; }>(object: I_1): MezonOauthClientList;
|
|
23964
24006
|
};
|
|
23965
24007
|
export declare const GetMezonOauthClientRequest: {
|
|
23966
24008
|
encode(message: GetMezonOauthClientRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -24194,6 +24236,202 @@ export declare const AccountMezon_VarsEntry: {
|
|
|
24194
24236
|
value?: string | undefined;
|
|
24195
24237
|
} & { [K_1 in Exclude<keyof I_1, keyof AccountMezon_VarsEntry>]: never; }>(object: I_1): AccountMezon_VarsEntry;
|
|
24196
24238
|
};
|
|
24239
|
+
export declare const QuickMenuAccessRequest: {
|
|
24240
|
+
encode(message: QuickMenuAccessRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24241
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QuickMenuAccessRequest;
|
|
24242
|
+
fromJSON(object: any): QuickMenuAccessRequest;
|
|
24243
|
+
toJSON(message: QuickMenuAccessRequest): unknown;
|
|
24244
|
+
create<I extends {
|
|
24245
|
+
id?: string | undefined;
|
|
24246
|
+
bot_id?: string | undefined;
|
|
24247
|
+
clan_id?: string | undefined;
|
|
24248
|
+
channel_id?: string | undefined;
|
|
24249
|
+
menu_name?: string | undefined;
|
|
24250
|
+
background?: string | undefined;
|
|
24251
|
+
action_msg?: string | undefined;
|
|
24252
|
+
} & {
|
|
24253
|
+
id?: string | undefined;
|
|
24254
|
+
bot_id?: string | undefined;
|
|
24255
|
+
clan_id?: string | undefined;
|
|
24256
|
+
channel_id?: string | undefined;
|
|
24257
|
+
menu_name?: string | undefined;
|
|
24258
|
+
background?: string | undefined;
|
|
24259
|
+
action_msg?: string | undefined;
|
|
24260
|
+
} & { [K in Exclude<keyof I, keyof QuickMenuAccessRequest>]: never; }>(base?: I | undefined): QuickMenuAccessRequest;
|
|
24261
|
+
fromPartial<I_1 extends {
|
|
24262
|
+
id?: string | undefined;
|
|
24263
|
+
bot_id?: string | undefined;
|
|
24264
|
+
clan_id?: string | undefined;
|
|
24265
|
+
channel_id?: string | undefined;
|
|
24266
|
+
menu_name?: string | undefined;
|
|
24267
|
+
background?: string | undefined;
|
|
24268
|
+
action_msg?: string | undefined;
|
|
24269
|
+
} & {
|
|
24270
|
+
id?: string | undefined;
|
|
24271
|
+
bot_id?: string | undefined;
|
|
24272
|
+
clan_id?: string | undefined;
|
|
24273
|
+
channel_id?: string | undefined;
|
|
24274
|
+
menu_name?: string | undefined;
|
|
24275
|
+
background?: string | undefined;
|
|
24276
|
+
action_msg?: string | undefined;
|
|
24277
|
+
} & { [K_1 in Exclude<keyof I_1, keyof QuickMenuAccessRequest>]: never; }>(object: I_1): QuickMenuAccessRequest;
|
|
24278
|
+
};
|
|
24279
|
+
export declare const QuickMenuAccess: {
|
|
24280
|
+
encode(message: QuickMenuAccess, writer?: _m0.Writer): _m0.Writer;
|
|
24281
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QuickMenuAccess;
|
|
24282
|
+
fromJSON(object: any): QuickMenuAccess;
|
|
24283
|
+
toJSON(message: QuickMenuAccess): unknown;
|
|
24284
|
+
create<I extends {
|
|
24285
|
+
id?: string | undefined;
|
|
24286
|
+
bot_id?: string | undefined;
|
|
24287
|
+
clan_id?: string | undefined;
|
|
24288
|
+
channel_id?: string | undefined;
|
|
24289
|
+
menu_name?: string | undefined;
|
|
24290
|
+
background?: string | undefined;
|
|
24291
|
+
action_msg?: string | undefined;
|
|
24292
|
+
} & {
|
|
24293
|
+
id?: string | undefined;
|
|
24294
|
+
bot_id?: string | undefined;
|
|
24295
|
+
clan_id?: string | undefined;
|
|
24296
|
+
channel_id?: string | undefined;
|
|
24297
|
+
menu_name?: string | undefined;
|
|
24298
|
+
background?: string | undefined;
|
|
24299
|
+
action_msg?: string | undefined;
|
|
24300
|
+
} & { [K in Exclude<keyof I, keyof QuickMenuAccess>]: never; }>(base?: I | undefined): QuickMenuAccess;
|
|
24301
|
+
fromPartial<I_1 extends {
|
|
24302
|
+
id?: string | undefined;
|
|
24303
|
+
bot_id?: string | undefined;
|
|
24304
|
+
clan_id?: string | undefined;
|
|
24305
|
+
channel_id?: string | undefined;
|
|
24306
|
+
menu_name?: string | undefined;
|
|
24307
|
+
background?: string | undefined;
|
|
24308
|
+
action_msg?: string | undefined;
|
|
24309
|
+
} & {
|
|
24310
|
+
id?: string | undefined;
|
|
24311
|
+
bot_id?: string | undefined;
|
|
24312
|
+
clan_id?: string | undefined;
|
|
24313
|
+
channel_id?: string | undefined;
|
|
24314
|
+
menu_name?: string | undefined;
|
|
24315
|
+
background?: string | undefined;
|
|
24316
|
+
action_msg?: string | undefined;
|
|
24317
|
+
} & { [K_1 in Exclude<keyof I_1, keyof QuickMenuAccess>]: never; }>(object: I_1): QuickMenuAccess;
|
|
24318
|
+
};
|
|
24319
|
+
export declare const ListQuickMenuAccessRequest: {
|
|
24320
|
+
encode(message: ListQuickMenuAccessRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24321
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListQuickMenuAccessRequest;
|
|
24322
|
+
fromJSON(object: any): ListQuickMenuAccessRequest;
|
|
24323
|
+
toJSON(message: ListQuickMenuAccessRequest): unknown;
|
|
24324
|
+
create<I extends {
|
|
24325
|
+
bot_id?: string | undefined;
|
|
24326
|
+
channel_id?: string | undefined;
|
|
24327
|
+
} & {
|
|
24328
|
+
bot_id?: string | undefined;
|
|
24329
|
+
channel_id?: string | undefined;
|
|
24330
|
+
} & { [K in Exclude<keyof I, keyof ListQuickMenuAccessRequest>]: never; }>(base?: I | undefined): ListQuickMenuAccessRequest;
|
|
24331
|
+
fromPartial<I_1 extends {
|
|
24332
|
+
bot_id?: string | undefined;
|
|
24333
|
+
channel_id?: string | undefined;
|
|
24334
|
+
} & {
|
|
24335
|
+
bot_id?: string | undefined;
|
|
24336
|
+
channel_id?: string | undefined;
|
|
24337
|
+
} & { [K_1 in Exclude<keyof I_1, keyof ListQuickMenuAccessRequest>]: never; }>(object: I_1): ListQuickMenuAccessRequest;
|
|
24338
|
+
};
|
|
24339
|
+
export declare const QuickMenuAccessList: {
|
|
24340
|
+
encode(message: QuickMenuAccessList, writer?: _m0.Writer): _m0.Writer;
|
|
24341
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QuickMenuAccessList;
|
|
24342
|
+
fromJSON(object: any): QuickMenuAccessList;
|
|
24343
|
+
toJSON(message: QuickMenuAccessList): unknown;
|
|
24344
|
+
create<I extends {
|
|
24345
|
+
list_menus?: {
|
|
24346
|
+
id?: string | undefined;
|
|
24347
|
+
bot_id?: string | undefined;
|
|
24348
|
+
clan_id?: string | undefined;
|
|
24349
|
+
channel_id?: string | undefined;
|
|
24350
|
+
menu_name?: string | undefined;
|
|
24351
|
+
background?: string | undefined;
|
|
24352
|
+
action_msg?: string | undefined;
|
|
24353
|
+
}[] | undefined;
|
|
24354
|
+
} & {
|
|
24355
|
+
list_menus?: ({
|
|
24356
|
+
id?: string | undefined;
|
|
24357
|
+
bot_id?: string | undefined;
|
|
24358
|
+
clan_id?: string | undefined;
|
|
24359
|
+
channel_id?: string | undefined;
|
|
24360
|
+
menu_name?: string | undefined;
|
|
24361
|
+
background?: string | undefined;
|
|
24362
|
+
action_msg?: string | undefined;
|
|
24363
|
+
}[] & ({
|
|
24364
|
+
id?: string | undefined;
|
|
24365
|
+
bot_id?: string | undefined;
|
|
24366
|
+
clan_id?: string | undefined;
|
|
24367
|
+
channel_id?: string | undefined;
|
|
24368
|
+
menu_name?: string | undefined;
|
|
24369
|
+
background?: string | undefined;
|
|
24370
|
+
action_msg?: string | undefined;
|
|
24371
|
+
} & {
|
|
24372
|
+
id?: string | undefined;
|
|
24373
|
+
bot_id?: string | undefined;
|
|
24374
|
+
clan_id?: string | undefined;
|
|
24375
|
+
channel_id?: string | undefined;
|
|
24376
|
+
menu_name?: string | undefined;
|
|
24377
|
+
background?: string | undefined;
|
|
24378
|
+
action_msg?: string | undefined;
|
|
24379
|
+
} & { [K in Exclude<keyof I["list_menus"][number], keyof QuickMenuAccess>]: never; })[] & { [K_1 in Exclude<keyof I["list_menus"], keyof {
|
|
24380
|
+
id?: string | undefined;
|
|
24381
|
+
bot_id?: string | undefined;
|
|
24382
|
+
clan_id?: string | undefined;
|
|
24383
|
+
channel_id?: string | undefined;
|
|
24384
|
+
menu_name?: string | undefined;
|
|
24385
|
+
background?: string | undefined;
|
|
24386
|
+
action_msg?: string | undefined;
|
|
24387
|
+
}[]>]: never; }) | undefined;
|
|
24388
|
+
} & { [K_2 in Exclude<keyof I, "list_menus">]: never; }>(base?: I | undefined): QuickMenuAccessList;
|
|
24389
|
+
fromPartial<I_1 extends {
|
|
24390
|
+
list_menus?: {
|
|
24391
|
+
id?: string | undefined;
|
|
24392
|
+
bot_id?: string | undefined;
|
|
24393
|
+
clan_id?: string | undefined;
|
|
24394
|
+
channel_id?: string | undefined;
|
|
24395
|
+
menu_name?: string | undefined;
|
|
24396
|
+
background?: string | undefined;
|
|
24397
|
+
action_msg?: string | undefined;
|
|
24398
|
+
}[] | undefined;
|
|
24399
|
+
} & {
|
|
24400
|
+
list_menus?: ({
|
|
24401
|
+
id?: string | undefined;
|
|
24402
|
+
bot_id?: string | undefined;
|
|
24403
|
+
clan_id?: string | undefined;
|
|
24404
|
+
channel_id?: string | undefined;
|
|
24405
|
+
menu_name?: string | undefined;
|
|
24406
|
+
background?: string | undefined;
|
|
24407
|
+
action_msg?: string | undefined;
|
|
24408
|
+
}[] & ({
|
|
24409
|
+
id?: string | undefined;
|
|
24410
|
+
bot_id?: string | undefined;
|
|
24411
|
+
clan_id?: string | undefined;
|
|
24412
|
+
channel_id?: string | undefined;
|
|
24413
|
+
menu_name?: string | undefined;
|
|
24414
|
+
background?: string | undefined;
|
|
24415
|
+
action_msg?: string | undefined;
|
|
24416
|
+
} & {
|
|
24417
|
+
id?: string | undefined;
|
|
24418
|
+
bot_id?: string | undefined;
|
|
24419
|
+
clan_id?: string | undefined;
|
|
24420
|
+
channel_id?: string | undefined;
|
|
24421
|
+
menu_name?: string | undefined;
|
|
24422
|
+
background?: string | undefined;
|
|
24423
|
+
action_msg?: string | undefined;
|
|
24424
|
+
} & { [K_3 in Exclude<keyof I_1["list_menus"][number], keyof QuickMenuAccess>]: never; })[] & { [K_4 in Exclude<keyof I_1["list_menus"], keyof {
|
|
24425
|
+
id?: string | undefined;
|
|
24426
|
+
bot_id?: string | undefined;
|
|
24427
|
+
clan_id?: string | undefined;
|
|
24428
|
+
channel_id?: string | undefined;
|
|
24429
|
+
menu_name?: string | undefined;
|
|
24430
|
+
background?: string | undefined;
|
|
24431
|
+
action_msg?: string | undefined;
|
|
24432
|
+
}[]>]: never; }) | undefined;
|
|
24433
|
+
} & { [K_5 in Exclude<keyof I_1, "list_menus">]: never; }>(object: I_1): QuickMenuAccessList;
|
|
24434
|
+
};
|
|
24197
24435
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
24198
24436
|
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
24199
24437
|
[K in keyof T]?: DeepPartial<T[K]>;
|
package/package.json
CHANGED