mobbdev 1.0.216 → 1.1.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/args/commands/upload_ai_blame.d.mts +28 -28
- package/dist/index.mjs +956 -486
- package/package.json +1 -1
|
@@ -4462,18 +4462,26 @@ declare const PromptItemZ: z.ZodObject<{
|
|
|
4462
4462
|
name: string;
|
|
4463
4463
|
parameters: string;
|
|
4464
4464
|
result: string;
|
|
4465
|
-
rawArguments?: string | undefined;
|
|
4466
4465
|
accepted?: boolean | undefined;
|
|
4466
|
+
rawArguments?: string | undefined;
|
|
4467
4467
|
}, {
|
|
4468
4468
|
name: string;
|
|
4469
4469
|
parameters: string;
|
|
4470
4470
|
result: string;
|
|
4471
|
-
rawArguments?: string | undefined;
|
|
4472
4471
|
accepted?: boolean | undefined;
|
|
4472
|
+
rawArguments?: string | undefined;
|
|
4473
4473
|
}>>;
|
|
4474
4474
|
}, "strip", z.ZodTypeAny, {
|
|
4475
4475
|
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
4476
|
+
tool?: {
|
|
4477
|
+
name: string;
|
|
4478
|
+
parameters: string;
|
|
4479
|
+
result: string;
|
|
4480
|
+
accepted?: boolean | undefined;
|
|
4481
|
+
rawArguments?: string | undefined;
|
|
4482
|
+
} | undefined;
|
|
4476
4483
|
date?: Date | undefined;
|
|
4484
|
+
text?: string | undefined;
|
|
4477
4485
|
attachedFiles?: {
|
|
4478
4486
|
relativePath: string;
|
|
4479
4487
|
startLine?: number | undefined;
|
|
@@ -4482,17 +4490,17 @@ declare const PromptItemZ: z.ZodObject<{
|
|
|
4482
4490
|
inputCount: number;
|
|
4483
4491
|
outputCount: number;
|
|
4484
4492
|
} | undefined;
|
|
4485
|
-
|
|
4493
|
+
}, {
|
|
4494
|
+
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
4486
4495
|
tool?: {
|
|
4487
4496
|
name: string;
|
|
4488
4497
|
parameters: string;
|
|
4489
4498
|
result: string;
|
|
4490
|
-
rawArguments?: string | undefined;
|
|
4491
4499
|
accepted?: boolean | undefined;
|
|
4500
|
+
rawArguments?: string | undefined;
|
|
4492
4501
|
} | undefined;
|
|
4493
|
-
}, {
|
|
4494
|
-
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
4495
4502
|
date?: Date | undefined;
|
|
4503
|
+
text?: string | undefined;
|
|
4496
4504
|
attachedFiles?: {
|
|
4497
4505
|
relativePath: string;
|
|
4498
4506
|
startLine?: number | undefined;
|
|
@@ -4501,14 +4509,6 @@ declare const PromptItemZ: z.ZodObject<{
|
|
|
4501
4509
|
inputCount: number;
|
|
4502
4510
|
outputCount: number;
|
|
4503
4511
|
} | undefined;
|
|
4504
|
-
text?: string | undefined;
|
|
4505
|
-
tool?: {
|
|
4506
|
-
name: string;
|
|
4507
|
-
parameters: string;
|
|
4508
|
-
result: string;
|
|
4509
|
-
rawArguments?: string | undefined;
|
|
4510
|
-
accepted?: boolean | undefined;
|
|
4511
|
-
} | undefined;
|
|
4512
4512
|
}>;
|
|
4513
4513
|
type PromptItem = z.infer<typeof PromptItemZ>;
|
|
4514
4514
|
declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
@@ -4545,18 +4545,26 @@ declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
|
4545
4545
|
name: string;
|
|
4546
4546
|
parameters: string;
|
|
4547
4547
|
result: string;
|
|
4548
|
-
rawArguments?: string | undefined;
|
|
4549
4548
|
accepted?: boolean | undefined;
|
|
4549
|
+
rawArguments?: string | undefined;
|
|
4550
4550
|
}, {
|
|
4551
4551
|
name: string;
|
|
4552
4552
|
parameters: string;
|
|
4553
4553
|
result: string;
|
|
4554
|
-
rawArguments?: string | undefined;
|
|
4555
4554
|
accepted?: boolean | undefined;
|
|
4555
|
+
rawArguments?: string | undefined;
|
|
4556
4556
|
}>>;
|
|
4557
4557
|
}, "strip", z.ZodTypeAny, {
|
|
4558
4558
|
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
4559
|
+
tool?: {
|
|
4560
|
+
name: string;
|
|
4561
|
+
parameters: string;
|
|
4562
|
+
result: string;
|
|
4563
|
+
accepted?: boolean | undefined;
|
|
4564
|
+
rawArguments?: string | undefined;
|
|
4565
|
+
} | undefined;
|
|
4559
4566
|
date?: Date | undefined;
|
|
4567
|
+
text?: string | undefined;
|
|
4560
4568
|
attachedFiles?: {
|
|
4561
4569
|
relativePath: string;
|
|
4562
4570
|
startLine?: number | undefined;
|
|
@@ -4565,17 +4573,17 @@ declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
|
4565
4573
|
inputCount: number;
|
|
4566
4574
|
outputCount: number;
|
|
4567
4575
|
} | undefined;
|
|
4568
|
-
|
|
4576
|
+
}, {
|
|
4577
|
+
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
4569
4578
|
tool?: {
|
|
4570
4579
|
name: string;
|
|
4571
4580
|
parameters: string;
|
|
4572
4581
|
result: string;
|
|
4573
|
-
rawArguments?: string | undefined;
|
|
4574
4582
|
accepted?: boolean | undefined;
|
|
4583
|
+
rawArguments?: string | undefined;
|
|
4575
4584
|
} | undefined;
|
|
4576
|
-
}, {
|
|
4577
|
-
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
4578
4585
|
date?: Date | undefined;
|
|
4586
|
+
text?: string | undefined;
|
|
4579
4587
|
attachedFiles?: {
|
|
4580
4588
|
relativePath: string;
|
|
4581
4589
|
startLine?: number | undefined;
|
|
@@ -4584,14 +4592,6 @@ declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
|
4584
4592
|
inputCount: number;
|
|
4585
4593
|
outputCount: number;
|
|
4586
4594
|
} | undefined;
|
|
4587
|
-
text?: string | undefined;
|
|
4588
|
-
tool?: {
|
|
4589
|
-
name: string;
|
|
4590
|
-
parameters: string;
|
|
4591
|
-
result: string;
|
|
4592
|
-
rawArguments?: string | undefined;
|
|
4593
|
-
accepted?: boolean | undefined;
|
|
4594
|
-
} | undefined;
|
|
4595
4595
|
}>, "many">;
|
|
4596
4596
|
type PromptItemArray = z.infer<typeof PromptItemArrayZ>;
|
|
4597
4597
|
type UploadAiBlameOptions = {
|