mobbdev 1.0.210 → 1.0.211
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 +30 -28
- package/dist/index.mjs +2050 -207
- package/package.json +11 -11
|
@@ -1623,6 +1623,8 @@ type Organization_Bool_Exp = {
|
|
|
1623
1623
|
name?: InputMaybe<String_Comparison_Exp>;
|
|
1624
1624
|
onPremScmOauthConfigs?: InputMaybe<On_Prem_Scm_Oauth_Config_Bool_Exp>;
|
|
1625
1625
|
onPremScmOauthConfigs_aggregate?: InputMaybe<On_Prem_Scm_Oauth_Config_Aggregate_Bool_Exp>;
|
|
1626
|
+
orgDomainsAutoAdd?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1627
|
+
orgDomainsAutoAddRole?: InputMaybe<Organization_Role_Type_Enum_Comparison_Exp>;
|
|
1626
1628
|
organizationFilesMatchingSettings?: InputMaybe<Organization_Files_Matching_Settings_Bool_Exp>;
|
|
1627
1629
|
organizationFilesMatchingSettings_aggregate?: InputMaybe<Organization_Files_Matching_Settings_Aggregate_Bool_Exp>;
|
|
1628
1630
|
organizationRoles?: InputMaybe<Organization_To_Organization_Role_Bool_Exp>;
|
|
@@ -4429,18 +4431,26 @@ declare const PromptItemZ: z.ZodObject<{
|
|
|
4429
4431
|
name: string;
|
|
4430
4432
|
parameters: string;
|
|
4431
4433
|
result: string;
|
|
4432
|
-
rawArguments?: string | undefined;
|
|
4433
4434
|
accepted?: boolean | undefined;
|
|
4435
|
+
rawArguments?: string | undefined;
|
|
4434
4436
|
}, {
|
|
4435
4437
|
name: string;
|
|
4436
4438
|
parameters: string;
|
|
4437
4439
|
result: string;
|
|
4438
|
-
rawArguments?: string | undefined;
|
|
4439
4440
|
accepted?: boolean | undefined;
|
|
4441
|
+
rawArguments?: string | undefined;
|
|
4440
4442
|
}>>;
|
|
4441
4443
|
}, "strip", z.ZodTypeAny, {
|
|
4442
4444
|
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
4445
|
+
tool?: {
|
|
4446
|
+
name: string;
|
|
4447
|
+
parameters: string;
|
|
4448
|
+
result: string;
|
|
4449
|
+
accepted?: boolean | undefined;
|
|
4450
|
+
rawArguments?: string | undefined;
|
|
4451
|
+
} | undefined;
|
|
4443
4452
|
date?: Date | undefined;
|
|
4453
|
+
text?: string | undefined;
|
|
4444
4454
|
attachedFiles?: {
|
|
4445
4455
|
relativePath: string;
|
|
4446
4456
|
startLine?: number | undefined;
|
|
@@ -4449,17 +4459,17 @@ declare const PromptItemZ: z.ZodObject<{
|
|
|
4449
4459
|
inputCount: number;
|
|
4450
4460
|
outputCount: number;
|
|
4451
4461
|
} | undefined;
|
|
4452
|
-
|
|
4462
|
+
}, {
|
|
4463
|
+
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
4453
4464
|
tool?: {
|
|
4454
4465
|
name: string;
|
|
4455
4466
|
parameters: string;
|
|
4456
4467
|
result: string;
|
|
4457
|
-
rawArguments?: string | undefined;
|
|
4458
4468
|
accepted?: boolean | undefined;
|
|
4469
|
+
rawArguments?: string | undefined;
|
|
4459
4470
|
} | undefined;
|
|
4460
|
-
}, {
|
|
4461
|
-
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
4462
4471
|
date?: Date | undefined;
|
|
4472
|
+
text?: string | undefined;
|
|
4463
4473
|
attachedFiles?: {
|
|
4464
4474
|
relativePath: string;
|
|
4465
4475
|
startLine?: number | undefined;
|
|
@@ -4468,14 +4478,6 @@ declare const PromptItemZ: z.ZodObject<{
|
|
|
4468
4478
|
inputCount: number;
|
|
4469
4479
|
outputCount: number;
|
|
4470
4480
|
} | undefined;
|
|
4471
|
-
text?: string | undefined;
|
|
4472
|
-
tool?: {
|
|
4473
|
-
name: string;
|
|
4474
|
-
parameters: string;
|
|
4475
|
-
result: string;
|
|
4476
|
-
rawArguments?: string | undefined;
|
|
4477
|
-
accepted?: boolean | undefined;
|
|
4478
|
-
} | undefined;
|
|
4479
4481
|
}>;
|
|
4480
4482
|
type PromptItem = z.infer<typeof PromptItemZ>;
|
|
4481
4483
|
declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
@@ -4512,18 +4514,26 @@ declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
|
4512
4514
|
name: string;
|
|
4513
4515
|
parameters: string;
|
|
4514
4516
|
result: string;
|
|
4515
|
-
rawArguments?: string | undefined;
|
|
4516
4517
|
accepted?: boolean | undefined;
|
|
4518
|
+
rawArguments?: string | undefined;
|
|
4517
4519
|
}, {
|
|
4518
4520
|
name: string;
|
|
4519
4521
|
parameters: string;
|
|
4520
4522
|
result: string;
|
|
4521
|
-
rawArguments?: string | undefined;
|
|
4522
4523
|
accepted?: boolean | undefined;
|
|
4524
|
+
rawArguments?: string | undefined;
|
|
4523
4525
|
}>>;
|
|
4524
4526
|
}, "strip", z.ZodTypeAny, {
|
|
4525
4527
|
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
4528
|
+
tool?: {
|
|
4529
|
+
name: string;
|
|
4530
|
+
parameters: string;
|
|
4531
|
+
result: string;
|
|
4532
|
+
accepted?: boolean | undefined;
|
|
4533
|
+
rawArguments?: string | undefined;
|
|
4534
|
+
} | undefined;
|
|
4526
4535
|
date?: Date | undefined;
|
|
4536
|
+
text?: string | undefined;
|
|
4527
4537
|
attachedFiles?: {
|
|
4528
4538
|
relativePath: string;
|
|
4529
4539
|
startLine?: number | undefined;
|
|
@@ -4532,17 +4542,17 @@ declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
|
4532
4542
|
inputCount: number;
|
|
4533
4543
|
outputCount: number;
|
|
4534
4544
|
} | undefined;
|
|
4535
|
-
|
|
4545
|
+
}, {
|
|
4546
|
+
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
4536
4547
|
tool?: {
|
|
4537
4548
|
name: string;
|
|
4538
4549
|
parameters: string;
|
|
4539
4550
|
result: string;
|
|
4540
|
-
rawArguments?: string | undefined;
|
|
4541
4551
|
accepted?: boolean | undefined;
|
|
4552
|
+
rawArguments?: string | undefined;
|
|
4542
4553
|
} | undefined;
|
|
4543
|
-
}, {
|
|
4544
|
-
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING";
|
|
4545
4554
|
date?: Date | undefined;
|
|
4555
|
+
text?: string | undefined;
|
|
4546
4556
|
attachedFiles?: {
|
|
4547
4557
|
relativePath: string;
|
|
4548
4558
|
startLine?: number | undefined;
|
|
@@ -4551,14 +4561,6 @@ declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
|
4551
4561
|
inputCount: number;
|
|
4552
4562
|
outputCount: number;
|
|
4553
4563
|
} | undefined;
|
|
4554
|
-
text?: string | undefined;
|
|
4555
|
-
tool?: {
|
|
4556
|
-
name: string;
|
|
4557
|
-
parameters: string;
|
|
4558
|
-
result: string;
|
|
4559
|
-
rawArguments?: string | undefined;
|
|
4560
|
-
accepted?: boolean | undefined;
|
|
4561
|
-
} | undefined;
|
|
4562
4564
|
}>, "many">;
|
|
4563
4565
|
type PromptItemArray = z.infer<typeof PromptItemArrayZ>;
|
|
4564
4566
|
type UploadAiBlameOptions = {
|