@aiready/visualizer 0.6.14 → 0.6.18
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiready/visualizer",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.18",
|
|
4
4
|
"description": "Interactive graph visualization for AIReady analysis results",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"react": "19.2.4",
|
|
50
50
|
"react-dom": "19.2.4",
|
|
51
51
|
"regenerator-runtime": "^0.14.1",
|
|
52
|
-
"@aiready/core": "0.23.
|
|
52
|
+
"@aiready/core": "0.23.19"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@tailwindcss/vite": "^4.1.18",
|
|
@@ -24895,7 +24895,67 @@ function superRefine(fn) {
|
|
|
24895
24895
|
return /* @__PURE__ */ _superRefine(fn);
|
|
24896
24896
|
}
|
|
24897
24897
|
//#endregion
|
|
24898
|
-
//#region ../../core/dist/chunk-
|
|
24898
|
+
//#region ../../core/dist/chunk-RMH2TPAT.mjs
|
|
24899
|
+
var LeadSource = /* @__PURE__ */ ((LeadSource2) => {
|
|
24900
|
+
LeadSource2["ClawMoreHero"] = "clawmore-hero";
|
|
24901
|
+
LeadSource2["ClawMoreWaitlist"] = "clawmore-waitlist";
|
|
24902
|
+
LeadSource2["ClawMoreBeta"] = "clawmore-beta";
|
|
24903
|
+
LeadSource2["AiReadyPlatform"] = "aiready-platform";
|
|
24904
|
+
return LeadSource2;
|
|
24905
|
+
})(LeadSource || {});
|
|
24906
|
+
var LeadSourceSchema = nativeEnum(LeadSource);
|
|
24907
|
+
object({
|
|
24908
|
+
id: string(),
|
|
24909
|
+
email: string().email(),
|
|
24910
|
+
name: string().min(1),
|
|
24911
|
+
interest: string().default("General"),
|
|
24912
|
+
notes: string().optional(),
|
|
24913
|
+
timestamp: string().datetime(),
|
|
24914
|
+
source: LeadSourceSchema,
|
|
24915
|
+
status: _enum([
|
|
24916
|
+
"new",
|
|
24917
|
+
"contacted",
|
|
24918
|
+
"qualified",
|
|
24919
|
+
"converted",
|
|
24920
|
+
"archived"
|
|
24921
|
+
]).default("new")
|
|
24922
|
+
}).omit({
|
|
24923
|
+
id: true,
|
|
24924
|
+
timestamp: true,
|
|
24925
|
+
status: true
|
|
24926
|
+
});
|
|
24927
|
+
object({
|
|
24928
|
+
id: string(),
|
|
24929
|
+
accountId: string(),
|
|
24930
|
+
userId: string(),
|
|
24931
|
+
stripeSubscriptionId: string(),
|
|
24932
|
+
tokenStrategy: _enum(["managed", "byok"]).default("managed"),
|
|
24933
|
+
byokConfig: object({
|
|
24934
|
+
openaiKey: string().optional(),
|
|
24935
|
+
anthropicKey: string().optional(),
|
|
24936
|
+
openrouterKey: string().optional()
|
|
24937
|
+
}).optional(),
|
|
24938
|
+
baseFeeCents: number().default(2900),
|
|
24939
|
+
includedComputeCents: number().default(1500),
|
|
24940
|
+
includedTokenCents: number().default(500),
|
|
24941
|
+
prepaidTokenBalanceCents: number().default(0),
|
|
24942
|
+
currentMonthlyTokenSpendCents: number().default(0),
|
|
24943
|
+
status: _enum([
|
|
24944
|
+
"provisioning",
|
|
24945
|
+
"active",
|
|
24946
|
+
"warning",
|
|
24947
|
+
"quarantined",
|
|
24948
|
+
"suspended"
|
|
24949
|
+
]).default("provisioning"),
|
|
24950
|
+
lastCostSyncAt: string().datetime().optional(),
|
|
24951
|
+
region: string().default("ap-southeast-2"),
|
|
24952
|
+
alertThresholds: array$1(number()).default([
|
|
24953
|
+
50,
|
|
24954
|
+
80,
|
|
24955
|
+
100,
|
|
24956
|
+
150
|
|
24957
|
+
])
|
|
24958
|
+
});
|
|
24899
24959
|
var Severity = /* @__PURE__ */ ((Severity2) => {
|
|
24900
24960
|
Severity2["Critical"] = "critical";
|
|
24901
24961
|
Severity2["Major"] = "major";
|
|
@@ -25069,66 +25129,6 @@ object({
|
|
|
25069
25129
|
}).optional()
|
|
25070
25130
|
}).optional()
|
|
25071
25131
|
}).catchall(any());
|
|
25072
|
-
var LeadSource = /* @__PURE__ */ ((LeadSource2) => {
|
|
25073
|
-
LeadSource2["ClawMoreHero"] = "clawmore-hero";
|
|
25074
|
-
LeadSource2["ClawMoreWaitlist"] = "clawmore-waitlist";
|
|
25075
|
-
LeadSource2["ClawMoreBeta"] = "clawmore-beta";
|
|
25076
|
-
LeadSource2["AiReadyPlatform"] = "aiready-platform";
|
|
25077
|
-
return LeadSource2;
|
|
25078
|
-
})(LeadSource || {});
|
|
25079
|
-
var LeadSourceSchema = nativeEnum(LeadSource);
|
|
25080
|
-
object({
|
|
25081
|
-
id: string(),
|
|
25082
|
-
email: string().email(),
|
|
25083
|
-
name: string().min(1),
|
|
25084
|
-
interest: string().default("General"),
|
|
25085
|
-
notes: string().optional(),
|
|
25086
|
-
timestamp: string().datetime(),
|
|
25087
|
-
source: LeadSourceSchema,
|
|
25088
|
-
status: _enum([
|
|
25089
|
-
"new",
|
|
25090
|
-
"contacted",
|
|
25091
|
-
"qualified",
|
|
25092
|
-
"converted",
|
|
25093
|
-
"archived"
|
|
25094
|
-
]).default("new")
|
|
25095
|
-
}).omit({
|
|
25096
|
-
id: true,
|
|
25097
|
-
timestamp: true,
|
|
25098
|
-
status: true
|
|
25099
|
-
});
|
|
25100
|
-
object({
|
|
25101
|
-
id: string(),
|
|
25102
|
-
accountId: string(),
|
|
25103
|
-
userId: string(),
|
|
25104
|
-
stripeSubscriptionId: string(),
|
|
25105
|
-
tokenStrategy: _enum(["managed", "byok"]).default("managed"),
|
|
25106
|
-
byokConfig: object({
|
|
25107
|
-
openaiKey: string().optional(),
|
|
25108
|
-
anthropicKey: string().optional(),
|
|
25109
|
-
openrouterKey: string().optional()
|
|
25110
|
-
}).optional(),
|
|
25111
|
-
baseFeeCents: number().default(2900),
|
|
25112
|
-
includedComputeCents: number().default(1500),
|
|
25113
|
-
includedTokenCents: number().default(500),
|
|
25114
|
-
prepaidTokenBalanceCents: number().default(0),
|
|
25115
|
-
currentMonthlyTokenSpendCents: number().default(0),
|
|
25116
|
-
status: _enum([
|
|
25117
|
-
"provisioning",
|
|
25118
|
-
"active",
|
|
25119
|
-
"warning",
|
|
25120
|
-
"quarantined",
|
|
25121
|
-
"suspended"
|
|
25122
|
-
]).default("provisioning"),
|
|
25123
|
-
lastCostSyncAt: string().datetime().optional(),
|
|
25124
|
-
region: string().default("ap-southeast-2"),
|
|
25125
|
-
alertThresholds: array$1(number()).default([
|
|
25126
|
-
50,
|
|
25127
|
-
80,
|
|
25128
|
-
100,
|
|
25129
|
-
150
|
|
25130
|
-
])
|
|
25131
|
-
});
|
|
25132
25132
|
//#endregion
|
|
25133
25133
|
//#region ../../../node_modules/.pnpm/d3-dispatch@3.0.1/node_modules/d3-dispatch/src/dispatch.js
|
|
25134
25134
|
var noop = { value: () => {} };
|
|
@@ -29286,4 +29286,4 @@ function App() {
|
|
|
29286
29286
|
(0, import_client.createRoot)(document.getElementById("root")).render(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react.StrictMode, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(App, {}) }));
|
|
29287
29287
|
//#endregion
|
|
29288
29288
|
|
|
29289
|
-
//# sourceMappingURL=index-
|
|
29289
|
+
//# sourceMappingURL=index-ZdEvYTav.js.map
|