@huyooo/ui 4.0.3 → 4.0.6
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-Mt0Npsrg.js → AuthkitAppSetting-B7xyx5Kb.js} +7 -7
- package/dist/{CustomTable-DWiyrYnW.js → CustomTable-FlfUde4Q.js} +2 -2
- package/dist/{FeedbackModal.vue_vue_type_script_setup_true_lang-Cw2KkPEV.js → FeedbackModal.vue_vue_type_script_setup_true_lang-BBmobezM.js} +4 -4
- package/dist/LandingPageLinkGroup-BfKVBesO.js +784 -0
- package/dist/{LandingPageSectionTabs-dSiKXmAa.js → LandingPageSectionTabs-3gXQrUGR.js} +362 -366
- package/dist/{LegalDocViewer-Dg5IUUsW.js → LegalDocViewer-BPbrJ2tj.js} +10 -10
- package/dist/{PaySubscriptions-D1jt316F.js → PaySubscriptions-CPH1wESx.js} +4 -4
- package/dist/{PricingPlans-DuVbKs34.js → PricingPlans-Cb2qrkmu.js} +3 -3
- package/dist/{ReferrerReferees-QPRxJ-CP.js → ReferrerReferees-B2OR30NV.js} +3 -3
- package/dist/{Report-DjNFwR2V.js → Report-C86lhey9.js} +105 -112
- package/dist/{Upload.vue_vue_type_script_setup_true_lang-BIRnaBoz.js → Upload.vue_vue_type_script_setup_true_lang-BygtAblQ.js} +1 -1
- package/dist/{UserMenuInvitationsItem.vue_vue_type_script_setup_true_lang-CGWtJ2il.js → UserMenuInvitationsItem.vue_vue_type_script_setup_true_lang-DxvHvsQm.js} +6 -6
- package/dist/{WidthContainer-BwYM1SLO.js → WidthContainer-DtKLf5Ub.js} +10 -10
- package/dist/authkit.js +8 -8
- package/dist/common/globalConfig.d.ts +5 -0
- package/dist/common.js +2 -2
- package/dist/components/LandingPage/LandingPageFooterContact.vue.d.ts +0 -20
- package/dist/composables/Authkit/useLegalDocs.d.ts +1 -1
- package/dist/composables.d.ts +2 -0
- package/dist/composables.js +60 -54
- package/dist/feedback.js +2 -2
- package/dist/{fetchAuthPageAboutUs-D_l0X2Xq.js → fetchAuthPageAboutUs-DD-MwyiG.js} +2 -2
- package/dist/{index-C81Mrlvt.js → index-ClOjruo3.js} +1 -1
- package/dist/{index-hjdpP8PD.js → index-CncbUu-V.js} +1 -1
- package/dist/landingPage.js +2 -2
- package/dist/legalDocs/buildBuiltinUrl.d.ts +1 -1
- package/dist/main.js +306 -300
- package/dist/pay.js +3 -3
- package/dist/privateCom.js +1 -1
- package/dist/publicReport-ZlMy0xQf.js +32 -0
- package/dist/referrer.js +1 -1
- package/dist/{runtime-DgASwLjo.js → runtime-CfbHkmk9.js} +2 -1
- package/dist/style.css +1 -1
- package/dist/types/api/auth.generated.d.ts +250 -43
- package/dist/upload.js +2 -2
- package/dist/{useAccessPosture-DZj1K8tj.js → useAccessPosture-NSPnmu0I.js} +2 -2
- package/dist/{useAuthkitAppsAuthPageInfo-Dmm9xVjp.js → useAuthkitAppsAuthPageInfo-Cg40bxCJ.js} +1 -1
- package/dist/{useAuthkitAuth-DkP0hwv-.js → useAuthkitAuth-C5oUnl8U.js} +1 -1
- package/dist/{useAuthkitUsersProfile-CR4lcY7Y.js → useAuthkitUsersProfile-BWNVk2UM.js} +1 -1
- package/dist/{useEnsureAuthenticated-DV2hKAPd.js → useEnsureAuthenticated-CQWINiHB.js} +1 -1
- package/dist/useLegalDocs-ky2EzBke.js +114 -0
- package/dist/{usePageSEO-DEFnaFKf.js → usePageSEO-CWLQAmET.js} +1 -1
- package/dist/{useRoutePermission-BicvPoLI.js → useRoutePermission-K-Eu4pRD.js} +3 -3
- package/dist/{useSubscriptionCheckout-BCGpYG5C.js → useSubscriptionCheckout-BcN8cRMV.js} +1 -1
- package/dist/user.js +1 -1
- package/dist/utils/requiredFooterLinks.d.ts +11 -0
- package/package.json +1 -1
- package/dist/LandingPageLinkGroup-CVktmuZn.js +0 -768
- package/dist/useLegalDocs-DAxt9_gM.js +0 -107
|
@@ -610,6 +610,20 @@ export type Api = {
|
|
|
610
610
|
return: any;
|
|
611
611
|
};
|
|
612
612
|
};
|
|
613
|
+
filing: {
|
|
614
|
+
/** 覆盖或继承组织备案,或更新应用自定义备案 */
|
|
615
|
+
post: {
|
|
616
|
+
body: {
|
|
617
|
+
key: string;
|
|
618
|
+
enabled: boolean;
|
|
619
|
+
label?: string;
|
|
620
|
+
value?: string;
|
|
621
|
+
href?: string;
|
|
622
|
+
inherit?: boolean;
|
|
623
|
+
};
|
|
624
|
+
return: any;
|
|
625
|
+
};
|
|
626
|
+
};
|
|
613
627
|
emailConfig: {
|
|
614
628
|
/** 更新应用邮件发送配置 */
|
|
615
629
|
post: {
|
|
@@ -811,18 +825,6 @@ export type Api = {
|
|
|
811
825
|
return: any;
|
|
812
826
|
};
|
|
813
827
|
};
|
|
814
|
-
licenseInformation: {
|
|
815
|
-
/** 更新许可信息配置 */
|
|
816
|
-
post: {
|
|
817
|
-
body: {
|
|
818
|
-
value: {
|
|
819
|
-
type: "doc";
|
|
820
|
-
content: unknown[];
|
|
821
|
-
};
|
|
822
|
-
};
|
|
823
|
-
return: any;
|
|
824
|
-
};
|
|
825
|
-
};
|
|
826
828
|
complaintReportingRules: {
|
|
827
829
|
/** 更新投诉举报处理规则配置 */
|
|
828
830
|
post: {
|
|
@@ -901,6 +903,33 @@ export type Api = {
|
|
|
901
903
|
return: any;
|
|
902
904
|
};
|
|
903
905
|
};
|
|
906
|
+
filingsInfo: {
|
|
907
|
+
/** 获取页脚备案号:组织继承 + 应用覆盖 */
|
|
908
|
+
post: {
|
|
909
|
+
return: any;
|
|
910
|
+
};
|
|
911
|
+
};
|
|
912
|
+
createCustomFiling: {
|
|
913
|
+
/** 新增仅本应用展示的自定义备案或证照 */
|
|
914
|
+
post: {
|
|
915
|
+
body: {
|
|
916
|
+
label: string;
|
|
917
|
+
value: string;
|
|
918
|
+
enabled: boolean;
|
|
919
|
+
href?: string;
|
|
920
|
+
};
|
|
921
|
+
return: any;
|
|
922
|
+
};
|
|
923
|
+
};
|
|
924
|
+
removeFiling: {
|
|
925
|
+
/** 删除应用级自定义备案;常用项请改用继承组织 */
|
|
926
|
+
post: {
|
|
927
|
+
body: {
|
|
928
|
+
key: string;
|
|
929
|
+
};
|
|
930
|
+
return: any;
|
|
931
|
+
};
|
|
932
|
+
};
|
|
904
933
|
securitySettingsInfo: {
|
|
905
934
|
/** 获取域名白名单与会话策略展示信息 */
|
|
906
935
|
post: {
|
|
@@ -1169,7 +1198,7 @@ export type Api = {
|
|
|
1169
1198
|
};
|
|
1170
1199
|
};
|
|
1171
1200
|
checkServiceAccess: {
|
|
1172
|
-
/**
|
|
1201
|
+
/** 供业务服务校验用户是否已开通该应用 */
|
|
1173
1202
|
post: {
|
|
1174
1203
|
body: {
|
|
1175
1204
|
userId: string;
|
|
@@ -1872,6 +1901,33 @@ export type Api = {
|
|
|
1872
1901
|
};
|
|
1873
1902
|
return: any;
|
|
1874
1903
|
};
|
|
1904
|
+
filing: {
|
|
1905
|
+
/** 更新组织级单条备案或证照 */
|
|
1906
|
+
post: {
|
|
1907
|
+
body: {
|
|
1908
|
+
id: string;
|
|
1909
|
+
key: string;
|
|
1910
|
+
enabled: boolean;
|
|
1911
|
+
label?: string;
|
|
1912
|
+
value?: string;
|
|
1913
|
+
href?: string;
|
|
1914
|
+
};
|
|
1915
|
+
return: any;
|
|
1916
|
+
};
|
|
1917
|
+
};
|
|
1918
|
+
licenseInformation: {
|
|
1919
|
+
/** 更新组织级营业执照等证照长文 */
|
|
1920
|
+
post: {
|
|
1921
|
+
body: {
|
|
1922
|
+
id: string;
|
|
1923
|
+
value: {
|
|
1924
|
+
type: "doc";
|
|
1925
|
+
content: unknown[];
|
|
1926
|
+
};
|
|
1927
|
+
};
|
|
1928
|
+
return: any;
|
|
1929
|
+
};
|
|
1930
|
+
};
|
|
1875
1931
|
};
|
|
1876
1932
|
find: {
|
|
1877
1933
|
/** 分页查询组织列表 */
|
|
@@ -1941,7 +1997,24 @@ export type Api = {
|
|
|
1941
1997
|
body: {
|
|
1942
1998
|
organizationId: string;
|
|
1943
1999
|
};
|
|
1944
|
-
return:
|
|
2000
|
+
return: {
|
|
2001
|
+
members: ({
|
|
2002
|
+
id: string;
|
|
2003
|
+
email: string;
|
|
2004
|
+
phone: string;
|
|
2005
|
+
nickname: string;
|
|
2006
|
+
avatar: string;
|
|
2007
|
+
avatarUrl: string;
|
|
2008
|
+
role: "admin" | "member";
|
|
2009
|
+
isCreator: boolean;
|
|
2010
|
+
joinTime: string;
|
|
2011
|
+
})[];
|
|
2012
|
+
currentUserRole: {
|
|
2013
|
+
isAdmin: boolean;
|
|
2014
|
+
isCreator: boolean;
|
|
2015
|
+
canManageMembers: boolean;
|
|
2016
|
+
};
|
|
2017
|
+
};
|
|
1945
2018
|
};
|
|
1946
2019
|
};
|
|
1947
2020
|
addApp: {
|
|
@@ -1954,6 +2027,47 @@ export type Api = {
|
|
|
1954
2027
|
return: any;
|
|
1955
2028
|
};
|
|
1956
2029
|
};
|
|
2030
|
+
filingsInfo: {
|
|
2031
|
+
/** 获取组织级页脚备案与证照配置 */
|
|
2032
|
+
post: {
|
|
2033
|
+
body: {
|
|
2034
|
+
id: string;
|
|
2035
|
+
};
|
|
2036
|
+
return: any;
|
|
2037
|
+
};
|
|
2038
|
+
};
|
|
2039
|
+
createCustomFiling: {
|
|
2040
|
+
/** 新增组织级自定义备案或证照 */
|
|
2041
|
+
post: {
|
|
2042
|
+
body: {
|
|
2043
|
+
id: string;
|
|
2044
|
+
label: string;
|
|
2045
|
+
value: string;
|
|
2046
|
+
enabled: boolean;
|
|
2047
|
+
href?: string;
|
|
2048
|
+
};
|
|
2049
|
+
return: any;
|
|
2050
|
+
};
|
|
2051
|
+
};
|
|
2052
|
+
removeFiling: {
|
|
2053
|
+
/** 删除组织级自定义备案或证照 */
|
|
2054
|
+
post: {
|
|
2055
|
+
body: {
|
|
2056
|
+
id: string;
|
|
2057
|
+
key: string;
|
|
2058
|
+
};
|
|
2059
|
+
return: any;
|
|
2060
|
+
};
|
|
2061
|
+
};
|
|
2062
|
+
licenseInformation: {
|
|
2063
|
+
/** 获取组织级营业执照等证照长文 */
|
|
2064
|
+
post: {
|
|
2065
|
+
body: {
|
|
2066
|
+
id: string;
|
|
2067
|
+
};
|
|
2068
|
+
return: any;
|
|
2069
|
+
};
|
|
2070
|
+
};
|
|
1957
2071
|
};
|
|
1958
2072
|
referrer: {
|
|
1959
2073
|
find: {
|
|
@@ -2024,7 +2138,13 @@ export type Api = {
|
|
|
2024
2138
|
endTime: string;
|
|
2025
2139
|
granularity: "minute" | "hour" | "day" | "month" | "year";
|
|
2026
2140
|
};
|
|
2027
|
-
return:
|
|
2141
|
+
return: {
|
|
2142
|
+
xAxisData: string[];
|
|
2143
|
+
series: {
|
|
2144
|
+
name: string;
|
|
2145
|
+
data: number[];
|
|
2146
|
+
}[];
|
|
2147
|
+
};
|
|
2028
2148
|
};
|
|
2029
2149
|
};
|
|
2030
2150
|
getRegistrationInsights: {
|
|
@@ -2207,17 +2327,13 @@ export type Api = {
|
|
|
2207
2327
|
};
|
|
2208
2328
|
};
|
|
2209
2329
|
apply: {
|
|
2210
|
-
/**
|
|
2330
|
+
/** 候补用户点击申请加入名单 */
|
|
2211
2331
|
post: {
|
|
2212
|
-
body: {
|
|
2213
|
-
contact?: string;
|
|
2214
|
-
purpose?: string;
|
|
2215
|
-
};
|
|
2216
2332
|
return: any;
|
|
2217
2333
|
};
|
|
2218
2334
|
};
|
|
2219
2335
|
waitlist: {
|
|
2220
|
-
/**
|
|
2336
|
+
/** 分页查询候补或已开通用户,供运营开通 / 退回 */
|
|
2221
2337
|
post: {
|
|
2222
2338
|
body: {
|
|
2223
2339
|
current: number;
|
|
@@ -2232,7 +2348,7 @@ export type Api = {
|
|
|
2232
2348
|
};
|
|
2233
2349
|
};
|
|
2234
2350
|
grant: {
|
|
2235
|
-
/**
|
|
2351
|
+
/** 运营为指定用户开通该应用服务 */
|
|
2236
2352
|
post: {
|
|
2237
2353
|
body: {
|
|
2238
2354
|
userIds: string[];
|
|
@@ -2250,7 +2366,7 @@ export type Api = {
|
|
|
2250
2366
|
};
|
|
2251
2367
|
};
|
|
2252
2368
|
config: {
|
|
2253
|
-
/**
|
|
2369
|
+
/** 返回当前应用的上线模式,供候补页展示 */
|
|
2254
2370
|
post: {
|
|
2255
2371
|
return: any;
|
|
2256
2372
|
};
|
|
@@ -3031,6 +3147,17 @@ export interface ApiClient {
|
|
|
3031
3147
|
emailSource?: "organization" | "custom";
|
|
3032
3148
|
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
3033
3149
|
};
|
|
3150
|
+
filing: {
|
|
3151
|
+
/** 覆盖或继承组织备案,或更新应用自定义备案 */
|
|
3152
|
+
post: (body: {
|
|
3153
|
+
key: string;
|
|
3154
|
+
enabled: boolean;
|
|
3155
|
+
label?: string;
|
|
3156
|
+
value?: string;
|
|
3157
|
+
href?: string;
|
|
3158
|
+
inherit?: boolean;
|
|
3159
|
+
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
3160
|
+
};
|
|
3034
3161
|
emailConfig: {
|
|
3035
3162
|
/** 更新应用邮件发送配置 */
|
|
3036
3163
|
post: (body?: {
|
|
@@ -3184,15 +3311,6 @@ export interface ApiClient {
|
|
|
3184
3311
|
};
|
|
3185
3312
|
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
3186
3313
|
};
|
|
3187
|
-
licenseInformation: {
|
|
3188
|
-
/** 更新许可信息配置 */
|
|
3189
|
-
post: (body: {
|
|
3190
|
-
value: {
|
|
3191
|
-
type: "doc";
|
|
3192
|
-
content: unknown[];
|
|
3193
|
-
};
|
|
3194
|
-
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
3195
|
-
};
|
|
3196
3314
|
complaintReportingRules: {
|
|
3197
3315
|
/** 更新投诉举报处理规则配置 */
|
|
3198
3316
|
post: (body: {
|
|
@@ -3251,6 +3369,25 @@ export interface ApiClient {
|
|
|
3251
3369
|
/** 获取页脚社交平台配置卡片信息 */
|
|
3252
3370
|
post: (config?: RequestConfig) => RequestBuilder<any>;
|
|
3253
3371
|
};
|
|
3372
|
+
filingsInfo: {
|
|
3373
|
+
/** 获取页脚备案号:组织继承 + 应用覆盖 */
|
|
3374
|
+
post: (config?: RequestConfig) => RequestBuilder<any>;
|
|
3375
|
+
};
|
|
3376
|
+
createCustomFiling: {
|
|
3377
|
+
/** 新增仅本应用展示的自定义备案或证照 */
|
|
3378
|
+
post: (body: {
|
|
3379
|
+
label: string;
|
|
3380
|
+
value: string;
|
|
3381
|
+
enabled: boolean;
|
|
3382
|
+
href?: string;
|
|
3383
|
+
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
3384
|
+
};
|
|
3385
|
+
removeFiling: {
|
|
3386
|
+
/** 删除应用级自定义备案;常用项请改用继承组织 */
|
|
3387
|
+
post: (body: {
|
|
3388
|
+
key: string;
|
|
3389
|
+
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
3390
|
+
};
|
|
3254
3391
|
securitySettingsInfo: {
|
|
3255
3392
|
/** 获取域名白名单与会话策略展示信息 */
|
|
3256
3393
|
post: (config?: RequestConfig) => RequestBuilder<any>;
|
|
@@ -3449,7 +3586,7 @@ export interface ApiClient {
|
|
|
3449
3586
|
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
3450
3587
|
};
|
|
3451
3588
|
checkServiceAccess: {
|
|
3452
|
-
/**
|
|
3589
|
+
/** 供业务服务校验用户是否已开通该应用 */
|
|
3453
3590
|
post: (body: {
|
|
3454
3591
|
userId: string;
|
|
3455
3592
|
appId: string;
|
|
@@ -3968,6 +4105,27 @@ export interface ApiClient {
|
|
|
3968
4105
|
domain: string;
|
|
3969
4106
|
email: string;
|
|
3970
4107
|
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
4108
|
+
filing: {
|
|
4109
|
+
/** 更新组织级单条备案或证照 */
|
|
4110
|
+
post: (body: {
|
|
4111
|
+
id: string;
|
|
4112
|
+
key: string;
|
|
4113
|
+
enabled: boolean;
|
|
4114
|
+
label?: string;
|
|
4115
|
+
value?: string;
|
|
4116
|
+
href?: string;
|
|
4117
|
+
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
4118
|
+
};
|
|
4119
|
+
licenseInformation: {
|
|
4120
|
+
/** 更新组织级营业执照等证照长文 */
|
|
4121
|
+
post: (body: {
|
|
4122
|
+
id: string;
|
|
4123
|
+
value: {
|
|
4124
|
+
type: "doc";
|
|
4125
|
+
content: unknown[];
|
|
4126
|
+
};
|
|
4127
|
+
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
4128
|
+
};
|
|
3971
4129
|
};
|
|
3972
4130
|
find: {
|
|
3973
4131
|
/** 分页查询组织列表 */
|
|
@@ -4018,7 +4176,24 @@ export interface ApiClient {
|
|
|
4018
4176
|
/** 获取指定组织的成员列表 */
|
|
4019
4177
|
post: (body: {
|
|
4020
4178
|
organizationId: string;
|
|
4021
|
-
}, config?: RequestConfig) => RequestBuilder<
|
|
4179
|
+
}, config?: RequestConfig) => RequestBuilder<{
|
|
4180
|
+
members: ({
|
|
4181
|
+
id: string;
|
|
4182
|
+
email: string;
|
|
4183
|
+
phone: string;
|
|
4184
|
+
nickname: string;
|
|
4185
|
+
avatar: string;
|
|
4186
|
+
avatarUrl: string;
|
|
4187
|
+
role: "admin" | "member";
|
|
4188
|
+
isCreator: boolean;
|
|
4189
|
+
joinTime: string;
|
|
4190
|
+
})[];
|
|
4191
|
+
currentUserRole: {
|
|
4192
|
+
isAdmin: boolean;
|
|
4193
|
+
isCreator: boolean;
|
|
4194
|
+
canManageMembers: boolean;
|
|
4195
|
+
};
|
|
4196
|
+
}>;
|
|
4022
4197
|
};
|
|
4023
4198
|
addApp: {
|
|
4024
4199
|
/** 将应用关联到组织 */
|
|
@@ -4027,6 +4202,35 @@ export interface ApiClient {
|
|
|
4027
4202
|
appId: string;
|
|
4028
4203
|
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
4029
4204
|
};
|
|
4205
|
+
filingsInfo: {
|
|
4206
|
+
/** 获取组织级页脚备案与证照配置 */
|
|
4207
|
+
post: (body: {
|
|
4208
|
+
id: string;
|
|
4209
|
+
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
4210
|
+
};
|
|
4211
|
+
createCustomFiling: {
|
|
4212
|
+
/** 新增组织级自定义备案或证照 */
|
|
4213
|
+
post: (body: {
|
|
4214
|
+
id: string;
|
|
4215
|
+
label: string;
|
|
4216
|
+
value: string;
|
|
4217
|
+
enabled: boolean;
|
|
4218
|
+
href?: string;
|
|
4219
|
+
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
4220
|
+
};
|
|
4221
|
+
removeFiling: {
|
|
4222
|
+
/** 删除组织级自定义备案或证照 */
|
|
4223
|
+
post: (body: {
|
|
4224
|
+
id: string;
|
|
4225
|
+
key: string;
|
|
4226
|
+
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
4227
|
+
};
|
|
4228
|
+
licenseInformation: {
|
|
4229
|
+
/** 获取组织级营业执照等证照长文 */
|
|
4230
|
+
post: (body: {
|
|
4231
|
+
id: string;
|
|
4232
|
+
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
4233
|
+
};
|
|
4030
4234
|
};
|
|
4031
4235
|
referrer: {
|
|
4032
4236
|
find: {
|
|
@@ -4080,7 +4284,13 @@ export interface ApiClient {
|
|
|
4080
4284
|
startTime: string;
|
|
4081
4285
|
endTime: string;
|
|
4082
4286
|
granularity: "minute" | "hour" | "day" | "month" | "year";
|
|
4083
|
-
}, config?: RequestConfig) => RequestBuilder<
|
|
4287
|
+
}, config?: RequestConfig) => RequestBuilder<{
|
|
4288
|
+
xAxisData: string[];
|
|
4289
|
+
series: {
|
|
4290
|
+
name: string;
|
|
4291
|
+
data: number[];
|
|
4292
|
+
}[];
|
|
4293
|
+
}>;
|
|
4084
4294
|
};
|
|
4085
4295
|
getRegistrationInsights: {
|
|
4086
4296
|
/** 按时间范围统计新注册用户邀请占比,以及被邀请用户的投放渠道、注册方式、注册来源占比 */
|
|
@@ -4215,14 +4425,11 @@ export interface ApiClient {
|
|
|
4215
4425
|
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
4216
4426
|
};
|
|
4217
4427
|
apply: {
|
|
4218
|
-
/**
|
|
4219
|
-
post: (
|
|
4220
|
-
contact?: string;
|
|
4221
|
-
purpose?: string;
|
|
4222
|
-
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
4428
|
+
/** 候补用户点击申请加入名单 */
|
|
4429
|
+
post: (config?: RequestConfig) => RequestBuilder<any>;
|
|
4223
4430
|
};
|
|
4224
4431
|
waitlist: {
|
|
4225
|
-
/**
|
|
4432
|
+
/** 分页查询候补或已开通用户,供运营开通 / 退回 */
|
|
4226
4433
|
post: (body: {
|
|
4227
4434
|
current: number;
|
|
4228
4435
|
pageSize: number;
|
|
@@ -4234,7 +4441,7 @@ export interface ApiClient {
|
|
|
4234
4441
|
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
4235
4442
|
};
|
|
4236
4443
|
grant: {
|
|
4237
|
-
/**
|
|
4444
|
+
/** 运营为指定用户开通该应用服务 */
|
|
4238
4445
|
post: (body: {
|
|
4239
4446
|
userIds: string[];
|
|
4240
4447
|
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
@@ -4246,7 +4453,7 @@ export interface ApiClient {
|
|
|
4246
4453
|
}, config?: RequestConfig) => RequestBuilder<any>;
|
|
4247
4454
|
};
|
|
4248
4455
|
config: {
|
|
4249
|
-
/**
|
|
4456
|
+
/** 返回当前应用的上线模式,供候补页展示 */
|
|
4250
4457
|
post: (config?: RequestConfig) => RequestBuilder<any>;
|
|
4251
4458
|
};
|
|
4252
4459
|
};
|
package/dist/upload.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { _ as o } from "./Upload.vue_vue_type_script_setup_true_lang-
|
|
2
|
-
import { b as s, d as p } from "./runtime-
|
|
1
|
+
import { _ as o } from "./Upload.vue_vue_type_script_setup_true_lang-BygtAblQ.js";
|
|
2
|
+
import { b as s, d as p } from "./runtime-CfbHkmk9.js";
|
|
3
3
|
export {
|
|
4
4
|
o as Upload,
|
|
5
5
|
s as createBrowserCosTransport,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { computed as a, ref as p, onMounted as E } from "vue";
|
|
2
2
|
import { useRouter as $ } from "vue-router";
|
|
3
|
-
import { u as y } from "./useAuthkitAppsAuthPageInfo-
|
|
4
|
-
import { u as A } from "./useAuthkitAuth-
|
|
3
|
+
import { u as y } from "./useAuthkitAppsAuthPageInfo-Cg40bxCJ.js";
|
|
4
|
+
import { u as A } from "./useAuthkitAuth-C5oUnl8U.js";
|
|
5
5
|
import { g as h } from "./apiClients-5u4_uxFE.js";
|
|
6
6
|
function B(e, n = "default") {
|
|
7
7
|
const t = document;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ref as u, computed as m, nextTick as M, readonly as $ } from "vue";
|
|
2
2
|
import { o as D, g as f, r as G, s as R } from "./apiClients-5u4_uxFE.js";
|
|
3
|
-
import { u as K } from "./useAuthkitAppsAuthPageInfo-
|
|
3
|
+
import { u as K } from "./useAuthkitAppsAuthPageInfo-Cg40bxCJ.js";
|
|
4
4
|
const p = u(!1), g = u(!1);
|
|
5
5
|
let I;
|
|
6
6
|
const N = "请先阅读并同意用户协议与隐私政策", Y = {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ref as a, computed as i } from "vue";
|
|
2
2
|
import { g as p } from "./apiClients-5u4_uxFE.js";
|
|
3
|
-
import { u as l } from "./useAuthkitAuth-
|
|
3
|
+
import { u as l } from "./useAuthkitAuth-C5oUnl8U.js";
|
|
4
4
|
const e = a(null), n = a(!1), u = a(!1), s = a(!1);
|
|
5
5
|
function v() {
|
|
6
6
|
s.value = !0;
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import { computed as f } from "vue";
|
|
2
|
+
import { u as D } from "./useAuthkitAppsAuthPageInfo-Cg40bxCJ.js";
|
|
3
|
+
import { g as s } from "./runtime-CfbHkmk9.js";
|
|
4
|
+
const l = {
|
|
5
|
+
userServiceAgreement: "用户服务协议",
|
|
6
|
+
privacyPolicy: "隐私协议",
|
|
7
|
+
personalInformationCollectionList: "个人信息收集清单",
|
|
8
|
+
thirdPartyInformationSharingList: "第三方信息共享清单",
|
|
9
|
+
licenseInformation: "证照信息",
|
|
10
|
+
complaintReportingRules: "投诉举报处理规则"
|
|
11
|
+
}, b = Object.keys(l);
|
|
12
|
+
function A() {
|
|
13
|
+
var n;
|
|
14
|
+
try {
|
|
15
|
+
const e = (n = s().config.legalDocsBaseUrl) == null ? void 0 : n.replace(/\/$/, "");
|
|
16
|
+
if (e)
|
|
17
|
+
return e;
|
|
18
|
+
} catch {
|
|
19
|
+
}
|
|
20
|
+
return typeof window < "u" && /^https?:/i.test(window.location.origin) ? window.location.origin : "";
|
|
21
|
+
}
|
|
22
|
+
function g(n, e) {
|
|
23
|
+
const t = A(), u = "/AboutUsDetails", o = new URLSearchParams({
|
|
24
|
+
type: n,
|
|
25
|
+
appId: e
|
|
26
|
+
}), i = `${u}?${o.toString()}`;
|
|
27
|
+
return t ? `${t}${i}` : i;
|
|
28
|
+
}
|
|
29
|
+
function I(n) {
|
|
30
|
+
typeof window > "u" || window.open(n, "_blank", "noopener,noreferrer");
|
|
31
|
+
}
|
|
32
|
+
function p(n) {
|
|
33
|
+
I(n.url);
|
|
34
|
+
}
|
|
35
|
+
function h(n) {
|
|
36
|
+
var t, u, o;
|
|
37
|
+
if ((t = n == null ? void 0 : n.appId) != null && t.trim())
|
|
38
|
+
return n.appId.trim();
|
|
39
|
+
const e = (o = (u = n == null ? void 0 : n.route) == null ? void 0 : u.query) == null ? void 0 : o.appId;
|
|
40
|
+
return typeof e == "string" && e.trim() ? e.trim() : s().config.appId;
|
|
41
|
+
}
|
|
42
|
+
function v(n) {
|
|
43
|
+
if (!(n != null && n.content) || !Array.isArray(n.content) || n.content.length === 0)
|
|
44
|
+
return !1;
|
|
45
|
+
const e = n.content[0];
|
|
46
|
+
return !(n.content.length === 1 && typeof e == "object" && e !== null && "type" in e && e.type === "paragraph" && !("content" in e && Array.isArray(e.content) && e.content.length));
|
|
47
|
+
}
|
|
48
|
+
function w(n, e, t) {
|
|
49
|
+
var o;
|
|
50
|
+
const u = (o = e.aboutUs) == null ? void 0 : o[n];
|
|
51
|
+
if (v(u))
|
|
52
|
+
return {
|
|
53
|
+
key: n,
|
|
54
|
+
label: l[n],
|
|
55
|
+
url: g(n, t),
|
|
56
|
+
configured: !0
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
function y(n) {
|
|
60
|
+
return {
|
|
61
|
+
...n,
|
|
62
|
+
open: () => p(n)
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
function $(n) {
|
|
66
|
+
const {
|
|
67
|
+
appsData: e
|
|
68
|
+
} = D();
|
|
69
|
+
function t() {
|
|
70
|
+
return h({
|
|
71
|
+
route: n == null ? void 0 : n.route,
|
|
72
|
+
appId: n == null ? void 0 : n.appId
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
function u(a) {
|
|
76
|
+
var r;
|
|
77
|
+
return w(a, {
|
|
78
|
+
aboutUs: (r = e.value) == null ? void 0 : r.aboutUs
|
|
79
|
+
}, t());
|
|
80
|
+
}
|
|
81
|
+
function o(a) {
|
|
82
|
+
const r = u(a), c = (r == null ? void 0 : r.url) || g(a, t());
|
|
83
|
+
return y({
|
|
84
|
+
key: a,
|
|
85
|
+
label: l[a],
|
|
86
|
+
url: c,
|
|
87
|
+
configured: !!r
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
const i = f(() => b.map(o)), m = f(() => i.value);
|
|
91
|
+
function d(a) {
|
|
92
|
+
const r = i.value.find((c) => c.key === a);
|
|
93
|
+
return r != null && r.configured ? r : void 0;
|
|
94
|
+
}
|
|
95
|
+
function L(a) {
|
|
96
|
+
p(o(a));
|
|
97
|
+
}
|
|
98
|
+
return {
|
|
99
|
+
all: i,
|
|
100
|
+
items: m,
|
|
101
|
+
getLink: d,
|
|
102
|
+
openLegalDoc: L
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
export {
|
|
106
|
+
l as L,
|
|
107
|
+
b as a,
|
|
108
|
+
g as b,
|
|
109
|
+
w as c,
|
|
110
|
+
v as i,
|
|
111
|
+
p as o,
|
|
112
|
+
h as r,
|
|
113
|
+
$ as u
|
|
114
|
+
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "./apiClients-5u4_uxFE.js";
|
|
2
2
|
import { Message as y } from "@arco-design/web-vue";
|
|
3
3
|
import { ref as a, computed as s, toValue as A } from "vue";
|
|
4
|
-
import { u as N } from "./runtime-
|
|
4
|
+
import { u as N } from "./runtime-CfbHkmk9.js";
|
|
5
5
|
import { useHead as g, useSeoMeta as w } from "@unhead/vue";
|
|
6
6
|
import { useRoute as E } from "vue-router";
|
|
7
7
|
function q(t) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ref as C, computed as M, watch as L } from "vue";
|
|
2
2
|
import { useRouter as S, useRoute as O } from "vue-router";
|
|
3
|
-
import { u as x } from "./useAuthkitAppsAuthPageInfo-
|
|
4
|
-
import { u as I } from "./useAuthkitUsersProfile-
|
|
5
|
-
import { g as W } from "./runtime-
|
|
3
|
+
import { u as x } from "./useAuthkitAppsAuthPageInfo-Cg40bxCJ.js";
|
|
4
|
+
import { u as I } from "./useAuthkitUsersProfile-BWNVk2UM.js";
|
|
5
|
+
import { g as W } from "./runtime-CfbHkmk9.js";
|
|
6
6
|
const R = C({
|
|
7
7
|
key: "",
|
|
8
8
|
name: ""
|
|
@@ -2,7 +2,7 @@ import { ref as v, computed as S } from "vue";
|
|
|
2
2
|
import { d as V } from "./useBillingStatusOptions-BHVLZhEB.js";
|
|
3
3
|
import { g as $ } from "./apiClients-5u4_uxFE.js";
|
|
4
4
|
import { Message as b } from "@arco-design/web-vue";
|
|
5
|
-
import { u as _ } from "./useEnsureAuthenticated-
|
|
5
|
+
import { u as _ } from "./useEnsureAuthenticated-CQWINiHB.js";
|
|
6
6
|
function D(e) {
|
|
7
7
|
var u;
|
|
8
8
|
const i = (u = e == null ? void 0 : e.metadata) == null ? void 0 : u.originalPrice;
|
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-DxvHvsQm.js";
|
|
2
2
|
export {
|
|
3
3
|
a as UserAccountMenu,
|
|
4
4
|
n as UserAvatar,
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/** 各站点页脚「公司」栏必备站内入口,与协议/举报表一起公示 */
|
|
2
|
+
export declare const REQUIRED_SITE_FOOTER_NAV: readonly [{
|
|
3
|
+
readonly label: "关于我们";
|
|
4
|
+
readonly href: "/Introduce";
|
|
5
|
+
}, {
|
|
6
|
+
readonly label: "联系我们";
|
|
7
|
+
readonly href: "/Contact";
|
|
8
|
+
}, {
|
|
9
|
+
readonly label: "博客";
|
|
10
|
+
readonly href: "/Blog";
|
|
11
|
+
}];
|