mezon-js-protobuf 1.8.7 → 1.8.9
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 +511 -54
- package/dist/mezon-js-protobuf/api/api.d.ts +265 -51
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +1042 -510
- package/dist/mezon-js-protobuf.cjs.js +5 -5
- package/dist/mezon-js-protobuf.esm.mjs +5 -5
- package/package.json +1 -1
- package/rtapi/realtime.ts +6 -6
|
@@ -1936,6 +1936,7 @@ export interface ClanSticker {
|
|
|
1936
1936
|
clan_id: string;
|
|
1937
1937
|
logo: string;
|
|
1938
1938
|
clan_name: string;
|
|
1939
|
+
media_type: number;
|
|
1939
1940
|
}
|
|
1940
1941
|
export interface AllUsersAddChannelRequest {
|
|
1941
1942
|
channel_id: string;
|
|
@@ -1952,6 +1953,7 @@ export interface ClanEmojiCreateRequest {
|
|
|
1952
1953
|
shortname: string;
|
|
1953
1954
|
category: string;
|
|
1954
1955
|
id: string;
|
|
1956
|
+
is_for_sale: boolean;
|
|
1955
1957
|
}
|
|
1956
1958
|
export interface ClanEmojiGetByClanIdRequest {
|
|
1957
1959
|
clan_id: string;
|
|
@@ -2037,9 +2039,13 @@ export interface ClanStickerAddRequest {
|
|
|
2037
2039
|
source: string;
|
|
2038
2040
|
shortname: string;
|
|
2039
2041
|
category: string;
|
|
2040
|
-
clan_id:
|
|
2042
|
+
clan_id: string;
|
|
2041
2043
|
/** UNIQUE include type number */
|
|
2042
2044
|
id: string;
|
|
2045
|
+
/** media type for image or audio */
|
|
2046
|
+
media_type: number;
|
|
2047
|
+
/** is for sale */
|
|
2048
|
+
is_for_sale: boolean;
|
|
2043
2049
|
}
|
|
2044
2050
|
export interface ClanStickerListByClanIdRequest {
|
|
2045
2051
|
clan_id: string;
|
|
@@ -2651,9 +2657,11 @@ export interface TokenSentEvent {
|
|
|
2651
2657
|
/** */
|
|
2652
2658
|
transaction_id: string;
|
|
2653
2659
|
}
|
|
2654
|
-
export interface
|
|
2655
|
-
/**
|
|
2656
|
-
|
|
2660
|
+
export interface UnlockItemRequest {
|
|
2661
|
+
/** item id */
|
|
2662
|
+
item_id: string;
|
|
2663
|
+
/** item type */
|
|
2664
|
+
item_type: number;
|
|
2657
2665
|
}
|
|
2658
2666
|
export interface ListOnboardingRequest {
|
|
2659
2667
|
/** clan id */
|
|
@@ -2881,7 +2889,12 @@ export interface WalletLedgerList {
|
|
|
2881
2889
|
}
|
|
2882
2890
|
export interface WalletLedgerListReq {
|
|
2883
2891
|
limit: number | undefined;
|
|
2884
|
-
|
|
2892
|
+
/**
|
|
2893
|
+
* filter = 0 for all
|
|
2894
|
+
* filter = 1 for sent
|
|
2895
|
+
* filter = 2 for recieve
|
|
2896
|
+
*/
|
|
2897
|
+
filter: number;
|
|
2885
2898
|
transaction_id: string;
|
|
2886
2899
|
page: number | undefined;
|
|
2887
2900
|
}
|
|
@@ -3000,7 +3013,7 @@ export interface MezonOauthClient {
|
|
|
3000
3013
|
userinfo_signed_response_alg: string;
|
|
3001
3014
|
}
|
|
3002
3015
|
export interface MezonOauthClientList {
|
|
3003
|
-
|
|
3016
|
+
list_mezon_oauth_client: MezonOauthClient[];
|
|
3004
3017
|
}
|
|
3005
3018
|
export interface GetMezonOauthClientRequest {
|
|
3006
3019
|
client_id: string;
|
|
@@ -3056,6 +3069,25 @@ export interface AccountMezon_VarsEntry {
|
|
|
3056
3069
|
key: string;
|
|
3057
3070
|
value: string;
|
|
3058
3071
|
}
|
|
3072
|
+
export interface QuickMenuAccessRequest {
|
|
3073
|
+
id: string;
|
|
3074
|
+
menu_name: string;
|
|
3075
|
+
background: string;
|
|
3076
|
+
action_msg: string;
|
|
3077
|
+
}
|
|
3078
|
+
export interface QuickMenuAccess {
|
|
3079
|
+
id: string;
|
|
3080
|
+
bot_id: string;
|
|
3081
|
+
menu_name: string;
|
|
3082
|
+
background: string;
|
|
3083
|
+
action_msg: string;
|
|
3084
|
+
}
|
|
3085
|
+
export interface ListQuickMenuAccessRequest {
|
|
3086
|
+
bot_id: string;
|
|
3087
|
+
}
|
|
3088
|
+
export interface QuickMenuAccessList {
|
|
3089
|
+
list_menus: QuickMenuAccess[];
|
|
3090
|
+
}
|
|
3059
3091
|
export declare const Account: {
|
|
3060
3092
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3061
3093
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -15890,6 +15922,7 @@ export declare const StickerListedResponse: {
|
|
|
15890
15922
|
clan_id?: string | undefined;
|
|
15891
15923
|
logo?: string | undefined;
|
|
15892
15924
|
clan_name?: string | undefined;
|
|
15925
|
+
media_type?: number | undefined;
|
|
15893
15926
|
}[] | undefined;
|
|
15894
15927
|
} & {
|
|
15895
15928
|
stickers?: ({
|
|
@@ -15902,6 +15935,7 @@ export declare const StickerListedResponse: {
|
|
|
15902
15935
|
clan_id?: string | undefined;
|
|
15903
15936
|
logo?: string | undefined;
|
|
15904
15937
|
clan_name?: string | undefined;
|
|
15938
|
+
media_type?: number | undefined;
|
|
15905
15939
|
}[] & ({
|
|
15906
15940
|
id?: string | undefined;
|
|
15907
15941
|
source?: string | undefined;
|
|
@@ -15912,6 +15946,7 @@ export declare const StickerListedResponse: {
|
|
|
15912
15946
|
clan_id?: string | undefined;
|
|
15913
15947
|
logo?: string | undefined;
|
|
15914
15948
|
clan_name?: string | undefined;
|
|
15949
|
+
media_type?: number | undefined;
|
|
15915
15950
|
} & {
|
|
15916
15951
|
id?: string | undefined;
|
|
15917
15952
|
source?: string | undefined;
|
|
@@ -15922,6 +15957,7 @@ export declare const StickerListedResponse: {
|
|
|
15922
15957
|
clan_id?: string | undefined;
|
|
15923
15958
|
logo?: string | undefined;
|
|
15924
15959
|
clan_name?: string | undefined;
|
|
15960
|
+
media_type?: number | undefined;
|
|
15925
15961
|
} & { [K in Exclude<keyof I["stickers"][number], keyof ClanSticker>]: never; })[] & { [K_1 in Exclude<keyof I["stickers"], keyof {
|
|
15926
15962
|
id?: string | undefined;
|
|
15927
15963
|
source?: string | undefined;
|
|
@@ -15932,6 +15968,7 @@ export declare const StickerListedResponse: {
|
|
|
15932
15968
|
clan_id?: string | undefined;
|
|
15933
15969
|
logo?: string | undefined;
|
|
15934
15970
|
clan_name?: string | undefined;
|
|
15971
|
+
media_type?: number | undefined;
|
|
15935
15972
|
}[]>]: never; }) | undefined;
|
|
15936
15973
|
} & { [K_2 in Exclude<keyof I, "stickers">]: never; }>(base?: I | undefined): StickerListedResponse;
|
|
15937
15974
|
fromPartial<I_1 extends {
|
|
@@ -15945,6 +15982,7 @@ export declare const StickerListedResponse: {
|
|
|
15945
15982
|
clan_id?: string | undefined;
|
|
15946
15983
|
logo?: string | undefined;
|
|
15947
15984
|
clan_name?: string | undefined;
|
|
15985
|
+
media_type?: number | undefined;
|
|
15948
15986
|
}[] | undefined;
|
|
15949
15987
|
} & {
|
|
15950
15988
|
stickers?: ({
|
|
@@ -15957,6 +15995,7 @@ export declare const StickerListedResponse: {
|
|
|
15957
15995
|
clan_id?: string | undefined;
|
|
15958
15996
|
logo?: string | undefined;
|
|
15959
15997
|
clan_name?: string | undefined;
|
|
15998
|
+
media_type?: number | undefined;
|
|
15960
15999
|
}[] & ({
|
|
15961
16000
|
id?: string | undefined;
|
|
15962
16001
|
source?: string | undefined;
|
|
@@ -15967,6 +16006,7 @@ export declare const StickerListedResponse: {
|
|
|
15967
16006
|
clan_id?: string | undefined;
|
|
15968
16007
|
logo?: string | undefined;
|
|
15969
16008
|
clan_name?: string | undefined;
|
|
16009
|
+
media_type?: number | undefined;
|
|
15970
16010
|
} & {
|
|
15971
16011
|
id?: string | undefined;
|
|
15972
16012
|
source?: string | undefined;
|
|
@@ -15977,6 +16017,7 @@ export declare const StickerListedResponse: {
|
|
|
15977
16017
|
clan_id?: string | undefined;
|
|
15978
16018
|
logo?: string | undefined;
|
|
15979
16019
|
clan_name?: string | undefined;
|
|
16020
|
+
media_type?: number | undefined;
|
|
15980
16021
|
} & { [K_3 in Exclude<keyof I_1["stickers"][number], keyof ClanSticker>]: never; })[] & { [K_4 in Exclude<keyof I_1["stickers"], keyof {
|
|
15981
16022
|
id?: string | undefined;
|
|
15982
16023
|
source?: string | undefined;
|
|
@@ -15987,6 +16028,7 @@ export declare const StickerListedResponse: {
|
|
|
15987
16028
|
clan_id?: string | undefined;
|
|
15988
16029
|
logo?: string | undefined;
|
|
15989
16030
|
clan_name?: string | undefined;
|
|
16031
|
+
media_type?: number | undefined;
|
|
15990
16032
|
}[]>]: never; }) | undefined;
|
|
15991
16033
|
} & { [K_5 in Exclude<keyof I_1, "stickers">]: never; }>(object: I_1): StickerListedResponse;
|
|
15992
16034
|
};
|
|
@@ -16005,6 +16047,7 @@ export declare const ClanSticker: {
|
|
|
16005
16047
|
clan_id?: string | undefined;
|
|
16006
16048
|
logo?: string | undefined;
|
|
16007
16049
|
clan_name?: string | undefined;
|
|
16050
|
+
media_type?: number | undefined;
|
|
16008
16051
|
} & {
|
|
16009
16052
|
id?: string | undefined;
|
|
16010
16053
|
source?: string | undefined;
|
|
@@ -16015,6 +16058,7 @@ export declare const ClanSticker: {
|
|
|
16015
16058
|
clan_id?: string | undefined;
|
|
16016
16059
|
logo?: string | undefined;
|
|
16017
16060
|
clan_name?: string | undefined;
|
|
16061
|
+
media_type?: number | undefined;
|
|
16018
16062
|
} & { [K in Exclude<keyof I, keyof ClanSticker>]: never; }>(base?: I | undefined): ClanSticker;
|
|
16019
16063
|
fromPartial<I_1 extends {
|
|
16020
16064
|
id?: string | undefined;
|
|
@@ -16026,6 +16070,7 @@ export declare const ClanSticker: {
|
|
|
16026
16070
|
clan_id?: string | undefined;
|
|
16027
16071
|
logo?: string | undefined;
|
|
16028
16072
|
clan_name?: string | undefined;
|
|
16073
|
+
media_type?: number | undefined;
|
|
16029
16074
|
} & {
|
|
16030
16075
|
id?: string | undefined;
|
|
16031
16076
|
source?: string | undefined;
|
|
@@ -16036,6 +16081,7 @@ export declare const ClanSticker: {
|
|
|
16036
16081
|
clan_id?: string | undefined;
|
|
16037
16082
|
logo?: string | undefined;
|
|
16038
16083
|
clan_name?: string | undefined;
|
|
16084
|
+
media_type?: number | undefined;
|
|
16039
16085
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanSticker>]: never; }>(object: I_1): ClanSticker;
|
|
16040
16086
|
};
|
|
16041
16087
|
export declare const AllUsersAddChannelRequest: {
|
|
@@ -16093,12 +16139,14 @@ export declare const ClanEmojiCreateRequest: {
|
|
|
16093
16139
|
shortname?: string | undefined;
|
|
16094
16140
|
category?: string | undefined;
|
|
16095
16141
|
id?: string | undefined;
|
|
16142
|
+
is_for_sale?: boolean | undefined;
|
|
16096
16143
|
} & {
|
|
16097
16144
|
clan_id?: string | undefined;
|
|
16098
16145
|
source?: string | undefined;
|
|
16099
16146
|
shortname?: string | undefined;
|
|
16100
16147
|
category?: string | undefined;
|
|
16101
16148
|
id?: string | undefined;
|
|
16149
|
+
is_for_sale?: boolean | undefined;
|
|
16102
16150
|
} & { [K in Exclude<keyof I, keyof ClanEmojiCreateRequest>]: never; }>(base?: I | undefined): ClanEmojiCreateRequest;
|
|
16103
16151
|
fromPartial<I_1 extends {
|
|
16104
16152
|
clan_id?: string | undefined;
|
|
@@ -16106,12 +16154,14 @@ export declare const ClanEmojiCreateRequest: {
|
|
|
16106
16154
|
shortname?: string | undefined;
|
|
16107
16155
|
category?: string | undefined;
|
|
16108
16156
|
id?: string | undefined;
|
|
16157
|
+
is_for_sale?: boolean | undefined;
|
|
16109
16158
|
} & {
|
|
16110
16159
|
clan_id?: string | undefined;
|
|
16111
16160
|
source?: string | undefined;
|
|
16112
16161
|
shortname?: string | undefined;
|
|
16113
16162
|
category?: string | undefined;
|
|
16114
16163
|
id?: string | undefined;
|
|
16164
|
+
is_for_sale?: boolean | undefined;
|
|
16115
16165
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanEmojiCreateRequest>]: never; }>(object: I_1): ClanEmojiCreateRequest;
|
|
16116
16166
|
};
|
|
16117
16167
|
export declare const ClanEmojiGetByClanIdRequest: {
|
|
@@ -16585,27 +16635,35 @@ export declare const ClanStickerAddRequest: {
|
|
|
16585
16635
|
source?: string | undefined;
|
|
16586
16636
|
shortname?: string | undefined;
|
|
16587
16637
|
category?: string | undefined;
|
|
16588
|
-
clan_id?:
|
|
16638
|
+
clan_id?: string | undefined;
|
|
16589
16639
|
id?: string | undefined;
|
|
16640
|
+
media_type?: number | undefined;
|
|
16641
|
+
is_for_sale?: boolean | undefined;
|
|
16590
16642
|
} & {
|
|
16591
16643
|
source?: string | undefined;
|
|
16592
16644
|
shortname?: string | undefined;
|
|
16593
16645
|
category?: string | undefined;
|
|
16594
|
-
clan_id?:
|
|
16646
|
+
clan_id?: string | undefined;
|
|
16595
16647
|
id?: string | undefined;
|
|
16648
|
+
media_type?: number | undefined;
|
|
16649
|
+
is_for_sale?: boolean | undefined;
|
|
16596
16650
|
} & { [K in Exclude<keyof I, keyof ClanStickerAddRequest>]: never; }>(base?: I | undefined): ClanStickerAddRequest;
|
|
16597
16651
|
fromPartial<I_1 extends {
|
|
16598
16652
|
source?: string | undefined;
|
|
16599
16653
|
shortname?: string | undefined;
|
|
16600
16654
|
category?: string | undefined;
|
|
16601
|
-
clan_id?:
|
|
16655
|
+
clan_id?: string | undefined;
|
|
16602
16656
|
id?: string | undefined;
|
|
16657
|
+
media_type?: number | undefined;
|
|
16658
|
+
is_for_sale?: boolean | undefined;
|
|
16603
16659
|
} & {
|
|
16604
16660
|
source?: string | undefined;
|
|
16605
16661
|
shortname?: string | undefined;
|
|
16606
16662
|
category?: string | undefined;
|
|
16607
|
-
clan_id?:
|
|
16663
|
+
clan_id?: string | undefined;
|
|
16608
16664
|
id?: string | undefined;
|
|
16665
|
+
media_type?: number | undefined;
|
|
16666
|
+
is_for_sale?: boolean | undefined;
|
|
16609
16667
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanStickerAddRequest>]: never; }>(object: I_1): ClanStickerAddRequest;
|
|
16610
16668
|
};
|
|
16611
16669
|
export declare const ClanStickerListByClanIdRequest: {
|
|
@@ -20516,21 +20574,25 @@ export declare const TokenSentEvent: {
|
|
|
20516
20574
|
transaction_id?: string | undefined;
|
|
20517
20575
|
} & { [K_1 in Exclude<keyof I_1, keyof TokenSentEvent>]: never; }>(object: I_1): TokenSentEvent;
|
|
20518
20576
|
};
|
|
20519
|
-
export declare const
|
|
20520
|
-
encode(message:
|
|
20521
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
20522
|
-
fromJSON(object: any):
|
|
20523
|
-
toJSON(message:
|
|
20577
|
+
export declare const UnlockItemRequest: {
|
|
20578
|
+
encode(message: UnlockItemRequest, writer?: _m0.Writer): _m0.Writer;
|
|
20579
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UnlockItemRequest;
|
|
20580
|
+
fromJSON(object: any): UnlockItemRequest;
|
|
20581
|
+
toJSON(message: UnlockItemRequest): unknown;
|
|
20524
20582
|
create<I extends {
|
|
20525
|
-
|
|
20583
|
+
item_id?: string | undefined;
|
|
20584
|
+
item_type?: number | undefined;
|
|
20526
20585
|
} & {
|
|
20527
|
-
|
|
20528
|
-
|
|
20586
|
+
item_id?: string | undefined;
|
|
20587
|
+
item_type?: number | undefined;
|
|
20588
|
+
} & { [K in Exclude<keyof I, keyof UnlockItemRequest>]: never; }>(base?: I | undefined): UnlockItemRequest;
|
|
20529
20589
|
fromPartial<I_1 extends {
|
|
20530
|
-
|
|
20590
|
+
item_id?: string | undefined;
|
|
20591
|
+
item_type?: number | undefined;
|
|
20531
20592
|
} & {
|
|
20532
|
-
|
|
20533
|
-
|
|
20593
|
+
item_id?: string | undefined;
|
|
20594
|
+
item_type?: number | undefined;
|
|
20595
|
+
} & { [K_1 in Exclude<keyof I_1, keyof UnlockItemRequest>]: never; }>(object: I_1): UnlockItemRequest;
|
|
20534
20596
|
};
|
|
20535
20597
|
export declare const ListOnboardingRequest: {
|
|
20536
20598
|
encode(message: ListOnboardingRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -22117,23 +22179,23 @@ export declare const WalletLedgerListReq: {
|
|
|
22117
22179
|
toJSON(message: WalletLedgerListReq): unknown;
|
|
22118
22180
|
create<I extends {
|
|
22119
22181
|
limit?: number | undefined;
|
|
22120
|
-
|
|
22182
|
+
filter?: number | undefined;
|
|
22121
22183
|
transaction_id?: string | undefined;
|
|
22122
22184
|
page?: number | undefined;
|
|
22123
22185
|
} & {
|
|
22124
22186
|
limit?: number | undefined;
|
|
22125
|
-
|
|
22187
|
+
filter?: number | undefined;
|
|
22126
22188
|
transaction_id?: string | undefined;
|
|
22127
22189
|
page?: number | undefined;
|
|
22128
22190
|
} & { [K in Exclude<keyof I, keyof WalletLedgerListReq>]: never; }>(base?: I | undefined): WalletLedgerListReq;
|
|
22129
22191
|
fromPartial<I_1 extends {
|
|
22130
22192
|
limit?: number | undefined;
|
|
22131
|
-
|
|
22193
|
+
filter?: number | undefined;
|
|
22132
22194
|
transaction_id?: string | undefined;
|
|
22133
22195
|
page?: number | undefined;
|
|
22134
22196
|
} & {
|
|
22135
22197
|
limit?: number | undefined;
|
|
22136
|
-
|
|
22198
|
+
filter?: number | undefined;
|
|
22137
22199
|
transaction_id?: string | undefined;
|
|
22138
22200
|
page?: number | undefined;
|
|
22139
22201
|
} & { [K_1 in Exclude<keyof I_1, keyof WalletLedgerListReq>]: never; }>(object: I_1): WalletLedgerListReq;
|
|
@@ -23446,7 +23508,7 @@ export declare const MezonOauthClientList: {
|
|
|
23446
23508
|
fromJSON(object: any): MezonOauthClientList;
|
|
23447
23509
|
toJSON(message: MezonOauthClientList): unknown;
|
|
23448
23510
|
create<I extends {
|
|
23449
|
-
|
|
23511
|
+
list_mezon_oauth_client?: {
|
|
23450
23512
|
access_token_strategy?: string | undefined;
|
|
23451
23513
|
allowed_cors_origins?: string[] | undefined;
|
|
23452
23514
|
audience?: string[] | undefined;
|
|
@@ -23496,7 +23558,7 @@ export declare const MezonOauthClientList: {
|
|
|
23496
23558
|
userinfo_signed_response_alg?: string | undefined;
|
|
23497
23559
|
}[] | undefined;
|
|
23498
23560
|
} & {
|
|
23499
|
-
|
|
23561
|
+
list_mezon_oauth_client?: ({
|
|
23500
23562
|
access_token_strategy?: string | undefined;
|
|
23501
23563
|
allowed_cors_origins?: string[] | undefined;
|
|
23502
23564
|
audience?: string[] | undefined;
|
|
@@ -23594,8 +23656,8 @@ export declare const MezonOauthClientList: {
|
|
|
23594
23656
|
userinfo_signed_response_alg?: string | undefined;
|
|
23595
23657
|
} & {
|
|
23596
23658
|
access_token_strategy?: string | undefined;
|
|
23597
|
-
allowed_cors_origins?: (string[] & string[] & { [K in Exclude<keyof I["
|
|
23598
|
-
audience?: (string[] & string[] & { [K_1 in Exclude<keyof I["
|
|
23659
|
+
allowed_cors_origins?: (string[] & string[] & { [K in Exclude<keyof I["list_mezon_oauth_client"][number]["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
23660
|
+
audience?: (string[] & string[] & { [K_1 in Exclude<keyof I["list_mezon_oauth_client"][number]["audience"], keyof string[]>]: never; }) | undefined;
|
|
23599
23661
|
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
23600
23662
|
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
23601
23663
|
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
@@ -23607,29 +23669,29 @@ export declare const MezonOauthClientList: {
|
|
|
23607
23669
|
client_secret?: string | undefined;
|
|
23608
23670
|
client_secret_expires_at?: number | undefined;
|
|
23609
23671
|
client_uri?: string | undefined;
|
|
23610
|
-
contacts?: (string[] & string[] & { [K_2 in Exclude<keyof I["
|
|
23672
|
+
contacts?: (string[] & string[] & { [K_2 in Exclude<keyof I["list_mezon_oauth_client"][number]["contacts"], keyof string[]>]: never; }) | undefined;
|
|
23611
23673
|
created_at?: Date | undefined;
|
|
23612
23674
|
frontchannel_logout_session_required?: boolean | undefined;
|
|
23613
23675
|
frontchannel_logout_uri?: string | undefined;
|
|
23614
|
-
grant_types?: (string[] & string[] & { [K_3 in Exclude<keyof I["
|
|
23676
|
+
grant_types?: (string[] & string[] & { [K_3 in Exclude<keyof I["list_mezon_oauth_client"][number]["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
23615
23677
|
implicit_grant_access_token_lifespan?: string | undefined;
|
|
23616
23678
|
implicit_grant_id_token_lifespan?: string | undefined;
|
|
23617
|
-
jwks?: (string[] & string[] & { [K_4 in Exclude<keyof I["
|
|
23679
|
+
jwks?: (string[] & string[] & { [K_4 in Exclude<keyof I["list_mezon_oauth_client"][number]["jwks"], keyof string[]>]: never; }) | undefined;
|
|
23618
23680
|
jwks_uri?: string | undefined;
|
|
23619
23681
|
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
23620
23682
|
logo_uri?: string | undefined;
|
|
23621
23683
|
owner?: string | undefined;
|
|
23622
23684
|
policy_uri?: string | undefined;
|
|
23623
|
-
post_logout_redirect_uris?: (string[] & string[] & { [K_5 in Exclude<keyof I["
|
|
23624
|
-
redirect_uris?: (string[] & string[] & { [K_6 in Exclude<keyof I["
|
|
23685
|
+
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;
|
|
23686
|
+
redirect_uris?: (string[] & string[] & { [K_6 in Exclude<keyof I["list_mezon_oauth_client"][number]["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
23625
23687
|
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
23626
23688
|
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
23627
23689
|
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
23628
23690
|
registration_access_token?: string | undefined;
|
|
23629
23691
|
registration_client_uri?: string | undefined;
|
|
23630
23692
|
request_object_signing_alg?: string | undefined;
|
|
23631
|
-
request_uris?: (string[] & string[] & { [K_7 in Exclude<keyof I["
|
|
23632
|
-
response_types?: (string[] & string[] & { [K_8 in Exclude<keyof I["
|
|
23693
|
+
request_uris?: (string[] & string[] & { [K_7 in Exclude<keyof I["list_mezon_oauth_client"][number]["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
23694
|
+
response_types?: (string[] & string[] & { [K_8 in Exclude<keyof I["list_mezon_oauth_client"][number]["response_types"], keyof string[]>]: never; }) | undefined;
|
|
23633
23695
|
scope?: string | undefined;
|
|
23634
23696
|
sector_identifier_uri?: string | undefined;
|
|
23635
23697
|
skip_consent?: boolean | undefined;
|
|
@@ -23640,7 +23702,7 @@ export declare const MezonOauthClientList: {
|
|
|
23640
23702
|
tos_uri?: string | undefined;
|
|
23641
23703
|
updated_at?: Date | undefined;
|
|
23642
23704
|
userinfo_signed_response_alg?: string | undefined;
|
|
23643
|
-
} & { [K_9 in Exclude<keyof I["
|
|
23705
|
+
} & { [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 {
|
|
23644
23706
|
access_token_strategy?: string | undefined;
|
|
23645
23707
|
allowed_cors_origins?: string[] | undefined;
|
|
23646
23708
|
audience?: string[] | undefined;
|
|
@@ -23689,9 +23751,9 @@ export declare const MezonOauthClientList: {
|
|
|
23689
23751
|
updated_at?: Date | undefined;
|
|
23690
23752
|
userinfo_signed_response_alg?: string | undefined;
|
|
23691
23753
|
}[]>]: never; }) | undefined;
|
|
23692
|
-
} & { [K_11 in Exclude<keyof I, "
|
|
23754
|
+
} & { [K_11 in Exclude<keyof I, "list_mezon_oauth_client">]: never; }>(base?: I | undefined): MezonOauthClientList;
|
|
23693
23755
|
fromPartial<I_1 extends {
|
|
23694
|
-
|
|
23756
|
+
list_mezon_oauth_client?: {
|
|
23695
23757
|
access_token_strategy?: string | undefined;
|
|
23696
23758
|
allowed_cors_origins?: string[] | undefined;
|
|
23697
23759
|
audience?: string[] | undefined;
|
|
@@ -23741,7 +23803,7 @@ export declare const MezonOauthClientList: {
|
|
|
23741
23803
|
userinfo_signed_response_alg?: string | undefined;
|
|
23742
23804
|
}[] | undefined;
|
|
23743
23805
|
} & {
|
|
23744
|
-
|
|
23806
|
+
list_mezon_oauth_client?: ({
|
|
23745
23807
|
access_token_strategy?: string | undefined;
|
|
23746
23808
|
allowed_cors_origins?: string[] | undefined;
|
|
23747
23809
|
audience?: string[] | undefined;
|
|
@@ -23839,8 +23901,8 @@ export declare const MezonOauthClientList: {
|
|
|
23839
23901
|
userinfo_signed_response_alg?: string | undefined;
|
|
23840
23902
|
} & {
|
|
23841
23903
|
access_token_strategy?: string | undefined;
|
|
23842
|
-
allowed_cors_origins?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["
|
|
23843
|
-
audience?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["
|
|
23904
|
+
allowed_cors_origins?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
23905
|
+
audience?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["audience"], keyof string[]>]: never; }) | undefined;
|
|
23844
23906
|
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
23845
23907
|
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
23846
23908
|
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
@@ -23852,29 +23914,29 @@ export declare const MezonOauthClientList: {
|
|
|
23852
23914
|
client_secret?: string | undefined;
|
|
23853
23915
|
client_secret_expires_at?: number | undefined;
|
|
23854
23916
|
client_uri?: string | undefined;
|
|
23855
|
-
contacts?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["
|
|
23917
|
+
contacts?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["contacts"], keyof string[]>]: never; }) | undefined;
|
|
23856
23918
|
created_at?: Date | undefined;
|
|
23857
23919
|
frontchannel_logout_session_required?: boolean | undefined;
|
|
23858
23920
|
frontchannel_logout_uri?: string | undefined;
|
|
23859
|
-
grant_types?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["
|
|
23921
|
+
grant_types?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
23860
23922
|
implicit_grant_access_token_lifespan?: string | undefined;
|
|
23861
23923
|
implicit_grant_id_token_lifespan?: string | undefined;
|
|
23862
|
-
jwks?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["
|
|
23924
|
+
jwks?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["jwks"], keyof string[]>]: never; }) | undefined;
|
|
23863
23925
|
jwks_uri?: string | undefined;
|
|
23864
23926
|
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
23865
23927
|
logo_uri?: string | undefined;
|
|
23866
23928
|
owner?: string | undefined;
|
|
23867
23929
|
policy_uri?: string | undefined;
|
|
23868
|
-
post_logout_redirect_uris?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["
|
|
23869
|
-
redirect_uris?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["
|
|
23930
|
+
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;
|
|
23931
|
+
redirect_uris?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
23870
23932
|
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
23871
23933
|
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
23872
23934
|
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
23873
23935
|
registration_access_token?: string | undefined;
|
|
23874
23936
|
registration_client_uri?: string | undefined;
|
|
23875
23937
|
request_object_signing_alg?: string | undefined;
|
|
23876
|
-
request_uris?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["
|
|
23877
|
-
response_types?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["
|
|
23938
|
+
request_uris?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
23939
|
+
response_types?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["response_types"], keyof string[]>]: never; }) | undefined;
|
|
23878
23940
|
scope?: string | undefined;
|
|
23879
23941
|
sector_identifier_uri?: string | undefined;
|
|
23880
23942
|
skip_consent?: boolean | undefined;
|
|
@@ -23885,7 +23947,7 @@ export declare const MezonOauthClientList: {
|
|
|
23885
23947
|
tos_uri?: string | undefined;
|
|
23886
23948
|
updated_at?: Date | undefined;
|
|
23887
23949
|
userinfo_signed_response_alg?: string | undefined;
|
|
23888
|
-
} & { [K_21 in Exclude<keyof I_1["
|
|
23950
|
+
} & { [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 {
|
|
23889
23951
|
access_token_strategy?: string | undefined;
|
|
23890
23952
|
allowed_cors_origins?: string[] | undefined;
|
|
23891
23953
|
audience?: string[] | undefined;
|
|
@@ -23934,7 +23996,7 @@ export declare const MezonOauthClientList: {
|
|
|
23934
23996
|
updated_at?: Date | undefined;
|
|
23935
23997
|
userinfo_signed_response_alg?: string | undefined;
|
|
23936
23998
|
}[]>]: never; }) | undefined;
|
|
23937
|
-
} & { [K_23 in Exclude<keyof I_1, "
|
|
23999
|
+
} & { [K_23 in Exclude<keyof I_1, "list_mezon_oauth_client">]: never; }>(object: I_1): MezonOauthClientList;
|
|
23938
24000
|
};
|
|
23939
24001
|
export declare const GetMezonOauthClientRequest: {
|
|
23940
24002
|
encode(message: GetMezonOauthClientRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -24168,6 +24230,158 @@ export declare const AccountMezon_VarsEntry: {
|
|
|
24168
24230
|
value?: string | undefined;
|
|
24169
24231
|
} & { [K_1 in Exclude<keyof I_1, keyof AccountMezon_VarsEntry>]: never; }>(object: I_1): AccountMezon_VarsEntry;
|
|
24170
24232
|
};
|
|
24233
|
+
export declare const QuickMenuAccessRequest: {
|
|
24234
|
+
encode(message: QuickMenuAccessRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24235
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QuickMenuAccessRequest;
|
|
24236
|
+
fromJSON(object: any): QuickMenuAccessRequest;
|
|
24237
|
+
toJSON(message: QuickMenuAccessRequest): unknown;
|
|
24238
|
+
create<I extends {
|
|
24239
|
+
id?: string | undefined;
|
|
24240
|
+
menu_name?: string | undefined;
|
|
24241
|
+
background?: string | undefined;
|
|
24242
|
+
action_msg?: string | undefined;
|
|
24243
|
+
} & {
|
|
24244
|
+
id?: string | undefined;
|
|
24245
|
+
menu_name?: string | undefined;
|
|
24246
|
+
background?: string | undefined;
|
|
24247
|
+
action_msg?: string | undefined;
|
|
24248
|
+
} & { [K in Exclude<keyof I, keyof QuickMenuAccessRequest>]: never; }>(base?: I | undefined): QuickMenuAccessRequest;
|
|
24249
|
+
fromPartial<I_1 extends {
|
|
24250
|
+
id?: string | undefined;
|
|
24251
|
+
menu_name?: string | undefined;
|
|
24252
|
+
background?: string | undefined;
|
|
24253
|
+
action_msg?: string | undefined;
|
|
24254
|
+
} & {
|
|
24255
|
+
id?: string | undefined;
|
|
24256
|
+
menu_name?: string | undefined;
|
|
24257
|
+
background?: string | undefined;
|
|
24258
|
+
action_msg?: string | undefined;
|
|
24259
|
+
} & { [K_1 in Exclude<keyof I_1, keyof QuickMenuAccessRequest>]: never; }>(object: I_1): QuickMenuAccessRequest;
|
|
24260
|
+
};
|
|
24261
|
+
export declare const QuickMenuAccess: {
|
|
24262
|
+
encode(message: QuickMenuAccess, writer?: _m0.Writer): _m0.Writer;
|
|
24263
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QuickMenuAccess;
|
|
24264
|
+
fromJSON(object: any): QuickMenuAccess;
|
|
24265
|
+
toJSON(message: QuickMenuAccess): unknown;
|
|
24266
|
+
create<I extends {
|
|
24267
|
+
id?: string | undefined;
|
|
24268
|
+
bot_id?: string | undefined;
|
|
24269
|
+
menu_name?: string | undefined;
|
|
24270
|
+
background?: string | undefined;
|
|
24271
|
+
action_msg?: string | undefined;
|
|
24272
|
+
} & {
|
|
24273
|
+
id?: string | undefined;
|
|
24274
|
+
bot_id?: string | undefined;
|
|
24275
|
+
menu_name?: string | undefined;
|
|
24276
|
+
background?: string | undefined;
|
|
24277
|
+
action_msg?: string | undefined;
|
|
24278
|
+
} & { [K in Exclude<keyof I, keyof QuickMenuAccess>]: never; }>(base?: I | undefined): QuickMenuAccess;
|
|
24279
|
+
fromPartial<I_1 extends {
|
|
24280
|
+
id?: string | undefined;
|
|
24281
|
+
bot_id?: string | undefined;
|
|
24282
|
+
menu_name?: string | undefined;
|
|
24283
|
+
background?: string | undefined;
|
|
24284
|
+
action_msg?: string | undefined;
|
|
24285
|
+
} & {
|
|
24286
|
+
id?: string | undefined;
|
|
24287
|
+
bot_id?: string | undefined;
|
|
24288
|
+
menu_name?: string | undefined;
|
|
24289
|
+
background?: string | undefined;
|
|
24290
|
+
action_msg?: string | undefined;
|
|
24291
|
+
} & { [K_1 in Exclude<keyof I_1, keyof QuickMenuAccess>]: never; }>(object: I_1): QuickMenuAccess;
|
|
24292
|
+
};
|
|
24293
|
+
export declare const ListQuickMenuAccessRequest: {
|
|
24294
|
+
encode(message: ListQuickMenuAccessRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24295
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListQuickMenuAccessRequest;
|
|
24296
|
+
fromJSON(object: any): ListQuickMenuAccessRequest;
|
|
24297
|
+
toJSON(message: ListQuickMenuAccessRequest): unknown;
|
|
24298
|
+
create<I extends {
|
|
24299
|
+
bot_id?: string | undefined;
|
|
24300
|
+
} & {
|
|
24301
|
+
bot_id?: string | undefined;
|
|
24302
|
+
} & { [K in Exclude<keyof I, "bot_id">]: never; }>(base?: I | undefined): ListQuickMenuAccessRequest;
|
|
24303
|
+
fromPartial<I_1 extends {
|
|
24304
|
+
bot_id?: string | undefined;
|
|
24305
|
+
} & {
|
|
24306
|
+
bot_id?: string | undefined;
|
|
24307
|
+
} & { [K_1 in Exclude<keyof I_1, "bot_id">]: never; }>(object: I_1): ListQuickMenuAccessRequest;
|
|
24308
|
+
};
|
|
24309
|
+
export declare const QuickMenuAccessList: {
|
|
24310
|
+
encode(message: QuickMenuAccessList, writer?: _m0.Writer): _m0.Writer;
|
|
24311
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QuickMenuAccessList;
|
|
24312
|
+
fromJSON(object: any): QuickMenuAccessList;
|
|
24313
|
+
toJSON(message: QuickMenuAccessList): unknown;
|
|
24314
|
+
create<I extends {
|
|
24315
|
+
list_menus?: {
|
|
24316
|
+
id?: string | undefined;
|
|
24317
|
+
bot_id?: string | undefined;
|
|
24318
|
+
menu_name?: string | undefined;
|
|
24319
|
+
background?: string | undefined;
|
|
24320
|
+
action_msg?: string | undefined;
|
|
24321
|
+
}[] | undefined;
|
|
24322
|
+
} & {
|
|
24323
|
+
list_menus?: ({
|
|
24324
|
+
id?: string | undefined;
|
|
24325
|
+
bot_id?: string | undefined;
|
|
24326
|
+
menu_name?: string | undefined;
|
|
24327
|
+
background?: string | undefined;
|
|
24328
|
+
action_msg?: string | undefined;
|
|
24329
|
+
}[] & ({
|
|
24330
|
+
id?: string | undefined;
|
|
24331
|
+
bot_id?: string | undefined;
|
|
24332
|
+
menu_name?: string | undefined;
|
|
24333
|
+
background?: string | undefined;
|
|
24334
|
+
action_msg?: string | undefined;
|
|
24335
|
+
} & {
|
|
24336
|
+
id?: string | undefined;
|
|
24337
|
+
bot_id?: string | undefined;
|
|
24338
|
+
menu_name?: string | undefined;
|
|
24339
|
+
background?: string | undefined;
|
|
24340
|
+
action_msg?: string | undefined;
|
|
24341
|
+
} & { [K in Exclude<keyof I["list_menus"][number], keyof QuickMenuAccess>]: never; })[] & { [K_1 in Exclude<keyof I["list_menus"], keyof {
|
|
24342
|
+
id?: string | undefined;
|
|
24343
|
+
bot_id?: string | undefined;
|
|
24344
|
+
menu_name?: string | undefined;
|
|
24345
|
+
background?: string | undefined;
|
|
24346
|
+
action_msg?: string | undefined;
|
|
24347
|
+
}[]>]: never; }) | undefined;
|
|
24348
|
+
} & { [K_2 in Exclude<keyof I, "list_menus">]: never; }>(base?: I | undefined): QuickMenuAccessList;
|
|
24349
|
+
fromPartial<I_1 extends {
|
|
24350
|
+
list_menus?: {
|
|
24351
|
+
id?: string | undefined;
|
|
24352
|
+
bot_id?: string | undefined;
|
|
24353
|
+
menu_name?: string | undefined;
|
|
24354
|
+
background?: string | undefined;
|
|
24355
|
+
action_msg?: string | undefined;
|
|
24356
|
+
}[] | undefined;
|
|
24357
|
+
} & {
|
|
24358
|
+
list_menus?: ({
|
|
24359
|
+
id?: string | undefined;
|
|
24360
|
+
bot_id?: string | undefined;
|
|
24361
|
+
menu_name?: string | undefined;
|
|
24362
|
+
background?: string | undefined;
|
|
24363
|
+
action_msg?: string | undefined;
|
|
24364
|
+
}[] & ({
|
|
24365
|
+
id?: string | undefined;
|
|
24366
|
+
bot_id?: string | undefined;
|
|
24367
|
+
menu_name?: string | undefined;
|
|
24368
|
+
background?: string | undefined;
|
|
24369
|
+
action_msg?: string | undefined;
|
|
24370
|
+
} & {
|
|
24371
|
+
id?: string | undefined;
|
|
24372
|
+
bot_id?: string | undefined;
|
|
24373
|
+
menu_name?: string | undefined;
|
|
24374
|
+
background?: string | undefined;
|
|
24375
|
+
action_msg?: string | undefined;
|
|
24376
|
+
} & { [K_3 in Exclude<keyof I_1["list_menus"][number], keyof QuickMenuAccess>]: never; })[] & { [K_4 in Exclude<keyof I_1["list_menus"], keyof {
|
|
24377
|
+
id?: string | undefined;
|
|
24378
|
+
bot_id?: string | undefined;
|
|
24379
|
+
menu_name?: string | undefined;
|
|
24380
|
+
background?: string | undefined;
|
|
24381
|
+
action_msg?: string | undefined;
|
|
24382
|
+
}[]>]: never; }) | undefined;
|
|
24383
|
+
} & { [K_5 in Exclude<keyof I_1, "list_menus">]: never; }>(object: I_1): QuickMenuAccessList;
|
|
24384
|
+
};
|
|
24171
24385
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
24172
24386
|
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 {} ? {
|
|
24173
24387
|
[K in keyof T]?: DeepPartial<T[K]>;
|