@bike4mind/cli 0.2.31-feat-python-playground.19300 → 0.2.31-feat-webhook-audit-logs.19317
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/{artifactExtractor-OXWUMHDM.js → artifactExtractor-T4IJMXSD.js} +1 -1
- package/dist/{chunk-ECHYFI4L.js → chunk-KSNX4KWW.js} +2 -2
- package/dist/{chunk-RIHZH5XT.js → chunk-MOYWKG6Y.js} +2 -2
- package/dist/{chunk-PPJAR2ZZ.js → chunk-RI5ANER7.js} +1 -1
- package/dist/{chunk-R3656M2L.js → chunk-SAKSY6XZ.js} +2 -2
- package/dist/{chunk-A6RZZCUV.js → chunk-ZSETXZO7.js} +11 -27
- package/dist/{create-B3Q4CGLN.js → create-DGBJIOLD.js} +3 -3
- package/dist/index.js +11 -11
- package/dist/{llmMarkdownGenerator-HPNTTELP.js → llmMarkdownGenerator-CKO4T4JV.js} +1 -1
- package/dist/{markdownGenerator-3SNUTKFH.js → markdownGenerator-KYFU4EFK.js} +1 -1
- package/dist/{mementoService-KKUQGYPQ.js → mementoService-QH3Q6Y5V.js} +3 -3
- package/dist/{src-BV55KFRP.js → src-3QOA5CGR.js} +2 -2
- package/dist/{src-56VNIQUM.js → src-VNWPZMAW.js} +3 -7
- package/dist/{subtractCredits-XFFZGLDZ.js → subtractCredits-YJXRHGEG.js} +3 -3
- package/package.json +6 -6
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
CurationArtifactType
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-ZSETXZO7.js";
|
|
5
5
|
|
|
6
6
|
// ../../b4m-core/packages/services/dist/src/notebookCurationService/artifactExtractor.js
|
|
7
7
|
var ARTIFACT_TAG_REGEX = /<artifact\s+(.*?)>([\s\S]*?)<\/artifact>/gi;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import {
|
|
3
3
|
BadRequestError,
|
|
4
4
|
secureParameters
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-RI5ANER7.js";
|
|
6
6
|
import {
|
|
7
7
|
CompletionApiUsageTransaction,
|
|
8
8
|
GenericCreditDeductTransaction,
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
TextGenerationUsageTransaction,
|
|
13
13
|
TransferCreditTransaction,
|
|
14
14
|
VideoGenerationUsageTransaction
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-ZSETXZO7.js";
|
|
16
16
|
|
|
17
17
|
// ../../b4m-core/packages/services/dist/src/creditService/subtractCredits.js
|
|
18
18
|
import { z } from "zod";
|
|
@@ -6,12 +6,12 @@ import {
|
|
|
6
6
|
getSettingsByNames,
|
|
7
7
|
obfuscateApiKey,
|
|
8
8
|
secureParameters
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-RI5ANER7.js";
|
|
10
10
|
import {
|
|
11
11
|
ApiKeyType,
|
|
12
12
|
MementoTier,
|
|
13
13
|
isSupportedEmbeddingModel
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-ZSETXZO7.js";
|
|
15
15
|
|
|
16
16
|
// ../../b4m-core/packages/services/dist/src/apiKeyService/get.js
|
|
17
17
|
import { z } from "zod";
|
|
@@ -7,11 +7,11 @@ import {
|
|
|
7
7
|
getSettingsMap,
|
|
8
8
|
getSettingsValue,
|
|
9
9
|
secureParameters
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-RI5ANER7.js";
|
|
11
11
|
import {
|
|
12
12
|
KnowledgeType,
|
|
13
13
|
SupportedFabFileMimeTypes
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-ZSETXZO7.js";
|
|
15
15
|
|
|
16
16
|
// ../../b4m-core/packages/services/dist/src/fabFileService/create.js
|
|
17
17
|
import { z } from "zod";
|
|
@@ -473,15 +473,6 @@ var LatticeArtifactSchema = ArtifactSchema.extend({
|
|
|
473
473
|
lastComputedAt: z6.date().optional()
|
|
474
474
|
})
|
|
475
475
|
});
|
|
476
|
-
var PythonArtifactSchema = ArtifactSchema.extend({
|
|
477
|
-
type: z6.literal("python"),
|
|
478
|
-
metadata: ArtifactMetadataSchema.extend({
|
|
479
|
-
packages: z6.array(z6.string()).default([]),
|
|
480
|
-
hasOutput: z6.boolean().default(false),
|
|
481
|
-
executionState: z6.enum(["idle", "running", "completed", "error"]).optional(),
|
|
482
|
-
lastExecutionTime: z6.number().optional()
|
|
483
|
-
})
|
|
484
|
-
});
|
|
485
476
|
var MermaidChartMetadataSchema = z6.object({
|
|
486
477
|
chartType: z6.enum([
|
|
487
478
|
"flowchart",
|
|
@@ -516,8 +507,7 @@ var ClaudeArtifactMimeTypes = {
|
|
|
516
507
|
RECHARTS: "application/vnd.ant.recharts",
|
|
517
508
|
CODE: "application/vnd.ant.code",
|
|
518
509
|
MARKDOWN: "text/markdown",
|
|
519
|
-
LATTICE: "application/vnd.b4m.lattice"
|
|
520
|
-
PYTHON: "application/vnd.ant.python"
|
|
510
|
+
LATTICE: "application/vnd.b4m.lattice"
|
|
521
511
|
};
|
|
522
512
|
|
|
523
513
|
// ../../b4m-core/packages/common/dist/src/types/entities/AppFileTypes.js
|
|
@@ -1085,6 +1075,15 @@ var WebhookDeliveryStatus;
|
|
|
1085
1075
|
WebhookDeliveryStatus2["Pending"] = "pending";
|
|
1086
1076
|
})(WebhookDeliveryStatus || (WebhookDeliveryStatus = {}));
|
|
1087
1077
|
|
|
1078
|
+
// ../../b4m-core/packages/common/dist/src/types/entities/WebhookAuditLogTypes.js
|
|
1079
|
+
var WebhookAuditStatus;
|
|
1080
|
+
(function(WebhookAuditStatus2) {
|
|
1081
|
+
WebhookAuditStatus2["Received"] = "received";
|
|
1082
|
+
WebhookAuditStatus2["Processing"] = "processing";
|
|
1083
|
+
WebhookAuditStatus2["Completed"] = "completed";
|
|
1084
|
+
WebhookAuditStatus2["Failed"] = "failed";
|
|
1085
|
+
})(WebhookAuditStatus || (WebhookAuditStatus = {}));
|
|
1086
|
+
|
|
1088
1087
|
// ../../b4m-core/packages/common/dist/src/types/entities/JiraWebhookConfigTypes.js
|
|
1089
1088
|
var COMMON_JIRA_WEBHOOK_EVENTS = [
|
|
1090
1089
|
"jira:issue_created",
|
|
@@ -8972,16 +8971,6 @@ var MermaidArtifactV2Schema = BaseArtifactSchema.extend({
|
|
|
8972
8971
|
description: z28.string().optional()
|
|
8973
8972
|
})
|
|
8974
8973
|
});
|
|
8975
|
-
var PythonArtifactV2Schema = BaseArtifactSchema.extend({
|
|
8976
|
-
type: z28.literal("python"),
|
|
8977
|
-
content: z28.string(),
|
|
8978
|
-
metadata: EnhancedArtifactMetadataSchema.extend({
|
|
8979
|
-
packages: z28.array(z28.string()).default([]),
|
|
8980
|
-
hasOutput: z28.boolean().default(false),
|
|
8981
|
-
executionState: z28.enum(["idle", "running", "completed", "error"]).optional(),
|
|
8982
|
-
lastExecutionTime: z28.number().optional()
|
|
8983
|
-
})
|
|
8984
|
-
});
|
|
8985
8974
|
var ArtifactStatuses;
|
|
8986
8975
|
(function(ArtifactStatuses2) {
|
|
8987
8976
|
ArtifactStatuses2["DRAFT"] = "draft";
|
|
@@ -9005,9 +8994,6 @@ var validateSvgArtifactV2 = (data) => {
|
|
|
9005
8994
|
var validateMermaidArtifactV2 = (data) => {
|
|
9006
8995
|
return MermaidArtifactV2Schema.parse(data);
|
|
9007
8996
|
};
|
|
9008
|
-
var validatePythonArtifactV2 = (data) => {
|
|
9009
|
-
return PythonArtifactV2Schema.parse(data);
|
|
9010
|
-
};
|
|
9011
8997
|
|
|
9012
8998
|
// ../../b4m-core/packages/common/dist/src/schemas/questmaster.js
|
|
9013
8999
|
import { z as z29 } from "zod";
|
|
@@ -9377,7 +9363,6 @@ export {
|
|
|
9377
9363
|
MermaidArtifactSchema,
|
|
9378
9364
|
RechartsArtifactSchema,
|
|
9379
9365
|
LatticeArtifactSchema,
|
|
9380
|
-
PythonArtifactSchema,
|
|
9381
9366
|
MermaidChartMetadataSchema,
|
|
9382
9367
|
ChatHistoryItemWithArtifactsSchema,
|
|
9383
9368
|
ArtifactOperationSchema,
|
|
@@ -9448,6 +9433,7 @@ export {
|
|
|
9448
9433
|
isPlaceholderValue,
|
|
9449
9434
|
SecretAuditEvents,
|
|
9450
9435
|
WebhookDeliveryStatus,
|
|
9436
|
+
WebhookAuditStatus,
|
|
9451
9437
|
COMMON_JIRA_WEBHOOK_EVENTS,
|
|
9452
9438
|
JiraWebhookDeliveryStatus,
|
|
9453
9439
|
SupportedFabFileMimeTypes,
|
|
@@ -9718,14 +9704,12 @@ export {
|
|
|
9718
9704
|
HtmlArtifactV2Schema,
|
|
9719
9705
|
SvgArtifactV2Schema,
|
|
9720
9706
|
MermaidArtifactV2Schema,
|
|
9721
|
-
PythonArtifactV2Schema,
|
|
9722
9707
|
ArtifactStatuses,
|
|
9723
9708
|
validateBaseArtifact,
|
|
9724
9709
|
validateReactArtifactV2,
|
|
9725
9710
|
validateHtmlArtifactV2,
|
|
9726
9711
|
validateSvgArtifactV2,
|
|
9727
9712
|
validateMermaidArtifactV2,
|
|
9728
|
-
validatePythonArtifactV2,
|
|
9729
9713
|
QuestStatusSchema,
|
|
9730
9714
|
QuestSchema,
|
|
9731
9715
|
QuestResourceSchema,
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
import {
|
|
3
3
|
createFabFile,
|
|
4
4
|
createFabFileSchema
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-SAKSY6XZ.js";
|
|
6
|
+
import "./chunk-RI5ANER7.js";
|
|
7
|
+
import "./chunk-ZSETXZO7.js";
|
|
8
8
|
import "./chunk-OCYRD7D6.js";
|
|
9
9
|
export {
|
|
10
10
|
createFabFile,
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
getEffectiveApiKey,
|
|
6
6
|
getOpenWeatherKey,
|
|
7
7
|
getSerperKey
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-MOYWKG6Y.js";
|
|
9
9
|
import "./chunk-RUI6HNLO.js";
|
|
10
10
|
import {
|
|
11
11
|
ConfigStore,
|
|
@@ -15,8 +15,8 @@ import {
|
|
|
15
15
|
selectActiveBackgroundAgents,
|
|
16
16
|
useCliStore
|
|
17
17
|
} from "./chunk-BYXFQJYT.js";
|
|
18
|
-
import "./chunk-
|
|
19
|
-
import "./chunk-
|
|
18
|
+
import "./chunk-KSNX4KWW.js";
|
|
19
|
+
import "./chunk-SAKSY6XZ.js";
|
|
20
20
|
import {
|
|
21
21
|
BFLImageService,
|
|
22
22
|
BaseStorage,
|
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
OpenAIBackend,
|
|
29
29
|
OpenAIImageService,
|
|
30
30
|
XAIImageService
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-RI5ANER7.js";
|
|
32
32
|
import {
|
|
33
33
|
AiEvents,
|
|
34
34
|
ApiKeyEvents,
|
|
@@ -84,7 +84,7 @@ import {
|
|
|
84
84
|
XAI_IMAGE_MODELS,
|
|
85
85
|
b4mLLMTools,
|
|
86
86
|
getMcpProviderMetadata
|
|
87
|
-
} from "./chunk-
|
|
87
|
+
} from "./chunk-ZSETXZO7.js";
|
|
88
88
|
import {
|
|
89
89
|
Logger
|
|
90
90
|
} from "./chunk-OCYRD7D6.js";
|
|
@@ -14701,7 +14701,7 @@ import { isAxiosError as isAxiosError2 } from "axios";
|
|
|
14701
14701
|
// package.json
|
|
14702
14702
|
var package_default = {
|
|
14703
14703
|
name: "@bike4mind/cli",
|
|
14704
|
-
version: "0.2.31-feat-
|
|
14704
|
+
version: "0.2.31-feat-webhook-audit-logs.19317+751265fc2",
|
|
14705
14705
|
type: "module",
|
|
14706
14706
|
description: "Interactive CLI tool for Bike4Mind with ReAct agents",
|
|
14707
14707
|
license: "UNLICENSED",
|
|
@@ -14812,10 +14812,10 @@ var package_default = {
|
|
|
14812
14812
|
},
|
|
14813
14813
|
devDependencies: {
|
|
14814
14814
|
"@bike4mind/agents": "0.1.0",
|
|
14815
|
-
"@bike4mind/common": "2.52.1-feat-
|
|
14816
|
-
"@bike4mind/mcp": "1.31.1-feat-
|
|
14817
|
-
"@bike4mind/services": "2.50.1-feat-
|
|
14818
|
-
"@bike4mind/utils": "2.7.1-feat-
|
|
14815
|
+
"@bike4mind/common": "2.52.1-feat-webhook-audit-logs.19317+751265fc2",
|
|
14816
|
+
"@bike4mind/mcp": "1.31.1-feat-webhook-audit-logs.19317+751265fc2",
|
|
14817
|
+
"@bike4mind/services": "2.50.1-feat-webhook-audit-logs.19317+751265fc2",
|
|
14818
|
+
"@bike4mind/utils": "2.7.1-feat-webhook-audit-logs.19317+751265fc2",
|
|
14819
14819
|
"@types/better-sqlite3": "^7.6.13",
|
|
14820
14820
|
"@types/diff": "^5.0.9",
|
|
14821
14821
|
"@types/jsonwebtoken": "^9.0.4",
|
|
@@ -14836,7 +14836,7 @@ var package_default = {
|
|
|
14836
14836
|
optionalDependencies: {
|
|
14837
14837
|
"@vscode/ripgrep": "^1.17.0"
|
|
14838
14838
|
},
|
|
14839
|
-
gitHead: "
|
|
14839
|
+
gitHead: "751265fc24d0ea88176dc1e55b4e690aaa9ce3a5"
|
|
14840
14840
|
};
|
|
14841
14841
|
|
|
14842
14842
|
// src/agents/toolFilter.ts
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
import {
|
|
3
3
|
findMostSimilarMemento,
|
|
4
4
|
getRelevantMementos
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-MOYWKG6Y.js";
|
|
6
|
+
import "./chunk-RI5ANER7.js";
|
|
7
|
+
import "./chunk-ZSETXZO7.js";
|
|
8
8
|
import "./chunk-OCYRD7D6.js";
|
|
9
9
|
export {
|
|
10
10
|
findMostSimilarMemento,
|
|
@@ -134,12 +134,12 @@ import {
|
|
|
134
134
|
validateMermaidSyntax,
|
|
135
135
|
warmUpSettingsCache,
|
|
136
136
|
withRetry
|
|
137
|
-
} from "./chunk-
|
|
137
|
+
} from "./chunk-RI5ANER7.js";
|
|
138
138
|
import {
|
|
139
139
|
buildRateLimitLogEntry,
|
|
140
140
|
isNearLimit,
|
|
141
141
|
parseRateLimitHeaders
|
|
142
|
-
} from "./chunk-
|
|
142
|
+
} from "./chunk-ZSETXZO7.js";
|
|
143
143
|
import {
|
|
144
144
|
Logger,
|
|
145
145
|
NotificationDeduplicator,
|
|
@@ -221,8 +221,6 @@ import {
|
|
|
221
221
|
ProjectEvents,
|
|
222
222
|
PromptMetaZodSchema,
|
|
223
223
|
PurchaseTransaction,
|
|
224
|
-
PythonArtifactSchema,
|
|
225
|
-
PythonArtifactV2Schema,
|
|
226
224
|
QueryComplexity,
|
|
227
225
|
QueryFilters,
|
|
228
226
|
QueryPaginate,
|
|
@@ -315,6 +313,7 @@ import {
|
|
|
315
313
|
WEBSITE_URL,
|
|
316
314
|
WHATS_NEW_VALIDATION_LIMITS,
|
|
317
315
|
WebhookApi,
|
|
316
|
+
WebhookAuditStatus,
|
|
318
317
|
WebhookDeliveryStatus,
|
|
319
318
|
WhatsNewConfigSchema,
|
|
320
319
|
WhatsNewSyncConfigSchema,
|
|
@@ -431,13 +430,12 @@ import {
|
|
|
431
430
|
validateMermaidArtifactV2,
|
|
432
431
|
validatePassword,
|
|
433
432
|
validatePasswordServer,
|
|
434
|
-
validatePythonArtifactV2,
|
|
435
433
|
validateQuest,
|
|
436
434
|
validateQuestMasterArtifactV2,
|
|
437
435
|
validateReactArtifactV2,
|
|
438
436
|
validateSvgArtifactV2,
|
|
439
437
|
wikiMarkupToAdf
|
|
440
|
-
} from "./chunk-
|
|
438
|
+
} from "./chunk-ZSETXZO7.js";
|
|
441
439
|
export {
|
|
442
440
|
ALL_IMAGE_MODELS,
|
|
443
441
|
ALL_IMAGE_SIZES,
|
|
@@ -661,8 +659,6 @@ export {
|
|
|
661
659
|
ProjectEvents,
|
|
662
660
|
PromptMetaZodSchema,
|
|
663
661
|
PurchaseTransaction,
|
|
664
|
-
PythonArtifactSchema,
|
|
665
|
-
PythonArtifactV2Schema,
|
|
666
662
|
QueryComplexity,
|
|
667
663
|
QueryFilters,
|
|
668
664
|
QueryPaginate,
|
|
@@ -755,6 +751,7 @@ export {
|
|
|
755
751
|
WEBSITE_URL,
|
|
756
752
|
WHATS_NEW_VALIDATION_LIMITS,
|
|
757
753
|
WebhookApi,
|
|
754
|
+
WebhookAuditStatus,
|
|
758
755
|
WebhookDeliveryStatus,
|
|
759
756
|
WhatsNewConfigSchema,
|
|
760
757
|
WhatsNewSyncConfigSchema,
|
|
@@ -872,7 +869,6 @@ export {
|
|
|
872
869
|
validateMermaidArtifactV2,
|
|
873
870
|
validatePassword,
|
|
874
871
|
validatePasswordServer,
|
|
875
|
-
validatePythonArtifactV2,
|
|
876
872
|
validateQuest,
|
|
877
873
|
validateQuestMasterArtifactV2,
|
|
878
874
|
validateReactArtifactV2,
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
import {
|
|
3
3
|
SubtractCreditsSchema,
|
|
4
4
|
subtractCredits
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-KSNX4KWW.js";
|
|
6
|
+
import "./chunk-RI5ANER7.js";
|
|
7
|
+
import "./chunk-ZSETXZO7.js";
|
|
8
8
|
import "./chunk-OCYRD7D6.js";
|
|
9
9
|
export {
|
|
10
10
|
SubtractCreditsSchema,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bike4mind/cli",
|
|
3
|
-
"version": "0.2.31-feat-
|
|
3
|
+
"version": "0.2.31-feat-webhook-audit-logs.19317+751265fc2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Interactive CLI tool for Bike4Mind with ReAct agents",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -111,10 +111,10 @@
|
|
|
111
111
|
},
|
|
112
112
|
"devDependencies": {
|
|
113
113
|
"@bike4mind/agents": "0.1.0",
|
|
114
|
-
"@bike4mind/common": "2.52.1-feat-
|
|
115
|
-
"@bike4mind/mcp": "1.31.1-feat-
|
|
116
|
-
"@bike4mind/services": "2.50.1-feat-
|
|
117
|
-
"@bike4mind/utils": "2.7.1-feat-
|
|
114
|
+
"@bike4mind/common": "2.52.1-feat-webhook-audit-logs.19317+751265fc2",
|
|
115
|
+
"@bike4mind/mcp": "1.31.1-feat-webhook-audit-logs.19317+751265fc2",
|
|
116
|
+
"@bike4mind/services": "2.50.1-feat-webhook-audit-logs.19317+751265fc2",
|
|
117
|
+
"@bike4mind/utils": "2.7.1-feat-webhook-audit-logs.19317+751265fc2",
|
|
118
118
|
"@types/better-sqlite3": "^7.6.13",
|
|
119
119
|
"@types/diff": "^5.0.9",
|
|
120
120
|
"@types/jsonwebtoken": "^9.0.4",
|
|
@@ -135,5 +135,5 @@
|
|
|
135
135
|
"optionalDependencies": {
|
|
136
136
|
"@vscode/ripgrep": "^1.17.0"
|
|
137
137
|
},
|
|
138
|
-
"gitHead": "
|
|
138
|
+
"gitHead": "751265fc24d0ea88176dc1e55b4e690aaa9ce3a5"
|
|
139
139
|
}
|