mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 15:10:43 +08:00
feat(ui): support suo5 generate
This commit is contained in:
@@ -11,14 +11,12 @@ export const formSchema = z.object({
|
||||
urlPattern: z.optional(z.string()),
|
||||
godzillaPass: z.optional(z.string()),
|
||||
godzillaKey: z.optional(z.string()),
|
||||
godzillaHeaderName: z.optional(z.string()),
|
||||
godzillaHeaderValue: z.optional(z.string()),
|
||||
behinderPass: z.optional(z.string()),
|
||||
behinderHeaderName: z.optional(z.string()),
|
||||
behinderHeaderValue: z.optional(z.string()),
|
||||
commandParamName: z.optional(z.string()),
|
||||
headerName: z.optional(z.string()),
|
||||
headerValue: z.optional(z.string()),
|
||||
injectorClassName: z.optional(z.string()),
|
||||
packingMethod: z.string().min(1, { message: "请选择打包方式" }),
|
||||
packingMethod: z.string().min(1),
|
||||
});
|
||||
|
||||
export type FormSchema = z.infer<typeof formSchema>;
|
||||
|
||||
@@ -12,12 +12,10 @@ export interface ShellToolConfig {
|
||||
shellClassName?: string;
|
||||
godzillaPass?: string;
|
||||
godzillaKey?: string;
|
||||
godzillaHeaderName?: string;
|
||||
godzillaHeaderValue?: string;
|
||||
commandParamName?: string;
|
||||
behinderPass?: string;
|
||||
behinderHeaderName?: string;
|
||||
behinderHeaderValue?: string;
|
||||
headerName?: string;
|
||||
headerValue?: string;
|
||||
}
|
||||
|
||||
export interface CommandShellToolConfig {
|
||||
@@ -40,6 +38,12 @@ export interface BehinderShellToolConfig {
|
||||
headerValue?: string;
|
||||
}
|
||||
|
||||
export interface Suo5ShellToolConfig {
|
||||
shellClassName?: string;
|
||||
headerName?: string;
|
||||
headerValue?: string;
|
||||
}
|
||||
|
||||
export interface InjectorConfig {
|
||||
className?: string;
|
||||
classInheritance?: string;
|
||||
|
||||
Reference in New Issue
Block a user