mezon-js-protobuf 1.7.8 → 1.7.11
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 +1460 -442
- package/dist/mezon-js-protobuf/api/api.d.ts +914 -144
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +63 -15
- package/dist/mezon-js-protobuf.cjs.js +65 -9
- package/dist/mezon-js-protobuf.esm.mjs +65 -9
- package/google/protobuf/struct.ts +554 -554
- package/google/protobuf/timestamp.ts +223 -223
- package/google/protobuf/wrappers.ts +670 -670
- package/package.json +1 -1
- package/rtapi/realtime.ts +81 -13
|
@@ -53,8 +53,8 @@ export interface Account {
|
|
|
53
53
|
email: string;
|
|
54
54
|
/** The devices which belong to the user's account. */
|
|
55
55
|
devices: AccountDevice[];
|
|
56
|
-
/** The
|
|
57
|
-
|
|
56
|
+
/** The mezon id in the user's account. */
|
|
57
|
+
mezon_id: string;
|
|
58
58
|
/** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the user's email was verified. */
|
|
59
59
|
verify_time: Date | undefined;
|
|
60
60
|
/** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the user's account was disabled/banned. */
|
|
@@ -92,19 +92,6 @@ export interface AccountApple_VarsEntry {
|
|
|
92
92
|
key: string;
|
|
93
93
|
value: string;
|
|
94
94
|
}
|
|
95
|
-
/** Send a custom ID to the server. Used with authenticate/link/unlink. */
|
|
96
|
-
export interface AccountCustom {
|
|
97
|
-
/** A custom identifier. */
|
|
98
|
-
id: string;
|
|
99
|
-
/** Extra information that will be bundled in the session token. */
|
|
100
|
-
vars: {
|
|
101
|
-
[key: string]: string;
|
|
102
|
-
};
|
|
103
|
-
}
|
|
104
|
-
export interface AccountCustom_VarsEntry {
|
|
105
|
-
key: string;
|
|
106
|
-
value: string;
|
|
107
|
-
}
|
|
108
95
|
/** Send a device to the server. Used with authenticate/link/unlink and user. */
|
|
109
96
|
export interface AccountDevice {
|
|
110
97
|
/** A device identifier. Should be obtained by a platform-specific device API. */
|
|
@@ -195,6 +182,19 @@ export interface AccountGoogle_VarsEntry {
|
|
|
195
182
|
key: string;
|
|
196
183
|
value: string;
|
|
197
184
|
}
|
|
185
|
+
/** Send a Mezon token to the server. Used with authenticate/link/unlink. */
|
|
186
|
+
export interface AccountMezon {
|
|
187
|
+
/** The OAuth token received from Google to access their profile API. */
|
|
188
|
+
token: string;
|
|
189
|
+
/** Extra information that will be bundled in the session token. */
|
|
190
|
+
vars: {
|
|
191
|
+
[key: string]: string;
|
|
192
|
+
};
|
|
193
|
+
}
|
|
194
|
+
export interface AccountMezon_VarsEntry {
|
|
195
|
+
key: string;
|
|
196
|
+
value: string;
|
|
197
|
+
}
|
|
198
198
|
/** Send a Steam token to the server. Used with authenticate/link/unlink. */
|
|
199
199
|
export interface AccountSteam {
|
|
200
200
|
/** The account token received from Steam to access their profile API. */
|
|
@@ -255,15 +255,6 @@ export interface AuthenticateAppleRequest {
|
|
|
255
255
|
/** Set the username on the account at register. Must be unique. */
|
|
256
256
|
username: string;
|
|
257
257
|
}
|
|
258
|
-
/** Authenticate against the server with a custom ID. */
|
|
259
|
-
export interface AuthenticateCustomRequest {
|
|
260
|
-
/** The custom account details. */
|
|
261
|
-
account: AccountCustom | undefined;
|
|
262
|
-
/** Register the account if the user does not already exist. */
|
|
263
|
-
create: boolean | undefined;
|
|
264
|
-
/** Set the username on the account at register. Must be unique. */
|
|
265
|
-
username: string;
|
|
266
|
-
}
|
|
267
258
|
/** Authenticate against the server with a device ID. */
|
|
268
259
|
export interface AuthenticateDeviceRequest {
|
|
269
260
|
/** The device account details. */
|
|
@@ -325,6 +316,15 @@ export interface AuthenticateGoogleRequest {
|
|
|
325
316
|
/** Set the username on the account at register. Must be unique. */
|
|
326
317
|
username: string;
|
|
327
318
|
}
|
|
319
|
+
/** Authenticate against the server with Mezon. */
|
|
320
|
+
export interface AuthenticateMezonRequest {
|
|
321
|
+
/** The Mezon account details. */
|
|
322
|
+
account: AccountMezon | undefined;
|
|
323
|
+
/** Register the account if the user does not already exist. */
|
|
324
|
+
create: boolean | undefined;
|
|
325
|
+
/** Set the username on the account at register. Must be unique. */
|
|
326
|
+
username: string;
|
|
327
|
+
}
|
|
328
328
|
/** Authenticate against the server with Steam. */
|
|
329
329
|
export interface AuthenticateSteamRequest {
|
|
330
330
|
/** The Steam account details. */
|
|
@@ -1187,6 +1187,8 @@ export interface ClanDesc {
|
|
|
1187
1187
|
badge_count: number;
|
|
1188
1188
|
/** Is onboarding. */
|
|
1189
1189
|
is_onboarding: boolean;
|
|
1190
|
+
/** Welcome channel id. */
|
|
1191
|
+
welcome_channel_id: string;
|
|
1190
1192
|
}
|
|
1191
1193
|
/** Clan information */
|
|
1192
1194
|
export interface CreateClanDescRequest {
|
|
@@ -1210,6 +1212,8 @@ export interface UpdateClanDescRequest {
|
|
|
1210
1212
|
status: number;
|
|
1211
1213
|
/** Is onboarding. */
|
|
1212
1214
|
is_onboarding: boolean | undefined;
|
|
1215
|
+
/** Welcome channel id. */
|
|
1216
|
+
welcome_channel_id: string;
|
|
1213
1217
|
}
|
|
1214
1218
|
/** Delete a clan the user has access to. */
|
|
1215
1219
|
export interface DeleteClanDescRequest {
|
|
@@ -2758,8 +2762,8 @@ export interface LoginIDResponse {
|
|
|
2758
2762
|
platform: string;
|
|
2759
2763
|
/** user_id */
|
|
2760
2764
|
user_id: number;
|
|
2761
|
-
/**
|
|
2762
|
-
|
|
2765
|
+
/** username */
|
|
2766
|
+
username: string;
|
|
2763
2767
|
/** address */
|
|
2764
2768
|
address: string;
|
|
2765
2769
|
}
|
|
@@ -3146,6 +3150,58 @@ export interface HandleParticipantMeetStateRequest {
|
|
|
3146
3150
|
/** state (0: join, 1: leave) */
|
|
3147
3151
|
state: number;
|
|
3148
3152
|
}
|
|
3153
|
+
export interface MezonOauthClient {
|
|
3154
|
+
access_token_strategy: string;
|
|
3155
|
+
allowed_cors_origins: string[];
|
|
3156
|
+
audience: string[];
|
|
3157
|
+
authorization_code_grant_access_token_lifespan: string;
|
|
3158
|
+
authorization_code_grant_id_token_lifespan: string;
|
|
3159
|
+
authorization_code_grant_refresh_token_lifespan: string;
|
|
3160
|
+
backchannel_logout_session_required: boolean;
|
|
3161
|
+
backchannel_logout_uri: string;
|
|
3162
|
+
client_credentials_grant_access_token_lifespan: string;
|
|
3163
|
+
client_id: string;
|
|
3164
|
+
client_name: string;
|
|
3165
|
+
client_secret: string;
|
|
3166
|
+
client_secret_expires_at: number;
|
|
3167
|
+
client_uri: string;
|
|
3168
|
+
contacts: string[];
|
|
3169
|
+
created_at: Date | undefined;
|
|
3170
|
+
frontchannel_logout_session_required: boolean;
|
|
3171
|
+
frontchannel_logout_uri: string;
|
|
3172
|
+
grant_types: string[];
|
|
3173
|
+
implicit_grant_access_token_lifespan: string;
|
|
3174
|
+
implicit_grant_id_token_lifespan: string;
|
|
3175
|
+
jwks: string[];
|
|
3176
|
+
jwks_uri: string;
|
|
3177
|
+
jwt_bearer_grant_access_token_lifespan: string;
|
|
3178
|
+
logo_uri: string;
|
|
3179
|
+
owner: string;
|
|
3180
|
+
policy_uri: string;
|
|
3181
|
+
post_logout_redirect_uris: string[];
|
|
3182
|
+
redirect_uris: string[];
|
|
3183
|
+
refresh_token_grant_access_token_lifespan: string;
|
|
3184
|
+
refresh_token_grant_id_token_lifespan: string;
|
|
3185
|
+
refresh_token_grant_refresh_token_lifespan: string;
|
|
3186
|
+
registration_access_token: string;
|
|
3187
|
+
registration_client_uri: string;
|
|
3188
|
+
request_object_signing_alg: string;
|
|
3189
|
+
request_uris: string[];
|
|
3190
|
+
response_types: string[];
|
|
3191
|
+
scope: string;
|
|
3192
|
+
sector_identifier_uri: string;
|
|
3193
|
+
skip_consent: boolean;
|
|
3194
|
+
skip_logout_consent: boolean;
|
|
3195
|
+
subject_type: string;
|
|
3196
|
+
token_endpoint_auth_method: string;
|
|
3197
|
+
token_endpoint_auth_signing_alg: string;
|
|
3198
|
+
tos_uri: string;
|
|
3199
|
+
updated_at: Date | undefined;
|
|
3200
|
+
userinfo_signed_response_alg: string;
|
|
3201
|
+
}
|
|
3202
|
+
export interface MezonOauthClientList {
|
|
3203
|
+
listMezonOauthClient: MezonOauthClient[];
|
|
3204
|
+
}
|
|
3149
3205
|
export declare const Account: {
|
|
3150
3206
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3151
3207
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -3183,7 +3239,7 @@ export declare const Account: {
|
|
|
3183
3239
|
[x: string]: string | undefined;
|
|
3184
3240
|
} | undefined;
|
|
3185
3241
|
}[] | undefined;
|
|
3186
|
-
|
|
3242
|
+
mezon_id?: string | undefined;
|
|
3187
3243
|
verify_time?: Date | undefined;
|
|
3188
3244
|
disable_time?: Date | undefined;
|
|
3189
3245
|
logo?: string | undefined;
|
|
@@ -3260,7 +3316,7 @@ export declare const Account: {
|
|
|
3260
3316
|
[x: string]: string | undefined;
|
|
3261
3317
|
} | undefined;
|
|
3262
3318
|
}[]>]: never; }) | undefined;
|
|
3263
|
-
|
|
3319
|
+
mezon_id?: string | undefined;
|
|
3264
3320
|
verify_time?: Date | undefined;
|
|
3265
3321
|
disable_time?: Date | undefined;
|
|
3266
3322
|
logo?: string | undefined;
|
|
@@ -3299,7 +3355,7 @@ export declare const Account: {
|
|
|
3299
3355
|
[x: string]: string | undefined;
|
|
3300
3356
|
} | undefined;
|
|
3301
3357
|
}[] | undefined;
|
|
3302
|
-
|
|
3358
|
+
mezon_id?: string | undefined;
|
|
3303
3359
|
verify_time?: Date | undefined;
|
|
3304
3360
|
disable_time?: Date | undefined;
|
|
3305
3361
|
logo?: string | undefined;
|
|
@@ -3376,7 +3432,7 @@ export declare const Account: {
|
|
|
3376
3432
|
[x: string]: string | undefined;
|
|
3377
3433
|
} | undefined;
|
|
3378
3434
|
}[]>]: never; }) | undefined;
|
|
3379
|
-
|
|
3435
|
+
mezon_id?: string | undefined;
|
|
3380
3436
|
verify_time?: Date | undefined;
|
|
3381
3437
|
disable_time?: Date | undefined;
|
|
3382
3438
|
logo?: string | undefined;
|
|
@@ -3488,58 +3544,6 @@ export declare const AccountApple_VarsEntry: {
|
|
|
3488
3544
|
value?: string | undefined;
|
|
3489
3545
|
} & { [K_1 in Exclude<keyof I_1, keyof AccountApple_VarsEntry>]: never; }>(object: I_1): AccountApple_VarsEntry;
|
|
3490
3546
|
};
|
|
3491
|
-
export declare const AccountCustom: {
|
|
3492
|
-
encode(message: AccountCustom, writer?: _m0.Writer): _m0.Writer;
|
|
3493
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountCustom;
|
|
3494
|
-
fromJSON(object: any): AccountCustom;
|
|
3495
|
-
toJSON(message: AccountCustom): unknown;
|
|
3496
|
-
create<I extends {
|
|
3497
|
-
id?: string | undefined;
|
|
3498
|
-
vars?: {
|
|
3499
|
-
[x: string]: string | undefined;
|
|
3500
|
-
} | undefined;
|
|
3501
|
-
} & {
|
|
3502
|
-
id?: string | undefined;
|
|
3503
|
-
vars?: ({
|
|
3504
|
-
[x: string]: string | undefined;
|
|
3505
|
-
} & {
|
|
3506
|
-
[x: string]: string | undefined;
|
|
3507
|
-
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
3508
|
-
} & { [K_1 in Exclude<keyof I, keyof AccountCustom>]: never; }>(base?: I | undefined): AccountCustom;
|
|
3509
|
-
fromPartial<I_1 extends {
|
|
3510
|
-
id?: string | undefined;
|
|
3511
|
-
vars?: {
|
|
3512
|
-
[x: string]: string | undefined;
|
|
3513
|
-
} | undefined;
|
|
3514
|
-
} & {
|
|
3515
|
-
id?: string | undefined;
|
|
3516
|
-
vars?: ({
|
|
3517
|
-
[x: string]: string | undefined;
|
|
3518
|
-
} & {
|
|
3519
|
-
[x: string]: string | undefined;
|
|
3520
|
-
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
3521
|
-
} & { [K_3 in Exclude<keyof I_1, keyof AccountCustom>]: never; }>(object: I_1): AccountCustom;
|
|
3522
|
-
};
|
|
3523
|
-
export declare const AccountCustom_VarsEntry: {
|
|
3524
|
-
encode(message: AccountCustom_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
3525
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountCustom_VarsEntry;
|
|
3526
|
-
fromJSON(object: any): AccountCustom_VarsEntry;
|
|
3527
|
-
toJSON(message: AccountCustom_VarsEntry): unknown;
|
|
3528
|
-
create<I extends {
|
|
3529
|
-
key?: string | undefined;
|
|
3530
|
-
value?: string | undefined;
|
|
3531
|
-
} & {
|
|
3532
|
-
key?: string | undefined;
|
|
3533
|
-
value?: string | undefined;
|
|
3534
|
-
} & { [K in Exclude<keyof I, keyof AccountCustom_VarsEntry>]: never; }>(base?: I | undefined): AccountCustom_VarsEntry;
|
|
3535
|
-
fromPartial<I_1 extends {
|
|
3536
|
-
key?: string | undefined;
|
|
3537
|
-
value?: string | undefined;
|
|
3538
|
-
} & {
|
|
3539
|
-
key?: string | undefined;
|
|
3540
|
-
value?: string | undefined;
|
|
3541
|
-
} & { [K_1 in Exclude<keyof I_1, keyof AccountCustom_VarsEntry>]: never; }>(object: I_1): AccountCustom_VarsEntry;
|
|
3542
|
-
};
|
|
3543
3547
|
export declare const AccountDevice: {
|
|
3544
3548
|
encode(message: AccountDevice, writer?: _m0.Writer): _m0.Writer;
|
|
3545
3549
|
decode(input: _m0.Reader | Uint8Array, length?: number): AccountDevice;
|
|
@@ -3876,6 +3880,58 @@ export declare const AccountGoogle_VarsEntry: {
|
|
|
3876
3880
|
value?: string | undefined;
|
|
3877
3881
|
} & { [K_1 in Exclude<keyof I_1, keyof AccountGoogle_VarsEntry>]: never; }>(object: I_1): AccountGoogle_VarsEntry;
|
|
3878
3882
|
};
|
|
3883
|
+
export declare const AccountMezon: {
|
|
3884
|
+
encode(message: AccountMezon, writer?: _m0.Writer): _m0.Writer;
|
|
3885
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AccountMezon;
|
|
3886
|
+
fromJSON(object: any): AccountMezon;
|
|
3887
|
+
toJSON(message: AccountMezon): unknown;
|
|
3888
|
+
create<I extends {
|
|
3889
|
+
token?: string | undefined;
|
|
3890
|
+
vars?: {
|
|
3891
|
+
[x: string]: string | undefined;
|
|
3892
|
+
} | undefined;
|
|
3893
|
+
} & {
|
|
3894
|
+
token?: string | undefined;
|
|
3895
|
+
vars?: ({
|
|
3896
|
+
[x: string]: string | undefined;
|
|
3897
|
+
} & {
|
|
3898
|
+
[x: string]: string | undefined;
|
|
3899
|
+
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
3900
|
+
} & { [K_1 in Exclude<keyof I, keyof AccountMezon>]: never; }>(base?: I | undefined): AccountMezon;
|
|
3901
|
+
fromPartial<I_1 extends {
|
|
3902
|
+
token?: string | undefined;
|
|
3903
|
+
vars?: {
|
|
3904
|
+
[x: string]: string | undefined;
|
|
3905
|
+
} | undefined;
|
|
3906
|
+
} & {
|
|
3907
|
+
token?: string | undefined;
|
|
3908
|
+
vars?: ({
|
|
3909
|
+
[x: string]: string | undefined;
|
|
3910
|
+
} & {
|
|
3911
|
+
[x: string]: string | undefined;
|
|
3912
|
+
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
3913
|
+
} & { [K_3 in Exclude<keyof I_1, keyof AccountMezon>]: never; }>(object: I_1): AccountMezon;
|
|
3914
|
+
};
|
|
3915
|
+
export declare const AccountMezon_VarsEntry: {
|
|
3916
|
+
encode(message: AccountMezon_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
3917
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AccountMezon_VarsEntry;
|
|
3918
|
+
fromJSON(object: any): AccountMezon_VarsEntry;
|
|
3919
|
+
toJSON(message: AccountMezon_VarsEntry): unknown;
|
|
3920
|
+
create<I extends {
|
|
3921
|
+
key?: string | undefined;
|
|
3922
|
+
value?: string | undefined;
|
|
3923
|
+
} & {
|
|
3924
|
+
key?: string | undefined;
|
|
3925
|
+
value?: string | undefined;
|
|
3926
|
+
} & { [K in Exclude<keyof I, keyof AccountMezon_VarsEntry>]: never; }>(base?: I | undefined): AccountMezon_VarsEntry;
|
|
3927
|
+
fromPartial<I_1 extends {
|
|
3928
|
+
key?: string | undefined;
|
|
3929
|
+
value?: string | undefined;
|
|
3930
|
+
} & {
|
|
3931
|
+
key?: string | undefined;
|
|
3932
|
+
value?: string | undefined;
|
|
3933
|
+
} & { [K_1 in Exclude<keyof I_1, keyof AccountMezon_VarsEntry>]: never; }>(object: I_1): AccountMezon_VarsEntry;
|
|
3934
|
+
};
|
|
3879
3935
|
export declare const AccountSteam: {
|
|
3880
3936
|
encode(message: AccountSteam, writer?: _m0.Writer): _m0.Writer;
|
|
3881
3937
|
decode(input: _m0.Reader | Uint8Array, length?: number): AccountSteam;
|
|
@@ -4106,64 +4162,6 @@ export declare const AuthenticateAppleRequest: {
|
|
|
4106
4162
|
username?: string | undefined;
|
|
4107
4163
|
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateAppleRequest>]: never; }>(object: I_1): AuthenticateAppleRequest;
|
|
4108
4164
|
};
|
|
4109
|
-
export declare const AuthenticateCustomRequest: {
|
|
4110
|
-
encode(message: AuthenticateCustomRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4111
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateCustomRequest;
|
|
4112
|
-
fromJSON(object: any): AuthenticateCustomRequest;
|
|
4113
|
-
toJSON(message: AuthenticateCustomRequest): unknown;
|
|
4114
|
-
create<I extends {
|
|
4115
|
-
account?: {
|
|
4116
|
-
id?: string | undefined;
|
|
4117
|
-
vars?: {
|
|
4118
|
-
[x: string]: string | undefined;
|
|
4119
|
-
} | undefined;
|
|
4120
|
-
} | undefined;
|
|
4121
|
-
create?: boolean | undefined;
|
|
4122
|
-
username?: string | undefined;
|
|
4123
|
-
} & {
|
|
4124
|
-
account?: ({
|
|
4125
|
-
id?: string | undefined;
|
|
4126
|
-
vars?: {
|
|
4127
|
-
[x: string]: string | undefined;
|
|
4128
|
-
} | undefined;
|
|
4129
|
-
} & {
|
|
4130
|
-
id?: string | undefined;
|
|
4131
|
-
vars?: ({
|
|
4132
|
-
[x: string]: string | undefined;
|
|
4133
|
-
} & {
|
|
4134
|
-
[x: string]: string | undefined;
|
|
4135
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4136
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountCustom>]: never; }) | undefined;
|
|
4137
|
-
create?: boolean | undefined;
|
|
4138
|
-
username?: string | undefined;
|
|
4139
|
-
} & { [K_2 in Exclude<keyof I, keyof AuthenticateCustomRequest>]: never; }>(base?: I | undefined): AuthenticateCustomRequest;
|
|
4140
|
-
fromPartial<I_1 extends {
|
|
4141
|
-
account?: {
|
|
4142
|
-
id?: string | undefined;
|
|
4143
|
-
vars?: {
|
|
4144
|
-
[x: string]: string | undefined;
|
|
4145
|
-
} | undefined;
|
|
4146
|
-
} | undefined;
|
|
4147
|
-
create?: boolean | undefined;
|
|
4148
|
-
username?: string | undefined;
|
|
4149
|
-
} & {
|
|
4150
|
-
account?: ({
|
|
4151
|
-
id?: string | undefined;
|
|
4152
|
-
vars?: {
|
|
4153
|
-
[x: string]: string | undefined;
|
|
4154
|
-
} | undefined;
|
|
4155
|
-
} & {
|
|
4156
|
-
id?: string | undefined;
|
|
4157
|
-
vars?: ({
|
|
4158
|
-
[x: string]: string | undefined;
|
|
4159
|
-
} & {
|
|
4160
|
-
[x: string]: string | undefined;
|
|
4161
|
-
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4162
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountCustom>]: never; }) | undefined;
|
|
4163
|
-
create?: boolean | undefined;
|
|
4164
|
-
username?: string | undefined;
|
|
4165
|
-
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateCustomRequest>]: never; }>(object: I_1): AuthenticateCustomRequest;
|
|
4166
|
-
};
|
|
4167
4165
|
export declare const AuthenticateDeviceRequest: {
|
|
4168
4166
|
encode(message: AuthenticateDeviceRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4169
4167
|
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateDeviceRequest;
|
|
@@ -4568,6 +4566,64 @@ export declare const AuthenticateGoogleRequest: {
|
|
|
4568
4566
|
username?: string | undefined;
|
|
4569
4567
|
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateGoogleRequest>]: never; }>(object: I_1): AuthenticateGoogleRequest;
|
|
4570
4568
|
};
|
|
4569
|
+
export declare const AuthenticateMezonRequest: {
|
|
4570
|
+
encode(message: AuthenticateMezonRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4571
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateMezonRequest;
|
|
4572
|
+
fromJSON(object: any): AuthenticateMezonRequest;
|
|
4573
|
+
toJSON(message: AuthenticateMezonRequest): unknown;
|
|
4574
|
+
create<I extends {
|
|
4575
|
+
account?: {
|
|
4576
|
+
token?: string | undefined;
|
|
4577
|
+
vars?: {
|
|
4578
|
+
[x: string]: string | undefined;
|
|
4579
|
+
} | undefined;
|
|
4580
|
+
} | undefined;
|
|
4581
|
+
create?: boolean | undefined;
|
|
4582
|
+
username?: string | undefined;
|
|
4583
|
+
} & {
|
|
4584
|
+
account?: ({
|
|
4585
|
+
token?: string | undefined;
|
|
4586
|
+
vars?: {
|
|
4587
|
+
[x: string]: string | undefined;
|
|
4588
|
+
} | undefined;
|
|
4589
|
+
} & {
|
|
4590
|
+
token?: string | undefined;
|
|
4591
|
+
vars?: ({
|
|
4592
|
+
[x: string]: string | undefined;
|
|
4593
|
+
} & {
|
|
4594
|
+
[x: string]: string | undefined;
|
|
4595
|
+
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4596
|
+
} & { [K_1 in Exclude<keyof I["account"], keyof AccountMezon>]: never; }) | undefined;
|
|
4597
|
+
create?: boolean | undefined;
|
|
4598
|
+
username?: string | undefined;
|
|
4599
|
+
} & { [K_2 in Exclude<keyof I, keyof AuthenticateMezonRequest>]: never; }>(base?: I | undefined): AuthenticateMezonRequest;
|
|
4600
|
+
fromPartial<I_1 extends {
|
|
4601
|
+
account?: {
|
|
4602
|
+
token?: string | undefined;
|
|
4603
|
+
vars?: {
|
|
4604
|
+
[x: string]: string | undefined;
|
|
4605
|
+
} | undefined;
|
|
4606
|
+
} | undefined;
|
|
4607
|
+
create?: boolean | undefined;
|
|
4608
|
+
username?: string | undefined;
|
|
4609
|
+
} & {
|
|
4610
|
+
account?: ({
|
|
4611
|
+
token?: string | undefined;
|
|
4612
|
+
vars?: {
|
|
4613
|
+
[x: string]: string | undefined;
|
|
4614
|
+
} | undefined;
|
|
4615
|
+
} & {
|
|
4616
|
+
token?: string | undefined;
|
|
4617
|
+
vars?: ({
|
|
4618
|
+
[x: string]: string | undefined;
|
|
4619
|
+
} & {
|
|
4620
|
+
[x: string]: string | undefined;
|
|
4621
|
+
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4622
|
+
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountMezon>]: never; }) | undefined;
|
|
4623
|
+
create?: boolean | undefined;
|
|
4624
|
+
username?: string | undefined;
|
|
4625
|
+
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateMezonRequest>]: never; }>(object: I_1): AuthenticateMezonRequest;
|
|
4626
|
+
};
|
|
4571
4627
|
export declare const AuthenticateSteamRequest: {
|
|
4572
4628
|
encode(message: AuthenticateSteamRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4573
4629
|
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateSteamRequest;
|
|
@@ -10834,6 +10890,7 @@ export declare const ClanDesc: {
|
|
|
10834
10890
|
status?: number | undefined;
|
|
10835
10891
|
badge_count?: number | undefined;
|
|
10836
10892
|
is_onboarding?: boolean | undefined;
|
|
10893
|
+
welcome_channel_id?: string | undefined;
|
|
10837
10894
|
} & {
|
|
10838
10895
|
creator_id?: string | undefined;
|
|
10839
10896
|
clan_name?: string | undefined;
|
|
@@ -10843,6 +10900,7 @@ export declare const ClanDesc: {
|
|
|
10843
10900
|
status?: number | undefined;
|
|
10844
10901
|
badge_count?: number | undefined;
|
|
10845
10902
|
is_onboarding?: boolean | undefined;
|
|
10903
|
+
welcome_channel_id?: string | undefined;
|
|
10846
10904
|
} & { [K in Exclude<keyof I, keyof ClanDesc>]: never; }>(base?: I | undefined): ClanDesc;
|
|
10847
10905
|
fromPartial<I_1 extends {
|
|
10848
10906
|
creator_id?: string | undefined;
|
|
@@ -10853,6 +10911,7 @@ export declare const ClanDesc: {
|
|
|
10853
10911
|
status?: number | undefined;
|
|
10854
10912
|
badge_count?: number | undefined;
|
|
10855
10913
|
is_onboarding?: boolean | undefined;
|
|
10914
|
+
welcome_channel_id?: string | undefined;
|
|
10856
10915
|
} & {
|
|
10857
10916
|
creator_id?: string | undefined;
|
|
10858
10917
|
clan_name?: string | undefined;
|
|
@@ -10862,6 +10921,7 @@ export declare const ClanDesc: {
|
|
|
10862
10921
|
status?: number | undefined;
|
|
10863
10922
|
badge_count?: number | undefined;
|
|
10864
10923
|
is_onboarding?: boolean | undefined;
|
|
10924
|
+
welcome_channel_id?: string | undefined;
|
|
10865
10925
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanDesc>]: never; }>(object: I_1): ClanDesc;
|
|
10866
10926
|
};
|
|
10867
10927
|
export declare const CreateClanDescRequest: {
|
|
@@ -10900,6 +10960,7 @@ export declare const UpdateClanDescRequest: {
|
|
|
10900
10960
|
banner?: string | undefined;
|
|
10901
10961
|
status?: number | undefined;
|
|
10902
10962
|
is_onboarding?: boolean | undefined;
|
|
10963
|
+
welcome_channel_id?: string | undefined;
|
|
10903
10964
|
} & {
|
|
10904
10965
|
clan_id?: string | undefined;
|
|
10905
10966
|
clan_name?: string | undefined;
|
|
@@ -10907,6 +10968,7 @@ export declare const UpdateClanDescRequest: {
|
|
|
10907
10968
|
banner?: string | undefined;
|
|
10908
10969
|
status?: number | undefined;
|
|
10909
10970
|
is_onboarding?: boolean | undefined;
|
|
10971
|
+
welcome_channel_id?: string | undefined;
|
|
10910
10972
|
} & { [K in Exclude<keyof I, keyof UpdateClanDescRequest>]: never; }>(base?: I | undefined): UpdateClanDescRequest;
|
|
10911
10973
|
fromPartial<I_1 extends {
|
|
10912
10974
|
clan_id?: string | undefined;
|
|
@@ -10915,6 +10977,7 @@ export declare const UpdateClanDescRequest: {
|
|
|
10915
10977
|
banner?: string | undefined;
|
|
10916
10978
|
status?: number | undefined;
|
|
10917
10979
|
is_onboarding?: boolean | undefined;
|
|
10980
|
+
welcome_channel_id?: string | undefined;
|
|
10918
10981
|
} & {
|
|
10919
10982
|
clan_id?: string | undefined;
|
|
10920
10983
|
clan_name?: string | undefined;
|
|
@@ -10922,6 +10985,7 @@ export declare const UpdateClanDescRequest: {
|
|
|
10922
10985
|
banner?: string | undefined;
|
|
10923
10986
|
status?: number | undefined;
|
|
10924
10987
|
is_onboarding?: boolean | undefined;
|
|
10988
|
+
welcome_channel_id?: string | undefined;
|
|
10925
10989
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateClanDescRequest>]: never; }>(object: I_1): UpdateClanDescRequest;
|
|
10926
10990
|
};
|
|
10927
10991
|
export declare const DeleteClanDescRequest: {
|
|
@@ -10979,6 +11043,7 @@ export declare const ClanDescList: {
|
|
|
10979
11043
|
status?: number | undefined;
|
|
10980
11044
|
badge_count?: number | undefined;
|
|
10981
11045
|
is_onboarding?: boolean | undefined;
|
|
11046
|
+
welcome_channel_id?: string | undefined;
|
|
10982
11047
|
}[] | undefined;
|
|
10983
11048
|
} & {
|
|
10984
11049
|
clandesc?: ({
|
|
@@ -10990,6 +11055,7 @@ export declare const ClanDescList: {
|
|
|
10990
11055
|
status?: number | undefined;
|
|
10991
11056
|
badge_count?: number | undefined;
|
|
10992
11057
|
is_onboarding?: boolean | undefined;
|
|
11058
|
+
welcome_channel_id?: string | undefined;
|
|
10993
11059
|
}[] & ({
|
|
10994
11060
|
creator_id?: string | undefined;
|
|
10995
11061
|
clan_name?: string | undefined;
|
|
@@ -10999,6 +11065,7 @@ export declare const ClanDescList: {
|
|
|
10999
11065
|
status?: number | undefined;
|
|
11000
11066
|
badge_count?: number | undefined;
|
|
11001
11067
|
is_onboarding?: boolean | undefined;
|
|
11068
|
+
welcome_channel_id?: string | undefined;
|
|
11002
11069
|
} & {
|
|
11003
11070
|
creator_id?: string | undefined;
|
|
11004
11071
|
clan_name?: string | undefined;
|
|
@@ -11008,6 +11075,7 @@ export declare const ClanDescList: {
|
|
|
11008
11075
|
status?: number | undefined;
|
|
11009
11076
|
badge_count?: number | undefined;
|
|
11010
11077
|
is_onboarding?: boolean | undefined;
|
|
11078
|
+
welcome_channel_id?: string | undefined;
|
|
11011
11079
|
} & { [K in Exclude<keyof I["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_1 in Exclude<keyof I["clandesc"], keyof {
|
|
11012
11080
|
creator_id?: string | undefined;
|
|
11013
11081
|
clan_name?: string | undefined;
|
|
@@ -11017,6 +11085,7 @@ export declare const ClanDescList: {
|
|
|
11017
11085
|
status?: number | undefined;
|
|
11018
11086
|
badge_count?: number | undefined;
|
|
11019
11087
|
is_onboarding?: boolean | undefined;
|
|
11088
|
+
welcome_channel_id?: string | undefined;
|
|
11020
11089
|
}[]>]: never; }) | undefined;
|
|
11021
11090
|
} & { [K_2 in Exclude<keyof I, "clandesc">]: never; }>(base?: I | undefined): ClanDescList;
|
|
11022
11091
|
fromPartial<I_1 extends {
|
|
@@ -11029,6 +11098,7 @@ export declare const ClanDescList: {
|
|
|
11029
11098
|
status?: number | undefined;
|
|
11030
11099
|
badge_count?: number | undefined;
|
|
11031
11100
|
is_onboarding?: boolean | undefined;
|
|
11101
|
+
welcome_channel_id?: string | undefined;
|
|
11032
11102
|
}[] | undefined;
|
|
11033
11103
|
} & {
|
|
11034
11104
|
clandesc?: ({
|
|
@@ -11040,6 +11110,7 @@ export declare const ClanDescList: {
|
|
|
11040
11110
|
status?: number | undefined;
|
|
11041
11111
|
badge_count?: number | undefined;
|
|
11042
11112
|
is_onboarding?: boolean | undefined;
|
|
11113
|
+
welcome_channel_id?: string | undefined;
|
|
11043
11114
|
}[] & ({
|
|
11044
11115
|
creator_id?: string | undefined;
|
|
11045
11116
|
clan_name?: string | undefined;
|
|
@@ -11049,6 +11120,7 @@ export declare const ClanDescList: {
|
|
|
11049
11120
|
status?: number | undefined;
|
|
11050
11121
|
badge_count?: number | undefined;
|
|
11051
11122
|
is_onboarding?: boolean | undefined;
|
|
11123
|
+
welcome_channel_id?: string | undefined;
|
|
11052
11124
|
} & {
|
|
11053
11125
|
creator_id?: string | undefined;
|
|
11054
11126
|
clan_name?: string | undefined;
|
|
@@ -11058,6 +11130,7 @@ export declare const ClanDescList: {
|
|
|
11058
11130
|
status?: number | undefined;
|
|
11059
11131
|
badge_count?: number | undefined;
|
|
11060
11132
|
is_onboarding?: boolean | undefined;
|
|
11133
|
+
welcome_channel_id?: string | undefined;
|
|
11061
11134
|
} & { [K_3 in Exclude<keyof I_1["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_4 in Exclude<keyof I_1["clandesc"], keyof {
|
|
11062
11135
|
creator_id?: string | undefined;
|
|
11063
11136
|
clan_name?: string | undefined;
|
|
@@ -11067,6 +11140,7 @@ export declare const ClanDescList: {
|
|
|
11067
11140
|
status?: number | undefined;
|
|
11068
11141
|
badge_count?: number | undefined;
|
|
11069
11142
|
is_onboarding?: boolean | undefined;
|
|
11143
|
+
welcome_channel_id?: string | undefined;
|
|
11070
11144
|
}[]>]: never; }) | undefined;
|
|
11071
11145
|
} & { [K_5 in Exclude<keyof I_1, "clandesc">]: never; }>(object: I_1): ClanDescList;
|
|
11072
11146
|
};
|
|
@@ -20869,7 +20943,7 @@ export declare const LoginIDResponse: {
|
|
|
20869
20943
|
create_time_second?: number | undefined;
|
|
20870
20944
|
platform?: string | undefined;
|
|
20871
20945
|
user_id?: number | undefined;
|
|
20872
|
-
|
|
20946
|
+
username?: string | undefined;
|
|
20873
20947
|
address?: string | undefined;
|
|
20874
20948
|
} & {
|
|
20875
20949
|
login_id?: string | undefined;
|
|
@@ -20877,7 +20951,7 @@ export declare const LoginIDResponse: {
|
|
|
20877
20951
|
create_time_second?: number | undefined;
|
|
20878
20952
|
platform?: string | undefined;
|
|
20879
20953
|
user_id?: number | undefined;
|
|
20880
|
-
|
|
20954
|
+
username?: string | undefined;
|
|
20881
20955
|
address?: string | undefined;
|
|
20882
20956
|
} & { [K in Exclude<keyof I, keyof LoginIDResponse>]: never; }>(base?: I | undefined): LoginIDResponse;
|
|
20883
20957
|
fromPartial<I_1 extends {
|
|
@@ -20886,7 +20960,7 @@ export declare const LoginIDResponse: {
|
|
|
20886
20960
|
create_time_second?: number | undefined;
|
|
20887
20961
|
platform?: string | undefined;
|
|
20888
20962
|
user_id?: number | undefined;
|
|
20889
|
-
|
|
20963
|
+
username?: string | undefined;
|
|
20890
20964
|
address?: string | undefined;
|
|
20891
20965
|
} & {
|
|
20892
20966
|
login_id?: string | undefined;
|
|
@@ -20894,7 +20968,7 @@ export declare const LoginIDResponse: {
|
|
|
20894
20968
|
create_time_second?: number | undefined;
|
|
20895
20969
|
platform?: string | undefined;
|
|
20896
20970
|
user_id?: number | undefined;
|
|
20897
|
-
|
|
20971
|
+
username?: string | undefined;
|
|
20898
20972
|
address?: string | undefined;
|
|
20899
20973
|
} & { [K_1 in Exclude<keyof I_1, keyof LoginIDResponse>]: never; }>(object: I_1): LoginIDResponse;
|
|
20900
20974
|
};
|
|
@@ -24136,6 +24210,702 @@ export declare const HandleParticipantMeetStateRequest: {
|
|
|
24136
24210
|
state?: number | undefined;
|
|
24137
24211
|
} & { [K_1 in Exclude<keyof I_1, keyof HandleParticipantMeetStateRequest>]: never; }>(object: I_1): HandleParticipantMeetStateRequest;
|
|
24138
24212
|
};
|
|
24213
|
+
export declare const MezonOauthClient: {
|
|
24214
|
+
encode(message: MezonOauthClient, writer?: _m0.Writer): _m0.Writer;
|
|
24215
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MezonOauthClient;
|
|
24216
|
+
fromJSON(object: any): MezonOauthClient;
|
|
24217
|
+
toJSON(message: MezonOauthClient): unknown;
|
|
24218
|
+
create<I extends {
|
|
24219
|
+
access_token_strategy?: string | undefined;
|
|
24220
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24221
|
+
audience?: string[] | undefined;
|
|
24222
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24223
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24224
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24225
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24226
|
+
backchannel_logout_uri?: string | undefined;
|
|
24227
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24228
|
+
client_id?: string | undefined;
|
|
24229
|
+
client_name?: string | undefined;
|
|
24230
|
+
client_secret?: string | undefined;
|
|
24231
|
+
client_secret_expires_at?: number | undefined;
|
|
24232
|
+
client_uri?: string | undefined;
|
|
24233
|
+
contacts?: string[] | undefined;
|
|
24234
|
+
created_at?: Date | undefined;
|
|
24235
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24236
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24237
|
+
grant_types?: string[] | undefined;
|
|
24238
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24239
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24240
|
+
jwks?: string[] | undefined;
|
|
24241
|
+
jwks_uri?: string | undefined;
|
|
24242
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24243
|
+
logo_uri?: string | undefined;
|
|
24244
|
+
owner?: string | undefined;
|
|
24245
|
+
policy_uri?: string | undefined;
|
|
24246
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24247
|
+
redirect_uris?: string[] | undefined;
|
|
24248
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24249
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24250
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24251
|
+
registration_access_token?: string | undefined;
|
|
24252
|
+
registration_client_uri?: string | undefined;
|
|
24253
|
+
request_object_signing_alg?: string | undefined;
|
|
24254
|
+
request_uris?: string[] | undefined;
|
|
24255
|
+
response_types?: string[] | undefined;
|
|
24256
|
+
scope?: string | undefined;
|
|
24257
|
+
sector_identifier_uri?: string | undefined;
|
|
24258
|
+
skip_consent?: boolean | undefined;
|
|
24259
|
+
skip_logout_consent?: boolean | undefined;
|
|
24260
|
+
subject_type?: string | undefined;
|
|
24261
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24262
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24263
|
+
tos_uri?: string | undefined;
|
|
24264
|
+
updated_at?: Date | undefined;
|
|
24265
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24266
|
+
} & {
|
|
24267
|
+
access_token_strategy?: string | undefined;
|
|
24268
|
+
allowed_cors_origins?: (string[] & string[] & { [K in Exclude<keyof I["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
24269
|
+
audience?: (string[] & string[] & { [K_1 in Exclude<keyof I["audience"], keyof string[]>]: never; }) | undefined;
|
|
24270
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24271
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24272
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24273
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24274
|
+
backchannel_logout_uri?: string | undefined;
|
|
24275
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24276
|
+
client_id?: string | undefined;
|
|
24277
|
+
client_name?: string | undefined;
|
|
24278
|
+
client_secret?: string | undefined;
|
|
24279
|
+
client_secret_expires_at?: number | undefined;
|
|
24280
|
+
client_uri?: string | undefined;
|
|
24281
|
+
contacts?: (string[] & string[] & { [K_2 in Exclude<keyof I["contacts"], keyof string[]>]: never; }) | undefined;
|
|
24282
|
+
created_at?: Date | undefined;
|
|
24283
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24284
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24285
|
+
grant_types?: (string[] & string[] & { [K_3 in Exclude<keyof I["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
24286
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24287
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24288
|
+
jwks?: (string[] & string[] & { [K_4 in Exclude<keyof I["jwks"], keyof string[]>]: never; }) | undefined;
|
|
24289
|
+
jwks_uri?: string | undefined;
|
|
24290
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24291
|
+
logo_uri?: string | undefined;
|
|
24292
|
+
owner?: string | undefined;
|
|
24293
|
+
policy_uri?: string | undefined;
|
|
24294
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_5 in Exclude<keyof I["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24295
|
+
redirect_uris?: (string[] & string[] & { [K_6 in Exclude<keyof I["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24296
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24297
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24298
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24299
|
+
registration_access_token?: string | undefined;
|
|
24300
|
+
registration_client_uri?: string | undefined;
|
|
24301
|
+
request_object_signing_alg?: string | undefined;
|
|
24302
|
+
request_uris?: (string[] & string[] & { [K_7 in Exclude<keyof I["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
24303
|
+
response_types?: (string[] & string[] & { [K_8 in Exclude<keyof I["response_types"], keyof string[]>]: never; }) | undefined;
|
|
24304
|
+
scope?: string | undefined;
|
|
24305
|
+
sector_identifier_uri?: string | undefined;
|
|
24306
|
+
skip_consent?: boolean | undefined;
|
|
24307
|
+
skip_logout_consent?: boolean | undefined;
|
|
24308
|
+
subject_type?: string | undefined;
|
|
24309
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24310
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24311
|
+
tos_uri?: string | undefined;
|
|
24312
|
+
updated_at?: Date | undefined;
|
|
24313
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24314
|
+
} & { [K_9 in Exclude<keyof I, keyof MezonOauthClient>]: never; }>(base?: I | undefined): MezonOauthClient;
|
|
24315
|
+
fromPartial<I_1 extends {
|
|
24316
|
+
access_token_strategy?: string | undefined;
|
|
24317
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24318
|
+
audience?: string[] | undefined;
|
|
24319
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24320
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24321
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24322
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24323
|
+
backchannel_logout_uri?: string | undefined;
|
|
24324
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24325
|
+
client_id?: string | undefined;
|
|
24326
|
+
client_name?: string | undefined;
|
|
24327
|
+
client_secret?: string | undefined;
|
|
24328
|
+
client_secret_expires_at?: number | undefined;
|
|
24329
|
+
client_uri?: string | undefined;
|
|
24330
|
+
contacts?: string[] | undefined;
|
|
24331
|
+
created_at?: Date | undefined;
|
|
24332
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24333
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24334
|
+
grant_types?: string[] | undefined;
|
|
24335
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24336
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24337
|
+
jwks?: string[] | undefined;
|
|
24338
|
+
jwks_uri?: string | undefined;
|
|
24339
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24340
|
+
logo_uri?: string | undefined;
|
|
24341
|
+
owner?: string | undefined;
|
|
24342
|
+
policy_uri?: string | undefined;
|
|
24343
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24344
|
+
redirect_uris?: string[] | undefined;
|
|
24345
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24346
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24347
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24348
|
+
registration_access_token?: string | undefined;
|
|
24349
|
+
registration_client_uri?: string | undefined;
|
|
24350
|
+
request_object_signing_alg?: string | undefined;
|
|
24351
|
+
request_uris?: string[] | undefined;
|
|
24352
|
+
response_types?: string[] | undefined;
|
|
24353
|
+
scope?: string | undefined;
|
|
24354
|
+
sector_identifier_uri?: string | undefined;
|
|
24355
|
+
skip_consent?: boolean | undefined;
|
|
24356
|
+
skip_logout_consent?: boolean | undefined;
|
|
24357
|
+
subject_type?: string | undefined;
|
|
24358
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24359
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24360
|
+
tos_uri?: string | undefined;
|
|
24361
|
+
updated_at?: Date | undefined;
|
|
24362
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24363
|
+
} & {
|
|
24364
|
+
access_token_strategy?: string | undefined;
|
|
24365
|
+
allowed_cors_origins?: (string[] & string[] & { [K_10 in Exclude<keyof I_1["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
24366
|
+
audience?: (string[] & string[] & { [K_11 in Exclude<keyof I_1["audience"], keyof string[]>]: never; }) | undefined;
|
|
24367
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24368
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24369
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24370
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24371
|
+
backchannel_logout_uri?: string | undefined;
|
|
24372
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24373
|
+
client_id?: string | undefined;
|
|
24374
|
+
client_name?: string | undefined;
|
|
24375
|
+
client_secret?: string | undefined;
|
|
24376
|
+
client_secret_expires_at?: number | undefined;
|
|
24377
|
+
client_uri?: string | undefined;
|
|
24378
|
+
contacts?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["contacts"], keyof string[]>]: never; }) | undefined;
|
|
24379
|
+
created_at?: Date | undefined;
|
|
24380
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24381
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24382
|
+
grant_types?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
24383
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24384
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24385
|
+
jwks?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["jwks"], keyof string[]>]: never; }) | undefined;
|
|
24386
|
+
jwks_uri?: string | undefined;
|
|
24387
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24388
|
+
logo_uri?: string | undefined;
|
|
24389
|
+
owner?: string | undefined;
|
|
24390
|
+
policy_uri?: string | undefined;
|
|
24391
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24392
|
+
redirect_uris?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24393
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24394
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24395
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24396
|
+
registration_access_token?: string | undefined;
|
|
24397
|
+
registration_client_uri?: string | undefined;
|
|
24398
|
+
request_object_signing_alg?: string | undefined;
|
|
24399
|
+
request_uris?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
24400
|
+
response_types?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["response_types"], keyof string[]>]: never; }) | undefined;
|
|
24401
|
+
scope?: string | undefined;
|
|
24402
|
+
sector_identifier_uri?: string | undefined;
|
|
24403
|
+
skip_consent?: boolean | undefined;
|
|
24404
|
+
skip_logout_consent?: boolean | undefined;
|
|
24405
|
+
subject_type?: string | undefined;
|
|
24406
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24407
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24408
|
+
tos_uri?: string | undefined;
|
|
24409
|
+
updated_at?: Date | undefined;
|
|
24410
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24411
|
+
} & { [K_19 in Exclude<keyof I_1, keyof MezonOauthClient>]: never; }>(object: I_1): MezonOauthClient;
|
|
24412
|
+
};
|
|
24413
|
+
export declare const MezonOauthClientList: {
|
|
24414
|
+
encode(message: MezonOauthClientList, writer?: _m0.Writer): _m0.Writer;
|
|
24415
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MezonOauthClientList;
|
|
24416
|
+
fromJSON(object: any): MezonOauthClientList;
|
|
24417
|
+
toJSON(message: MezonOauthClientList): unknown;
|
|
24418
|
+
create<I extends {
|
|
24419
|
+
listMezonOauthClient?: {
|
|
24420
|
+
access_token_strategy?: string | undefined;
|
|
24421
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24422
|
+
audience?: string[] | undefined;
|
|
24423
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24424
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24425
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24426
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24427
|
+
backchannel_logout_uri?: string | undefined;
|
|
24428
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24429
|
+
client_id?: string | undefined;
|
|
24430
|
+
client_name?: string | undefined;
|
|
24431
|
+
client_secret?: string | undefined;
|
|
24432
|
+
client_secret_expires_at?: number | undefined;
|
|
24433
|
+
client_uri?: string | undefined;
|
|
24434
|
+
contacts?: string[] | undefined;
|
|
24435
|
+
created_at?: Date | undefined;
|
|
24436
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24437
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24438
|
+
grant_types?: string[] | undefined;
|
|
24439
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24440
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24441
|
+
jwks?: string[] | undefined;
|
|
24442
|
+
jwks_uri?: string | undefined;
|
|
24443
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24444
|
+
logo_uri?: string | undefined;
|
|
24445
|
+
owner?: string | undefined;
|
|
24446
|
+
policy_uri?: string | undefined;
|
|
24447
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24448
|
+
redirect_uris?: string[] | undefined;
|
|
24449
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24450
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24451
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24452
|
+
registration_access_token?: string | undefined;
|
|
24453
|
+
registration_client_uri?: string | undefined;
|
|
24454
|
+
request_object_signing_alg?: string | undefined;
|
|
24455
|
+
request_uris?: string[] | undefined;
|
|
24456
|
+
response_types?: string[] | undefined;
|
|
24457
|
+
scope?: string | undefined;
|
|
24458
|
+
sector_identifier_uri?: string | undefined;
|
|
24459
|
+
skip_consent?: boolean | undefined;
|
|
24460
|
+
skip_logout_consent?: boolean | undefined;
|
|
24461
|
+
subject_type?: string | undefined;
|
|
24462
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24463
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24464
|
+
tos_uri?: string | undefined;
|
|
24465
|
+
updated_at?: Date | undefined;
|
|
24466
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24467
|
+
}[] | undefined;
|
|
24468
|
+
} & {
|
|
24469
|
+
listMezonOauthClient?: ({
|
|
24470
|
+
access_token_strategy?: string | undefined;
|
|
24471
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24472
|
+
audience?: string[] | undefined;
|
|
24473
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24474
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24475
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24476
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24477
|
+
backchannel_logout_uri?: string | undefined;
|
|
24478
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24479
|
+
client_id?: string | undefined;
|
|
24480
|
+
client_name?: string | undefined;
|
|
24481
|
+
client_secret?: string | undefined;
|
|
24482
|
+
client_secret_expires_at?: number | undefined;
|
|
24483
|
+
client_uri?: string | undefined;
|
|
24484
|
+
contacts?: string[] | undefined;
|
|
24485
|
+
created_at?: Date | undefined;
|
|
24486
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24487
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24488
|
+
grant_types?: string[] | undefined;
|
|
24489
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24490
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24491
|
+
jwks?: string[] | undefined;
|
|
24492
|
+
jwks_uri?: string | undefined;
|
|
24493
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24494
|
+
logo_uri?: string | undefined;
|
|
24495
|
+
owner?: string | undefined;
|
|
24496
|
+
policy_uri?: string | undefined;
|
|
24497
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24498
|
+
redirect_uris?: string[] | undefined;
|
|
24499
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24500
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24501
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24502
|
+
registration_access_token?: string | undefined;
|
|
24503
|
+
registration_client_uri?: string | undefined;
|
|
24504
|
+
request_object_signing_alg?: string | undefined;
|
|
24505
|
+
request_uris?: string[] | undefined;
|
|
24506
|
+
response_types?: string[] | undefined;
|
|
24507
|
+
scope?: string | undefined;
|
|
24508
|
+
sector_identifier_uri?: string | undefined;
|
|
24509
|
+
skip_consent?: boolean | undefined;
|
|
24510
|
+
skip_logout_consent?: boolean | undefined;
|
|
24511
|
+
subject_type?: string | undefined;
|
|
24512
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24513
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24514
|
+
tos_uri?: string | undefined;
|
|
24515
|
+
updated_at?: Date | undefined;
|
|
24516
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24517
|
+
}[] & ({
|
|
24518
|
+
access_token_strategy?: string | undefined;
|
|
24519
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24520
|
+
audience?: string[] | undefined;
|
|
24521
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24522
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24523
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24524
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24525
|
+
backchannel_logout_uri?: string | undefined;
|
|
24526
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24527
|
+
client_id?: string | undefined;
|
|
24528
|
+
client_name?: string | undefined;
|
|
24529
|
+
client_secret?: string | undefined;
|
|
24530
|
+
client_secret_expires_at?: number | undefined;
|
|
24531
|
+
client_uri?: string | undefined;
|
|
24532
|
+
contacts?: string[] | undefined;
|
|
24533
|
+
created_at?: Date | undefined;
|
|
24534
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24535
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24536
|
+
grant_types?: string[] | undefined;
|
|
24537
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24538
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24539
|
+
jwks?: string[] | undefined;
|
|
24540
|
+
jwks_uri?: string | undefined;
|
|
24541
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24542
|
+
logo_uri?: string | undefined;
|
|
24543
|
+
owner?: string | undefined;
|
|
24544
|
+
policy_uri?: string | undefined;
|
|
24545
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24546
|
+
redirect_uris?: string[] | undefined;
|
|
24547
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24548
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24549
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24550
|
+
registration_access_token?: string | undefined;
|
|
24551
|
+
registration_client_uri?: string | undefined;
|
|
24552
|
+
request_object_signing_alg?: string | undefined;
|
|
24553
|
+
request_uris?: string[] | undefined;
|
|
24554
|
+
response_types?: string[] | undefined;
|
|
24555
|
+
scope?: string | undefined;
|
|
24556
|
+
sector_identifier_uri?: string | undefined;
|
|
24557
|
+
skip_consent?: boolean | undefined;
|
|
24558
|
+
skip_logout_consent?: boolean | undefined;
|
|
24559
|
+
subject_type?: string | undefined;
|
|
24560
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24561
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24562
|
+
tos_uri?: string | undefined;
|
|
24563
|
+
updated_at?: Date | undefined;
|
|
24564
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24565
|
+
} & {
|
|
24566
|
+
access_token_strategy?: string | undefined;
|
|
24567
|
+
allowed_cors_origins?: (string[] & string[] & { [K in Exclude<keyof I["listMezonOauthClient"][number]["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
24568
|
+
audience?: (string[] & string[] & { [K_1 in Exclude<keyof I["listMezonOauthClient"][number]["audience"], keyof string[]>]: never; }) | undefined;
|
|
24569
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24570
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24571
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24572
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24573
|
+
backchannel_logout_uri?: string | undefined;
|
|
24574
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24575
|
+
client_id?: string | undefined;
|
|
24576
|
+
client_name?: string | undefined;
|
|
24577
|
+
client_secret?: string | undefined;
|
|
24578
|
+
client_secret_expires_at?: number | undefined;
|
|
24579
|
+
client_uri?: string | undefined;
|
|
24580
|
+
contacts?: (string[] & string[] & { [K_2 in Exclude<keyof I["listMezonOauthClient"][number]["contacts"], keyof string[]>]: never; }) | undefined;
|
|
24581
|
+
created_at?: Date | undefined;
|
|
24582
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24583
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24584
|
+
grant_types?: (string[] & string[] & { [K_3 in Exclude<keyof I["listMezonOauthClient"][number]["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
24585
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24586
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24587
|
+
jwks?: (string[] & string[] & { [K_4 in Exclude<keyof I["listMezonOauthClient"][number]["jwks"], keyof string[]>]: never; }) | undefined;
|
|
24588
|
+
jwks_uri?: string | undefined;
|
|
24589
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24590
|
+
logo_uri?: string | undefined;
|
|
24591
|
+
owner?: string | undefined;
|
|
24592
|
+
policy_uri?: string | undefined;
|
|
24593
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_5 in Exclude<keyof I["listMezonOauthClient"][number]["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24594
|
+
redirect_uris?: (string[] & string[] & { [K_6 in Exclude<keyof I["listMezonOauthClient"][number]["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24595
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24596
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24597
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24598
|
+
registration_access_token?: string | undefined;
|
|
24599
|
+
registration_client_uri?: string | undefined;
|
|
24600
|
+
request_object_signing_alg?: string | undefined;
|
|
24601
|
+
request_uris?: (string[] & string[] & { [K_7 in Exclude<keyof I["listMezonOauthClient"][number]["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
24602
|
+
response_types?: (string[] & string[] & { [K_8 in Exclude<keyof I["listMezonOauthClient"][number]["response_types"], keyof string[]>]: never; }) | undefined;
|
|
24603
|
+
scope?: string | undefined;
|
|
24604
|
+
sector_identifier_uri?: string | undefined;
|
|
24605
|
+
skip_consent?: boolean | undefined;
|
|
24606
|
+
skip_logout_consent?: boolean | undefined;
|
|
24607
|
+
subject_type?: string | undefined;
|
|
24608
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24609
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24610
|
+
tos_uri?: string | undefined;
|
|
24611
|
+
updated_at?: Date | undefined;
|
|
24612
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24613
|
+
} & { [K_9 in Exclude<keyof I["listMezonOauthClient"][number], keyof MezonOauthClient>]: never; })[] & { [K_10 in Exclude<keyof I["listMezonOauthClient"], keyof {
|
|
24614
|
+
access_token_strategy?: string | undefined;
|
|
24615
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24616
|
+
audience?: string[] | undefined;
|
|
24617
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24618
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24619
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24620
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24621
|
+
backchannel_logout_uri?: string | undefined;
|
|
24622
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24623
|
+
client_id?: string | undefined;
|
|
24624
|
+
client_name?: string | undefined;
|
|
24625
|
+
client_secret?: string | undefined;
|
|
24626
|
+
client_secret_expires_at?: number | undefined;
|
|
24627
|
+
client_uri?: string | undefined;
|
|
24628
|
+
contacts?: string[] | undefined;
|
|
24629
|
+
created_at?: Date | undefined;
|
|
24630
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24631
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24632
|
+
grant_types?: string[] | undefined;
|
|
24633
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24634
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24635
|
+
jwks?: string[] | undefined;
|
|
24636
|
+
jwks_uri?: string | undefined;
|
|
24637
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24638
|
+
logo_uri?: string | undefined;
|
|
24639
|
+
owner?: string | undefined;
|
|
24640
|
+
policy_uri?: string | undefined;
|
|
24641
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24642
|
+
redirect_uris?: string[] | undefined;
|
|
24643
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24644
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24645
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24646
|
+
registration_access_token?: string | undefined;
|
|
24647
|
+
registration_client_uri?: string | undefined;
|
|
24648
|
+
request_object_signing_alg?: string | undefined;
|
|
24649
|
+
request_uris?: string[] | undefined;
|
|
24650
|
+
response_types?: string[] | undefined;
|
|
24651
|
+
scope?: string | undefined;
|
|
24652
|
+
sector_identifier_uri?: string | undefined;
|
|
24653
|
+
skip_consent?: boolean | undefined;
|
|
24654
|
+
skip_logout_consent?: boolean | undefined;
|
|
24655
|
+
subject_type?: string | undefined;
|
|
24656
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24657
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24658
|
+
tos_uri?: string | undefined;
|
|
24659
|
+
updated_at?: Date | undefined;
|
|
24660
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24661
|
+
}[]>]: never; }) | undefined;
|
|
24662
|
+
} & { [K_11 in Exclude<keyof I, "listMezonOauthClient">]: never; }>(base?: I | undefined): MezonOauthClientList;
|
|
24663
|
+
fromPartial<I_1 extends {
|
|
24664
|
+
listMezonOauthClient?: {
|
|
24665
|
+
access_token_strategy?: string | undefined;
|
|
24666
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24667
|
+
audience?: string[] | undefined;
|
|
24668
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24669
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24670
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24671
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24672
|
+
backchannel_logout_uri?: string | undefined;
|
|
24673
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24674
|
+
client_id?: string | undefined;
|
|
24675
|
+
client_name?: string | undefined;
|
|
24676
|
+
client_secret?: string | undefined;
|
|
24677
|
+
client_secret_expires_at?: number | undefined;
|
|
24678
|
+
client_uri?: string | undefined;
|
|
24679
|
+
contacts?: string[] | undefined;
|
|
24680
|
+
created_at?: Date | undefined;
|
|
24681
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24682
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24683
|
+
grant_types?: string[] | undefined;
|
|
24684
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24685
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24686
|
+
jwks?: string[] | undefined;
|
|
24687
|
+
jwks_uri?: string | undefined;
|
|
24688
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24689
|
+
logo_uri?: string | undefined;
|
|
24690
|
+
owner?: string | undefined;
|
|
24691
|
+
policy_uri?: string | undefined;
|
|
24692
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24693
|
+
redirect_uris?: string[] | undefined;
|
|
24694
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24695
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24696
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24697
|
+
registration_access_token?: string | undefined;
|
|
24698
|
+
registration_client_uri?: string | undefined;
|
|
24699
|
+
request_object_signing_alg?: string | undefined;
|
|
24700
|
+
request_uris?: string[] | undefined;
|
|
24701
|
+
response_types?: string[] | undefined;
|
|
24702
|
+
scope?: string | undefined;
|
|
24703
|
+
sector_identifier_uri?: string | undefined;
|
|
24704
|
+
skip_consent?: boolean | undefined;
|
|
24705
|
+
skip_logout_consent?: boolean | undefined;
|
|
24706
|
+
subject_type?: string | undefined;
|
|
24707
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24708
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24709
|
+
tos_uri?: string | undefined;
|
|
24710
|
+
updated_at?: Date | undefined;
|
|
24711
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24712
|
+
}[] | undefined;
|
|
24713
|
+
} & {
|
|
24714
|
+
listMezonOauthClient?: ({
|
|
24715
|
+
access_token_strategy?: string | undefined;
|
|
24716
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24717
|
+
audience?: string[] | undefined;
|
|
24718
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24719
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24720
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24721
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24722
|
+
backchannel_logout_uri?: string | undefined;
|
|
24723
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24724
|
+
client_id?: string | undefined;
|
|
24725
|
+
client_name?: string | undefined;
|
|
24726
|
+
client_secret?: string | undefined;
|
|
24727
|
+
client_secret_expires_at?: number | undefined;
|
|
24728
|
+
client_uri?: string | undefined;
|
|
24729
|
+
contacts?: string[] | undefined;
|
|
24730
|
+
created_at?: Date | undefined;
|
|
24731
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24732
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24733
|
+
grant_types?: string[] | undefined;
|
|
24734
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24735
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24736
|
+
jwks?: string[] | undefined;
|
|
24737
|
+
jwks_uri?: string | undefined;
|
|
24738
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24739
|
+
logo_uri?: string | undefined;
|
|
24740
|
+
owner?: string | undefined;
|
|
24741
|
+
policy_uri?: string | undefined;
|
|
24742
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24743
|
+
redirect_uris?: string[] | undefined;
|
|
24744
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24745
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24746
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24747
|
+
registration_access_token?: string | undefined;
|
|
24748
|
+
registration_client_uri?: string | undefined;
|
|
24749
|
+
request_object_signing_alg?: string | undefined;
|
|
24750
|
+
request_uris?: string[] | undefined;
|
|
24751
|
+
response_types?: string[] | undefined;
|
|
24752
|
+
scope?: string | undefined;
|
|
24753
|
+
sector_identifier_uri?: string | undefined;
|
|
24754
|
+
skip_consent?: boolean | undefined;
|
|
24755
|
+
skip_logout_consent?: boolean | undefined;
|
|
24756
|
+
subject_type?: string | undefined;
|
|
24757
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24758
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24759
|
+
tos_uri?: string | undefined;
|
|
24760
|
+
updated_at?: Date | undefined;
|
|
24761
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24762
|
+
}[] & ({
|
|
24763
|
+
access_token_strategy?: string | undefined;
|
|
24764
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24765
|
+
audience?: string[] | undefined;
|
|
24766
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24767
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24768
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24769
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24770
|
+
backchannel_logout_uri?: string | undefined;
|
|
24771
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24772
|
+
client_id?: string | undefined;
|
|
24773
|
+
client_name?: string | undefined;
|
|
24774
|
+
client_secret?: string | undefined;
|
|
24775
|
+
client_secret_expires_at?: number | undefined;
|
|
24776
|
+
client_uri?: string | undefined;
|
|
24777
|
+
contacts?: string[] | undefined;
|
|
24778
|
+
created_at?: Date | undefined;
|
|
24779
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24780
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24781
|
+
grant_types?: string[] | undefined;
|
|
24782
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24783
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24784
|
+
jwks?: string[] | undefined;
|
|
24785
|
+
jwks_uri?: string | undefined;
|
|
24786
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24787
|
+
logo_uri?: string | undefined;
|
|
24788
|
+
owner?: string | undefined;
|
|
24789
|
+
policy_uri?: string | undefined;
|
|
24790
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24791
|
+
redirect_uris?: string[] | undefined;
|
|
24792
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24793
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24794
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24795
|
+
registration_access_token?: string | undefined;
|
|
24796
|
+
registration_client_uri?: string | undefined;
|
|
24797
|
+
request_object_signing_alg?: string | undefined;
|
|
24798
|
+
request_uris?: string[] | undefined;
|
|
24799
|
+
response_types?: string[] | undefined;
|
|
24800
|
+
scope?: string | undefined;
|
|
24801
|
+
sector_identifier_uri?: string | undefined;
|
|
24802
|
+
skip_consent?: boolean | undefined;
|
|
24803
|
+
skip_logout_consent?: boolean | undefined;
|
|
24804
|
+
subject_type?: string | undefined;
|
|
24805
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24806
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24807
|
+
tos_uri?: string | undefined;
|
|
24808
|
+
updated_at?: Date | undefined;
|
|
24809
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24810
|
+
} & {
|
|
24811
|
+
access_token_strategy?: string | undefined;
|
|
24812
|
+
allowed_cors_origins?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["listMezonOauthClient"][number]["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
24813
|
+
audience?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["listMezonOauthClient"][number]["audience"], keyof string[]>]: never; }) | undefined;
|
|
24814
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24815
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24816
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24817
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24818
|
+
backchannel_logout_uri?: string | undefined;
|
|
24819
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24820
|
+
client_id?: string | undefined;
|
|
24821
|
+
client_name?: string | undefined;
|
|
24822
|
+
client_secret?: string | undefined;
|
|
24823
|
+
client_secret_expires_at?: number | undefined;
|
|
24824
|
+
client_uri?: string | undefined;
|
|
24825
|
+
contacts?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["listMezonOauthClient"][number]["contacts"], keyof string[]>]: never; }) | undefined;
|
|
24826
|
+
created_at?: Date | undefined;
|
|
24827
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24828
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24829
|
+
grant_types?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["listMezonOauthClient"][number]["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
24830
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24831
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24832
|
+
jwks?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["listMezonOauthClient"][number]["jwks"], keyof string[]>]: never; }) | undefined;
|
|
24833
|
+
jwks_uri?: string | undefined;
|
|
24834
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24835
|
+
logo_uri?: string | undefined;
|
|
24836
|
+
owner?: string | undefined;
|
|
24837
|
+
policy_uri?: string | undefined;
|
|
24838
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["listMezonOauthClient"][number]["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24839
|
+
redirect_uris?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["listMezonOauthClient"][number]["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24840
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24841
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24842
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24843
|
+
registration_access_token?: string | undefined;
|
|
24844
|
+
registration_client_uri?: string | undefined;
|
|
24845
|
+
request_object_signing_alg?: string | undefined;
|
|
24846
|
+
request_uris?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["listMezonOauthClient"][number]["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
24847
|
+
response_types?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["listMezonOauthClient"][number]["response_types"], keyof string[]>]: never; }) | undefined;
|
|
24848
|
+
scope?: string | undefined;
|
|
24849
|
+
sector_identifier_uri?: string | undefined;
|
|
24850
|
+
skip_consent?: boolean | undefined;
|
|
24851
|
+
skip_logout_consent?: boolean | undefined;
|
|
24852
|
+
subject_type?: string | undefined;
|
|
24853
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24854
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24855
|
+
tos_uri?: string | undefined;
|
|
24856
|
+
updated_at?: Date | undefined;
|
|
24857
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24858
|
+
} & { [K_21 in Exclude<keyof I_1["listMezonOauthClient"][number], keyof MezonOauthClient>]: never; })[] & { [K_22 in Exclude<keyof I_1["listMezonOauthClient"], keyof {
|
|
24859
|
+
access_token_strategy?: string | undefined;
|
|
24860
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24861
|
+
audience?: string[] | undefined;
|
|
24862
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24863
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24864
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24865
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24866
|
+
backchannel_logout_uri?: string | undefined;
|
|
24867
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24868
|
+
client_id?: string | undefined;
|
|
24869
|
+
client_name?: string | undefined;
|
|
24870
|
+
client_secret?: string | undefined;
|
|
24871
|
+
client_secret_expires_at?: number | undefined;
|
|
24872
|
+
client_uri?: string | undefined;
|
|
24873
|
+
contacts?: string[] | undefined;
|
|
24874
|
+
created_at?: Date | undefined;
|
|
24875
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24876
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24877
|
+
grant_types?: string[] | undefined;
|
|
24878
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24879
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24880
|
+
jwks?: string[] | undefined;
|
|
24881
|
+
jwks_uri?: string | undefined;
|
|
24882
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24883
|
+
logo_uri?: string | undefined;
|
|
24884
|
+
owner?: string | undefined;
|
|
24885
|
+
policy_uri?: string | undefined;
|
|
24886
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24887
|
+
redirect_uris?: string[] | undefined;
|
|
24888
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24889
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24890
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24891
|
+
registration_access_token?: string | undefined;
|
|
24892
|
+
registration_client_uri?: string | undefined;
|
|
24893
|
+
request_object_signing_alg?: string | undefined;
|
|
24894
|
+
request_uris?: string[] | undefined;
|
|
24895
|
+
response_types?: string[] | undefined;
|
|
24896
|
+
scope?: string | undefined;
|
|
24897
|
+
sector_identifier_uri?: string | undefined;
|
|
24898
|
+
skip_consent?: boolean | undefined;
|
|
24899
|
+
skip_logout_consent?: boolean | undefined;
|
|
24900
|
+
subject_type?: string | undefined;
|
|
24901
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24902
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24903
|
+
tos_uri?: string | undefined;
|
|
24904
|
+
updated_at?: Date | undefined;
|
|
24905
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24906
|
+
}[]>]: never; }) | undefined;
|
|
24907
|
+
} & { [K_23 in Exclude<keyof I_1, "listMezonOauthClient">]: never; }>(object: I_1): MezonOauthClientList;
|
|
24908
|
+
};
|
|
24139
24909
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
24140
24910
|
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 {} ? {
|
|
24141
24911
|
[K in keyof T]?: DeepPartial<T[K]>;
|