mezon-js-protobuf 1.7.7 → 1.7.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 +39208 -38235
- package/dist/mezon-js-protobuf/api/api.d.ts +892 -144
- package/package.json +1 -1
- package/rtapi/realtime.ts +11512 -11512
|
@@ -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. */
|
|
@@ -2758,8 +2758,8 @@ export interface LoginIDResponse {
|
|
|
2758
2758
|
platform: string;
|
|
2759
2759
|
/** user_id */
|
|
2760
2760
|
user_id: number;
|
|
2761
|
-
/**
|
|
2762
|
-
|
|
2761
|
+
/** username */
|
|
2762
|
+
username: string;
|
|
2763
2763
|
/** address */
|
|
2764
2764
|
address: string;
|
|
2765
2765
|
}
|
|
@@ -3146,6 +3146,58 @@ export interface HandleParticipantMeetStateRequest {
|
|
|
3146
3146
|
/** state (0: join, 1: leave) */
|
|
3147
3147
|
state: number;
|
|
3148
3148
|
}
|
|
3149
|
+
export interface MezonOauthClient {
|
|
3150
|
+
access_token_strategy: string;
|
|
3151
|
+
allowed_cors_origins: string[];
|
|
3152
|
+
audience: string[];
|
|
3153
|
+
authorization_code_grant_access_token_lifespan: string;
|
|
3154
|
+
authorization_code_grant_id_token_lifespan: string;
|
|
3155
|
+
authorization_code_grant_refresh_token_lifespan: string;
|
|
3156
|
+
backchannel_logout_session_required: boolean;
|
|
3157
|
+
backchannel_logout_uri: string;
|
|
3158
|
+
client_credentials_grant_access_token_lifespan: string;
|
|
3159
|
+
client_id: string;
|
|
3160
|
+
client_name: string;
|
|
3161
|
+
client_secret: string;
|
|
3162
|
+
client_secret_expires_at: number;
|
|
3163
|
+
client_uri: string;
|
|
3164
|
+
contacts: string[];
|
|
3165
|
+
created_at: Date | undefined;
|
|
3166
|
+
frontchannel_logout_session_required: boolean;
|
|
3167
|
+
frontchannel_logout_uri: string;
|
|
3168
|
+
grant_types: string[];
|
|
3169
|
+
implicit_grant_access_token_lifespan: string;
|
|
3170
|
+
implicit_grant_id_token_lifespan: string;
|
|
3171
|
+
jwks: string[];
|
|
3172
|
+
jwks_uri: string;
|
|
3173
|
+
jwt_bearer_grant_access_token_lifespan: string;
|
|
3174
|
+
logo_uri: string;
|
|
3175
|
+
owner: string;
|
|
3176
|
+
policy_uri: string;
|
|
3177
|
+
post_logout_redirect_uris: string[];
|
|
3178
|
+
redirect_uris: string[];
|
|
3179
|
+
refresh_token_grant_access_token_lifespan: string;
|
|
3180
|
+
refresh_token_grant_id_token_lifespan: string;
|
|
3181
|
+
refresh_token_grant_refresh_token_lifespan: string;
|
|
3182
|
+
registration_access_token: string;
|
|
3183
|
+
registration_client_uri: string;
|
|
3184
|
+
request_object_signing_alg: string;
|
|
3185
|
+
request_uris: string[];
|
|
3186
|
+
response_types: string[];
|
|
3187
|
+
scope: string;
|
|
3188
|
+
sector_identifier_uri: string;
|
|
3189
|
+
skip_consent: boolean;
|
|
3190
|
+
skip_logout_consent: boolean;
|
|
3191
|
+
subject_type: string;
|
|
3192
|
+
token_endpoint_auth_method: string;
|
|
3193
|
+
token_endpoint_auth_signing_alg: string;
|
|
3194
|
+
tos_uri: string;
|
|
3195
|
+
updated_at: Date | undefined;
|
|
3196
|
+
userinfo_signed_response_alg: string;
|
|
3197
|
+
}
|
|
3198
|
+
export interface MezonOauthClientList {
|
|
3199
|
+
listMezonOauthClient: MezonOauthClient[];
|
|
3200
|
+
}
|
|
3149
3201
|
export declare const Account: {
|
|
3150
3202
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3151
3203
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -3183,7 +3235,7 @@ export declare const Account: {
|
|
|
3183
3235
|
[x: string]: string | undefined;
|
|
3184
3236
|
} | undefined;
|
|
3185
3237
|
}[] | undefined;
|
|
3186
|
-
|
|
3238
|
+
mezon_id?: string | undefined;
|
|
3187
3239
|
verify_time?: Date | undefined;
|
|
3188
3240
|
disable_time?: Date | undefined;
|
|
3189
3241
|
logo?: string | undefined;
|
|
@@ -3260,7 +3312,7 @@ export declare const Account: {
|
|
|
3260
3312
|
[x: string]: string | undefined;
|
|
3261
3313
|
} | undefined;
|
|
3262
3314
|
}[]>]: never; }) | undefined;
|
|
3263
|
-
|
|
3315
|
+
mezon_id?: string | undefined;
|
|
3264
3316
|
verify_time?: Date | undefined;
|
|
3265
3317
|
disable_time?: Date | undefined;
|
|
3266
3318
|
logo?: string | undefined;
|
|
@@ -3299,7 +3351,7 @@ export declare const Account: {
|
|
|
3299
3351
|
[x: string]: string | undefined;
|
|
3300
3352
|
} | undefined;
|
|
3301
3353
|
}[] | undefined;
|
|
3302
|
-
|
|
3354
|
+
mezon_id?: string | undefined;
|
|
3303
3355
|
verify_time?: Date | undefined;
|
|
3304
3356
|
disable_time?: Date | undefined;
|
|
3305
3357
|
logo?: string | undefined;
|
|
@@ -3376,7 +3428,7 @@ export declare const Account: {
|
|
|
3376
3428
|
[x: string]: string | undefined;
|
|
3377
3429
|
} | undefined;
|
|
3378
3430
|
}[]>]: never; }) | undefined;
|
|
3379
|
-
|
|
3431
|
+
mezon_id?: string | undefined;
|
|
3380
3432
|
verify_time?: Date | undefined;
|
|
3381
3433
|
disable_time?: Date | undefined;
|
|
3382
3434
|
logo?: string | undefined;
|
|
@@ -3488,58 +3540,6 @@ export declare const AccountApple_VarsEntry: {
|
|
|
3488
3540
|
value?: string | undefined;
|
|
3489
3541
|
} & { [K_1 in Exclude<keyof I_1, keyof AccountApple_VarsEntry>]: never; }>(object: I_1): AccountApple_VarsEntry;
|
|
3490
3542
|
};
|
|
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
3543
|
export declare const AccountDevice: {
|
|
3544
3544
|
encode(message: AccountDevice, writer?: _m0.Writer): _m0.Writer;
|
|
3545
3545
|
decode(input: _m0.Reader | Uint8Array, length?: number): AccountDevice;
|
|
@@ -3876,6 +3876,58 @@ export declare const AccountGoogle_VarsEntry: {
|
|
|
3876
3876
|
value?: string | undefined;
|
|
3877
3877
|
} & { [K_1 in Exclude<keyof I_1, keyof AccountGoogle_VarsEntry>]: never; }>(object: I_1): AccountGoogle_VarsEntry;
|
|
3878
3878
|
};
|
|
3879
|
+
export declare const AccountMezon: {
|
|
3880
|
+
encode(message: AccountMezon, writer?: _m0.Writer): _m0.Writer;
|
|
3881
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AccountMezon;
|
|
3882
|
+
fromJSON(object: any): AccountMezon;
|
|
3883
|
+
toJSON(message: AccountMezon): unknown;
|
|
3884
|
+
create<I extends {
|
|
3885
|
+
token?: string | undefined;
|
|
3886
|
+
vars?: {
|
|
3887
|
+
[x: string]: string | undefined;
|
|
3888
|
+
} | undefined;
|
|
3889
|
+
} & {
|
|
3890
|
+
token?: string | undefined;
|
|
3891
|
+
vars?: ({
|
|
3892
|
+
[x: string]: string | undefined;
|
|
3893
|
+
} & {
|
|
3894
|
+
[x: string]: string | undefined;
|
|
3895
|
+
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
3896
|
+
} & { [K_1 in Exclude<keyof I, keyof AccountMezon>]: never; }>(base?: I | undefined): AccountMezon;
|
|
3897
|
+
fromPartial<I_1 extends {
|
|
3898
|
+
token?: string | undefined;
|
|
3899
|
+
vars?: {
|
|
3900
|
+
[x: string]: string | undefined;
|
|
3901
|
+
} | undefined;
|
|
3902
|
+
} & {
|
|
3903
|
+
token?: string | undefined;
|
|
3904
|
+
vars?: ({
|
|
3905
|
+
[x: string]: string | undefined;
|
|
3906
|
+
} & {
|
|
3907
|
+
[x: string]: string | undefined;
|
|
3908
|
+
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
3909
|
+
} & { [K_3 in Exclude<keyof I_1, keyof AccountMezon>]: never; }>(object: I_1): AccountMezon;
|
|
3910
|
+
};
|
|
3911
|
+
export declare const AccountMezon_VarsEntry: {
|
|
3912
|
+
encode(message: AccountMezon_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
3913
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AccountMezon_VarsEntry;
|
|
3914
|
+
fromJSON(object: any): AccountMezon_VarsEntry;
|
|
3915
|
+
toJSON(message: AccountMezon_VarsEntry): unknown;
|
|
3916
|
+
create<I extends {
|
|
3917
|
+
key?: string | undefined;
|
|
3918
|
+
value?: string | undefined;
|
|
3919
|
+
} & {
|
|
3920
|
+
key?: string | undefined;
|
|
3921
|
+
value?: string | undefined;
|
|
3922
|
+
} & { [K in Exclude<keyof I, keyof AccountMezon_VarsEntry>]: never; }>(base?: I | undefined): AccountMezon_VarsEntry;
|
|
3923
|
+
fromPartial<I_1 extends {
|
|
3924
|
+
key?: string | undefined;
|
|
3925
|
+
value?: string | undefined;
|
|
3926
|
+
} & {
|
|
3927
|
+
key?: string | undefined;
|
|
3928
|
+
value?: string | undefined;
|
|
3929
|
+
} & { [K_1 in Exclude<keyof I_1, keyof AccountMezon_VarsEntry>]: never; }>(object: I_1): AccountMezon_VarsEntry;
|
|
3930
|
+
};
|
|
3879
3931
|
export declare const AccountSteam: {
|
|
3880
3932
|
encode(message: AccountSteam, writer?: _m0.Writer): _m0.Writer;
|
|
3881
3933
|
decode(input: _m0.Reader | Uint8Array, length?: number): AccountSteam;
|
|
@@ -4106,64 +4158,6 @@ export declare const AuthenticateAppleRequest: {
|
|
|
4106
4158
|
username?: string | undefined;
|
|
4107
4159
|
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateAppleRequest>]: never; }>(object: I_1): AuthenticateAppleRequest;
|
|
4108
4160
|
};
|
|
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
4161
|
export declare const AuthenticateDeviceRequest: {
|
|
4168
4162
|
encode(message: AuthenticateDeviceRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4169
4163
|
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateDeviceRequest;
|
|
@@ -4568,6 +4562,64 @@ export declare const AuthenticateGoogleRequest: {
|
|
|
4568
4562
|
username?: string | undefined;
|
|
4569
4563
|
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateGoogleRequest>]: never; }>(object: I_1): AuthenticateGoogleRequest;
|
|
4570
4564
|
};
|
|
4565
|
+
export declare const AuthenticateMezonRequest: {
|
|
4566
|
+
encode(message: AuthenticateMezonRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4567
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateMezonRequest;
|
|
4568
|
+
fromJSON(object: any): AuthenticateMezonRequest;
|
|
4569
|
+
toJSON(message: AuthenticateMezonRequest): unknown;
|
|
4570
|
+
create<I extends {
|
|
4571
|
+
account?: {
|
|
4572
|
+
token?: string | undefined;
|
|
4573
|
+
vars?: {
|
|
4574
|
+
[x: string]: string | undefined;
|
|
4575
|
+
} | undefined;
|
|
4576
|
+
} | undefined;
|
|
4577
|
+
create?: boolean | undefined;
|
|
4578
|
+
username?: string | undefined;
|
|
4579
|
+
} & {
|
|
4580
|
+
account?: ({
|
|
4581
|
+
token?: string | undefined;
|
|
4582
|
+
vars?: {
|
|
4583
|
+
[x: string]: string | undefined;
|
|
4584
|
+
} | undefined;
|
|
4585
|
+
} & {
|
|
4586
|
+
token?: string | undefined;
|
|
4587
|
+
vars?: ({
|
|
4588
|
+
[x: string]: string | undefined;
|
|
4589
|
+
} & {
|
|
4590
|
+
[x: string]: string | undefined;
|
|
4591
|
+
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4592
|
+
} & { [K_1 in Exclude<keyof I["account"], keyof AccountMezon>]: never; }) | undefined;
|
|
4593
|
+
create?: boolean | undefined;
|
|
4594
|
+
username?: string | undefined;
|
|
4595
|
+
} & { [K_2 in Exclude<keyof I, keyof AuthenticateMezonRequest>]: never; }>(base?: I | undefined): AuthenticateMezonRequest;
|
|
4596
|
+
fromPartial<I_1 extends {
|
|
4597
|
+
account?: {
|
|
4598
|
+
token?: string | undefined;
|
|
4599
|
+
vars?: {
|
|
4600
|
+
[x: string]: string | undefined;
|
|
4601
|
+
} | undefined;
|
|
4602
|
+
} | undefined;
|
|
4603
|
+
create?: boolean | undefined;
|
|
4604
|
+
username?: string | undefined;
|
|
4605
|
+
} & {
|
|
4606
|
+
account?: ({
|
|
4607
|
+
token?: string | undefined;
|
|
4608
|
+
vars?: {
|
|
4609
|
+
[x: string]: string | undefined;
|
|
4610
|
+
} | undefined;
|
|
4611
|
+
} & {
|
|
4612
|
+
token?: string | undefined;
|
|
4613
|
+
vars?: ({
|
|
4614
|
+
[x: string]: string | undefined;
|
|
4615
|
+
} & {
|
|
4616
|
+
[x: string]: string | undefined;
|
|
4617
|
+
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4618
|
+
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountMezon>]: never; }) | undefined;
|
|
4619
|
+
create?: boolean | undefined;
|
|
4620
|
+
username?: string | undefined;
|
|
4621
|
+
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateMezonRequest>]: never; }>(object: I_1): AuthenticateMezonRequest;
|
|
4622
|
+
};
|
|
4571
4623
|
export declare const AuthenticateSteamRequest: {
|
|
4572
4624
|
encode(message: AuthenticateSteamRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4573
4625
|
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateSteamRequest;
|
|
@@ -20869,7 +20921,7 @@ export declare const LoginIDResponse: {
|
|
|
20869
20921
|
create_time_second?: number | undefined;
|
|
20870
20922
|
platform?: string | undefined;
|
|
20871
20923
|
user_id?: number | undefined;
|
|
20872
|
-
|
|
20924
|
+
username?: string | undefined;
|
|
20873
20925
|
address?: string | undefined;
|
|
20874
20926
|
} & {
|
|
20875
20927
|
login_id?: string | undefined;
|
|
@@ -20877,7 +20929,7 @@ export declare const LoginIDResponse: {
|
|
|
20877
20929
|
create_time_second?: number | undefined;
|
|
20878
20930
|
platform?: string | undefined;
|
|
20879
20931
|
user_id?: number | undefined;
|
|
20880
|
-
|
|
20932
|
+
username?: string | undefined;
|
|
20881
20933
|
address?: string | undefined;
|
|
20882
20934
|
} & { [K in Exclude<keyof I, keyof LoginIDResponse>]: never; }>(base?: I | undefined): LoginIDResponse;
|
|
20883
20935
|
fromPartial<I_1 extends {
|
|
@@ -20886,7 +20938,7 @@ export declare const LoginIDResponse: {
|
|
|
20886
20938
|
create_time_second?: number | undefined;
|
|
20887
20939
|
platform?: string | undefined;
|
|
20888
20940
|
user_id?: number | undefined;
|
|
20889
|
-
|
|
20941
|
+
username?: string | undefined;
|
|
20890
20942
|
address?: string | undefined;
|
|
20891
20943
|
} & {
|
|
20892
20944
|
login_id?: string | undefined;
|
|
@@ -20894,7 +20946,7 @@ export declare const LoginIDResponse: {
|
|
|
20894
20946
|
create_time_second?: number | undefined;
|
|
20895
20947
|
platform?: string | undefined;
|
|
20896
20948
|
user_id?: number | undefined;
|
|
20897
|
-
|
|
20949
|
+
username?: string | undefined;
|
|
20898
20950
|
address?: string | undefined;
|
|
20899
20951
|
} & { [K_1 in Exclude<keyof I_1, keyof LoginIDResponse>]: never; }>(object: I_1): LoginIDResponse;
|
|
20900
20952
|
};
|
|
@@ -24136,6 +24188,702 @@ export declare const HandleParticipantMeetStateRequest: {
|
|
|
24136
24188
|
state?: number | undefined;
|
|
24137
24189
|
} & { [K_1 in Exclude<keyof I_1, keyof HandleParticipantMeetStateRequest>]: never; }>(object: I_1): HandleParticipantMeetStateRequest;
|
|
24138
24190
|
};
|
|
24191
|
+
export declare const MezonOauthClient: {
|
|
24192
|
+
encode(message: MezonOauthClient, writer?: _m0.Writer): _m0.Writer;
|
|
24193
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MezonOauthClient;
|
|
24194
|
+
fromJSON(object: any): MezonOauthClient;
|
|
24195
|
+
toJSON(message: MezonOauthClient): unknown;
|
|
24196
|
+
create<I extends {
|
|
24197
|
+
access_token_strategy?: string | undefined;
|
|
24198
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24199
|
+
audience?: string[] | undefined;
|
|
24200
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24201
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24202
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24203
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24204
|
+
backchannel_logout_uri?: string | undefined;
|
|
24205
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24206
|
+
client_id?: string | undefined;
|
|
24207
|
+
client_name?: string | undefined;
|
|
24208
|
+
client_secret?: string | undefined;
|
|
24209
|
+
client_secret_expires_at?: number | undefined;
|
|
24210
|
+
client_uri?: string | undefined;
|
|
24211
|
+
contacts?: string[] | undefined;
|
|
24212
|
+
created_at?: Date | undefined;
|
|
24213
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24214
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24215
|
+
grant_types?: string[] | undefined;
|
|
24216
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24217
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24218
|
+
jwks?: string[] | undefined;
|
|
24219
|
+
jwks_uri?: string | undefined;
|
|
24220
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24221
|
+
logo_uri?: string | undefined;
|
|
24222
|
+
owner?: string | undefined;
|
|
24223
|
+
policy_uri?: string | undefined;
|
|
24224
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24225
|
+
redirect_uris?: string[] | undefined;
|
|
24226
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24227
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24228
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24229
|
+
registration_access_token?: string | undefined;
|
|
24230
|
+
registration_client_uri?: string | undefined;
|
|
24231
|
+
request_object_signing_alg?: string | undefined;
|
|
24232
|
+
request_uris?: string[] | undefined;
|
|
24233
|
+
response_types?: string[] | undefined;
|
|
24234
|
+
scope?: string | undefined;
|
|
24235
|
+
sector_identifier_uri?: string | undefined;
|
|
24236
|
+
skip_consent?: boolean | undefined;
|
|
24237
|
+
skip_logout_consent?: boolean | undefined;
|
|
24238
|
+
subject_type?: string | undefined;
|
|
24239
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24240
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24241
|
+
tos_uri?: string | undefined;
|
|
24242
|
+
updated_at?: Date | undefined;
|
|
24243
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24244
|
+
} & {
|
|
24245
|
+
access_token_strategy?: string | undefined;
|
|
24246
|
+
allowed_cors_origins?: (string[] & string[] & { [K in Exclude<keyof I["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
24247
|
+
audience?: (string[] & string[] & { [K_1 in Exclude<keyof I["audience"], keyof string[]>]: never; }) | undefined;
|
|
24248
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24249
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24250
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24251
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24252
|
+
backchannel_logout_uri?: string | undefined;
|
|
24253
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24254
|
+
client_id?: string | undefined;
|
|
24255
|
+
client_name?: string | undefined;
|
|
24256
|
+
client_secret?: string | undefined;
|
|
24257
|
+
client_secret_expires_at?: number | undefined;
|
|
24258
|
+
client_uri?: string | undefined;
|
|
24259
|
+
contacts?: (string[] & string[] & { [K_2 in Exclude<keyof I["contacts"], keyof string[]>]: never; }) | undefined;
|
|
24260
|
+
created_at?: Date | undefined;
|
|
24261
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24262
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24263
|
+
grant_types?: (string[] & string[] & { [K_3 in Exclude<keyof I["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
24264
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24265
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24266
|
+
jwks?: (string[] & string[] & { [K_4 in Exclude<keyof I["jwks"], keyof string[]>]: never; }) | undefined;
|
|
24267
|
+
jwks_uri?: string | undefined;
|
|
24268
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24269
|
+
logo_uri?: string | undefined;
|
|
24270
|
+
owner?: string | undefined;
|
|
24271
|
+
policy_uri?: string | undefined;
|
|
24272
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_5 in Exclude<keyof I["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24273
|
+
redirect_uris?: (string[] & string[] & { [K_6 in Exclude<keyof I["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24274
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24275
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24276
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24277
|
+
registration_access_token?: string | undefined;
|
|
24278
|
+
registration_client_uri?: string | undefined;
|
|
24279
|
+
request_object_signing_alg?: string | undefined;
|
|
24280
|
+
request_uris?: (string[] & string[] & { [K_7 in Exclude<keyof I["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
24281
|
+
response_types?: (string[] & string[] & { [K_8 in Exclude<keyof I["response_types"], keyof string[]>]: never; }) | undefined;
|
|
24282
|
+
scope?: string | undefined;
|
|
24283
|
+
sector_identifier_uri?: string | undefined;
|
|
24284
|
+
skip_consent?: boolean | undefined;
|
|
24285
|
+
skip_logout_consent?: boolean | undefined;
|
|
24286
|
+
subject_type?: string | undefined;
|
|
24287
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24288
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24289
|
+
tos_uri?: string | undefined;
|
|
24290
|
+
updated_at?: Date | undefined;
|
|
24291
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24292
|
+
} & { [K_9 in Exclude<keyof I, keyof MezonOauthClient>]: never; }>(base?: I | undefined): MezonOauthClient;
|
|
24293
|
+
fromPartial<I_1 extends {
|
|
24294
|
+
access_token_strategy?: string | undefined;
|
|
24295
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24296
|
+
audience?: string[] | undefined;
|
|
24297
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24298
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24299
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24300
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24301
|
+
backchannel_logout_uri?: string | undefined;
|
|
24302
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24303
|
+
client_id?: string | undefined;
|
|
24304
|
+
client_name?: string | undefined;
|
|
24305
|
+
client_secret?: string | undefined;
|
|
24306
|
+
client_secret_expires_at?: number | undefined;
|
|
24307
|
+
client_uri?: string | undefined;
|
|
24308
|
+
contacts?: string[] | undefined;
|
|
24309
|
+
created_at?: Date | undefined;
|
|
24310
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24311
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24312
|
+
grant_types?: string[] | undefined;
|
|
24313
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24314
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24315
|
+
jwks?: string[] | undefined;
|
|
24316
|
+
jwks_uri?: string | undefined;
|
|
24317
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24318
|
+
logo_uri?: string | undefined;
|
|
24319
|
+
owner?: string | undefined;
|
|
24320
|
+
policy_uri?: string | undefined;
|
|
24321
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24322
|
+
redirect_uris?: string[] | undefined;
|
|
24323
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24324
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24325
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24326
|
+
registration_access_token?: string | undefined;
|
|
24327
|
+
registration_client_uri?: string | undefined;
|
|
24328
|
+
request_object_signing_alg?: string | undefined;
|
|
24329
|
+
request_uris?: string[] | undefined;
|
|
24330
|
+
response_types?: string[] | undefined;
|
|
24331
|
+
scope?: string | undefined;
|
|
24332
|
+
sector_identifier_uri?: string | undefined;
|
|
24333
|
+
skip_consent?: boolean | undefined;
|
|
24334
|
+
skip_logout_consent?: boolean | undefined;
|
|
24335
|
+
subject_type?: string | undefined;
|
|
24336
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24337
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24338
|
+
tos_uri?: string | undefined;
|
|
24339
|
+
updated_at?: Date | undefined;
|
|
24340
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24341
|
+
} & {
|
|
24342
|
+
access_token_strategy?: string | undefined;
|
|
24343
|
+
allowed_cors_origins?: (string[] & string[] & { [K_10 in Exclude<keyof I_1["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
24344
|
+
audience?: (string[] & string[] & { [K_11 in Exclude<keyof I_1["audience"], keyof string[]>]: never; }) | undefined;
|
|
24345
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24346
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24347
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24348
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24349
|
+
backchannel_logout_uri?: string | undefined;
|
|
24350
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24351
|
+
client_id?: string | undefined;
|
|
24352
|
+
client_name?: string | undefined;
|
|
24353
|
+
client_secret?: string | undefined;
|
|
24354
|
+
client_secret_expires_at?: number | undefined;
|
|
24355
|
+
client_uri?: string | undefined;
|
|
24356
|
+
contacts?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["contacts"], keyof string[]>]: never; }) | undefined;
|
|
24357
|
+
created_at?: Date | undefined;
|
|
24358
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24359
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24360
|
+
grant_types?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
24361
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24362
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24363
|
+
jwks?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["jwks"], keyof string[]>]: never; }) | undefined;
|
|
24364
|
+
jwks_uri?: string | undefined;
|
|
24365
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24366
|
+
logo_uri?: string | undefined;
|
|
24367
|
+
owner?: string | undefined;
|
|
24368
|
+
policy_uri?: string | undefined;
|
|
24369
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24370
|
+
redirect_uris?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24371
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24372
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24373
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24374
|
+
registration_access_token?: string | undefined;
|
|
24375
|
+
registration_client_uri?: string | undefined;
|
|
24376
|
+
request_object_signing_alg?: string | undefined;
|
|
24377
|
+
request_uris?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
24378
|
+
response_types?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["response_types"], keyof string[]>]: never; }) | undefined;
|
|
24379
|
+
scope?: string | undefined;
|
|
24380
|
+
sector_identifier_uri?: string | undefined;
|
|
24381
|
+
skip_consent?: boolean | undefined;
|
|
24382
|
+
skip_logout_consent?: boolean | undefined;
|
|
24383
|
+
subject_type?: string | undefined;
|
|
24384
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24385
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24386
|
+
tos_uri?: string | undefined;
|
|
24387
|
+
updated_at?: Date | undefined;
|
|
24388
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24389
|
+
} & { [K_19 in Exclude<keyof I_1, keyof MezonOauthClient>]: never; }>(object: I_1): MezonOauthClient;
|
|
24390
|
+
};
|
|
24391
|
+
export declare const MezonOauthClientList: {
|
|
24392
|
+
encode(message: MezonOauthClientList, writer?: _m0.Writer): _m0.Writer;
|
|
24393
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MezonOauthClientList;
|
|
24394
|
+
fromJSON(object: any): MezonOauthClientList;
|
|
24395
|
+
toJSON(message: MezonOauthClientList): unknown;
|
|
24396
|
+
create<I extends {
|
|
24397
|
+
listMezonOauthClient?: {
|
|
24398
|
+
access_token_strategy?: string | undefined;
|
|
24399
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24400
|
+
audience?: string[] | undefined;
|
|
24401
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24402
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24403
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24404
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24405
|
+
backchannel_logout_uri?: string | undefined;
|
|
24406
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24407
|
+
client_id?: string | undefined;
|
|
24408
|
+
client_name?: string | undefined;
|
|
24409
|
+
client_secret?: string | undefined;
|
|
24410
|
+
client_secret_expires_at?: number | undefined;
|
|
24411
|
+
client_uri?: string | undefined;
|
|
24412
|
+
contacts?: string[] | undefined;
|
|
24413
|
+
created_at?: Date | undefined;
|
|
24414
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24415
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24416
|
+
grant_types?: string[] | undefined;
|
|
24417
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24418
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24419
|
+
jwks?: string[] | undefined;
|
|
24420
|
+
jwks_uri?: string | undefined;
|
|
24421
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24422
|
+
logo_uri?: string | undefined;
|
|
24423
|
+
owner?: string | undefined;
|
|
24424
|
+
policy_uri?: string | undefined;
|
|
24425
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24426
|
+
redirect_uris?: string[] | undefined;
|
|
24427
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24428
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24429
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24430
|
+
registration_access_token?: string | undefined;
|
|
24431
|
+
registration_client_uri?: string | undefined;
|
|
24432
|
+
request_object_signing_alg?: string | undefined;
|
|
24433
|
+
request_uris?: string[] | undefined;
|
|
24434
|
+
response_types?: string[] | undefined;
|
|
24435
|
+
scope?: string | undefined;
|
|
24436
|
+
sector_identifier_uri?: string | undefined;
|
|
24437
|
+
skip_consent?: boolean | undefined;
|
|
24438
|
+
skip_logout_consent?: boolean | undefined;
|
|
24439
|
+
subject_type?: string | undefined;
|
|
24440
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24441
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24442
|
+
tos_uri?: string | undefined;
|
|
24443
|
+
updated_at?: Date | undefined;
|
|
24444
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24445
|
+
}[] | undefined;
|
|
24446
|
+
} & {
|
|
24447
|
+
listMezonOauthClient?: ({
|
|
24448
|
+
access_token_strategy?: string | undefined;
|
|
24449
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24450
|
+
audience?: string[] | undefined;
|
|
24451
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24452
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24453
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24454
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24455
|
+
backchannel_logout_uri?: string | undefined;
|
|
24456
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24457
|
+
client_id?: string | undefined;
|
|
24458
|
+
client_name?: string | undefined;
|
|
24459
|
+
client_secret?: string | undefined;
|
|
24460
|
+
client_secret_expires_at?: number | undefined;
|
|
24461
|
+
client_uri?: string | undefined;
|
|
24462
|
+
contacts?: string[] | undefined;
|
|
24463
|
+
created_at?: Date | undefined;
|
|
24464
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24465
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24466
|
+
grant_types?: string[] | undefined;
|
|
24467
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24468
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24469
|
+
jwks?: string[] | undefined;
|
|
24470
|
+
jwks_uri?: string | undefined;
|
|
24471
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24472
|
+
logo_uri?: string | undefined;
|
|
24473
|
+
owner?: string | undefined;
|
|
24474
|
+
policy_uri?: string | undefined;
|
|
24475
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24476
|
+
redirect_uris?: string[] | undefined;
|
|
24477
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24478
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24479
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24480
|
+
registration_access_token?: string | undefined;
|
|
24481
|
+
registration_client_uri?: string | undefined;
|
|
24482
|
+
request_object_signing_alg?: string | undefined;
|
|
24483
|
+
request_uris?: string[] | undefined;
|
|
24484
|
+
response_types?: string[] | undefined;
|
|
24485
|
+
scope?: string | undefined;
|
|
24486
|
+
sector_identifier_uri?: string | undefined;
|
|
24487
|
+
skip_consent?: boolean | undefined;
|
|
24488
|
+
skip_logout_consent?: boolean | undefined;
|
|
24489
|
+
subject_type?: string | undefined;
|
|
24490
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24491
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24492
|
+
tos_uri?: string | undefined;
|
|
24493
|
+
updated_at?: Date | undefined;
|
|
24494
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24495
|
+
}[] & ({
|
|
24496
|
+
access_token_strategy?: string | undefined;
|
|
24497
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24498
|
+
audience?: string[] | undefined;
|
|
24499
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24500
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24501
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24502
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24503
|
+
backchannel_logout_uri?: string | undefined;
|
|
24504
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24505
|
+
client_id?: string | undefined;
|
|
24506
|
+
client_name?: string | undefined;
|
|
24507
|
+
client_secret?: string | undefined;
|
|
24508
|
+
client_secret_expires_at?: number | undefined;
|
|
24509
|
+
client_uri?: string | undefined;
|
|
24510
|
+
contacts?: string[] | undefined;
|
|
24511
|
+
created_at?: Date | undefined;
|
|
24512
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24513
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24514
|
+
grant_types?: string[] | undefined;
|
|
24515
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24516
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24517
|
+
jwks?: string[] | undefined;
|
|
24518
|
+
jwks_uri?: string | undefined;
|
|
24519
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24520
|
+
logo_uri?: string | undefined;
|
|
24521
|
+
owner?: string | undefined;
|
|
24522
|
+
policy_uri?: string | undefined;
|
|
24523
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24524
|
+
redirect_uris?: string[] | undefined;
|
|
24525
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24526
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24527
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24528
|
+
registration_access_token?: string | undefined;
|
|
24529
|
+
registration_client_uri?: string | undefined;
|
|
24530
|
+
request_object_signing_alg?: string | undefined;
|
|
24531
|
+
request_uris?: string[] | undefined;
|
|
24532
|
+
response_types?: string[] | undefined;
|
|
24533
|
+
scope?: string | undefined;
|
|
24534
|
+
sector_identifier_uri?: string | undefined;
|
|
24535
|
+
skip_consent?: boolean | undefined;
|
|
24536
|
+
skip_logout_consent?: boolean | undefined;
|
|
24537
|
+
subject_type?: string | undefined;
|
|
24538
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24539
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24540
|
+
tos_uri?: string | undefined;
|
|
24541
|
+
updated_at?: Date | undefined;
|
|
24542
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24543
|
+
} & {
|
|
24544
|
+
access_token_strategy?: string | undefined;
|
|
24545
|
+
allowed_cors_origins?: (string[] & string[] & { [K in Exclude<keyof I["listMezonOauthClient"][number]["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
24546
|
+
audience?: (string[] & string[] & { [K_1 in Exclude<keyof I["listMezonOauthClient"][number]["audience"], keyof string[]>]: never; }) | undefined;
|
|
24547
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24548
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24549
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24550
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24551
|
+
backchannel_logout_uri?: string | undefined;
|
|
24552
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24553
|
+
client_id?: string | undefined;
|
|
24554
|
+
client_name?: string | undefined;
|
|
24555
|
+
client_secret?: string | undefined;
|
|
24556
|
+
client_secret_expires_at?: number | undefined;
|
|
24557
|
+
client_uri?: string | undefined;
|
|
24558
|
+
contacts?: (string[] & string[] & { [K_2 in Exclude<keyof I["listMezonOauthClient"][number]["contacts"], keyof string[]>]: never; }) | undefined;
|
|
24559
|
+
created_at?: Date | undefined;
|
|
24560
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24561
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24562
|
+
grant_types?: (string[] & string[] & { [K_3 in Exclude<keyof I["listMezonOauthClient"][number]["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
24563
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24564
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24565
|
+
jwks?: (string[] & string[] & { [K_4 in Exclude<keyof I["listMezonOauthClient"][number]["jwks"], keyof string[]>]: never; }) | undefined;
|
|
24566
|
+
jwks_uri?: string | undefined;
|
|
24567
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24568
|
+
logo_uri?: string | undefined;
|
|
24569
|
+
owner?: string | undefined;
|
|
24570
|
+
policy_uri?: string | undefined;
|
|
24571
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_5 in Exclude<keyof I["listMezonOauthClient"][number]["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24572
|
+
redirect_uris?: (string[] & string[] & { [K_6 in Exclude<keyof I["listMezonOauthClient"][number]["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24573
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24574
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24575
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24576
|
+
registration_access_token?: string | undefined;
|
|
24577
|
+
registration_client_uri?: string | undefined;
|
|
24578
|
+
request_object_signing_alg?: string | undefined;
|
|
24579
|
+
request_uris?: (string[] & string[] & { [K_7 in Exclude<keyof I["listMezonOauthClient"][number]["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
24580
|
+
response_types?: (string[] & string[] & { [K_8 in Exclude<keyof I["listMezonOauthClient"][number]["response_types"], keyof string[]>]: never; }) | undefined;
|
|
24581
|
+
scope?: string | undefined;
|
|
24582
|
+
sector_identifier_uri?: string | undefined;
|
|
24583
|
+
skip_consent?: boolean | undefined;
|
|
24584
|
+
skip_logout_consent?: boolean | undefined;
|
|
24585
|
+
subject_type?: string | undefined;
|
|
24586
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24587
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24588
|
+
tos_uri?: string | undefined;
|
|
24589
|
+
updated_at?: Date | undefined;
|
|
24590
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24591
|
+
} & { [K_9 in Exclude<keyof I["listMezonOauthClient"][number], keyof MezonOauthClient>]: never; })[] & { [K_10 in Exclude<keyof I["listMezonOauthClient"], keyof {
|
|
24592
|
+
access_token_strategy?: string | undefined;
|
|
24593
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24594
|
+
audience?: string[] | undefined;
|
|
24595
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24596
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24597
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24598
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24599
|
+
backchannel_logout_uri?: string | undefined;
|
|
24600
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24601
|
+
client_id?: string | undefined;
|
|
24602
|
+
client_name?: string | undefined;
|
|
24603
|
+
client_secret?: string | undefined;
|
|
24604
|
+
client_secret_expires_at?: number | undefined;
|
|
24605
|
+
client_uri?: string | undefined;
|
|
24606
|
+
contacts?: string[] | undefined;
|
|
24607
|
+
created_at?: Date | undefined;
|
|
24608
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24609
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24610
|
+
grant_types?: string[] | undefined;
|
|
24611
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24612
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24613
|
+
jwks?: string[] | undefined;
|
|
24614
|
+
jwks_uri?: string | undefined;
|
|
24615
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24616
|
+
logo_uri?: string | undefined;
|
|
24617
|
+
owner?: string | undefined;
|
|
24618
|
+
policy_uri?: string | undefined;
|
|
24619
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24620
|
+
redirect_uris?: string[] | undefined;
|
|
24621
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24622
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24623
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24624
|
+
registration_access_token?: string | undefined;
|
|
24625
|
+
registration_client_uri?: string | undefined;
|
|
24626
|
+
request_object_signing_alg?: string | undefined;
|
|
24627
|
+
request_uris?: string[] | undefined;
|
|
24628
|
+
response_types?: string[] | undefined;
|
|
24629
|
+
scope?: string | undefined;
|
|
24630
|
+
sector_identifier_uri?: string | undefined;
|
|
24631
|
+
skip_consent?: boolean | undefined;
|
|
24632
|
+
skip_logout_consent?: boolean | undefined;
|
|
24633
|
+
subject_type?: string | undefined;
|
|
24634
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24635
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24636
|
+
tos_uri?: string | undefined;
|
|
24637
|
+
updated_at?: Date | undefined;
|
|
24638
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24639
|
+
}[]>]: never; }) | undefined;
|
|
24640
|
+
} & { [K_11 in Exclude<keyof I, "listMezonOauthClient">]: never; }>(base?: I | undefined): MezonOauthClientList;
|
|
24641
|
+
fromPartial<I_1 extends {
|
|
24642
|
+
listMezonOauthClient?: {
|
|
24643
|
+
access_token_strategy?: string | undefined;
|
|
24644
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24645
|
+
audience?: string[] | undefined;
|
|
24646
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24647
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24648
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24649
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24650
|
+
backchannel_logout_uri?: string | undefined;
|
|
24651
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24652
|
+
client_id?: string | undefined;
|
|
24653
|
+
client_name?: string | undefined;
|
|
24654
|
+
client_secret?: string | undefined;
|
|
24655
|
+
client_secret_expires_at?: number | undefined;
|
|
24656
|
+
client_uri?: string | undefined;
|
|
24657
|
+
contacts?: string[] | undefined;
|
|
24658
|
+
created_at?: Date | undefined;
|
|
24659
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24660
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24661
|
+
grant_types?: string[] | undefined;
|
|
24662
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24663
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24664
|
+
jwks?: string[] | undefined;
|
|
24665
|
+
jwks_uri?: string | undefined;
|
|
24666
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24667
|
+
logo_uri?: string | undefined;
|
|
24668
|
+
owner?: string | undefined;
|
|
24669
|
+
policy_uri?: string | undefined;
|
|
24670
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24671
|
+
redirect_uris?: string[] | undefined;
|
|
24672
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24673
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24674
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24675
|
+
registration_access_token?: string | undefined;
|
|
24676
|
+
registration_client_uri?: string | undefined;
|
|
24677
|
+
request_object_signing_alg?: string | undefined;
|
|
24678
|
+
request_uris?: string[] | undefined;
|
|
24679
|
+
response_types?: string[] | undefined;
|
|
24680
|
+
scope?: string | undefined;
|
|
24681
|
+
sector_identifier_uri?: string | undefined;
|
|
24682
|
+
skip_consent?: boolean | undefined;
|
|
24683
|
+
skip_logout_consent?: boolean | undefined;
|
|
24684
|
+
subject_type?: string | undefined;
|
|
24685
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24686
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24687
|
+
tos_uri?: string | undefined;
|
|
24688
|
+
updated_at?: Date | undefined;
|
|
24689
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24690
|
+
}[] | undefined;
|
|
24691
|
+
} & {
|
|
24692
|
+
listMezonOauthClient?: ({
|
|
24693
|
+
access_token_strategy?: string | undefined;
|
|
24694
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24695
|
+
audience?: string[] | undefined;
|
|
24696
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24697
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24698
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24699
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24700
|
+
backchannel_logout_uri?: string | undefined;
|
|
24701
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24702
|
+
client_id?: string | undefined;
|
|
24703
|
+
client_name?: string | undefined;
|
|
24704
|
+
client_secret?: string | undefined;
|
|
24705
|
+
client_secret_expires_at?: number | undefined;
|
|
24706
|
+
client_uri?: string | undefined;
|
|
24707
|
+
contacts?: string[] | undefined;
|
|
24708
|
+
created_at?: Date | undefined;
|
|
24709
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24710
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24711
|
+
grant_types?: string[] | undefined;
|
|
24712
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24713
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24714
|
+
jwks?: string[] | undefined;
|
|
24715
|
+
jwks_uri?: string | undefined;
|
|
24716
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24717
|
+
logo_uri?: string | undefined;
|
|
24718
|
+
owner?: string | undefined;
|
|
24719
|
+
policy_uri?: string | undefined;
|
|
24720
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24721
|
+
redirect_uris?: string[] | undefined;
|
|
24722
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24723
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24724
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24725
|
+
registration_access_token?: string | undefined;
|
|
24726
|
+
registration_client_uri?: string | undefined;
|
|
24727
|
+
request_object_signing_alg?: string | undefined;
|
|
24728
|
+
request_uris?: string[] | undefined;
|
|
24729
|
+
response_types?: string[] | undefined;
|
|
24730
|
+
scope?: string | undefined;
|
|
24731
|
+
sector_identifier_uri?: string | undefined;
|
|
24732
|
+
skip_consent?: boolean | undefined;
|
|
24733
|
+
skip_logout_consent?: boolean | undefined;
|
|
24734
|
+
subject_type?: string | undefined;
|
|
24735
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24736
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24737
|
+
tos_uri?: string | undefined;
|
|
24738
|
+
updated_at?: Date | undefined;
|
|
24739
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24740
|
+
}[] & ({
|
|
24741
|
+
access_token_strategy?: string | undefined;
|
|
24742
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24743
|
+
audience?: string[] | undefined;
|
|
24744
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24745
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24746
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24747
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24748
|
+
backchannel_logout_uri?: string | undefined;
|
|
24749
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24750
|
+
client_id?: string | undefined;
|
|
24751
|
+
client_name?: string | undefined;
|
|
24752
|
+
client_secret?: string | undefined;
|
|
24753
|
+
client_secret_expires_at?: number | undefined;
|
|
24754
|
+
client_uri?: string | undefined;
|
|
24755
|
+
contacts?: string[] | undefined;
|
|
24756
|
+
created_at?: Date | undefined;
|
|
24757
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24758
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24759
|
+
grant_types?: string[] | undefined;
|
|
24760
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24761
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24762
|
+
jwks?: string[] | undefined;
|
|
24763
|
+
jwks_uri?: string | undefined;
|
|
24764
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24765
|
+
logo_uri?: string | undefined;
|
|
24766
|
+
owner?: string | undefined;
|
|
24767
|
+
policy_uri?: string | undefined;
|
|
24768
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24769
|
+
redirect_uris?: string[] | undefined;
|
|
24770
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24771
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24772
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24773
|
+
registration_access_token?: string | undefined;
|
|
24774
|
+
registration_client_uri?: string | undefined;
|
|
24775
|
+
request_object_signing_alg?: string | undefined;
|
|
24776
|
+
request_uris?: string[] | undefined;
|
|
24777
|
+
response_types?: string[] | undefined;
|
|
24778
|
+
scope?: string | undefined;
|
|
24779
|
+
sector_identifier_uri?: string | undefined;
|
|
24780
|
+
skip_consent?: boolean | undefined;
|
|
24781
|
+
skip_logout_consent?: boolean | undefined;
|
|
24782
|
+
subject_type?: string | undefined;
|
|
24783
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24784
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24785
|
+
tos_uri?: string | undefined;
|
|
24786
|
+
updated_at?: Date | undefined;
|
|
24787
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24788
|
+
} & {
|
|
24789
|
+
access_token_strategy?: string | undefined;
|
|
24790
|
+
allowed_cors_origins?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["listMezonOauthClient"][number]["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
24791
|
+
audience?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["listMezonOauthClient"][number]["audience"], keyof string[]>]: never; }) | undefined;
|
|
24792
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24793
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24794
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24795
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24796
|
+
backchannel_logout_uri?: string | undefined;
|
|
24797
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24798
|
+
client_id?: string | undefined;
|
|
24799
|
+
client_name?: string | undefined;
|
|
24800
|
+
client_secret?: string | undefined;
|
|
24801
|
+
client_secret_expires_at?: number | undefined;
|
|
24802
|
+
client_uri?: string | undefined;
|
|
24803
|
+
contacts?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["listMezonOauthClient"][number]["contacts"], keyof string[]>]: never; }) | undefined;
|
|
24804
|
+
created_at?: Date | undefined;
|
|
24805
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24806
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24807
|
+
grant_types?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["listMezonOauthClient"][number]["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
24808
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24809
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24810
|
+
jwks?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["listMezonOauthClient"][number]["jwks"], keyof string[]>]: never; }) | undefined;
|
|
24811
|
+
jwks_uri?: string | undefined;
|
|
24812
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24813
|
+
logo_uri?: string | undefined;
|
|
24814
|
+
owner?: string | undefined;
|
|
24815
|
+
policy_uri?: string | undefined;
|
|
24816
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["listMezonOauthClient"][number]["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24817
|
+
redirect_uris?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["listMezonOauthClient"][number]["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24818
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24819
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24820
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24821
|
+
registration_access_token?: string | undefined;
|
|
24822
|
+
registration_client_uri?: string | undefined;
|
|
24823
|
+
request_object_signing_alg?: string | undefined;
|
|
24824
|
+
request_uris?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["listMezonOauthClient"][number]["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
24825
|
+
response_types?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["listMezonOauthClient"][number]["response_types"], keyof string[]>]: never; }) | undefined;
|
|
24826
|
+
scope?: string | undefined;
|
|
24827
|
+
sector_identifier_uri?: string | undefined;
|
|
24828
|
+
skip_consent?: boolean | undefined;
|
|
24829
|
+
skip_logout_consent?: boolean | undefined;
|
|
24830
|
+
subject_type?: string | undefined;
|
|
24831
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24832
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24833
|
+
tos_uri?: string | undefined;
|
|
24834
|
+
updated_at?: Date | undefined;
|
|
24835
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24836
|
+
} & { [K_21 in Exclude<keyof I_1["listMezonOauthClient"][number], keyof MezonOauthClient>]: never; })[] & { [K_22 in Exclude<keyof I_1["listMezonOauthClient"], keyof {
|
|
24837
|
+
access_token_strategy?: string | undefined;
|
|
24838
|
+
allowed_cors_origins?: string[] | undefined;
|
|
24839
|
+
audience?: string[] | undefined;
|
|
24840
|
+
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
24841
|
+
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
24842
|
+
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
24843
|
+
backchannel_logout_session_required?: boolean | undefined;
|
|
24844
|
+
backchannel_logout_uri?: string | undefined;
|
|
24845
|
+
client_credentials_grant_access_token_lifespan?: string | undefined;
|
|
24846
|
+
client_id?: string | undefined;
|
|
24847
|
+
client_name?: string | undefined;
|
|
24848
|
+
client_secret?: string | undefined;
|
|
24849
|
+
client_secret_expires_at?: number | undefined;
|
|
24850
|
+
client_uri?: string | undefined;
|
|
24851
|
+
contacts?: string[] | undefined;
|
|
24852
|
+
created_at?: Date | undefined;
|
|
24853
|
+
frontchannel_logout_session_required?: boolean | undefined;
|
|
24854
|
+
frontchannel_logout_uri?: string | undefined;
|
|
24855
|
+
grant_types?: string[] | undefined;
|
|
24856
|
+
implicit_grant_access_token_lifespan?: string | undefined;
|
|
24857
|
+
implicit_grant_id_token_lifespan?: string | undefined;
|
|
24858
|
+
jwks?: string[] | undefined;
|
|
24859
|
+
jwks_uri?: string | undefined;
|
|
24860
|
+
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
24861
|
+
logo_uri?: string | undefined;
|
|
24862
|
+
owner?: string | undefined;
|
|
24863
|
+
policy_uri?: string | undefined;
|
|
24864
|
+
post_logout_redirect_uris?: string[] | undefined;
|
|
24865
|
+
redirect_uris?: string[] | undefined;
|
|
24866
|
+
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
24867
|
+
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
24868
|
+
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
24869
|
+
registration_access_token?: string | undefined;
|
|
24870
|
+
registration_client_uri?: string | undefined;
|
|
24871
|
+
request_object_signing_alg?: string | undefined;
|
|
24872
|
+
request_uris?: string[] | undefined;
|
|
24873
|
+
response_types?: string[] | undefined;
|
|
24874
|
+
scope?: string | undefined;
|
|
24875
|
+
sector_identifier_uri?: string | undefined;
|
|
24876
|
+
skip_consent?: boolean | undefined;
|
|
24877
|
+
skip_logout_consent?: boolean | undefined;
|
|
24878
|
+
subject_type?: string | undefined;
|
|
24879
|
+
token_endpoint_auth_method?: string | undefined;
|
|
24880
|
+
token_endpoint_auth_signing_alg?: string | undefined;
|
|
24881
|
+
tos_uri?: string | undefined;
|
|
24882
|
+
updated_at?: Date | undefined;
|
|
24883
|
+
userinfo_signed_response_alg?: string | undefined;
|
|
24884
|
+
}[]>]: never; }) | undefined;
|
|
24885
|
+
} & { [K_23 in Exclude<keyof I_1, "listMezonOauthClient">]: never; }>(object: I_1): MezonOauthClientList;
|
|
24886
|
+
};
|
|
24139
24887
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
24140
24888
|
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
24889
|
[K in keyof T]?: DeepPartial<T[K]>;
|