yg-team-cli 2.3.12 → 2.4.0

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/cli.js CHANGED
@@ -912,6 +912,57 @@ var init_module_registry = __esm({
912
912
  ModuleManager = class {
913
913
  static MODULES = [
914
914
  // ========== 云谷公共模块 (新增) ==========
915
+ {
916
+ id: "yungu-sso",
917
+ name: "SSO \u5355\u70B9\u767B\u5F55",
918
+ description: "CAS\u5355\u70B9\u767B\u5F55\u96C6\u6210\u3001Token\u9A8C\u8BC1\u3001\u4F1A\u8BDD\u7BA1\u7406",
919
+ type: "local",
920
+ specs: ["yungu-sso/spec.md"],
921
+ backendFragments: [
922
+ // Config
923
+ {
924
+ source: "yungu/sso/config/CasConfig.java",
925
+ target: "config/yungu/sso/CasConfig.java"
926
+ },
927
+ {
928
+ source: "yungu/sso/config/LoginClientConfig.java",
929
+ target: "config/yungu/sso/LoginClientConfig.java"
930
+ },
931
+ // Filter
932
+ {
933
+ source: "yungu/sso/filter/AuthFilter.java",
934
+ target: "config/yungu/sso/filter/AuthFilter.java"
935
+ },
936
+ // Interceptor
937
+ {
938
+ source: "yungu/sso/intercepter/CasLoginInterceptor.java",
939
+ target: "common/yungu/sso/intercepter/CasLoginInterceptor.java"
940
+ },
941
+ {
942
+ source: "yungu/sso/intercepter/UserContextInterceptor.java",
943
+ target: "common/yungu/sso/intercepter/UserContextInterceptor.java"
944
+ },
945
+ // UserContext
946
+ {
947
+ source: "yungu/sso/common/UserContext.java",
948
+ target: "common/yungu/sso/UserContext.java"
949
+ },
950
+ {
951
+ source: "yungu/sso/common/domain/UserBaseInfo.java",
952
+ target: "common/yungu/sso/domain/UserBaseInfo.java"
953
+ },
954
+ {
955
+ source: "yungu/sso/common/domain/UserAccount.java",
956
+ target: "common/yungu/sso/domain/UserAccount.java"
957
+ },
958
+ // Config classes
959
+ {
960
+ source: "yungu/sso/config/InterceptorConfiguration.java",
961
+ target: "config/yungu/sso/InterceptorConfiguration.java"
962
+ }
963
+ ],
964
+ dependencies: ["org.yungu:login-client"]
965
+ },
915
966
  {
916
967
  id: "yungu-user-context",
917
968
  name: "\u7528\u6237\u4E0A\u4E0B\u6587 (UserContext)",