@cloudbase/cli 2.8.0-beta.4 → 2.8.0-beta.5
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/.augment-guidelines +119 -0
- package/.clinerules/cloudbase-rules.mdc +119 -0
- package/.cursor/rules/cloudbase-rules.mdc +119 -0
- package/.mcp.json +11 -0
- package/CLAUDE.md +119 -0
- package/README.md +13 -1
- package/bin/cloudbase-mcp.js +24 -0
- package/bin/tcb.js +0 -2
- package/cloudbaserc.json +3 -0
- package/lib/commands/ai/index.js +172 -0
- package/lib/commands/cloudrun/base.js +2 -2
- package/lib/commands/index.js +1 -0
- package/lib/commands/utils.js +10 -4
- package/lib/utils/ai/banner.js +88 -0
- package/lib/utils/ai/config.js +254 -0
- package/lib/utils/ai/const.js +150 -0
- package/lib/utils/ai/ensureFiles.js +26 -0
- package/lib/utils/ai/envLocalManager.js +144 -0
- package/lib/utils/ai/router.js +1089 -0
- package/lib/utils/ai/setup.js +550 -0
- package/package.json +11 -3
- package/rules/cloudbase-platform.mdc +44 -0
- package/rules/database.mdc +25 -0
- package/rules/miniprogram-development.mdc +61 -0
- package/rules/ui-design.mdc +24 -0
- package/rules/web-development.mdc +44 -0
- package/rules/workflows.mdc +30 -0
- package/specs/ai-cli-bootstrap/QWEN.md +196 -0
- package/specs/ai-cli-bootstrap/design.md +185 -0
- package/specs/ai-cli-bootstrap/requirements.md +51 -0
- package/specs/ai-cli-bootstrap/tasks.md +70 -0
- package/specs/ai-cli-bootstrap/technical-docs.md +421 -0
- package/specs/mcp-global-bin/design.md +57 -0
- package/specs/mcp-global-bin/requirements.md +43 -0
- package/specs/mcp-global-bin/tasks.md +54 -0
- package/types/commands/ai/index.d.ts +23 -0
- package/types/commands/index.d.ts +1 -0
- package/types/commands/utils.d.ts +6 -0
- package/types/utils/ai/banner.d.ts +2 -0
- package/types/utils/ai/config.d.ts +79 -0
- package/types/utils/ai/const.d.ts +323 -0
- package/types/utils/ai/ensureFiles.d.ts +1 -0
- package/types/utils/ai/envLocalManager.d.ts +23 -0
- package/types/utils/ai/router.d.ts +45 -0
- package/types/utils/ai/setup.d.ts +23 -0
- package/types/utils/config.d.ts +1 -0
|
@@ -0,0 +1,323 @@
|
|
|
1
|
+
import z from 'zod/v3';
|
|
2
|
+
export declare const CONFIG_PATH: string;
|
|
3
|
+
export declare const ENV_LOCAL_PATH: string;
|
|
4
|
+
export declare const CLAUDE_CODE_ROUTER_CONFIG_PATH: string;
|
|
5
|
+
export declare const CLOUDBASE_MCP_CONFIG_PATH: string;
|
|
6
|
+
export declare const DEFAULT_CONFIG = "{\n \"envId\": \"{{env.ENV_ID}}\"\n}";
|
|
7
|
+
export declare const CLAUDE: {
|
|
8
|
+
name: string;
|
|
9
|
+
value: string;
|
|
10
|
+
configSchema: z.ZodEffects<z.ZodObject<{
|
|
11
|
+
type: z.ZodOptional<z.ZodEnum<["custom", "cloudbase"]>>;
|
|
12
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
13
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
14
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
15
|
+
model: z.ZodOptional<z.ZodString>;
|
|
16
|
+
transformer: z.ZodOptional<z.ZodString>;
|
|
17
|
+
}, "strip", z.ZodTypeAny, {
|
|
18
|
+
type?: "custom" | "cloudbase";
|
|
19
|
+
transformer?: string;
|
|
20
|
+
apiKey?: string;
|
|
21
|
+
model?: string;
|
|
22
|
+
baseUrl?: string;
|
|
23
|
+
provider?: string;
|
|
24
|
+
}, {
|
|
25
|
+
type?: "custom" | "cloudbase";
|
|
26
|
+
transformer?: string;
|
|
27
|
+
apiKey?: string;
|
|
28
|
+
model?: string;
|
|
29
|
+
baseUrl?: string;
|
|
30
|
+
provider?: string;
|
|
31
|
+
}>, {
|
|
32
|
+
type?: "custom" | "cloudbase";
|
|
33
|
+
transformer?: string;
|
|
34
|
+
apiKey?: string;
|
|
35
|
+
model?: string;
|
|
36
|
+
baseUrl?: string;
|
|
37
|
+
provider?: string;
|
|
38
|
+
}, {
|
|
39
|
+
type?: "custom" | "cloudbase";
|
|
40
|
+
transformer?: string;
|
|
41
|
+
apiKey?: string;
|
|
42
|
+
model?: string;
|
|
43
|
+
baseUrl?: string;
|
|
44
|
+
provider?: string;
|
|
45
|
+
}>;
|
|
46
|
+
};
|
|
47
|
+
export declare const QWEN: {
|
|
48
|
+
name: string;
|
|
49
|
+
value: string;
|
|
50
|
+
configSchema: z.ZodEffects<z.ZodObject<{
|
|
51
|
+
type: z.ZodOptional<z.ZodEnum<["custom", "cloudbase"]>>;
|
|
52
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
53
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
54
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
55
|
+
model: z.ZodOptional<z.ZodString>;
|
|
56
|
+
}, "strip", z.ZodTypeAny, {
|
|
57
|
+
type?: "custom" | "cloudbase";
|
|
58
|
+
apiKey?: string;
|
|
59
|
+
model?: string;
|
|
60
|
+
baseUrl?: string;
|
|
61
|
+
provider?: string;
|
|
62
|
+
}, {
|
|
63
|
+
type?: "custom" | "cloudbase";
|
|
64
|
+
apiKey?: string;
|
|
65
|
+
model?: string;
|
|
66
|
+
baseUrl?: string;
|
|
67
|
+
provider?: string;
|
|
68
|
+
}>, {
|
|
69
|
+
type?: "custom" | "cloudbase";
|
|
70
|
+
apiKey?: string;
|
|
71
|
+
model?: string;
|
|
72
|
+
baseUrl?: string;
|
|
73
|
+
provider?: string;
|
|
74
|
+
}, {
|
|
75
|
+
type?: "custom" | "cloudbase";
|
|
76
|
+
apiKey?: string;
|
|
77
|
+
model?: string;
|
|
78
|
+
baseUrl?: string;
|
|
79
|
+
provider?: string;
|
|
80
|
+
}>;
|
|
81
|
+
};
|
|
82
|
+
export declare const CODEX: {
|
|
83
|
+
name: string;
|
|
84
|
+
value: string;
|
|
85
|
+
configSchema: z.ZodEffects<z.ZodObject<{
|
|
86
|
+
type: z.ZodOptional<z.ZodEnum<["custom", "cloudbase"]>>;
|
|
87
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
88
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
89
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
90
|
+
model: z.ZodOptional<z.ZodString>;
|
|
91
|
+
}, "strip", z.ZodTypeAny, {
|
|
92
|
+
type?: "custom" | "cloudbase";
|
|
93
|
+
apiKey?: string;
|
|
94
|
+
model?: string;
|
|
95
|
+
baseUrl?: string;
|
|
96
|
+
provider?: string;
|
|
97
|
+
}, {
|
|
98
|
+
type?: "custom" | "cloudbase";
|
|
99
|
+
apiKey?: string;
|
|
100
|
+
model?: string;
|
|
101
|
+
baseUrl?: string;
|
|
102
|
+
provider?: string;
|
|
103
|
+
}>, {
|
|
104
|
+
type?: "custom" | "cloudbase";
|
|
105
|
+
apiKey?: string;
|
|
106
|
+
model?: string;
|
|
107
|
+
baseUrl?: string;
|
|
108
|
+
provider?: string;
|
|
109
|
+
}, {
|
|
110
|
+
type?: "custom" | "cloudbase";
|
|
111
|
+
apiKey?: string;
|
|
112
|
+
model?: string;
|
|
113
|
+
baseUrl?: string;
|
|
114
|
+
provider?: string;
|
|
115
|
+
}>;
|
|
116
|
+
};
|
|
117
|
+
export declare const AIDER: {
|
|
118
|
+
name: string;
|
|
119
|
+
value: string;
|
|
120
|
+
configSchema: z.ZodEffects<z.ZodObject<{
|
|
121
|
+
type: z.ZodOptional<z.ZodEnum<["custom", "cloudbase"]>>;
|
|
122
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
123
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
124
|
+
model: z.ZodOptional<z.ZodString>;
|
|
125
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
126
|
+
}, "strip", z.ZodTypeAny, {
|
|
127
|
+
type?: "custom" | "cloudbase";
|
|
128
|
+
apiKey?: string;
|
|
129
|
+
model?: string;
|
|
130
|
+
baseUrl?: string;
|
|
131
|
+
provider?: string;
|
|
132
|
+
}, {
|
|
133
|
+
type?: "custom" | "cloudbase";
|
|
134
|
+
apiKey?: string;
|
|
135
|
+
model?: string;
|
|
136
|
+
baseUrl?: string;
|
|
137
|
+
provider?: string;
|
|
138
|
+
}>, {
|
|
139
|
+
type?: "custom" | "cloudbase";
|
|
140
|
+
apiKey?: string;
|
|
141
|
+
model?: string;
|
|
142
|
+
baseUrl?: string;
|
|
143
|
+
provider?: string;
|
|
144
|
+
}, {
|
|
145
|
+
type?: "custom" | "cloudbase";
|
|
146
|
+
apiKey?: string;
|
|
147
|
+
model?: string;
|
|
148
|
+
baseUrl?: string;
|
|
149
|
+
provider?: string;
|
|
150
|
+
}>;
|
|
151
|
+
};
|
|
152
|
+
export declare const NONE: {
|
|
153
|
+
name: string;
|
|
154
|
+
value: string;
|
|
155
|
+
};
|
|
156
|
+
export declare const AGENTS: readonly [{
|
|
157
|
+
name: string;
|
|
158
|
+
value: string;
|
|
159
|
+
configSchema: z.ZodEffects<z.ZodObject<{
|
|
160
|
+
type: z.ZodOptional<z.ZodEnum<["custom", "cloudbase"]>>;
|
|
161
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
162
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
163
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
164
|
+
model: z.ZodOptional<z.ZodString>;
|
|
165
|
+
transformer: z.ZodOptional<z.ZodString>;
|
|
166
|
+
}, "strip", z.ZodTypeAny, {
|
|
167
|
+
type?: "custom" | "cloudbase";
|
|
168
|
+
transformer?: string;
|
|
169
|
+
apiKey?: string;
|
|
170
|
+
model?: string;
|
|
171
|
+
baseUrl?: string;
|
|
172
|
+
provider?: string;
|
|
173
|
+
}, {
|
|
174
|
+
type?: "custom" | "cloudbase";
|
|
175
|
+
transformer?: string;
|
|
176
|
+
apiKey?: string;
|
|
177
|
+
model?: string;
|
|
178
|
+
baseUrl?: string;
|
|
179
|
+
provider?: string;
|
|
180
|
+
}>, {
|
|
181
|
+
type?: "custom" | "cloudbase";
|
|
182
|
+
transformer?: string;
|
|
183
|
+
apiKey?: string;
|
|
184
|
+
model?: string;
|
|
185
|
+
baseUrl?: string;
|
|
186
|
+
provider?: string;
|
|
187
|
+
}, {
|
|
188
|
+
type?: "custom" | "cloudbase";
|
|
189
|
+
transformer?: string;
|
|
190
|
+
apiKey?: string;
|
|
191
|
+
model?: string;
|
|
192
|
+
baseUrl?: string;
|
|
193
|
+
provider?: string;
|
|
194
|
+
}>;
|
|
195
|
+
}, {
|
|
196
|
+
name: string;
|
|
197
|
+
value: string;
|
|
198
|
+
configSchema: z.ZodEffects<z.ZodObject<{
|
|
199
|
+
type: z.ZodOptional<z.ZodEnum<["custom", "cloudbase"]>>;
|
|
200
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
201
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
202
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
203
|
+
model: z.ZodOptional<z.ZodString>;
|
|
204
|
+
}, "strip", z.ZodTypeAny, {
|
|
205
|
+
type?: "custom" | "cloudbase";
|
|
206
|
+
apiKey?: string;
|
|
207
|
+
model?: string;
|
|
208
|
+
baseUrl?: string;
|
|
209
|
+
provider?: string;
|
|
210
|
+
}, {
|
|
211
|
+
type?: "custom" | "cloudbase";
|
|
212
|
+
apiKey?: string;
|
|
213
|
+
model?: string;
|
|
214
|
+
baseUrl?: string;
|
|
215
|
+
provider?: string;
|
|
216
|
+
}>, {
|
|
217
|
+
type?: "custom" | "cloudbase";
|
|
218
|
+
apiKey?: string;
|
|
219
|
+
model?: string;
|
|
220
|
+
baseUrl?: string;
|
|
221
|
+
provider?: string;
|
|
222
|
+
}, {
|
|
223
|
+
type?: "custom" | "cloudbase";
|
|
224
|
+
apiKey?: string;
|
|
225
|
+
model?: string;
|
|
226
|
+
baseUrl?: string;
|
|
227
|
+
provider?: string;
|
|
228
|
+
}>;
|
|
229
|
+
}, {
|
|
230
|
+
name: string;
|
|
231
|
+
value: string;
|
|
232
|
+
configSchema: z.ZodEffects<z.ZodObject<{
|
|
233
|
+
type: z.ZodOptional<z.ZodEnum<["custom", "cloudbase"]>>;
|
|
234
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
235
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
236
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
237
|
+
model: z.ZodOptional<z.ZodString>;
|
|
238
|
+
}, "strip", z.ZodTypeAny, {
|
|
239
|
+
type?: "custom" | "cloudbase";
|
|
240
|
+
apiKey?: string;
|
|
241
|
+
model?: string;
|
|
242
|
+
baseUrl?: string;
|
|
243
|
+
provider?: string;
|
|
244
|
+
}, {
|
|
245
|
+
type?: "custom" | "cloudbase";
|
|
246
|
+
apiKey?: string;
|
|
247
|
+
model?: string;
|
|
248
|
+
baseUrl?: string;
|
|
249
|
+
provider?: string;
|
|
250
|
+
}>, {
|
|
251
|
+
type?: "custom" | "cloudbase";
|
|
252
|
+
apiKey?: string;
|
|
253
|
+
model?: string;
|
|
254
|
+
baseUrl?: string;
|
|
255
|
+
provider?: string;
|
|
256
|
+
}, {
|
|
257
|
+
type?: "custom" | "cloudbase";
|
|
258
|
+
apiKey?: string;
|
|
259
|
+
model?: string;
|
|
260
|
+
baseUrl?: string;
|
|
261
|
+
provider?: string;
|
|
262
|
+
}>;
|
|
263
|
+
}, {
|
|
264
|
+
name: string;
|
|
265
|
+
value: string;
|
|
266
|
+
configSchema: z.ZodEffects<z.ZodObject<{
|
|
267
|
+
type: z.ZodOptional<z.ZodEnum<["custom", "cloudbase"]>>;
|
|
268
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
269
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
270
|
+
model: z.ZodOptional<z.ZodString>;
|
|
271
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
272
|
+
}, "strip", z.ZodTypeAny, {
|
|
273
|
+
type?: "custom" | "cloudbase";
|
|
274
|
+
apiKey?: string;
|
|
275
|
+
model?: string;
|
|
276
|
+
baseUrl?: string;
|
|
277
|
+
provider?: string;
|
|
278
|
+
}, {
|
|
279
|
+
type?: "custom" | "cloudbase";
|
|
280
|
+
apiKey?: string;
|
|
281
|
+
model?: string;
|
|
282
|
+
baseUrl?: string;
|
|
283
|
+
provider?: string;
|
|
284
|
+
}>, {
|
|
285
|
+
type?: "custom" | "cloudbase";
|
|
286
|
+
apiKey?: string;
|
|
287
|
+
model?: string;
|
|
288
|
+
baseUrl?: string;
|
|
289
|
+
provider?: string;
|
|
290
|
+
}, {
|
|
291
|
+
type?: "custom" | "cloudbase";
|
|
292
|
+
apiKey?: string;
|
|
293
|
+
model?: string;
|
|
294
|
+
baseUrl?: string;
|
|
295
|
+
provider?: string;
|
|
296
|
+
}>;
|
|
297
|
+
}, {
|
|
298
|
+
name: string;
|
|
299
|
+
value: string;
|
|
300
|
+
}];
|
|
301
|
+
export declare const CLOUDBASE_PROVIDERS: readonly [{
|
|
302
|
+
readonly name: "DeepSeek";
|
|
303
|
+
readonly value: "deepseek";
|
|
304
|
+
readonly models: readonly ["deepseek-v3"];
|
|
305
|
+
readonly transformer: "deepseek";
|
|
306
|
+
}, {
|
|
307
|
+
readonly name: "自定义";
|
|
308
|
+
readonly value: "custom";
|
|
309
|
+
readonly models: readonly [];
|
|
310
|
+
readonly transformer: any;
|
|
311
|
+
}];
|
|
312
|
+
export declare function getDefaultConfig(agent: string): unknown;
|
|
313
|
+
export declare function getAgentConfigValidator(agent: string): (x: unknown) => {
|
|
314
|
+
success: true;
|
|
315
|
+
} | {
|
|
316
|
+
success: false;
|
|
317
|
+
error: unknown;
|
|
318
|
+
};
|
|
319
|
+
export declare const BASE_URL_MODEL_MAPPING: {
|
|
320
|
+
readonly 'https://api.moonshot.cn/v1': "kimi-k2-0711-preview";
|
|
321
|
+
readonly 'https://open.bigmodel.cn/api/paas/v4': "glm-4.5";
|
|
322
|
+
};
|
|
323
|
+
export declare function getDefaultModelByBaseUrl(baseUrl: string): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ensureFiles(): Promise<void>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export interface AIEnvConfig {
|
|
2
|
+
defaultAgent: string;
|
|
3
|
+
agents: {
|
|
4
|
+
[agentName: string]: {
|
|
5
|
+
apiKey?: string;
|
|
6
|
+
baseUrl?: string;
|
|
7
|
+
model?: string;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
export declare class EnvLocalManager {
|
|
12
|
+
updateEnvId(envId: string): void;
|
|
13
|
+
parseEnvFile(): Promise<Record<string, string>>;
|
|
14
|
+
updateAIConfig(aiConfig: AIEnvConfig): Promise<void>;
|
|
15
|
+
removeAIConfig(agentName?: string): Promise<void>;
|
|
16
|
+
validateAIConfig(aiConfig: AIEnvConfig): string[];
|
|
17
|
+
updateDefaultAgent(agent: string): void;
|
|
18
|
+
setEnvLocal(key: string, value: string): void;
|
|
19
|
+
removeEnvLocal(key: string): void;
|
|
20
|
+
private removeAIConfigFromMap;
|
|
21
|
+
private removeSpecificAgentConfig;
|
|
22
|
+
private addAIConfigToEnv;
|
|
23
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Logger } from '../log';
|
|
2
|
+
interface IExecute {
|
|
3
|
+
agent?: string;
|
|
4
|
+
envId?: string;
|
|
5
|
+
addtionalArgs: string[];
|
|
6
|
+
log: Logger;
|
|
7
|
+
}
|
|
8
|
+
export declare class AICommandRouter {
|
|
9
|
+
private configManager;
|
|
10
|
+
constructor();
|
|
11
|
+
execute({ agent, addtionalArgs, log }: IExecute): Promise<void>;
|
|
12
|
+
private checkToolkitConfig;
|
|
13
|
+
private promptForTemplateDownload;
|
|
14
|
+
private downloadTemplate;
|
|
15
|
+
private downloadAndExtractTemplate;
|
|
16
|
+
private validateTemplateIntegrity;
|
|
17
|
+
private getInstallCommand;
|
|
18
|
+
private shouldCheckOverwrite;
|
|
19
|
+
private executeCommand;
|
|
20
|
+
private isToolAvailable;
|
|
21
|
+
private validateAgentConfig;
|
|
22
|
+
private executeAgentWithConfig;
|
|
23
|
+
private executeClaudeAgent;
|
|
24
|
+
private executeQwenAgent;
|
|
25
|
+
private executeQwenCloudbaseAgent;
|
|
26
|
+
private executeClaudeCloudbaseAgent;
|
|
27
|
+
private restartClaudeCodeRouter;
|
|
28
|
+
private isClaudeCodeRouterRunning;
|
|
29
|
+
private configureClaudeCodeRouter;
|
|
30
|
+
private parseArgs;
|
|
31
|
+
private ensureClaudeCodeRouter;
|
|
32
|
+
private ensureClaudeCode;
|
|
33
|
+
private ensureQwenCode;
|
|
34
|
+
private executeCodexAgent;
|
|
35
|
+
private executeCodexCloudbaseAgent;
|
|
36
|
+
private ensureCodexCode;
|
|
37
|
+
private executeAiderAgent;
|
|
38
|
+
private executeAiderCloudbaseAgent;
|
|
39
|
+
private ensureAider;
|
|
40
|
+
private modifyMCPConfigs;
|
|
41
|
+
private modifyMCPJsonFile;
|
|
42
|
+
private modifyMCPTomlFile;
|
|
43
|
+
private objectToToml;
|
|
44
|
+
}
|
|
45
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Logger } from '../log';
|
|
2
|
+
export declare class AISetupWizard {
|
|
3
|
+
private aiConfigManager;
|
|
4
|
+
private envId?;
|
|
5
|
+
constructor(envId?: string);
|
|
6
|
+
setUpDefault(log: Logger): Promise<{
|
|
7
|
+
defaultAgent: string;
|
|
8
|
+
}>;
|
|
9
|
+
setUp(log: Logger): Promise<{
|
|
10
|
+
defaultAgent: string;
|
|
11
|
+
}>;
|
|
12
|
+
configureEnvId(log: Logger, _envId: string): Promise<string>;
|
|
13
|
+
private selectDefaultAgent;
|
|
14
|
+
private selectCurrentAgent;
|
|
15
|
+
private selectAgent;
|
|
16
|
+
private configureAgent;
|
|
17
|
+
private configureClaudeAgent;
|
|
18
|
+
private configureQwenAgent;
|
|
19
|
+
private configureCodexAgent;
|
|
20
|
+
private configureAiderAgent;
|
|
21
|
+
private ensureGitignore;
|
|
22
|
+
private selectCloudBaseProvider;
|
|
23
|
+
}
|
package/types/utils/config.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export interface IPrivateSettings {
|
|
|
21
21
|
}
|
|
22
22
|
export interface ICloudBaseRcSettings extends ICloudBaseConfig {
|
|
23
23
|
privateSettings?: IPrivateSettings;
|
|
24
|
+
ai?: any;
|
|
24
25
|
}
|
|
25
26
|
export declare const getCloudBaseConfig: (configPath?: string) => Promise<ICloudBaseRcSettings>;
|
|
26
27
|
export {};
|