@paradigma-inc/flywheel 0.1.90 → 0.1.93

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": "@paradigma-inc/flywheel",
3
- "version": "0.1.90",
3
+ "version": "0.1.93",
4
4
  "description": "One-command setup for Flywheel MCP hosts",
5
5
  "type": "module",
6
6
  "files": [
@@ -167,11 +167,18 @@ Managed compute providers are enabled by backend environment variables. For Nebi
167
167
  - `NEBIUS_SERVICE_ACCOUNT_PRIVATE_KEY_PEM`
168
168
  - `NEBIUS_PARENT_ID`
169
169
  - `NEBIUS_SUBNET_ID`
170
- - one of `NEBIUS_BOOT_IMAGE_ID` or `NEBIUS_BOOT_IMAGE_FAMILY`
171
- - optional: `NEBIUS_BOOT_IMAGE_FAMILY_PARENT_ID`, `NEBIUS_SECURITY_GROUP_IDS`
170
+ - optional: `NEBIUS_SECURITY_GROUP_IDS`
172
171
 
173
172
  Deploy preflight treats Nebius as a valid standalone provider bundle when all required Nebius keys are present.
174
173
 
175
- NEBIUS_BOOT_IMAGE_FAMILY_PARENT_ID and NEBIUS_SECURITY_GROUP_IDS are optional runtime defaults and are not validated by deploy preflight.
174
+ Nebius image selection should use `NEBIUS_BOOT_IMAGE_FAMILY` for managed public
175
+ images. Flywheel backend deployments commit that runtime config alongside the
176
+ app configuration. `NEBIUS_BOOT_IMAGE_ID` is only for deliberate fixed-image
177
+ pins when no image family is configured. `NEBIUS_BOOT_IMAGE_FAMILY_PARENT_ID`
178
+ defaults to the Nebius public image project and only needs to be set for
179
+ private/custom image families.
180
+
181
+ `NEBIUS_SECURITY_GROUP_IDS` is an optional runtime default and is not validated
182
+ by deploy preflight.
176
183
 
177
184
  These secrets must be injected via your deployment secret manager (for Fly.io backend apps, use `flyctl secrets set`). Do not commit provider secrets in repository files.
@@ -1,10 +1,13 @@
1
- export declare const PRODUCT_TELEMETRY_CONTRACT_VERSION: "2026-05-07.1";
2
- export declare const PRODUCT_TELEMETRY_EVENT_NAMES: readonly ["credits_checkout_started", "message_sent", "node_created", "node_link_disabled", "node_link_enabled", "node_public_disabled", "node_public_enabled", "subscription_checkout_started", "user_session_started", "web_app_opened", "web_artifact_payload_batch", "web_settings_opened"];
1
+ export declare const PRODUCT_TELEMETRY_CONTRACT_VERSION: "2026-05-09.1";
2
+ export declare const PRODUCT_TELEMETRY_EVENT_NAMES: readonly ["api_client_operation_recorded", "api_route_behavior_recorded", "cli_command_behavior_recorded", "credits_checkout_started", "mcp_tool_behavior_recorded", "message_sent", "node_created", "node_link_disabled", "node_link_enabled", "node_public_disabled", "node_public_enabled", "product_demand_signal_recorded", "server_workflow_behavior_recorded", "subscription_checkout_started", "user_session_started", "web_app_opened", "web_artifact_payload_batch", "web_artifact_payload_failed", "web_artifact_payload_loaded", "web_artifact_payload_retried", "web_artifact_section_opened", "web_artifact_unrenderable_seen", "web_asset_deleted", "web_asset_note_saved", "web_asset_operation_failed", "web_asset_panel_opened", "web_asset_uploaded", "web_collaboration_action_completed", "web_collaboration_action_failed", "web_graph_layout_changed", "web_graph_load_failed", "web_graph_loaded", "web_graph_mutation_completed", "web_graph_mutation_failed", "web_graph_mutation_started", "web_graph_node_focused", "web_graph_opened", "web_graph_partial_notice_shown", "web_graph_search_changed", "web_graph_search_empty", "web_node_closed", "web_node_edit_cancelled", "web_node_edit_failed", "web_node_edit_saved", "web_node_edit_started", "web_node_hydration_completed", "web_node_hydration_failed", "web_node_lease_acquired", "web_node_lease_failed", "web_node_lease_heartbeat_failed", "web_node_lease_released", "web_node_opened", "web_node_stage_committed", "web_node_stage_created", "web_node_stage_discarded", "web_node_stage_failed", "web_node_stage_rebased", "web_settings_opened", "web_temp_node_commit_completed", "web_temp_node_commit_failed"];
3
3
  export type ProductTelemetryEventName = (typeof PRODUCT_TELEMETRY_EVENT_NAMES)[number];
4
4
  export declare const PRODUCT_TELEMETRY_SURFACES: readonly ["api", "api_client", "cli", "mcp", "server", "webui"];
5
5
  export type ProductTelemetrySurface = (typeof PRODUCT_TELEMETRY_SURFACES)[number];
6
- export declare const WEBUI_PRODUCT_TELEMETRY_EVENT_NAMES: readonly ["web_app_opened", "web_artifact_payload_batch", "web_settings_opened"];
6
+ export declare const WEBUI_PRODUCT_TELEMETRY_EVENT_NAMES: readonly ["web_app_opened", "web_artifact_payload_batch", "web_artifact_payload_failed", "web_artifact_payload_loaded", "web_artifact_payload_retried", "web_artifact_section_opened", "web_artifact_unrenderable_seen", "web_asset_deleted", "web_asset_note_saved", "web_asset_operation_failed", "web_asset_panel_opened", "web_asset_uploaded", "web_collaboration_action_completed", "web_collaboration_action_failed", "web_graph_layout_changed", "web_graph_load_failed", "web_graph_loaded", "web_graph_mutation_completed", "web_graph_mutation_failed", "web_graph_mutation_started", "web_graph_node_focused", "web_graph_opened", "web_graph_partial_notice_shown", "web_graph_search_changed", "web_graph_search_empty", "web_node_closed", "web_node_edit_cancelled", "web_node_edit_failed", "web_node_edit_saved", "web_node_edit_started", "web_node_hydration_completed", "web_node_hydration_failed", "web_node_lease_acquired", "web_node_lease_failed", "web_node_lease_heartbeat_failed", "web_node_lease_released", "web_node_opened", "web_node_stage_committed", "web_node_stage_created", "web_node_stage_discarded", "web_node_stage_failed", "web_node_stage_rebased", "web_settings_opened", "web_temp_node_commit_completed", "web_temp_node_commit_failed"];
7
7
  export type WebuiProductTelemetryEventName = (typeof WEBUI_PRODUCT_TELEMETRY_EVENT_NAMES)[number];
8
8
  export declare const WEBUI_NODE_WORKFLOW_FAMILIES: readonly ["artifacts", "assets", "bulk_graph_actions", "canvas", "commit", "context_menu", "graph_layout", "hooks", "lease", "minimap", "node_focus", "node_hydration", "node_open", "node_selection", "node_view_editing", "partial_graph_preview", "radial_view", "share_policy", "staged_edit", "tags", "timeline_layout"];
9
9
  export type WebuiNodeWorkflowFamily = (typeof WEBUI_NODE_WORKFLOW_FAMILIES)[number];
10
+ export declare const PRODUCT_TELEMETRY_SCALING_FIELDS: readonly ["access_mode", "active_frontier_size_bucket", "admission_outcome", "api_version", "artifact_count_bucket", "artifact_payload_size_bucket", "auth_mode", "backend_latency_bucket", "blob_pressure_outcome", "blob_size_bucket", "conflict_state", "db_row_volume_reason", "db_row_volume_severity", "edge_count_bucket", "frontend_render_duration_bucket", "graph_node_count_bucket", "hidden_node_count_bucket", "hydration_duration_bucket", "layout_mode", "max_node_count_bucket", "partial_graph_status", "projection_shape", "rate_limit_outcome", "renderer_mode", "request_page_shape", "request_shape", "retry_state", "share_mode", "staged_change_state", "status_class", "viewport_class", "visibility_mode", "visible_node_count_bucket"];
11
+ export type ProductTelemetryScalingField = (typeof PRODUCT_TELEMETRY_SCALING_FIELDS)[number];
12
+ export declare const PRODUCT_TELEMETRY_ENUM_VALUES: Record<string, readonly string[]>;
10
13
  export declare const PRODUCT_TELEMETRY_METADATA_SCHEMAS: Record<string, unknown>;