@huyooo/ui 2.0.10 → 2.0.12
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/dist/{AuthkitAppSetting-DoC2RJh7.js → AuthkitAppSetting-Dgxd5GMR.js} +527 -521
- package/dist/{LegalDocViewer-DBr0x1ZE.js → LegalDocViewer-BWTrNIUE.js} +722 -719
- package/dist/{UserMenuInvitationsItem.vue_vue_type_script_setup_true_lang-QE1ARaXY.js → UserMenuInvitationsItem.vue_vue_type_script_setup_true_lang-CwB8zI6u.js} +1 -1
- package/dist/{WidthContainer-Clc_WxY_.js → WidthContainer-TAMNaEHp.js} +1 -1
- package/dist/authkit.js +2 -2
- package/dist/common.js +1 -1
- package/dist/composables/Authkit/useAuthkitPasskey.d.ts +4 -1
- package/dist/main.js +4 -4
- package/dist/style.css +1 -1
- package/dist/types/api/auth.generated.d.ts +45 -8
- package/dist/user.js +1 -1
- package/package.json +1 -1
|
@@ -1126,7 +1126,7 @@ export type Api = {
|
|
|
1126
1126
|
inviteCode?: string;
|
|
1127
1127
|
redirectUri?: string;
|
|
1128
1128
|
mode?: "login" | "bind";
|
|
1129
|
-
acceptedTerms?: boolean;
|
|
1129
|
+
acceptedTerms?: boolean | "true" | "false";
|
|
1130
1130
|
};
|
|
1131
1131
|
return: any;
|
|
1132
1132
|
};
|
|
@@ -1151,7 +1151,7 @@ export type Api = {
|
|
|
1151
1151
|
inviteCode?: string;
|
|
1152
1152
|
redirectUri?: string;
|
|
1153
1153
|
mode?: "login" | "bind";
|
|
1154
|
-
acceptedTerms?: boolean;
|
|
1154
|
+
acceptedTerms?: boolean | "true" | "false";
|
|
1155
1155
|
};
|
|
1156
1156
|
return: any;
|
|
1157
1157
|
};
|
|
@@ -1176,7 +1176,7 @@ export type Api = {
|
|
|
1176
1176
|
inviteCode?: string;
|
|
1177
1177
|
redirectUri?: string;
|
|
1178
1178
|
mode?: "login" | "bind";
|
|
1179
|
-
acceptedTerms?: boolean;
|
|
1179
|
+
acceptedTerms?: boolean | "true" | "false";
|
|
1180
1180
|
};
|
|
1181
1181
|
return: any;
|
|
1182
1182
|
};
|
|
@@ -1203,7 +1203,7 @@ export type Api = {
|
|
|
1203
1203
|
inviteCode?: string;
|
|
1204
1204
|
redirectUri?: string;
|
|
1205
1205
|
mode?: "login" | "bind";
|
|
1206
|
-
acceptedTerms?: boolean;
|
|
1206
|
+
acceptedTerms?: boolean | "true" | "false";
|
|
1207
1207
|
};
|
|
1208
1208
|
return: any;
|
|
1209
1209
|
};
|
|
@@ -2046,6 +2046,27 @@ export type Api = {
|
|
|
2046
2046
|
};
|
|
2047
2047
|
};
|
|
2048
2048
|
security: {
|
|
2049
|
+
passkeys: {
|
|
2050
|
+
overview: {
|
|
2051
|
+
/** 获取应用级 Passkey 采用率与设备分布 */
|
|
2052
|
+
post: {
|
|
2053
|
+
return: any;
|
|
2054
|
+
};
|
|
2055
|
+
};
|
|
2056
|
+
find: {
|
|
2057
|
+
/** 分页查看应用用户绑定的 Passkey,只读 */
|
|
2058
|
+
post: {
|
|
2059
|
+
body: {
|
|
2060
|
+
keyword?: string;
|
|
2061
|
+
deviceType?: "singleDevice" | "multiDevice";
|
|
2062
|
+
backedUp?: boolean;
|
|
2063
|
+
page?: number;
|
|
2064
|
+
pageSize?: number;
|
|
2065
|
+
};
|
|
2066
|
+
return: any;
|
|
2067
|
+
};
|
|
2068
|
+
};
|
|
2069
|
+
};
|
|
2049
2070
|
ip: {
|
|
2050
2071
|
list: {
|
|
2051
2072
|
/** 获取 IP 黑白名单规则列表 */
|
|
@@ -3182,7 +3203,7 @@ export interface ApiClient {
|
|
|
3182
3203
|
inviteCode?: string;
|
|
3183
3204
|
redirectUri?: string;
|
|
3184
3205
|
mode?: "login" | "bind";
|
|
3185
|
-
acceptedTerms?: boolean;
|
|
3206
|
+
acceptedTerms?: boolean | "true" | "false";
|
|
3186
3207
|
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
3187
3208
|
};
|
|
3188
3209
|
callback: {
|
|
@@ -3201,7 +3222,7 @@ export interface ApiClient {
|
|
|
3201
3222
|
inviteCode?: string;
|
|
3202
3223
|
redirectUri?: string;
|
|
3203
3224
|
mode?: "login" | "bind";
|
|
3204
|
-
acceptedTerms?: boolean;
|
|
3225
|
+
acceptedTerms?: boolean | "true" | "false";
|
|
3205
3226
|
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
3206
3227
|
};
|
|
3207
3228
|
callback: {
|
|
@@ -3220,7 +3241,7 @@ export interface ApiClient {
|
|
|
3220
3241
|
inviteCode?: string;
|
|
3221
3242
|
redirectUri?: string;
|
|
3222
3243
|
mode?: "login" | "bind";
|
|
3223
|
-
acceptedTerms?: boolean;
|
|
3244
|
+
acceptedTerms?: boolean | "true" | "false";
|
|
3224
3245
|
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
3225
3246
|
};
|
|
3226
3247
|
callback: {
|
|
@@ -3241,7 +3262,7 @@ export interface ApiClient {
|
|
|
3241
3262
|
inviteCode?: string;
|
|
3242
3263
|
redirectUri?: string;
|
|
3243
3264
|
mode?: "login" | "bind";
|
|
3244
|
-
acceptedTerms?: boolean;
|
|
3265
|
+
acceptedTerms?: boolean | "true" | "false";
|
|
3245
3266
|
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
3246
3267
|
};
|
|
3247
3268
|
callback: {
|
|
@@ -3857,6 +3878,22 @@ export interface ApiClient {
|
|
|
3857
3878
|
};
|
|
3858
3879
|
};
|
|
3859
3880
|
security: {
|
|
3881
|
+
passkeys: {
|
|
3882
|
+
overview: {
|
|
3883
|
+
/** 获取应用级 Passkey 采用率与设备分布 */
|
|
3884
|
+
post: (config?: RequestConfig) => RequestBuilder<any>;
|
|
3885
|
+
};
|
|
3886
|
+
find: {
|
|
3887
|
+
/** 分页查看应用用户绑定的 Passkey,只读 */
|
|
3888
|
+
post: (body?: {
|
|
3889
|
+
keyword?: string;
|
|
3890
|
+
deviceType?: "singleDevice" | "multiDevice";
|
|
3891
|
+
backedUp?: boolean;
|
|
3892
|
+
page?: number;
|
|
3893
|
+
pageSize?: number;
|
|
3894
|
+
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
3895
|
+
};
|
|
3896
|
+
};
|
|
3860
3897
|
ip: {
|
|
3861
3898
|
list: {
|
|
3862
3899
|
/** 获取 IP 黑白名单规则列表 */
|
package/dist/user.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { U as a, a as n, b as r, c as t, d as U, _ as u, e as i, f as M, g as o, h as m, i as I, j as c, k as d, l as b, m as f } from "./UserMenuInvitationsItem.vue_vue_type_script_setup_true_lang-
|
|
1
|
+
import { U as a, a as n, b as r, c as t, d as U, _ as u, e as i, f as M, g as o, h as m, i as I, j as c, k as d, l as b, m as f } from "./UserMenuInvitationsItem.vue_vue_type_script_setup_true_lang-CwB8zI6u.js";
|
|
2
2
|
export {
|
|
3
3
|
a as UserAccountMenu,
|
|
4
4
|
n as UserAvatar,
|