@roxybrowser/openapi 1.0.12 → 1.0.13-beta.3
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/README.md +2 -2
- package/lib/cli.cjs +162 -197
- package/lib/cli.cjs.map +1 -1
- package/lib/cli.js +162 -197
- package/lib/cli.js.map +1 -1
- package/lib/index.cjs +164 -200
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +43 -138
- package/lib/index.d.ts +43 -138
- package/lib/index.js +163 -198
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.cts
CHANGED
|
@@ -3038,9 +3038,6 @@ declare const getConnectionInfo: GetConnectionInfo;
|
|
|
3038
3038
|
/** 代理列表 */
|
|
3039
3039
|
declare class ProxyList {
|
|
3040
3040
|
name: string;
|
|
3041
|
-
/**
|
|
3042
|
-
* 仅当用户没有指定商店时调用
|
|
3043
|
-
*/
|
|
3044
3041
|
description: string;
|
|
3045
3042
|
inputSchema: {
|
|
3046
3043
|
type: string;
|
|
@@ -3049,8 +3046,30 @@ declare class ProxyList {
|
|
|
3049
3046
|
type: string;
|
|
3050
3047
|
description: string;
|
|
3051
3048
|
};
|
|
3052
|
-
|
|
3049
|
+
country: {
|
|
3050
|
+
type: string;
|
|
3051
|
+
description: string;
|
|
3052
|
+
};
|
|
3053
|
+
checkStatus: {
|
|
3054
|
+
type: string;
|
|
3055
|
+
description: string;
|
|
3056
|
+
};
|
|
3057
|
+
startDate: {
|
|
3058
|
+
type: string;
|
|
3059
|
+
description: string;
|
|
3060
|
+
};
|
|
3061
|
+
endDate: {
|
|
3062
|
+
type: string;
|
|
3063
|
+
description: string;
|
|
3064
|
+
};
|
|
3065
|
+
checker: {
|
|
3053
3066
|
type: string;
|
|
3067
|
+
enum: string[];
|
|
3068
|
+
description: string;
|
|
3069
|
+
};
|
|
3070
|
+
proxyType: {
|
|
3071
|
+
type: string;
|
|
3072
|
+
enum: string[];
|
|
3054
3073
|
description: string;
|
|
3055
3074
|
};
|
|
3056
3075
|
pageIndex: {
|
|
@@ -3076,81 +3095,38 @@ declare class ProxyList {
|
|
|
3076
3095
|
type: string;
|
|
3077
3096
|
description: string;
|
|
3078
3097
|
};
|
|
3079
|
-
|
|
3098
|
+
country: {
|
|
3080
3099
|
type: string;
|
|
3081
3100
|
description: string;
|
|
3082
3101
|
};
|
|
3083
|
-
|
|
3102
|
+
checkStatus: {
|
|
3084
3103
|
type: string;
|
|
3085
3104
|
description: string;
|
|
3086
|
-
default: number;
|
|
3087
3105
|
};
|
|
3088
|
-
|
|
3106
|
+
startDate: {
|
|
3089
3107
|
type: string;
|
|
3090
3108
|
description: string;
|
|
3091
|
-
default: number;
|
|
3092
3109
|
};
|
|
3093
|
-
|
|
3094
|
-
required: string[];
|
|
3095
|
-
};
|
|
3096
|
-
};
|
|
3097
|
-
handle(params: any): Promise<{
|
|
3098
|
-
content: {
|
|
3099
|
-
type: string;
|
|
3100
|
-
text: string;
|
|
3101
|
-
}[];
|
|
3102
|
-
}>;
|
|
3103
|
-
}
|
|
3104
|
-
/** 代理商店 */
|
|
3105
|
-
declare class ProxyStore {
|
|
3106
|
-
name: string;
|
|
3107
|
-
description: string;
|
|
3108
|
-
inputSchema: {
|
|
3109
|
-
type: string;
|
|
3110
|
-
properties: {
|
|
3111
|
-
workspaceId: {
|
|
3112
|
-
type: string;
|
|
3113
|
-
description: string;
|
|
3114
|
-
};
|
|
3115
|
-
pageIndex: {
|
|
3116
|
-
type: string;
|
|
3117
|
-
description: string;
|
|
3118
|
-
default: number;
|
|
3119
|
-
};
|
|
3120
|
-
pageSize: {
|
|
3121
|
-
type: string;
|
|
3122
|
-
description: string;
|
|
3123
|
-
default: number;
|
|
3124
|
-
};
|
|
3125
|
-
type: {
|
|
3126
|
-
type: string;
|
|
3127
|
-
description: string;
|
|
3128
|
-
default: number;
|
|
3129
|
-
};
|
|
3130
|
-
};
|
|
3131
|
-
required: string[];
|
|
3132
|
-
};
|
|
3133
|
-
get schema(): {
|
|
3134
|
-
name: string;
|
|
3135
|
-
description: string;
|
|
3136
|
-
inputSchema: {
|
|
3137
|
-
type: string;
|
|
3138
|
-
properties: {
|
|
3139
|
-
workspaceId: {
|
|
3110
|
+
endDate: {
|
|
3140
3111
|
type: string;
|
|
3141
3112
|
description: string;
|
|
3142
3113
|
};
|
|
3143
|
-
|
|
3114
|
+
checker: {
|
|
3144
3115
|
type: string;
|
|
3116
|
+
enum: string[];
|
|
3145
3117
|
description: string;
|
|
3146
|
-
default: number;
|
|
3147
3118
|
};
|
|
3148
|
-
|
|
3119
|
+
proxyType: {
|
|
3120
|
+
type: string;
|
|
3121
|
+
enum: string[];
|
|
3122
|
+
description: string;
|
|
3123
|
+
};
|
|
3124
|
+
pageIndex: {
|
|
3149
3125
|
type: string;
|
|
3150
3126
|
description: string;
|
|
3151
3127
|
default: number;
|
|
3152
3128
|
};
|
|
3153
|
-
|
|
3129
|
+
pageSize: {
|
|
3154
3130
|
type: string;
|
|
3155
3131
|
description: string;
|
|
3156
3132
|
default: number;
|
|
@@ -3166,7 +3142,7 @@ declare class ProxyStore {
|
|
|
3166
3142
|
}[];
|
|
3167
3143
|
}>;
|
|
3168
3144
|
}
|
|
3169
|
-
declare class
|
|
3145
|
+
declare class GetProxyDetail {
|
|
3170
3146
|
name: string;
|
|
3171
3147
|
description: string;
|
|
3172
3148
|
inputSchema: {
|
|
@@ -3176,42 +3152,7 @@ declare class CreateProxy {
|
|
|
3176
3152
|
type: string;
|
|
3177
3153
|
description: string;
|
|
3178
3154
|
};
|
|
3179
|
-
|
|
3180
|
-
type: string;
|
|
3181
|
-
enum: string[];
|
|
3182
|
-
description: string;
|
|
3183
|
-
};
|
|
3184
|
-
host: {
|
|
3185
|
-
type: string;
|
|
3186
|
-
description: string;
|
|
3187
|
-
};
|
|
3188
|
-
port: {
|
|
3189
|
-
type: string;
|
|
3190
|
-
description: string;
|
|
3191
|
-
};
|
|
3192
|
-
proxyUserName: {
|
|
3193
|
-
type: string;
|
|
3194
|
-
description: string;
|
|
3195
|
-
};
|
|
3196
|
-
proxyPassword: {
|
|
3197
|
-
type: string;
|
|
3198
|
-
description: string;
|
|
3199
|
-
};
|
|
3200
|
-
ipType: {
|
|
3201
|
-
type: string;
|
|
3202
|
-
enum: string[];
|
|
3203
|
-
description: string;
|
|
3204
|
-
};
|
|
3205
|
-
checkChannel: {
|
|
3206
|
-
type: string;
|
|
3207
|
-
enum: string[];
|
|
3208
|
-
description: string;
|
|
3209
|
-
};
|
|
3210
|
-
refreshUrl: {
|
|
3211
|
-
type: string;
|
|
3212
|
-
description: string;
|
|
3213
|
-
};
|
|
3214
|
-
remark: {
|
|
3155
|
+
id: {
|
|
3215
3156
|
type: string;
|
|
3216
3157
|
description: string;
|
|
3217
3158
|
};
|
|
@@ -3228,42 +3169,7 @@ declare class CreateProxy {
|
|
|
3228
3169
|
type: string;
|
|
3229
3170
|
description: string;
|
|
3230
3171
|
};
|
|
3231
|
-
|
|
3232
|
-
type: string;
|
|
3233
|
-
enum: string[];
|
|
3234
|
-
description: string;
|
|
3235
|
-
};
|
|
3236
|
-
host: {
|
|
3237
|
-
type: string;
|
|
3238
|
-
description: string;
|
|
3239
|
-
};
|
|
3240
|
-
port: {
|
|
3241
|
-
type: string;
|
|
3242
|
-
description: string;
|
|
3243
|
-
};
|
|
3244
|
-
proxyUserName: {
|
|
3245
|
-
type: string;
|
|
3246
|
-
description: string;
|
|
3247
|
-
};
|
|
3248
|
-
proxyPassword: {
|
|
3249
|
-
type: string;
|
|
3250
|
-
description: string;
|
|
3251
|
-
};
|
|
3252
|
-
ipType: {
|
|
3253
|
-
type: string;
|
|
3254
|
-
enum: string[];
|
|
3255
|
-
description: string;
|
|
3256
|
-
};
|
|
3257
|
-
checkChannel: {
|
|
3258
|
-
type: string;
|
|
3259
|
-
enum: string[];
|
|
3260
|
-
description: string;
|
|
3261
|
-
};
|
|
3262
|
-
refreshUrl: {
|
|
3263
|
-
type: string;
|
|
3264
|
-
description: string;
|
|
3265
|
-
};
|
|
3266
|
-
remark: {
|
|
3172
|
+
id: {
|
|
3267
3173
|
type: string;
|
|
3268
3174
|
description: string;
|
|
3269
3175
|
};
|
|
@@ -3278,7 +3184,7 @@ declare class CreateProxy {
|
|
|
3278
3184
|
}[];
|
|
3279
3185
|
}>;
|
|
3280
3186
|
}
|
|
3281
|
-
declare class
|
|
3187
|
+
declare class CreateProxies {
|
|
3282
3188
|
name: string;
|
|
3283
3189
|
description: string;
|
|
3284
3190
|
inputSchema: {
|
|
@@ -3603,9 +3509,8 @@ declare class DeleteProxies {
|
|
|
3603
3509
|
}>;
|
|
3604
3510
|
}
|
|
3605
3511
|
declare const proxyList: ProxyList;
|
|
3606
|
-
declare const
|
|
3607
|
-
declare const
|
|
3608
|
-
declare const batchCreateProxies: BatchCreateProxies;
|
|
3512
|
+
declare const proxyDetail: GetProxyDetail;
|
|
3513
|
+
declare const createProxies: CreateProxies;
|
|
3609
3514
|
declare const detectProxy: DetectProxy;
|
|
3610
3515
|
declare const modifyProxy: ModifyProxy;
|
|
3611
3516
|
declare const deleteProxies: DeleteProxies;
|
|
@@ -5948,4 +5853,4 @@ declare class RoxyBrowserMCPServer {
|
|
|
5948
5853
|
*/
|
|
5949
5854
|
declare function runServer(): Promise<void>;
|
|
5950
5855
|
|
|
5951
|
-
export { type AccountBatchCreateParams, type AccountCreateParams, type AccountDeleteParams, type AccountItem, type AccountListParams, type AccountListResponse, type AccountModifyParams, type BoughtProxyListItem, type BrowserCloseParams, type BrowserCloseToolParams, type BrowserCloseToolResponse, type BrowserCreateAdvancedParams, type BrowserCreateAdvancedResponse, type BrowserCreateBatchResult, type BrowserCreateConfig, type BrowserCreateResult, type BrowserCreateSimpleParams, type BrowserCreateSimpleResponse, type BrowserCreateStandardParams, type BrowserCreateStandardResponse, BrowserCreationError, type BrowserDeleteToolParams, type BrowserDeleteToolResponse, type BrowserListItem, type BrowserListParams, type BrowserListResponse, type BrowserListToolParams, type BrowserListToolResponse, type BrowserOS, type BrowserOpenParams, type BrowserOpenResult, type BrowserOpenToolParams, type BrowserOpenToolResponse, type BrowserUpdateParams, type ClearLocalCacheParams, type ClearServerCacheParams, ConfigError, type ConnectionInfoItem, type ConnectionInfoResponse, type CoreVersion, DEFAULT_CONFIG, type DetectChannelItem, type DetectChannelResponse, type ErrorInfo, type FingerInfo, LATEST_CORE_VERSION, type LabelItem, type LabelListResponse, NETWORK_ERROR_PATTERNS, type ProjectDetails, type ProxyBatchCreateParams, type ProxyCreateParams, type ProxyDeleteParams, type ProxyDetectParams, type ProxyInfo, type ProxyListItem, type ProxyListParams, type ProxyListResponse, type ProxyModifyParams, ROXY_ERROR_MAP, type RandomFingerprintParams, RoxyApiError, RoxyApiErrorCode, type RoxyApiResponse, RoxyBrowserMCPServer, type RoxyClientConfig$1 as RoxyClientConfig, type SearchEngine, TOOLS, type WindowPlatformInfo, type Workspace, type WorkspaceListResponse, type WorkspaceListToolResponse, batchCreateAccounts, batchCreateBrowsers,
|
|
5856
|
+
export { type AccountBatchCreateParams, type AccountCreateParams, type AccountDeleteParams, type AccountItem, type AccountListParams, type AccountListResponse, type AccountModifyParams, type BoughtProxyListItem, type BrowserCloseParams, type BrowserCloseToolParams, type BrowserCloseToolResponse, type BrowserCreateAdvancedParams, type BrowserCreateAdvancedResponse, type BrowserCreateBatchResult, type BrowserCreateConfig, type BrowserCreateResult, type BrowserCreateSimpleParams, type BrowserCreateSimpleResponse, type BrowserCreateStandardParams, type BrowserCreateStandardResponse, BrowserCreationError, type BrowserDeleteToolParams, type BrowserDeleteToolResponse, type BrowserListItem, type BrowserListParams, type BrowserListResponse, type BrowserListToolParams, type BrowserListToolResponse, type BrowserOS, type BrowserOpenParams, type BrowserOpenResult, type BrowserOpenToolParams, type BrowserOpenToolResponse, type BrowserUpdateParams, type ClearLocalCacheParams, type ClearServerCacheParams, ConfigError, type ConnectionInfoItem, type ConnectionInfoResponse, type CoreVersion, DEFAULT_CONFIG, type DetectChannelItem, type DetectChannelResponse, type ErrorInfo, type FingerInfo, LATEST_CORE_VERSION, type LabelItem, type LabelListResponse, NETWORK_ERROR_PATTERNS, type ProjectDetails, type ProxyBatchCreateParams, type ProxyCreateParams, type ProxyDeleteParams, type ProxyDetectParams, type ProxyInfo, type ProxyListItem, type ProxyListParams, type ProxyListResponse, type ProxyModifyParams, ROXY_ERROR_MAP, type RandomFingerprintParams, RoxyApiError, RoxyApiErrorCode, type RoxyApiResponse, RoxyBrowserMCPServer, type RoxyClientConfig$1 as RoxyClientConfig, type SearchEngine, TOOLS, type WindowPlatformInfo, type Workspace, type WorkspaceListResponse, type WorkspaceListToolResponse, batchCreateAccounts, batchCreateBrowsers, clearLocalCache, clearServerCache, closeBrowsers, createAccount, createBrowser, createProxies, deleteAccounts, deleteBrowsers, deleteProxies, detectProxy, getBrowserDetail, getConnectionInfo, healthCheck, listAccounts, listBrowsers, listLabels, listWorkspaces, modifyAccount, modifyProxy, openBrowser, proxyDetail, proxyList, randomFingerprint, request, resolveConfig, runServer, updateBrowser };
|
package/lib/index.d.ts
CHANGED
|
@@ -3038,9 +3038,6 @@ declare const getConnectionInfo: GetConnectionInfo;
|
|
|
3038
3038
|
/** 代理列表 */
|
|
3039
3039
|
declare class ProxyList {
|
|
3040
3040
|
name: string;
|
|
3041
|
-
/**
|
|
3042
|
-
* 仅当用户没有指定商店时调用
|
|
3043
|
-
*/
|
|
3044
3041
|
description: string;
|
|
3045
3042
|
inputSchema: {
|
|
3046
3043
|
type: string;
|
|
@@ -3049,8 +3046,30 @@ declare class ProxyList {
|
|
|
3049
3046
|
type: string;
|
|
3050
3047
|
description: string;
|
|
3051
3048
|
};
|
|
3052
|
-
|
|
3049
|
+
country: {
|
|
3050
|
+
type: string;
|
|
3051
|
+
description: string;
|
|
3052
|
+
};
|
|
3053
|
+
checkStatus: {
|
|
3054
|
+
type: string;
|
|
3055
|
+
description: string;
|
|
3056
|
+
};
|
|
3057
|
+
startDate: {
|
|
3058
|
+
type: string;
|
|
3059
|
+
description: string;
|
|
3060
|
+
};
|
|
3061
|
+
endDate: {
|
|
3062
|
+
type: string;
|
|
3063
|
+
description: string;
|
|
3064
|
+
};
|
|
3065
|
+
checker: {
|
|
3053
3066
|
type: string;
|
|
3067
|
+
enum: string[];
|
|
3068
|
+
description: string;
|
|
3069
|
+
};
|
|
3070
|
+
proxyType: {
|
|
3071
|
+
type: string;
|
|
3072
|
+
enum: string[];
|
|
3054
3073
|
description: string;
|
|
3055
3074
|
};
|
|
3056
3075
|
pageIndex: {
|
|
@@ -3076,81 +3095,38 @@ declare class ProxyList {
|
|
|
3076
3095
|
type: string;
|
|
3077
3096
|
description: string;
|
|
3078
3097
|
};
|
|
3079
|
-
|
|
3098
|
+
country: {
|
|
3080
3099
|
type: string;
|
|
3081
3100
|
description: string;
|
|
3082
3101
|
};
|
|
3083
|
-
|
|
3102
|
+
checkStatus: {
|
|
3084
3103
|
type: string;
|
|
3085
3104
|
description: string;
|
|
3086
|
-
default: number;
|
|
3087
3105
|
};
|
|
3088
|
-
|
|
3106
|
+
startDate: {
|
|
3089
3107
|
type: string;
|
|
3090
3108
|
description: string;
|
|
3091
|
-
default: number;
|
|
3092
3109
|
};
|
|
3093
|
-
|
|
3094
|
-
required: string[];
|
|
3095
|
-
};
|
|
3096
|
-
};
|
|
3097
|
-
handle(params: any): Promise<{
|
|
3098
|
-
content: {
|
|
3099
|
-
type: string;
|
|
3100
|
-
text: string;
|
|
3101
|
-
}[];
|
|
3102
|
-
}>;
|
|
3103
|
-
}
|
|
3104
|
-
/** 代理商店 */
|
|
3105
|
-
declare class ProxyStore {
|
|
3106
|
-
name: string;
|
|
3107
|
-
description: string;
|
|
3108
|
-
inputSchema: {
|
|
3109
|
-
type: string;
|
|
3110
|
-
properties: {
|
|
3111
|
-
workspaceId: {
|
|
3112
|
-
type: string;
|
|
3113
|
-
description: string;
|
|
3114
|
-
};
|
|
3115
|
-
pageIndex: {
|
|
3116
|
-
type: string;
|
|
3117
|
-
description: string;
|
|
3118
|
-
default: number;
|
|
3119
|
-
};
|
|
3120
|
-
pageSize: {
|
|
3121
|
-
type: string;
|
|
3122
|
-
description: string;
|
|
3123
|
-
default: number;
|
|
3124
|
-
};
|
|
3125
|
-
type: {
|
|
3126
|
-
type: string;
|
|
3127
|
-
description: string;
|
|
3128
|
-
default: number;
|
|
3129
|
-
};
|
|
3130
|
-
};
|
|
3131
|
-
required: string[];
|
|
3132
|
-
};
|
|
3133
|
-
get schema(): {
|
|
3134
|
-
name: string;
|
|
3135
|
-
description: string;
|
|
3136
|
-
inputSchema: {
|
|
3137
|
-
type: string;
|
|
3138
|
-
properties: {
|
|
3139
|
-
workspaceId: {
|
|
3110
|
+
endDate: {
|
|
3140
3111
|
type: string;
|
|
3141
3112
|
description: string;
|
|
3142
3113
|
};
|
|
3143
|
-
|
|
3114
|
+
checker: {
|
|
3144
3115
|
type: string;
|
|
3116
|
+
enum: string[];
|
|
3145
3117
|
description: string;
|
|
3146
|
-
default: number;
|
|
3147
3118
|
};
|
|
3148
|
-
|
|
3119
|
+
proxyType: {
|
|
3120
|
+
type: string;
|
|
3121
|
+
enum: string[];
|
|
3122
|
+
description: string;
|
|
3123
|
+
};
|
|
3124
|
+
pageIndex: {
|
|
3149
3125
|
type: string;
|
|
3150
3126
|
description: string;
|
|
3151
3127
|
default: number;
|
|
3152
3128
|
};
|
|
3153
|
-
|
|
3129
|
+
pageSize: {
|
|
3154
3130
|
type: string;
|
|
3155
3131
|
description: string;
|
|
3156
3132
|
default: number;
|
|
@@ -3166,7 +3142,7 @@ declare class ProxyStore {
|
|
|
3166
3142
|
}[];
|
|
3167
3143
|
}>;
|
|
3168
3144
|
}
|
|
3169
|
-
declare class
|
|
3145
|
+
declare class GetProxyDetail {
|
|
3170
3146
|
name: string;
|
|
3171
3147
|
description: string;
|
|
3172
3148
|
inputSchema: {
|
|
@@ -3176,42 +3152,7 @@ declare class CreateProxy {
|
|
|
3176
3152
|
type: string;
|
|
3177
3153
|
description: string;
|
|
3178
3154
|
};
|
|
3179
|
-
|
|
3180
|
-
type: string;
|
|
3181
|
-
enum: string[];
|
|
3182
|
-
description: string;
|
|
3183
|
-
};
|
|
3184
|
-
host: {
|
|
3185
|
-
type: string;
|
|
3186
|
-
description: string;
|
|
3187
|
-
};
|
|
3188
|
-
port: {
|
|
3189
|
-
type: string;
|
|
3190
|
-
description: string;
|
|
3191
|
-
};
|
|
3192
|
-
proxyUserName: {
|
|
3193
|
-
type: string;
|
|
3194
|
-
description: string;
|
|
3195
|
-
};
|
|
3196
|
-
proxyPassword: {
|
|
3197
|
-
type: string;
|
|
3198
|
-
description: string;
|
|
3199
|
-
};
|
|
3200
|
-
ipType: {
|
|
3201
|
-
type: string;
|
|
3202
|
-
enum: string[];
|
|
3203
|
-
description: string;
|
|
3204
|
-
};
|
|
3205
|
-
checkChannel: {
|
|
3206
|
-
type: string;
|
|
3207
|
-
enum: string[];
|
|
3208
|
-
description: string;
|
|
3209
|
-
};
|
|
3210
|
-
refreshUrl: {
|
|
3211
|
-
type: string;
|
|
3212
|
-
description: string;
|
|
3213
|
-
};
|
|
3214
|
-
remark: {
|
|
3155
|
+
id: {
|
|
3215
3156
|
type: string;
|
|
3216
3157
|
description: string;
|
|
3217
3158
|
};
|
|
@@ -3228,42 +3169,7 @@ declare class CreateProxy {
|
|
|
3228
3169
|
type: string;
|
|
3229
3170
|
description: string;
|
|
3230
3171
|
};
|
|
3231
|
-
|
|
3232
|
-
type: string;
|
|
3233
|
-
enum: string[];
|
|
3234
|
-
description: string;
|
|
3235
|
-
};
|
|
3236
|
-
host: {
|
|
3237
|
-
type: string;
|
|
3238
|
-
description: string;
|
|
3239
|
-
};
|
|
3240
|
-
port: {
|
|
3241
|
-
type: string;
|
|
3242
|
-
description: string;
|
|
3243
|
-
};
|
|
3244
|
-
proxyUserName: {
|
|
3245
|
-
type: string;
|
|
3246
|
-
description: string;
|
|
3247
|
-
};
|
|
3248
|
-
proxyPassword: {
|
|
3249
|
-
type: string;
|
|
3250
|
-
description: string;
|
|
3251
|
-
};
|
|
3252
|
-
ipType: {
|
|
3253
|
-
type: string;
|
|
3254
|
-
enum: string[];
|
|
3255
|
-
description: string;
|
|
3256
|
-
};
|
|
3257
|
-
checkChannel: {
|
|
3258
|
-
type: string;
|
|
3259
|
-
enum: string[];
|
|
3260
|
-
description: string;
|
|
3261
|
-
};
|
|
3262
|
-
refreshUrl: {
|
|
3263
|
-
type: string;
|
|
3264
|
-
description: string;
|
|
3265
|
-
};
|
|
3266
|
-
remark: {
|
|
3172
|
+
id: {
|
|
3267
3173
|
type: string;
|
|
3268
3174
|
description: string;
|
|
3269
3175
|
};
|
|
@@ -3278,7 +3184,7 @@ declare class CreateProxy {
|
|
|
3278
3184
|
}[];
|
|
3279
3185
|
}>;
|
|
3280
3186
|
}
|
|
3281
|
-
declare class
|
|
3187
|
+
declare class CreateProxies {
|
|
3282
3188
|
name: string;
|
|
3283
3189
|
description: string;
|
|
3284
3190
|
inputSchema: {
|
|
@@ -3603,9 +3509,8 @@ declare class DeleteProxies {
|
|
|
3603
3509
|
}>;
|
|
3604
3510
|
}
|
|
3605
3511
|
declare const proxyList: ProxyList;
|
|
3606
|
-
declare const
|
|
3607
|
-
declare const
|
|
3608
|
-
declare const batchCreateProxies: BatchCreateProxies;
|
|
3512
|
+
declare const proxyDetail: GetProxyDetail;
|
|
3513
|
+
declare const createProxies: CreateProxies;
|
|
3609
3514
|
declare const detectProxy: DetectProxy;
|
|
3610
3515
|
declare const modifyProxy: ModifyProxy;
|
|
3611
3516
|
declare const deleteProxies: DeleteProxies;
|
|
@@ -5948,4 +5853,4 @@ declare class RoxyBrowserMCPServer {
|
|
|
5948
5853
|
*/
|
|
5949
5854
|
declare function runServer(): Promise<void>;
|
|
5950
5855
|
|
|
5951
|
-
export { type AccountBatchCreateParams, type AccountCreateParams, type AccountDeleteParams, type AccountItem, type AccountListParams, type AccountListResponse, type AccountModifyParams, type BoughtProxyListItem, type BrowserCloseParams, type BrowserCloseToolParams, type BrowserCloseToolResponse, type BrowserCreateAdvancedParams, type BrowserCreateAdvancedResponse, type BrowserCreateBatchResult, type BrowserCreateConfig, type BrowserCreateResult, type BrowserCreateSimpleParams, type BrowserCreateSimpleResponse, type BrowserCreateStandardParams, type BrowserCreateStandardResponse, BrowserCreationError, type BrowserDeleteToolParams, type BrowserDeleteToolResponse, type BrowserListItem, type BrowserListParams, type BrowserListResponse, type BrowserListToolParams, type BrowserListToolResponse, type BrowserOS, type BrowserOpenParams, type BrowserOpenResult, type BrowserOpenToolParams, type BrowserOpenToolResponse, type BrowserUpdateParams, type ClearLocalCacheParams, type ClearServerCacheParams, ConfigError, type ConnectionInfoItem, type ConnectionInfoResponse, type CoreVersion, DEFAULT_CONFIG, type DetectChannelItem, type DetectChannelResponse, type ErrorInfo, type FingerInfo, LATEST_CORE_VERSION, type LabelItem, type LabelListResponse, NETWORK_ERROR_PATTERNS, type ProjectDetails, type ProxyBatchCreateParams, type ProxyCreateParams, type ProxyDeleteParams, type ProxyDetectParams, type ProxyInfo, type ProxyListItem, type ProxyListParams, type ProxyListResponse, type ProxyModifyParams, ROXY_ERROR_MAP, type RandomFingerprintParams, RoxyApiError, RoxyApiErrorCode, type RoxyApiResponse, RoxyBrowserMCPServer, type RoxyClientConfig$1 as RoxyClientConfig, type SearchEngine, TOOLS, type WindowPlatformInfo, type Workspace, type WorkspaceListResponse, type WorkspaceListToolResponse, batchCreateAccounts, batchCreateBrowsers,
|
|
5856
|
+
export { type AccountBatchCreateParams, type AccountCreateParams, type AccountDeleteParams, type AccountItem, type AccountListParams, type AccountListResponse, type AccountModifyParams, type BoughtProxyListItem, type BrowserCloseParams, type BrowserCloseToolParams, type BrowserCloseToolResponse, type BrowserCreateAdvancedParams, type BrowserCreateAdvancedResponse, type BrowserCreateBatchResult, type BrowserCreateConfig, type BrowserCreateResult, type BrowserCreateSimpleParams, type BrowserCreateSimpleResponse, type BrowserCreateStandardParams, type BrowserCreateStandardResponse, BrowserCreationError, type BrowserDeleteToolParams, type BrowserDeleteToolResponse, type BrowserListItem, type BrowserListParams, type BrowserListResponse, type BrowserListToolParams, type BrowserListToolResponse, type BrowserOS, type BrowserOpenParams, type BrowserOpenResult, type BrowserOpenToolParams, type BrowserOpenToolResponse, type BrowserUpdateParams, type ClearLocalCacheParams, type ClearServerCacheParams, ConfigError, type ConnectionInfoItem, type ConnectionInfoResponse, type CoreVersion, DEFAULT_CONFIG, type DetectChannelItem, type DetectChannelResponse, type ErrorInfo, type FingerInfo, LATEST_CORE_VERSION, type LabelItem, type LabelListResponse, NETWORK_ERROR_PATTERNS, type ProjectDetails, type ProxyBatchCreateParams, type ProxyCreateParams, type ProxyDeleteParams, type ProxyDetectParams, type ProxyInfo, type ProxyListItem, type ProxyListParams, type ProxyListResponse, type ProxyModifyParams, ROXY_ERROR_MAP, type RandomFingerprintParams, RoxyApiError, RoxyApiErrorCode, type RoxyApiResponse, RoxyBrowserMCPServer, type RoxyClientConfig$1 as RoxyClientConfig, type SearchEngine, TOOLS, type WindowPlatformInfo, type Workspace, type WorkspaceListResponse, type WorkspaceListToolResponse, batchCreateAccounts, batchCreateBrowsers, clearLocalCache, clearServerCache, closeBrowsers, createAccount, createBrowser, createProxies, deleteAccounts, deleteBrowsers, deleteProxies, detectProxy, getBrowserDetail, getConnectionInfo, healthCheck, listAccounts, listBrowsers, listLabels, listWorkspaces, modifyAccount, modifyProxy, openBrowser, proxyDetail, proxyList, randomFingerprint, request, resolveConfig, runServer, updateBrowser };
|