diff --git a/docs/internal/events.md b/docs/internal/events.md index 2920159e0..dfc7403b4 100644 --- a/docs/internal/events.md +++ b/docs/internal/events.md @@ -77,7 +77,7 @@ Emitted when the run record is created. | `source_directory` | string? | Submitter-side source directory | | `workflow_slug` | string? | Workflow slug | | `provenance` | object | Actor and request provenance | -| `manifest_blob` | string? | Blob id for the submitted manifest | +| `manifest_blob` | string? | Blob hash for the submitted manifest | | `git` | object? | Git provenance observed before the run: normalized `origin_url`, `branch`, optional `sha`, and `dirty` status | | `fork_source_ref` | object? | Source run/checkpoint reference when this run was forked | | `in_place` | boolean | Whether the run was created with `--in-place` (no git checkpoints) | diff --git a/docs/public/agents/outputs.mdx b/docs/public/agents/outputs.mdx index b36259b25..004c4f0e8 100644 --- a/docs/public/agents/outputs.mdx +++ b/docs/public/agents/outputs.mdx @@ -219,10 +219,10 @@ When Fabro builds a [preamble](/execution/context#preamble-construction) for a d - **plan**: success - Model: claude-sonnet-4-5, 12.4k tokens in / 3.2k out - Files: src/main.rs, tests/api_test.rs - - Response: See: /path/to/runtime/blobs/.json + - Response: See: /path/to/runtime/blobs/.json - **test**: success - Script: `cargo test 2>&1 || true` - - Stdout: See: /path/to/runtime/blobs/.json + - Stdout: See: /path/to/runtime/blobs/.json ``` This keeps preambles concise while still giving agents a path to read the full output if needed. @@ -237,7 +237,7 @@ Captured stage artifacts such as screenshots, videos, reports, and traces still For remote sandboxes (Docker, Daytona), execution-time file access happens inside the sandbox filesystem. -- Blob refs are materialized into `{working_directory}/.fabro/blobs/{blob_id}.json` +- Blob refs are materialized into `{working_directory}/.fabro/blobs/{blob_hash}.json` - Explicit non-blob `file://` refs keep the existing copy-on-demand behavior and are copied into `{working_directory}/.fabro/artifacts/{filename}` when needed In both cases, downstream handlers and agents continue to consume ordinary `file://` pointers during execution. diff --git a/docs/public/api-reference/fabro-api.yaml b/docs/public/api-reference/fabro-api.yaml index 274282e72..8d1c8fa14 100644 --- a/docs/public/api-reference/fabro-api.yaml +++ b/docs/public/api-reference/fabro-api.yaml @@ -1,7 +1,7 @@ openapi: "3.1.0" info: title: Fabro Run API - version: "0.1.0" + version: "0.2.0" description: HTTP API for managing Fabro workflow run executions. tags: @@ -3092,7 +3092,7 @@ paths: operationId: writeRunBlob tags: [Run Internals] summary: Write Run Blob - description: Writes an opaque binary blob and returns its content-addressed blob identifier. + description: Writes an opaque binary blob and returns its content-addressed blob hash. parameters: - $ref: "#/components/parameters/RunId" requestBody: @@ -3137,15 +3137,15 @@ paths: schema: $ref: "#/components/schemas/ErrorResponse" - /api/v1/runs/{id}/blobs/{blobId}: + /api/v1/runs/{id}/blobs/{blobHash}: get: operationId: readRunBlob tags: [Run Internals] summary: Read Run Blob - description: Reads a previously stored blob by identifier. + description: Reads a previously stored blob by hash. parameters: - $ref: "#/components/parameters/RunId" - - $ref: "#/components/parameters/BlobId" + - $ref: "#/components/parameters/BlobHash" responses: "200": description: Blob contents @@ -5974,14 +5974,13 @@ components: default: 65536 example: 65536 - BlobId: - name: blobId + BlobHash: + name: blobHash in: path required: true - description: Content-addressed blob identifier. + description: Content-addressed blob hash. schema: - type: string - pattern: '^[0-9a-f]{64}$' + $ref: "#/components/schemas/BlobHash" example: 2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824 ArtifactFilename: @@ -9152,9 +9151,11 @@ components: example: graphs/main.fabro WorkflowVersionId: - description: SHA-256 identity of validated canonical workflow-version bytes. + description: >- + SHA-256 identity of validated canonical workflow-version bytes. Hex input is + case-insensitive; Fabro emits the canonical lowercase form. type: string - pattern: "^[0-9a-f]{64}$" + pattern: "^[0-9A-Fa-f]{64}$" example: "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef" WorkflowVersion: @@ -10283,16 +10284,22 @@ components: description: Assigned event sequence number. example: 42 + BlobHash: + description: >- + Content-addressed SHA-256 hash of a stored blob. Hex input is case-insensitive; + Fabro emits the canonical lowercase form. + type: string + pattern: "^[0-9A-Fa-f]{64}$" + example: 2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824 + WriteBlobResponse: - description: Content-addressed identifier for a stored blob. + description: Content-addressed hash of a stored blob. type: object required: - - id + - hash properties: - id: - type: string - description: Blob identifier. - example: 550e8400-e29b-41d4-a716-446655440000 + hash: + $ref: "#/components/schemas/BlobHash" CommandTermination: description: Terminal state for a command execution. @@ -10401,7 +10408,7 @@ components: example: src/lib.rs sha256: type: ["string", "null"] - description: Optional lowercase hex SHA-256 checksum for the file contents. + description: Optional SHA-256 checksum for the file contents; hex input is case-insensitive. example: 3f785df4c5b7d3f1f4c1f0ecb0f55f1d9f6f6a3d9f0a8a98f7a74f29d1f81a2c expected_bytes: type: ["integer", "null"] diff --git a/docs/public/execution/context.mdx b/docs/public/execution/context.mdx index 2ef5b0bbb..19f9c1d2c 100644 --- a/docs/public/execution/context.mdx +++ b/docs/public/execution/context.mdx @@ -243,8 +243,8 @@ Checkpoints and checkpoint-completed events persist these `blob://` refs, not ho Before Fabro builds a preamble or starts the next stage, it resolves any blob refs into execution-local files so handlers and agents still see normal `file://` references: -- Local execution materializes blobs under `{run_dir}/runtime/blobs/{blob_id}.json` -- Remote sandboxes materialize blobs under `{working_directory}/.fabro/blobs/{blob_id}.json` +- Local execution materializes blobs under `{run_dir}/runtime/blobs/{blob_hash}.json` +- Remote sandboxes materialize blobs under `{working_directory}/.fabro/blobs/{blob_hash}.json` These materialized `file://` paths are runtime-only. They are not written back into durable context snapshots. diff --git a/lib/apps/fabro-cli/src/commands/dump.rs b/lib/apps/fabro-cli/src/commands/dump.rs index b3938e12a..9c0454da8 100644 --- a/lib/apps/fabro-cli/src/commands/dump.rs +++ b/lib/apps/fabro-cli/src/commands/dump.rs @@ -86,8 +86,8 @@ async fn write_run_dump( dump.add_file_bytes("run.log", log); } - dump.hydrate_referenced_blobs_with_reader(|blob_id| { - Box::pin(async move { client.read_run_blob(run_id, &blob_id).await }) + dump.hydrate_referenced_blobs_with_reader(|blob_hash| { + Box::pin(async move { client.read_run_blob(run_id, &blob_hash).await }) }) .await?; diff --git a/lib/apps/fabro-cli/src/commands/run/output.rs b/lib/apps/fabro-cli/src/commands/run/output.rs index 0e5ba2d42..9de4a3158 100644 --- a/lib/apps/fabro-cli/src/commands/run/output.rs +++ b/lib/apps/fabro-cli/src/commands/run/output.rs @@ -5,7 +5,7 @@ use anyhow::{Context as _, Result}; use cli_table::format::{Border, Justify, Separator}; use cli_table::{Cell, CellStruct, Style, Table}; use fabro_api::types; -use fabro_types::{BlobHash, PullRequestLink, RunId, StageId, parse_blob_ref}; +use fabro_types::{PullRequestLink, RunId, StageId, parse_blob_ref}; use fabro_util::check_report::{CheckDetail, CheckReport, CheckResult, CheckSection, CheckStatus}; use fabro_util::error::render_with_causes; use fabro_util::printer::Printer; @@ -325,11 +325,11 @@ async fn resolve_response_string( run_id: &RunId, response: &str, ) -> Result> { - let Some(blob_id) = blob_id_from_response(response) else { + let Some(blob_hash) = parse_blob_ref(response) else { return Ok(Some(response.to_string())); }; - let Some(bytes) = client.read_run_blob(run_id, &blob_id).await? else { + let Some(bytes) = client.read_run_blob(run_id, &blob_hash).await? else { return Ok(None); }; let value: serde_json::Value = @@ -341,10 +341,6 @@ async fn resolve_response_string( })) } -fn blob_id_from_response(response: &str) -> Option { - parse_blob_ref(response) -} - async fn list_artifact_display_entries_with_client( client: &server_client::Client, run_id: &RunId, diff --git a/lib/apps/fabro-cli/src/commands/run/runner.rs b/lib/apps/fabro-cli/src/commands/run/runner.rs index 446888e7e..713838555 100644 --- a/lib/apps/fabro-cli/src/commands/run/runner.rs +++ b/lib/apps/fabro-cli/src/commands/run/runner.rs @@ -1018,12 +1018,12 @@ impl RunStoreBackend for HttpRunStore { .await } - async fn read_blob(&self, id: &BlobHash) -> Result> { + async fn read_blob(&self, blob_hash: &BlobHash) -> Result> { self.with_retries("read run blob", || { let client = self.client.clone_for_reuse(); let run_id = self.run_id; - let blob_id = *id; - async move { client.read_run_blob(&run_id, &blob_id).await } + let blob_hash = *blob_hash; + async move { client.read_run_blob(&run_id, &blob_hash).await } }) .await } diff --git a/lib/apps/fabro-cli/tests/it/cmd/attach.rs b/lib/apps/fabro-cli/tests/it/cmd/attach.rs index 813bf7424..15709012d 100644 --- a/lib/apps/fabro-cli/tests/it/cmd/attach.rs +++ b/lib/apps/fabro-cli/tests/it/cmd/attach.rs @@ -66,20 +66,8 @@ fn format_output_snapshot(output: &Output, filters: &[(String, String)]) -> Stri } fn normalize_attach_json_progress_event(mut event: Value) -> Value { - if let Some(properties) = event.get_mut("properties").and_then(Value::as_object_mut) { - if properties.contains_key("manifest_blob") { - properties.insert( - "manifest_blob".to_string(), - Value::String("[BLOB_ID]".to_string()), - ); - } - if properties.contains_key("definition_blob") { - properties.insert( - "definition_blob".to_string(), - Value::String("[BLOB_ID]".to_string()), - ); - } - } + // manifest_blob/definition_blob hashes are already rewritten to + // [BLOB_HASH] by the shared json_snapshot_filters regexes. // Strip v2-shape server/version fields that the bridge emits, // since the test fixture's socket path is randomised per run. if let Some(settings) = event @@ -896,7 +884,7 @@ fn attach_json_errors_without_prompting_for_human_input() { } } }, - "manifest_blob": "[BLOB_ID]", + "manifest_blob": "[BLOB_HASH]", "provenance": { "client": { "name": "fabro-cli", @@ -1036,7 +1024,7 @@ fn attach_json_errors_without_prompting_for_human_input() { "event": "run.submitted", "id": "[EVENT_ID]", "properties": { - "definition_blob": "[BLOB_ID]" + "definition_blob": "[BLOB_HASH]" }, "run_id": "[ULID]", "ts": "[TIMESTAMP]" diff --git a/lib/apps/fabro-server/src/principal_middleware.rs b/lib/apps/fabro-server/src/principal_middleware.rs index 2db165547..3d9bb0542 100644 --- a/lib/apps/fabro-server/src/principal_middleware.rs +++ b/lib/apps/fabro-server/src/principal_middleware.rs @@ -14,7 +14,7 @@ use strum::IntoStaticStr; use crate::auth::{AuthErrorCode, JwtError, REFRESH_TOKEN_PREFIX}; use crate::error::ApiError; use crate::jwt_auth::{self, AuthMode, ConfiguredAuth}; -use crate::server::{AppState, parse_blob_id_path, parse_run_id_path, parse_stage_id_path}; +use crate::server::{AppState, parse_blob_hash_path, parse_run_id_path, parse_stage_id_path}; use crate::worker_token::{self, WORKER_TOKEN_KID, WorkerScopeSet}; #[derive(Clone, Debug)] @@ -295,14 +295,14 @@ impl FromRequestParts> for RequireRunBlob { parts: &mut Parts, state: &Arc, ) -> Result { - let Path((id, blob_id)): Path<(String, String)> = Path::from_request_parts(parts, state) + let Path((id, blob_hash)): Path<(String, String)> = Path::from_request_parts(parts, state) .await .map_err(IntoResponse::into_response)?; let run_id = parse_run_id_path(&id)?; - let blob_id = parse_blob_id_path(&blob_id)?; + let blob_hash = parse_blob_hash_path(&blob_hash)?; require_worker_or_user_for_run(&auth_slot_from_parts(parts), &run_id) .map_err(IntoResponse::into_response)?; - Ok(Self(run_id, blob_id)) + Ok(Self(run_id, blob_hash)) } } diff --git a/lib/apps/fabro-server/src/server.rs b/lib/apps/fabro-server/src/server.rs index fa8af18c8..67ae1f32f 100644 --- a/lib/apps/fabro-server/src/server.rs +++ b/lib/apps/fabro-server/src/server.rs @@ -2889,11 +2889,11 @@ pub(crate) fn parse_stage_id_path(stage_id: &str) -> Result { #[allow( clippy::result_large_err, - reason = "Blob ID parsing returns HTTP 400 responses directly." + reason = "Blob hash parsing returns HTTP 400 responses directly." )] -pub(crate) fn parse_blob_id_path(blob_id: &str) -> Result { - BlobHash::from_str(blob_id) - .map_err(|_| ApiError::bad_request("Invalid blob ID.").into_response()) +pub(crate) fn parse_blob_hash_path(blob_hash: &str) -> Result { + BlobHash::from_str(blob_hash) + .map_err(|_| ApiError::bad_request("Invalid blob hash.").into_response()) } #[allow( diff --git a/lib/apps/fabro-server/src/server/handler/artifacts.rs b/lib/apps/fabro-server/src/server/handler/artifacts.rs index f426a0007..f0f2b6064 100644 --- a/lib/apps/fabro-server/src/server/handler/artifacts.rs +++ b/lib/apps/fabro-server/src/server/handler/artifacts.rs @@ -32,7 +32,7 @@ pub(super) fn routes() -> Router> { Router::new() .route("/runs/{id}/checkpoint", get(get_checkpoint)) .route("/runs/{id}/blobs", post(write_run_blob)) - .route("/runs/{id}/blobs/{blobId}", get(read_run_blob)) + .route("/runs/{id}/blobs/{blobHash}", get(read_run_blob)) .route("/runs/{id}/artifacts", get(list_run_artifacts)) .route("/runs/{id}/artifacts/download", get(download_run_artifacts)) .route( @@ -105,10 +105,7 @@ async fn write_run_blob( } match state.stores.runs.open_run(&id).await { Ok(run_store) => match run_store.write_blob(&body).await { - Ok(blob_id) => Json(WriteBlobResponse { - id: blob_id.to_string(), - }) - .into_response(), + Ok(blob_hash) => Json(WriteBlobResponse { hash: blob_hash }).into_response(), Err(err) => { ApiError::new(StatusCode::INTERNAL_SERVER_ERROR, err.to_string()).into_response() } @@ -118,11 +115,11 @@ async fn write_run_blob( } async fn read_run_blob( - RequireRunBlob(id, blob_id): RequireRunBlob, + RequireRunBlob(id, blob_hash): RequireRunBlob, State(state): State>, ) -> Response { match state.stores.runs.open_run_reader(&id).await { - Ok(run_store) => match run_store.read_blob(&blob_id).await { + Ok(run_store) => match run_store.read_blob(&blob_hash).await { Ok(Some(bytes)) => octet_stream_response(bytes), Ok(None) => ApiError::not_found("Blob not found.").into_response(), Err(err) => { diff --git a/lib/apps/fabro-server/src/server/handler/mod.rs b/lib/apps/fabro-server/src/server/handler/mod.rs index bcb7f9ef1..d42999c74 100644 --- a/lib/apps/fabro-server/src/server/handler/mod.rs +++ b/lib/apps/fabro-server/src/server/handler/mod.rs @@ -101,7 +101,7 @@ pub(super) fn demo_routes() -> Router> { ) .route("/runs/{id}/attach", get(demo::run_events_stub)) .route("/runs/{id}/blobs", post(not_implemented)) - .route("/runs/{id}/blobs/{blobId}", get(not_implemented)) + .route("/runs/{id}/blobs/{blobHash}", get(not_implemented)) .route( "/runs/{id}/stages/{stageId}/logs/output", get(not_implemented), diff --git a/lib/apps/fabro-server/src/server/tests.rs b/lib/apps/fabro-server/src/server/tests.rs index 2ffec61de..c6562fc3f 100644 --- a/lib/apps/fabro-server/src/server/tests.rs +++ b/lib/apps/fabro-server/src/server/tests.rs @@ -11034,7 +11034,7 @@ async fn get_checkpoint_returns_null_initially() { } #[tokio::test] -async fn write_and_read_run_blob_round_trip() { +async fn write_and_read_run_blob_accepts_uppercase_hash() { let state = test_app_state(); let app = crate::test_support::build_test_router(Arc::clone(&state)); @@ -11057,11 +11057,14 @@ async fn write_and_read_run_blob_round_trip() { .unwrap(); let response = app.clone().oneshot(req).await.unwrap(); let body = response_json!(response, StatusCode::OK).await; - let blob_id = body["id"].as_str().unwrap(); + let blob_hash = body["hash"].as_str().unwrap(); let req = Request::builder() .method("GET") - .uri(api(&format!("/runs/{run_id}/blobs/{blob_id}"))) + .uri(api(&format!( + "/runs/{run_id}/blobs/{}", + blob_hash.to_uppercase() + ))) .body(Body::empty()) .unwrap(); let response = app.oneshot(req).await.unwrap(); @@ -11459,7 +11462,7 @@ async fn worker_token_accepts_run_scoped_routes_and_falls_back_to_user_jwt() { let worker_token = issue_test_worker_token(&run_id); let other_run_id = create_run_with_bearer(&app, &user_jwt).await; let other_worker_token = issue_test_worker_token(&other_run_id); - let blob_id = state + let blob_hash = state .stores .runs .open_run(&run_id) @@ -11553,7 +11556,7 @@ async fn worker_token_accepts_run_scoped_routes_and_falls_back_to_user_jwt() { .clone() .oneshot(bearer_request( Method::GET, - &format!("/runs/{run_id}/blobs/{blob_id}"), + &format!("/runs/{run_id}/blobs/{blob_hash}"), &worker_token, Body::empty(), )) @@ -12058,7 +12061,7 @@ async fn worker_token_is_rejected_on_user_only_routes() { let user_jwt = issue_test_user_jwt(); let run_id = create_run_with_bearer(&app, &user_jwt).await; let worker_token = issue_test_worker_token(&run_id); - let blob_id = BlobHash::new(b"blob"); + let blob_hash = BlobHash::new(b"blob"); let user_only_routes = vec![ (Method::GET, "/runs".to_string()), (Method::POST, "/runs".to_string()), @@ -12121,7 +12124,7 @@ async fn worker_token_is_rejected_on_user_only_routes() { .clone() .oneshot(bearer_request( Method::GET, - &format!("/runs/{run_id}/blobs/{blob_id}"), + &format!("/runs/{run_id}/blobs/{blob_hash}"), &worker_token, Body::empty(), )) diff --git a/lib/components/fabro-dump/src/lib.rs b/lib/components/fabro-dump/src/lib.rs index 1028408e0..33f3185f6 100644 --- a/lib/components/fabro-dump/src/lib.rs +++ b/lib/components/fabro-dump/src/lib.rs @@ -4,6 +4,7 @@ )] use std::collections::HashMap; +use std::collections::hash_map::Entry; #[expect( clippy::disallowed_types, reason = "in-memory Vec::write_all for jsonl serialization; no filesystem or network I/O" @@ -214,31 +215,42 @@ impl RunDump { for entry in &mut self.entries { match &mut entry.contents { RunDumpContents::Json(value) => { - let mut blob_ids = Vec::new(); - collect_blob_refs_in_value(value, &mut blob_ids); - for blob_id in blob_ids { - if cache.contains_key(&blob_id) { + let mut blob_hashes = Vec::new(); + collect_blob_refs_in_value(value, &mut blob_hashes); + for blob_hash in blob_hashes { + if cache.contains_key(&blob_hash) { continue; } - let blob = read_blob(blob_id).await?.with_context(|| { - format!("blob {blob_id:?} is missing from the store") + let blob = read_blob(blob_hash).await?.with_context(|| { + format!("blob {blob_hash:?} is missing from the store") })?; let hydrated: serde_json::Value = serde_json::from_slice(&blob) - .with_context(|| format!("blob {blob_id:?} is not valid JSON"))?; - cache.insert(blob_id, hydrated); + .with_context(|| format!("blob {blob_hash:?} is not valid JSON"))?; + cache.insert(blob_hash, hydrated); } replace_blob_refs_in_value(value, &cache)?; } RunDumpContents::Text(text) => { - let Some(blob_id) = parse_blob_ref(text) else { + let Some(blob_hash) = parse_blob_ref(text) else { continue; }; - let blob = read_blob(blob_id) - .await? - .with_context(|| format!("blob {blob_id:?} is missing from the store"))?; - *text = serde_json::from_slice::(&blob).with_context(|| { - format!("blob {blob_id:?} is not a JSON string text log") - })?; + let hydrated = match cache.entry(blob_hash) { + Entry::Occupied(entry) => entry.into_mut(), + Entry::Vacant(entry) => { + let blob = read_blob(blob_hash).await?.with_context(|| { + format!("blob {blob_hash:?} is missing from the store") + })?; + let hydrated: serde_json::Value = serde_json::from_slice(&blob) + .with_context(|| format!("blob {blob_hash:?} is not valid JSON"))?; + entry.insert(hydrated) + } + }; + *text = hydrated + .as_str() + .with_context(|| { + format!("blob {blob_hash:?} is not a JSON string text log") + })? + .to_string(); } RunDumpContents::Bytes(_) => {} } @@ -386,21 +398,21 @@ fn validate_relative_path(kind: &str, value: &str) -> Result { Ok(normalized) } -fn collect_blob_refs_in_value(value: &serde_json::Value, blob_ids: &mut Vec) { +fn collect_blob_refs_in_value(value: &serde_json::Value, blob_hashes: &mut Vec) { match value { serde_json::Value::String(current) => { - if let Some(blob_id) = parse_blob_ref(current) { - blob_ids.push(blob_id); + if let Some(blob_hash) = parse_blob_ref(current) { + blob_hashes.push(blob_hash); } } serde_json::Value::Array(items) => { for item in items { - collect_blob_refs_in_value(item, blob_ids); + collect_blob_refs_in_value(item, blob_hashes); } } serde_json::Value::Object(map) => { for item in map.values() { - collect_blob_refs_in_value(item, blob_ids); + collect_blob_refs_in_value(item, blob_hashes); } } serde_json::Value::Null | serde_json::Value::Bool(_) | serde_json::Value::Number(_) => {} @@ -413,13 +425,12 @@ fn replace_blob_refs_in_value( ) -> Result<()> { match value { serde_json::Value::String(current) => { - let Some(blob_id) = parse_blob_ref(current) else { + let Some(blob_hash) = parse_blob_ref(current) else { return Ok(()); }; - let hydrated = cache - .get(&blob_id) - .cloned() - .with_context(|| format!("blob {blob_id:?} is missing from the hydration cache"))?; + let hydrated = cache.get(&blob_hash).cloned().with_context(|| { + format!("blob {blob_hash:?} is missing from the hydration cache") + })?; *value = hydrated; } serde_json::Value::Array(items) => { @@ -724,8 +735,8 @@ mod tests { #[test] fn hydrate_referenced_blobs_ignores_legacy_artifact_file_refs() { let blob = serde_json::to_vec("hydrated legacy text").unwrap(); - let blob_id = fabro_types::BlobHash::new(&blob); - let legacy_ref = format!("file:///sandbox/.fabro/artifacts/{blob_id}.json"); + let blob_hash = fabro_types::BlobHash::new(&blob); + let legacy_ref = format!("file:///sandbox/.fabro/artifacts/{blob_hash}.json"); let mut dump = RunDump { entries: vec![RunDumpEntry::json( "run.json", @@ -736,10 +747,10 @@ mod tests { }; executor::block_on(async { - dump.hydrate_referenced_blobs_with_reader(|read_blob_id| { + dump.hydrate_referenced_blobs_with_reader(|read_blob_hash| { let blob = blob.clone(); Box::pin(async move { - assert_eq!(read_blob_id, blob_id); + assert_eq!(read_blob_hash, blob_hash); Ok(Some(bytes::Bytes::from(blob))) }) }) @@ -752,4 +763,43 @@ mod tests { }; assert_eq!(value["stdout"], legacy_ref); } + + #[test] + fn hydrate_referenced_blobs_fetches_shared_blobs_once() { + let blob = serde_json::to_vec("offloaded response text").unwrap(); + let blob_hash = fabro_types::BlobHash::new(&blob); + let blob_ref = fabro_types::format_blob_ref(&blob_hash); + let mut dump = RunDump { + entries: vec![ + RunDumpEntry::json("run.json", serde_json::json!({ "response": blob_ref })), + RunDumpEntry::text("stages/001-demo@1/response.md", blob_ref.clone()), + ], + stage_ranks: HashMap::new(), + dump_log_index: None, + }; + + let reads = std::cell::Cell::new(0); + executor::block_on(async { + dump.hydrate_referenced_blobs_with_reader(|read_blob_hash| { + reads.set(reads.get() + 1); + let blob = blob.clone(); + Box::pin(async move { + assert_eq!(read_blob_hash, blob_hash); + Ok(Some(bytes::Bytes::from(blob))) + }) + }) + .await + }) + .unwrap(); + + assert_eq!(reads.get(), 1, "shared blob should be fetched once"); + let RunDumpContents::Json(value) = &dump.entries[0].contents else { + panic!("entry should be JSON"); + }; + assert_eq!(value["response"], "offloaded response text"); + let RunDumpContents::Text(text) = &dump.entries[1].contents else { + panic!("entry should be text"); + }; + assert_eq!(text, "offloaded response text"); + } } diff --git a/lib/components/fabro-store/src/slate/blob_store.rs b/lib/components/fabro-store/src/slate/blob_store.rs index cb168cd2b..8cec4c296 100644 --- a/lib/components/fabro-store/src/slate/blob_store.rs +++ b/lib/components/fabro-store/src/slate/blob_store.rs @@ -56,12 +56,12 @@ impl BlobStore { Ok(id) } - pub async fn read(&self, id: &BlobHash) -> Result> { - Ok(self.repo.get(id).await?.map(|blob| blob.0)) + pub async fn read(&self, blob_hash: &BlobHash) -> Result> { + Ok(self.repo.get(blob_hash).await?.map(|blob| blob.0)) } - pub async fn exists(&self, id: &BlobHash) -> Result { - self.repo.exists(id).await + pub async fn exists(&self, blob_hash: &BlobHash) -> Result { + self.repo.exists(blob_hash).await } } diff --git a/lib/components/fabro-store/src/slate/mod.rs b/lib/components/fabro-store/src/slate/mod.rs index 21e410c71..e0b66d6e8 100644 --- a/lib/components/fabro-store/src/slate/mod.rs +++ b/lib/components/fabro-store/src/slate/mod.rs @@ -836,12 +836,12 @@ mod tests { append_created(&run_2, "run-2", dt("2026-03-27T12:00:10Z")).await; let shared_blob = br#"{"summary":"shared"}"#; - let shared_blob_id = run_1.write_blob(shared_blob).await.unwrap(); + let shared_blob_hash = run_1.write_blob(shared_blob).await.unwrap(); store.delete_run(&test_run_id("run-1")).await.unwrap(); let reopened = store.open_run(&test_run_id("run-2")).await.unwrap(); - let read = reopened.read_blob(&shared_blob_id).await.unwrap(); + let read = reopened.read_blob(&shared_blob_hash).await.unwrap(); assert_eq!(read.as_deref(), Some(shared_blob.as_slice())); } @@ -851,7 +851,7 @@ mod tests { let run = store.create_run(&test_run_id("run-1")).await.unwrap(); append_created(&run, "run-1", dt("2026-03-27T12:00:00Z")).await; let blob = br#"{"summary":"readable"}"#; - let blob_id = run.write_blob(blob).await.unwrap(); + let blob_hash = run.write_blob(blob).await.unwrap(); // Evict the cached writer so the reader is built through the real // `open_run_reader` construction path, not a clone of the writer. @@ -859,7 +859,7 @@ mod tests { let reader = store.open_run_reader(&test_run_id("run-1")).await.unwrap(); assert_eq!( - reader.read_blob(&blob_id).await.unwrap().as_deref(), + reader.read_blob(&blob_hash).await.unwrap().as_deref(), Some(blob.as_slice()) ); let err = reader.write_blob(b"blocked").await.unwrap_err(); diff --git a/lib/components/fabro-store/src/slate/run_store.rs b/lib/components/fabro-store/src/slate/run_store.rs index 9148ede95..c4c590a0d 100644 --- a/lib/components/fabro-store/src/slate/run_store.rs +++ b/lib/components/fabro-store/src/slate/run_store.rs @@ -561,8 +561,8 @@ impl RunDatabase { self.inner.blob_store.write(data).await } - pub async fn read_blob(&self, id: &BlobHash) -> Result> { - self.inner.blob_store.read(id).await + pub async fn read_blob(&self, blob_hash: &BlobHash) -> Result> { + self.inner.blob_store.read(blob_hash).await } pub async fn state(&self) -> Result { diff --git a/lib/components/fabro-workflow-version/src/store.rs b/lib/components/fabro-workflow-version/src/store.rs index f2fb3981b..2d468619f 100644 --- a/lib/components/fabro-workflow-version/src/store.rs +++ b/lib/components/fabro-workflow-version/src/store.rs @@ -148,10 +148,10 @@ impl WorkflowVersionStore { &self, id: &WorkflowVersionId, ) -> Result, WorkflowVersionStoreError> { - let blob_id = (*id).into(); + let blob_hash = (*id).into(); let Some(bytes) = self .blobs - .read(&blob_id) + .read(&blob_hash) .await .map_err(|source| WorkflowVersionStoreError::Storage { source })? else { @@ -273,8 +273,11 @@ mod tests { let id = store.put(&version).await.unwrap(); assert_eq!(id, expected_id); - let blob_id = id.into(); - assert_eq!(blobs.read(&blob_id).await.unwrap().unwrap(), expected_bytes); + let blob_hash = id.into(); + assert_eq!( + blobs.read(&blob_hash).await.unwrap().unwrap(), + expected_bytes + ); assert_eq!(store.get(&id).await.unwrap(), Some(version)); } diff --git a/lib/components/fabro-workflow/src/artifact.rs b/lib/components/fabro-workflow/src/artifact.rs index ef892b442..a457e7395 100644 --- a/lib/components/fabro-workflow/src/artifact.rs +++ b/lib/components/fabro-workflow/src/artifact.rs @@ -26,7 +26,7 @@ const ARTIFACT_POINTER_PREFIX: &str = "file://"; /// /// For each entry in `updates` whose serialized JSON exceeds /// `BLOB_OFFLOAD_THRESHOLD`, the value is persisted as a blob in `run_store` -/// and replaced with a `"blob://sha256/{blob_id}"` reference. +/// and replaced with a `"blob://sha256/{blob_hash}"` reference. /// Small values are left untouched. /// /// `parallel.results` is offloaded at each branch context-update boundary @@ -102,11 +102,11 @@ async fn offload_value(value: &mut Value, run_store: &RunStoreHandle) -> Result< .map_err(|e| Error::engine_with_source("artifact serialize failed", e))?; if bytes.len() > BLOB_OFFLOAD_THRESHOLD { - let blob_id = run_store + let blob_hash = run_store .write_blob(&bytes) .await .map_err(|e| Error::engine_with_anyhow("artifact blob write failed", e))?; - *value = Value::String(format_blob_ref(&blob_id)); + *value = Value::String(format_blob_ref(&blob_hash)); } Ok(()) } @@ -204,8 +204,16 @@ pub async fn resolve_outcomes_for_execution( run_dir: &Path, ) -> Result> { let mut resolved = node_outcomes.clone(); + let mut locality = SandboxLocality::default(); for outcome in resolved.values_mut() { - resolve_execution_values(&mut outcome.context_updates, run_store, env, run_dir).await?; + resolve_execution_values( + &mut outcome.context_updates, + run_store, + env, + run_dir, + &mut locality, + ) + .await?; } Ok(resolved) } @@ -217,7 +225,8 @@ pub async fn resolved_context_snapshot( run_dir: &Path, ) -> Result> { let mut values = context.snapshot(); - resolve_execution_values(&mut values, run_store, env, run_dir).await?; + let mut locality = SandboxLocality::default(); + resolve_execution_values(&mut values, run_store, env, run_dir, &mut locality).await?; Ok(values) } @@ -232,17 +241,17 @@ pub async fn resolve_text_or_blob_ref(value: &Value, run_store: &RunStoreHandle) /// blob reference. /// /// Managed `file://` references are normalized through their content-addressed -/// blob id instead of reading an execution-local path. Ordinary strings and +/// blob hash instead of reading an execution-local path. Ordinary strings and /// ordinary file references remain unchanged for the caller to validate. pub(crate) async fn resolve_json_value(value: Value, run_store: &RunStoreHandle) -> Result { - let blob_id = value.as_str().and_then(|reference| { + let blob_hash = value.as_str().and_then(|reference| { parse_blob_ref(reference).or_else(|| parse_managed_blob_file_ref(reference)) }); - let Some(blob_id) = blob_id else { + let Some(blob_hash) = blob_hash else { return Ok(value); }; - let bytes = read_required_blob(&blob_id, run_store).await?; + let bytes = read_required_blob(&blob_hash, run_store).await?; serde_json::from_slice(&bytes) .map_err(|err| Error::engine_with_source("artifact blob was not valid JSON", err)) } @@ -267,14 +276,14 @@ pub async fn resolve_text_or_blob_ref_str( current: &str, run_store: &RunStoreHandle, ) -> Result { - let Some(blob_id) = parse_blob_ref(current) else { + let Some(blob_hash) = parse_blob_ref(current) else { return Ok(current.to_string()); }; let bytes = run_store - .read_blob(&blob_id) + .read_blob(&blob_hash) .await .map_err(|e| Error::engine_with_anyhow("text blob read failed", e))? - .ok_or_else(|| Error::engine(format!("text blob missing: {blob_id}")))?; + .ok_or_else(|| Error::engine(format!("text blob missing: {blob_hash}")))?; serde_json::from_slice::(&bytes) .map_err(|e| Error::engine_with_source("text blob was not a JSON string", e)) } @@ -334,8 +343,8 @@ pub async fn sync_artifacts_to_env( fn normalize_durable_value(value: &mut Value) { match value { Value::String(current) => { - if let Some(blob_id) = parse_managed_blob_file_ref(current) { - *current = format_blob_ref(&blob_id); + if let Some(blob_hash) = parse_managed_blob_file_ref(current) { + *current = format_blob_ref(&blob_hash); } } Value::Array(items) => { @@ -357,10 +366,12 @@ fn resolve_execution_values<'a>( run_store: &'a RunStoreHandle, env: &'a dyn Sandbox, run_dir: &'a Path, + locality: &'a mut SandboxLocality, ) -> BoxFuture<'a, Result<()>> { Box::pin(async move { for (key, value) in values.iter_mut() { - resolve_execution_value(Some(key.as_str()), value, run_store, env, run_dir).await?; + resolve_execution_value(Some(key.as_str()), value, run_store, env, run_dir, locality) + .await?; } Ok(()) }) @@ -376,14 +387,16 @@ fn resolve_execution_value<'a>( run_store: &'a RunStoreHandle, env: &'a dyn Sandbox, run_dir: &'a Path, + locality: &'a mut SandboxLocality, ) -> BoxFuture<'a, Result<()>> { Box::pin(async move { match value { Value::String(current) => { if key.is_some_and(is_text_context_key) { *current = resolve_text_or_blob_ref_str(current, run_store).await?; - } else if let Some(blob_id) = parse_blob_ref(current) { - *current = materialize_blob_ref(&blob_id, run_store, env, run_dir).await?; + } else if let Some(blob_hash) = parse_blob_ref(current) { + *current = + materialize_blob_ref(&blob_hash, run_store, env, run_dir, locality).await?; } else if current.starts_with(ARTIFACT_POINTER_PREFIX) && parse_managed_blob_file_ref(current).is_none() { @@ -392,7 +405,7 @@ fn resolve_execution_value<'a>( } Value::Array(items) => { for item in items { - resolve_execution_value(key, item, run_store, env, run_dir).await?; + resolve_execution_value(key, item, run_store, env, run_dir, locality).await?; } } Value::Object(map) => { @@ -402,8 +415,15 @@ fn resolve_execution_value<'a>( } else { Some(child_key.as_str()) }; - resolve_execution_value(child_context_key, item, run_store, env, run_dir) - .await?; + resolve_execution_value( + child_context_key, + item, + run_store, + env, + run_dir, + locality, + ) + .await?; } } Value::Null | Value::Bool(_) | Value::Number(_) => {} @@ -413,17 +433,18 @@ fn resolve_execution_value<'a>( } async fn materialize_blob_ref( - blob_id: &BlobHash, + blob_hash: &BlobHash, run_store: &RunStoreHandle, env: &dyn Sandbox, run_dir: &Path, + locality: &mut SandboxLocality, ) -> Result { // Blobs are content-addressed, so an existing materialized file is always // current — check before paying for the store read. - if is_local_execution(env, run_dir).await? { - let path = local_materialized_blob_path(run_dir, blob_id); + if locality.is_local(env, run_dir).await? { + let path = local_materialized_blob_path(run_dir, blob_hash); if !path.exists() { - let bytes = read_required_blob(blob_id, run_store).await?; + let bytes = read_required_blob(blob_hash, run_store).await?; if let Some(parent) = path.parent() { fs::create_dir_all(parent).await.map_err(|err| { Error::Io(format!( @@ -439,13 +460,13 @@ async fn materialize_blob_ref( return Ok(format!("{ARTIFACT_POINTER_PREFIX}{}", path.display())); } - let remote_path = format!("{}/.fabro/blobs/{blob_id}.json", env.working_directory()); + let remote_path = format!("{}/.fabro/blobs/{blob_hash}.json", env.working_directory()); if !env .file_exists(&remote_path) .await .map_err(|e| Error::engine_with_source("failed to check blob existence", e))? { - let bytes = read_required_blob(blob_id, run_store).await?; + let bytes = read_required_blob(blob_hash, run_store).await?; let content = String::from_utf8(bytes.to_vec()) .map_err(|e| Error::engine_with_source("artifact blob was not valid UTF-8 JSON", e))?; env.write_file(&remote_path, &content).await.map_err(|e| { @@ -457,14 +478,14 @@ async fn materialize_blob_ref( } async fn read_required_blob( - blob_id: &BlobHash, + blob_hash: &BlobHash, run_store: &RunStoreHandle, ) -> Result { run_store - .read_blob(blob_id) + .read_blob(blob_hash) .await .map_err(|e| Error::engine_with_anyhow("artifact blob read failed", e))? - .ok_or_else(|| Error::engine(format!("artifact blob missing: {blob_id}"))) + .ok_or_else(|| Error::engine(format!("artifact blob missing: {blob_hash}"))) } async fn resolve_explicit_file_ref(value: &str, env: &dyn Sandbox) -> Result { @@ -502,17 +523,33 @@ async fn resolve_explicit_file_ref(value: &str, env: &dyn Sandbox) -> Result Result { - env.file_exists(&run_dir.to_string_lossy()) - .await - .map_err(|e| Error::engine_with_source("failed to inspect sandbox locality", e)) +/// Memoized sandbox locality for one resolution pass. The sandbox and run +/// directory are invariant across a pass, so the (possibly remote) probe is +/// paid at most once instead of once per blob reference. +#[derive(Default)] +struct SandboxLocality { + cached: Option, } -fn local_materialized_blob_path(run_dir: &Path, blob_id: &BlobHash) -> PathBuf { +impl SandboxLocality { + async fn is_local(&mut self, env: &dyn Sandbox, run_dir: &Path) -> Result { + if let Some(local) = self.cached { + return Ok(local); + } + let local = env + .file_exists(&run_dir.to_string_lossy()) + .await + .map_err(|e| Error::engine_with_source("failed to inspect sandbox locality", e))?; + self.cached = Some(local); + Ok(local) + } +} + +fn local_materialized_blob_path(run_dir: &Path, blob_hash: &BlobHash) -> PathBuf { RunScratch::new(run_dir) .runtime_dir() .join("blobs") - .join(format!("{blob_id}.json")) + .join(format!("{blob_hash}.json")) } #[cfg(test)] @@ -549,7 +586,7 @@ mod tests { let large_string = "x".repeat(BLOB_OFFLOAD_THRESHOLD + 1); let serialized = serde_json::to_vec(&serde_json::json!(large_string.clone())).unwrap(); - let expected_blob_id = fabro_types::BlobHash::new(&serialized); + let expected_blob_hash = fabro_types::BlobHash::new(&serialized); let mut updates = HashMap::new(); updates.insert("response.plan".to_string(), serde_json::json!(large_string)); @@ -561,11 +598,11 @@ mod tests { let pointer = updates.get("response.plan").unwrap(); assert_eq!( pointer, - &serde_json::json!(fabro_types::format_blob_ref(&expected_blob_id)) + &serde_json::json!(fabro_types::format_blob_ref(&expected_blob_hash)) ); let blob = run_store - .read_blob(&expected_blob_id) + .read_blob(&expected_blob_hash) .await .unwrap() .expect("blob should exist"); @@ -591,21 +628,21 @@ mod tests { async fn resolve_json_value_hydrates_blob_and_managed_file_references() { let run_store = make_run_store("structured-json-resolution").await; let value = serde_json::json!([{"name": "api"}, {"name": "web"}]); - let blob_id = run_store + let blob_hash = run_store .write_blob(&serde_json::to_vec(&value).unwrap()) .await .unwrap(); let handle = run_store.clone().into(); assert_eq!( - resolve_json_value(serde_json::json!(format_blob_ref(&blob_id)), &handle) + resolve_json_value(serde_json::json!(format_blob_ref(&blob_hash)), &handle) .await .unwrap(), value ); assert_eq!( resolve_json_value( - serde_json::json!(format!("file:///sandbox/.fabro/blobs/{blob_id}.json")), + serde_json::json!(format!("file:///sandbox/.fabro/blobs/{blob_hash}.json")), &handle, ) .await @@ -787,15 +824,43 @@ mod tests { ); } + #[tokio::test] + async fn resolve_context_probes_sandbox_locality_once_per_pass() { + let run_store = make_run_store("locality-probe-memoization").await; + let first_blob = run_store + .write_blob(&serde_json::to_vec(&serde_json::json!({"a": 1})).unwrap()) + .await + .unwrap(); + let second_blob = run_store + .write_blob(&serde_json::to_vec(&serde_json::json!({"b": 2})).unwrap()) + .await + .unwrap(); + let context = Context::new(); + context.set("first", fabro_types::format_blob_ref(&first_blob).into()); + context.set("second", fabro_types::format_blob_ref(&second_blob).into()); + let env = TestSyncEnv::new(true, "/workspace"); + let run_dir = tempfile::tempdir().unwrap(); + + resolved_context_snapshot(&context, &run_store.clone().into(), &env, run_dir.path()) + .await + .unwrap(); + + assert_eq!( + *env.exists_calls.lock().unwrap(), + 1, + "sandbox locality should be probed once per resolution pass" + ); + } + #[test] fn normalize_durable_updates_rewrites_managed_blob_file_refs_recursively() { - let blob_id = fabro_types::BlobHash::new(b"hello"); + let blob_hash = fabro_types::BlobHash::new(b"hello"); let mut updates = HashMap::from([( "nested".to_string(), serde_json::json!({ "items": [ - format!("file:///tmp/run/runtime/blobs/{blob_id}.json"), - format!("file:///sandbox/.fabro/blobs/{blob_id}.json"), + format!("file:///tmp/run/runtime/blobs/{blob_hash}.json"), + format!("file:///sandbox/.fabro/blobs/{blob_hash}.json"), "file:///tmp/report.json", ] }), @@ -807,8 +872,8 @@ mod tests { updates["nested"], serde_json::json!({ "items": [ - fabro_types::format_blob_ref(&blob_id), - fabro_types::format_blob_ref(&blob_id), + fabro_types::format_blob_ref(&blob_hash), + fabro_types::format_blob_ref(&blob_hash), "file:///tmp/report.json", ] }) @@ -870,7 +935,7 @@ mod tests { #[test] fn normalize_checkpoint_for_resume_converts_managed_blob_file_refs_and_drops_preamble() { - let blob_id = fabro_types::BlobHash::new(b"managed"); + let blob_hash = fabro_types::BlobHash::new(b"managed"); let mut checkpoint = crate::records::Checkpoint { timestamp: chrono::Utc::now(), current_node: "work".to_string(), @@ -883,7 +948,7 @@ mod tests { ), ( "response.work".to_string(), - serde_json::json!(format!("file:///sandbox/.fabro/blobs/{blob_id}.json")), + serde_json::json!(format!("file:///sandbox/.fabro/blobs/{blob_hash}.json")), ), ]), node_outcomes: HashMap::from([( @@ -891,7 +956,7 @@ mod tests { crate::outcome::Outcome { context_updates: HashMap::from([( "response.work".to_string(), - serde_json::json!(format!("file:///sandbox/.fabro/blobs/{blob_id}.json")), + serde_json::json!(format!("file:///sandbox/.fabro/blobs/{blob_hash}.json")), )]), ..crate::outcome::Outcome::success() }, @@ -912,14 +977,14 @@ mod tests { ); assert_eq!( checkpoint.context_values.get("response.work"), - Some(&serde_json::json!(fabro_types::format_blob_ref(&blob_id))) + Some(&serde_json::json!(fabro_types::format_blob_ref(&blob_hash))) ); assert_eq!( checkpoint .node_outcomes .get("work") .and_then(|outcome| outcome.context_updates.get("response.work")), - Some(&serde_json::json!(fabro_types::format_blob_ref(&blob_id))) + Some(&serde_json::json!(fabro_types::format_blob_ref(&blob_hash))) ); } @@ -928,9 +993,10 @@ mod tests { use std::sync::Mutex; struct TestSyncEnv { - accessible: bool, - written: Mutex>, - working_dir: String, + accessible: bool, + written: Mutex>, + working_dir: String, + exists_calls: Mutex, } impl TestSyncEnv { @@ -939,6 +1005,7 @@ mod tests { accessible, written: Mutex::new(Vec::new()), working_dir: working_dir.to_string(), + exists_calls: Mutex::new(0), } } } @@ -962,6 +1029,7 @@ mod tests { } async fn file_exists(&self, _path: &str) -> fabro_sandbox::Result { + *self.exists_calls.lock().unwrap() += 1; Ok(self.accessible) } diff --git a/lib/components/fabro-workflow/src/command_log.rs b/lib/components/fabro-workflow/src/command_log.rs index 67c4373e1..ed998d208 100644 --- a/lib/components/fabro-workflow/src/command_log.rs +++ b/lib/components/fabro-workflow/src/command_log.rs @@ -109,14 +109,14 @@ pub async fn read_json_string_blob( run_store: &RunStoreHandle, blob_ref: &str, ) -> Result> { - let Some(blob_id) = fabro_types::parse_blob_ref(blob_ref) else { + let Some(blob_hash) = fabro_types::parse_blob_ref(blob_ref) else { return Ok(None); }; let bytes = run_store - .read_blob(&blob_id) + .read_blob(&blob_hash) .await .map_err(|err| Error::engine_with_anyhow("command log blob read failed", err))? - .ok_or_else(|| Error::engine(format!("command log blob missing: {blob_id}")))?; + .ok_or_else(|| Error::engine(format!("command log blob missing: {blob_hash}")))?; let text = serde_json::from_slice::(&bytes) .map_err(|err| Error::engine_with_source("command log blob was not a JSON string", err))?; Ok(Some(text)) @@ -155,9 +155,9 @@ async fn write_json_string_blob(run_store: &RunStoreHandle, text: &str) -> Resul let value = Value::String(text.to_string()); let bytes = serde_json::to_vec(&value) .map_err(|err| Error::engine_with_source("command log JSON serialization failed", err))?; - let blob_id = run_store + let blob_hash = run_store .write_blob(&bytes) .await .map_err(|err| Error::engine_with_anyhow("command log blob write failed", err))?; - Ok(format_blob_ref(&blob_id)) + Ok(format_blob_ref(&blob_hash)) } diff --git a/lib/components/fabro-workflow/src/handler/command.rs b/lib/components/fabro-workflow/src/handler/command.rs index f4fef254c..d36ef8be8 100644 --- a/lib/components/fabro-workflow/src/handler/command.rs +++ b/lib/components/fabro-workflow/src/handler/command.rs @@ -390,16 +390,19 @@ mod tests { } async fn write_blob(&self, data: &[u8]) -> anyhow::Result { - let blob_id = fabro_types::BlobHash::new(data); + let blob_hash = fabro_types::BlobHash::new(data); self.blobs .lock() .await - .insert(blob_id, Bytes::copy_from_slice(data)); - Ok(blob_id) + .insert(blob_hash, Bytes::copy_from_slice(data)); + Ok(blob_hash) } - async fn read_blob(&self, id: &fabro_types::BlobHash) -> anyhow::Result> { - Ok(self.blobs.lock().await.get(id).cloned()) + async fn read_blob( + &self, + blob_hash: &fabro_types::BlobHash, + ) -> anyhow::Result> { + Ok(self.blobs.lock().await.get(blob_hash).cloned()) } async fn read_run_log(&self) -> anyhow::Result>> { diff --git a/lib/components/fabro-workflow/src/handler/parallel.rs b/lib/components/fabro-workflow/src/handler/parallel.rs index f20d5d5f5..9da654d1d 100644 --- a/lib/components/fabro-workflow/src/handler/parallel.rs +++ b/lib/components/fabro-workflow/src/handler/parallel.rs @@ -1917,7 +1917,7 @@ mod tests { "name": "large-item", "body": "x".repeat(101 * 1024) }]); - let blob_id = run_store + let blob_hash = run_store .write_blob(&serde_json::to_vec(&items).unwrap()) .await .unwrap(); @@ -1933,7 +1933,7 @@ mod tests { ))); let (node, graph) = for_each_graph("items", 1); let context = test_context(); - context.set("items", serde_json::json!(format_blob_ref(&blob_id))); + context.set("items", serde_json::json!(format_blob_ref(&blob_hash))); let outcome = ParallelHandler .execute(&node, &context, &graph, sandbox_dir.path(), &services) diff --git a/lib/components/fabro-workflow/src/lifecycle/git.rs b/lib/components/fabro-workflow/src/lifecycle/git.rs index 73100e6c1..18f4139bf 100644 --- a/lib/components/fabro-workflow/src/lifecycle/git.rs +++ b/lib/components/fabro-workflow/src/lifecycle/git.rs @@ -1328,7 +1328,7 @@ mod tests { Ok(BlobHash::new(data)) } - async fn read_blob(&self, _id: &BlobHash) -> Result> { + async fn read_blob(&self, _blob_hash: &BlobHash) -> Result> { Ok(None) } diff --git a/lib/components/fabro-workflow/src/operations/start.rs b/lib/components/fabro-workflow/src/operations/start.rs index adbaab3f9..c295ae145 100644 --- a/lib/components/fabro-workflow/src/operations/start.rs +++ b/lib/components/fabro-workflow/src/operations/start.rs @@ -359,8 +359,8 @@ impl RunSession { let git = git_checkpoint_options_from_start(settings, &record.run_id, state.start); let definition_blob = state.spec.definition_blob; let accepted_definition = match definition_blob { - Some(blob_id) => { - Some(load_accepted_run_definition(&services.run_store, blob_id).await?) + Some(blob_hash) => { + Some(load_accepted_run_definition(&services.run_store, blob_hash).await?) } None => None, }; @@ -570,15 +570,15 @@ fn vault_token_lookup(vault: &Vault, name: &str) -> Option { async fn load_accepted_run_definition( run_store: &RunStoreHandle, - blob_id: fabro_types::BlobHash, + blob_hash: fabro_types::BlobHash, ) -> Result { let bytes = run_store - .read_blob(&blob_id) + .read_blob(&blob_hash) .await .map_err(|err| Error::engine(err.to_string()))? .ok_or_else(|| { Error::engine(format!( - "run definition blob is missing from the run store: {blob_id}" + "run definition blob is missing from the run store: {blob_hash}" )) })?; serde_json::from_slice(&bytes).map_err(|err| Error::Parse(err.to_string())) diff --git a/lib/components/fabro-workflow/src/pipeline/execute/tests.rs b/lib/components/fabro-workflow/src/pipeline/execute/tests.rs index 118767be8..5aadd6018 100644 --- a/lib/components/fabro-workflow/src/pipeline/execute/tests.rs +++ b/lib/components/fabro-workflow/src/pipeline/execute/tests.rs @@ -751,11 +751,11 @@ impl HandlerTrait for BlobCommandOutputHandler { services: &crate::handler::EngineServices, ) -> std::result::Result { let blob = serde_json::to_vec("routed-ok").unwrap(); - let blob_id = services.run.run_store.write_blob(&blob).await.unwrap(); + let blob_hash = services.run.run_store.write_blob(&blob).await.unwrap(); let mut outcome = Outcome::success(); outcome.context_updates.insert( context::keys::COMMAND_OUTPUT.to_string(), - serde_json::json!(format_blob_ref(&blob_id)), + serde_json::json!(format_blob_ref(&blob_hash)), ); Ok(outcome) } diff --git a/lib/components/fabro-workflow/src/pipeline/finalize.rs b/lib/components/fabro-workflow/src/pipeline/finalize.rs index 9f43e86ff..b1e7847ee 100644 --- a/lib/components/fabro-workflow/src/pipeline/finalize.rs +++ b/lib/components/fabro-workflow/src/pipeline/finalize.rs @@ -1823,7 +1823,7 @@ mod tests { Ok(BlobHash::new(data)) } - async fn read_blob(&self, _id: &BlobHash) -> Result> { + async fn read_blob(&self, _blob_hash: &BlobHash) -> Result> { Ok(None) } diff --git a/lib/components/fabro-workflow/src/runtime_store.rs b/lib/components/fabro-workflow/src/runtime_store.rs index 45252d5d3..af4eae425 100644 --- a/lib/components/fabro-workflow/src/runtime_store.rs +++ b/lib/components/fabro-workflow/src/runtime_store.rs @@ -14,7 +14,7 @@ pub trait RunStoreBackend: Send + Sync { async fn list_events(&self) -> Result>; async fn append_run_event(&self, event: &RunEvent) -> Result<()>; async fn write_blob(&self, data: &[u8]) -> Result; - async fn read_blob(&self, id: &BlobHash) -> Result>; + async fn read_blob(&self, blob_hash: &BlobHash) -> Result>; async fn read_run_log(&self) -> Result>>; } @@ -50,8 +50,8 @@ impl RunStoreHandle { self.backend.write_blob(data).await } - pub async fn read_blob(&self, id: &BlobHash) -> Result> { - self.backend.read_blob(id).await + pub async fn read_blob(&self, blob_hash: &BlobHash) -> Result> { + self.backend.read_blob(blob_hash).await } pub async fn read_run_log(&self) -> Result>> { @@ -98,9 +98,9 @@ impl RunStoreBackend for LocalRunStoreBackend { .map_err(anyhow::Error::from) } - async fn read_blob(&self, id: &BlobHash) -> Result> { + async fn read_blob(&self, blob_hash: &BlobHash) -> Result> { self.run_store - .read_blob(id) + .read_blob(blob_hash) .await .map_err(anyhow::Error::from) } @@ -217,8 +217,8 @@ mod tests { }; handle.append_run_event(&event).await.unwrap(); - let blob_id = handle.write_blob(br#"{"ok":true}"#).await.unwrap(); - let blob = handle.read_blob(&blob_id).await.unwrap().unwrap(); + let blob_hash = handle.write_blob(br#"{"ok":true}"#).await.unwrap(); + let blob = handle.read_blob(&blob_hash).await.unwrap().unwrap(); let events = handle.list_events().await.unwrap(); assert_eq!(events.len(), 2); diff --git a/lib/components/fabro-workflow/tests/it/daytona_integration.rs b/lib/components/fabro-workflow/tests/it/daytona_integration.rs index 021eecf11..0acfb0f60 100644 --- a/lib/components/fabro-workflow/tests/it/daytona_integration.rs +++ b/lib/components/fabro-workflow/tests/it/daytona_integration.rs @@ -544,13 +544,13 @@ async fn daytona_pipeline_artifact_offload_and_sync() { .get("response.big_output") .expect("context should have response.big_output"); let pointer_str = pointer_value.as_str().expect("pointer should be a string"); - let expected_blob_id = fabro_types::BlobHash::new( + let expected_blob_hash = fabro_types::BlobHash::new( &serde_json::to_vec(&serde_json::json!("x".repeat(150 * 1024))) .expect("large value should serialize"), ); assert_eq!( pointer_str, - fabro_types::format_blob_ref(&expected_blob_id), + fabro_types::format_blob_ref(&expected_blob_hash), "checkpoint should persist a blob ref" ); diff --git a/lib/components/fabro-workflow/tests/it/integration.rs b/lib/components/fabro-workflow/tests/it/integration.rs index 0206d2c38..02e0e74fb 100644 --- a/lib/components/fabro-workflow/tests/it/integration.rs +++ b/lib/components/fabro-workflow/tests/it/integration.rs @@ -233,7 +233,7 @@ fn resolve_checkpoint_text( let Some(current) = value.as_str() else { return Ok(value.to_string()); }; - let Some(blob_id) = parse_blob_ref(current) else { + let Some(blob_hash) = parse_blob_ref(current) else { return Ok(current.to_string()); }; @@ -272,7 +272,7 @@ fn resolve_checkpoint_text( }; let run = runtime.block_on(store.open_run_reader(&run_id))?; let bytes = runtime - .block_on(run.read_blob(&blob_id))? + .block_on(run.read_blob(&blob_hash))? .ok_or("checkpoint blob should exist")?; Ok(serde_json::from_slice::(&bytes)?) }, @@ -10059,13 +10059,13 @@ async fn large_context_values_are_offloaded_to_artifact_store() { .expect("context should have response.big_output"); let pointer_str = pointer_value.as_str().expect("pointer should be a string"); - let expected_blob_id = fabro_types::BlobHash::new( + let expected_blob_hash = fabro_types::BlobHash::new( &serde_json::to_vec(&serde_json::json!("x".repeat(150 * 1024))) .expect("large value should serialize"), ); assert_eq!( pointer_str, - fabro_types::format_blob_ref(&expected_blob_id), + fabro_types::format_blob_ref(&expected_blob_hash), "value should be a durable blob ref" ); @@ -10258,13 +10258,13 @@ async fn artifact_pointers_rewritten_for_remote_sandbox() { .get("response.big_output") .expect("context should have response.big_output"); let pointer_str = pointer_value.as_str().expect("pointer should be a string"); - let expected_blob_id = fabro_types::BlobHash::new( + let expected_blob_hash = fabro_types::BlobHash::new( &serde_json::to_vec(&serde_json::json!("x".repeat(150 * 1024))) .expect("large value should serialize"), ); assert_eq!( pointer_str, - fabro_types::format_blob_ref(&expected_blob_id), + fabro_types::format_blob_ref(&expected_blob_hash), "checkpoint should persist a blob ref" ); diff --git a/lib/foundation/fabro-api/build.rs b/lib/foundation/fabro-api/build.rs index ea8ece1eb..0fb3cccd0 100644 --- a/lib/foundation/fabro-api/build.rs +++ b/lib/foundation/fabro-api/build.rs @@ -725,6 +725,7 @@ fn main() { ("WorkflowVersion", "fabro_types::WorkflowVersion", &[]), ("WorkflowPath", "fabro_types::WorkflowPath", &[]), ("WorkflowVersionId", "fabro_types::WorkflowVersionId", &[]), + ("BlobHash", "fabro_types::BlobHash", &[]), ("CostSource", "fabro_model::CostSource", &[]), ]; for (name, path, impls) in replacements { diff --git a/lib/foundation/fabro-api/src/lib.rs b/lib/foundation/fabro-api/src/lib.rs index b40087831..c53e682c7 100644 --- a/lib/foundation/fabro-api/src/lib.rs +++ b/lib/foundation/fabro-api/src/lib.rs @@ -42,7 +42,7 @@ pub mod types { pub use fabro_types::{ ActivatedSkill, AgentControlState, AgentMcpToolSummary, AgentSkillActivationSource, AgentSkillSummary, AgentToolCategory, AgentToolSource, AgentToolSummary, - AgentToolsAvailableProps, AskFabro, AuthMethod, AutomationRef, BilledTokenCounts, + AgentToolsAvailableProps, AskFabro, AuthMethod, AutomationRef, BilledTokenCounts, BlobHash, CommandTermination, Conclusion, ContentPart, CreateVariableRequest, DiffStats, DiffSummary, DirtyStatus, EventEnvelope, ExecOutputTail, FailureCategory, FailureDetail, FailureSignature, GitContext, IdpIdentity, IntegrationConnectionKind, diff --git a/lib/foundation/fabro-api/tests/blob_hash_round_trip.rs b/lib/foundation/fabro-api/tests/blob_hash_round_trip.rs new file mode 100644 index 000000000..e67818068 --- /dev/null +++ b/lib/foundation/fabro-api/tests/blob_hash_round_trip.rs @@ -0,0 +1,61 @@ +use std::any::{TypeId, type_name}; + +use fabro_api::types::{BlobHash as ApiBlobHash, WriteBlobResponse}; +use fabro_types::BlobHash; +use serde_json::json; + +const BLOB_HASH: &str = "2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824"; + +#[test] +fn blob_hash_schema_reuses_domain_type() { + assert_same_type::(); +} + +#[test] +fn write_blob_response_round_trips_exact_wire_shape() { + let value = json!({ "hash": BLOB_HASH }); + + let response: WriteBlobResponse = serde_json::from_value(value.clone()).unwrap(); + assert_eq!(serde_json::to_value(&response).unwrap(), value); +} + +#[test] +fn blob_hash_accepts_any_case_and_emits_lowercase() { + for input in [ + BLOB_HASH.to_string(), + BLOB_HASH.to_uppercase(), + alternating_hex_case(BLOB_HASH), + ] { + let hash: ApiBlobHash = serde_json::from_value(json!(input)).unwrap(); + assert_eq!(serde_json::to_value(hash).unwrap(), json!(BLOB_HASH)); + } +} + +#[test] +fn blob_hash_rejects_non_hex_values() { + assert!(serde_json::from_value::(json!("not-a-blob-hash")).is_err()); +} + +fn assert_same_type() { + assert_eq!( + TypeId::of::(), + TypeId::of::(), + "{} must be the domain type {}", + type_name::(), + type_name::() + ); +} + +fn alternating_hex_case(value: &str) -> String { + value + .chars() + .enumerate() + .map(|(index, character)| { + if index % 2 == 0 { + character.to_ascii_uppercase() + } else { + character + } + }) + .collect() +} diff --git a/lib/foundation/fabro-api/tests/workflow_version_round_trip.rs b/lib/foundation/fabro-api/tests/workflow_version_round_trip.rs index 3bf0c8835..b478e393e 100644 --- a/lib/foundation/fabro-api/tests/workflow_version_round_trip.rs +++ b/lib/foundation/fabro-api/tests/workflow_version_round_trip.rs @@ -40,9 +40,7 @@ fn create_workflow_version_response_round_trips_exact_wire_shape() { } #[test] -fn workflow_version_id_emits_the_documented_lowercase_pattern() { - // Input is accepted case-insensitively, but serialization must match the - // OpenAPI schema pattern `^[0-9a-f]{64}$`. +fn workflow_version_id_accepts_any_case_and_emits_lowercase() { let id = serde_json::from_value::(json!(DEPENDENCY_ID.to_uppercase())) .unwrap(); let emitted = serde_json::to_value(id).unwrap(); diff --git a/lib/foundation/fabro-client/src/client.rs b/lib/foundation/fabro-client/src/client.rs index 4ece0a9de..9547dddce 100644 --- a/lib/foundation/fabro-client/src/client.rs +++ b/lib/foundation/fabro-client/src/client.rs @@ -1839,20 +1839,20 @@ impl Client { .await }) .await?; - response - .into_inner() - .id - .parse() - .context("write_run_blob returned invalid blob id") + Ok(response.into_inner().hash) } - pub async fn read_run_blob(&self, run_id: &RunId, blob_id: &BlobHash) -> Result> { + pub async fn read_run_blob( + &self, + run_id: &RunId, + blob_hash: &BlobHash, + ) -> Result> { let response = self .current_state() .client .read_run_blob() .id(run_id.to_string()) - .blob_id(blob_id.to_string()) + .blob_hash(*blob_hash) .send() .await; match response { diff --git a/lib/foundation/fabro-test/src/lib.rs b/lib/foundation/fabro-test/src/lib.rs index 74a5f6727..00af8bf4c 100644 --- a/lib/foundation/fabro-test/src/lib.rs +++ b/lib/foundation/fabro-test/src/lib.rs @@ -1955,14 +1955,12 @@ pub fn json_snapshot_filters(mut filters: Vec<(String, String)>) -> Vec<(String, r#""id": "[EVENT_ID]""#.to_string(), )); filters = json_elapsed_ms_snapshot_filters(filters); - filters.push(( - r#""manifest_blob":\s*"[0-9a-f]{64}""#.to_string(), - r#""manifest_blob": "[BLOB_ID]""#.to_string(), - )); - filters.push(( - r#""definition_blob":\s*"[0-9a-f]{64}""#.to_string(), - r#""definition_blob": "[BLOB_ID]""#.to_string(), - )); + for field in ["manifest_blob", "definition_blob"] { + filters.push(( + format!(r#""{field}":\s*"[0-9a-f]{{64}}""#), + format!(r#""{field}": "[BLOB_HASH]""#), + )); + } filters.push(( r#""run_dir":\s*"\[STORAGE_DIR\]/scratch/\d{8}-\[ULID\]""#.to_string(), r#""run_dir": "[RUN_DIR]""#.to_string(), @@ -2562,8 +2560,8 @@ mod tests { "inference_time_ms": "[INFERENCE_TIME_MS]", "tool_time_ms": "[TOOL_TIME_MS]", "active_time_ms": "[ACTIVE_TIME_MS]", - "manifest_blob": "[BLOB_ID]", - "definition_blob": "[BLOB_ID]", + "manifest_blob": "[BLOB_HASH]", + "definition_blob": "[BLOB_HASH]", "run_dir": "[RUN_DIR]", "message": "[CUSTOM]" }"# diff --git a/lib/foundation/fabro-types/src/blob_hash.rs b/lib/foundation/fabro-types/src/blob_hash.rs index a99dd007a..45f9de0ad 100644 --- a/lib/foundation/fabro-types/src/blob_hash.rs +++ b/lib/foundation/fabro-types/src/blob_hash.rs @@ -6,6 +6,10 @@ use serde::de::Error as _; use serde::{Deserialize, Deserializer, Serialize, Serializer}; use sha2::{Digest, Sha256}; +/// SHA-256 content identity. +/// +/// Parsing accepts exactly 64 hexadecimal digits case-insensitively. Display +/// and serialization emit the canonical lowercase form. #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)] pub struct BlobHash([u8; 32]); @@ -76,10 +80,17 @@ mod tests { } #[test] - fn display_and_parse_round_trip() { + fn parse_accepts_any_case_and_display_normalizes_to_lowercase() { let blob_hash = BlobHash::new(b"hello"); - let parsed: BlobHash = blob_hash.to_string().parse().unwrap(); - assert_eq!(parsed, blob_hash); + let lowercase = blob_hash.to_string(); + let uppercase = lowercase.to_uppercase(); + let mixed_case = alternating_hex_case(&lowercase); + + for value in [&lowercase, &uppercase, &mixed_case] { + let parsed: BlobHash = value.parse().unwrap(); + assert_eq!(parsed, blob_hash); + assert_eq!(parsed.to_string(), lowercase); + } } #[test] @@ -91,8 +102,30 @@ mod tests { } #[test] - fn parse_rejects_non_hex_blob_hashes() { - let parsed = "not-a-blob-hash".parse::(); - assert!(parsed.is_err()); + fn parse_rejects_invalid_shapes() { + for value in [ + String::new(), + "0".repeat(63), + "0".repeat(65), + "g".repeat(64), + format!("0x{}", "0".repeat(64)), + format!(" {}", "0".repeat(64)), + ] { + assert!(value.parse::().is_err(), "accepted {value:?}"); + } + } + + fn alternating_hex_case(value: &str) -> String { + value + .chars() + .enumerate() + .map(|(index, character)| { + if index % 2 == 0 { + character.to_ascii_uppercase() + } else { + character + } + }) + .collect() } } diff --git a/lib/foundation/fabro-types/src/workflow_version_id.rs b/lib/foundation/fabro-types/src/workflow_version_id.rs index 4bf597f47..7e19f5333 100644 --- a/lib/foundation/fabro-types/src/workflow_version_id.rs +++ b/lib/foundation/fabro-types/src/workflow_version_id.rs @@ -63,10 +63,10 @@ mod tests { #[test] fn conversion_preserves_digest_and_display() { - let blob_id = BlobHash::new(b"workflow"); - let version_id = WorkflowVersionId::from(blob_id); - assert_eq!(version_id.to_string(), blob_id.to_string()); - assert_eq!(BlobHash::from(version_id), blob_id); + let blob_hash = BlobHash::new(b"workflow"); + let version_id = WorkflowVersionId::from(blob_hash); + assert_eq!(version_id.to_string(), blob_hash.to_string()); + assert_eq!(BlobHash::from(version_id), blob_hash); } #[test] diff --git a/lib/packages/fabro-api-client/src/api.ts b/lib/packages/fabro-api-client/src/api.ts index 3d4ddb3c7..b7f58f486 100644 --- a/lib/packages/fabro-api-client/src/api.ts +++ b/lib/packages/fabro-api-client/src/api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/auth-api.ts b/lib/packages/fabro-api-client/src/api/auth-api.ts index e0bd4a9c7..9cb22e4c9 100644 --- a/lib/packages/fabro-api-client/src/api/auth-api.ts +++ b/lib/packages/fabro-api-client/src/api/auth-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/automations-api.ts b/lib/packages/fabro-api-client/src/api/automations-api.ts index 832fa0665..686aef151 100644 --- a/lib/packages/fabro-api-client/src/api/automations-api.ts +++ b/lib/packages/fabro-api-client/src/api/automations-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/billing-api.ts b/lib/packages/fabro-api-client/src/api/billing-api.ts index 31e957bba..93893cf1e 100644 --- a/lib/packages/fabro-api-client/src/api/billing-api.ts +++ b/lib/packages/fabro-api-client/src/api/billing-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/completions-api.ts b/lib/packages/fabro-api-client/src/api/completions-api.ts index 677344d43..e4cb58fd4 100644 --- a/lib/packages/fabro-api-client/src/api/completions-api.ts +++ b/lib/packages/fabro-api-client/src/api/completions-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/discovery-api.ts b/lib/packages/fabro-api-client/src/api/discovery-api.ts index dab8fa6d9..f14061c06 100644 --- a/lib/packages/fabro-api-client/src/api/discovery-api.ts +++ b/lib/packages/fabro-api-client/src/api/discovery-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/environments-api.ts b/lib/packages/fabro-api-client/src/api/environments-api.ts index 6fbcd086e..b458e7501 100644 --- a/lib/packages/fabro-api-client/src/api/environments-api.ts +++ b/lib/packages/fabro-api-client/src/api/environments-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/human-in-the-loop-api.ts b/lib/packages/fabro-api-client/src/api/human-in-the-loop-api.ts index 189517deb..32b365ac2 100644 --- a/lib/packages/fabro-api-client/src/api/human-in-the-loop-api.ts +++ b/lib/packages/fabro-api-client/src/api/human-in-the-loop-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/insights-api.ts b/lib/packages/fabro-api-client/src/api/insights-api.ts index 0361ca0f6..a4ef749dd 100644 --- a/lib/packages/fabro-api-client/src/api/insights-api.ts +++ b/lib/packages/fabro-api-client/src/api/insights-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/install-api.ts b/lib/packages/fabro-api-client/src/api/install-api.ts index 3ba0e29cb..6f1fb0d3a 100644 --- a/lib/packages/fabro-api-client/src/api/install-api.ts +++ b/lib/packages/fabro-api-client/src/api/install-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/integrations-api.ts b/lib/packages/fabro-api-client/src/api/integrations-api.ts index 311da8593..13421515a 100644 --- a/lib/packages/fabro-api-client/src/api/integrations-api.ts +++ b/lib/packages/fabro-api-client/src/api/integrations-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/mcpservers-api.ts b/lib/packages/fabro-api-client/src/api/mcpservers-api.ts index f72066148..23cb3d716 100644 --- a/lib/packages/fabro-api-client/src/api/mcpservers-api.ts +++ b/lib/packages/fabro-api-client/src/api/mcpservers-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/models-api.ts b/lib/packages/fabro-api-client/src/api/models-api.ts index 03a90fac4..f2662fe2b 100644 --- a/lib/packages/fabro-api-client/src/api/models-api.ts +++ b/lib/packages/fabro-api-client/src/api/models-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/playground-api.ts b/lib/packages/fabro-api-client/src/api/playground-api.ts index c6843ab4f..acd6dfb6b 100644 --- a/lib/packages/fabro-api-client/src/api/playground-api.ts +++ b/lib/packages/fabro-api-client/src/api/playground-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/repos-api.ts b/lib/packages/fabro-api-client/src/api/repos-api.ts index f56f69caf..2b95ee7e0 100644 --- a/lib/packages/fabro-api-client/src/api/repos-api.ts +++ b/lib/packages/fabro-api-client/src/api/repos-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/run-internals-api.ts b/lib/packages/fabro-api-client/src/api/run-internals-api.ts index 403e2eb05..771501839 100644 --- a/lib/packages/fabro-api-client/src/api/run-internals-api.ts +++ b/lib/packages/fabro-api-client/src/api/run-internals-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -781,21 +781,21 @@ export const RunInternalsApiAxiosParamCreator = function (configuration?: Config }; }, /** - * Reads a previously stored blob by identifier. + * Reads a previously stored blob by hash. * @summary Read Run Blob * @param {string} id Unique run identifier (ULID). - * @param {string} blobId Content-addressed blob identifier. + * @param {string} blobHash Content-addressed blob hash. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - readRunBlob: async (id: string, blobId: string, options: RawAxiosRequestConfig = {}): Promise => { + readRunBlob: async (id: string, blobHash: string, options: RawAxiosRequestConfig = {}): Promise => { // verify required parameter 'id' is not null or undefined assertParamExists('readRunBlob', 'id', id) - // verify required parameter 'blobId' is not null or undefined - assertParamExists('readRunBlob', 'blobId', blobId) - const localVarPath = `/api/v1/runs/{id}/blobs/{blobId}` + // verify required parameter 'blobHash' is not null or undefined + assertParamExists('readRunBlob', 'blobHash', blobHash) + const localVarPath = `/api/v1/runs/{id}/blobs/{blobHash}` .replace(`{${"id"}}`, encodeURIComponent(String(id))) - .replace(`{${"blobId"}}`, encodeURIComponent(String(blobId))); + .replace(`{${"blobHash"}}`, encodeURIComponent(String(blobHash))); // use dummy base URL string because the URL constructor only accepts absolute URLs. const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); let baseOptions; @@ -905,7 +905,7 @@ export const RunInternalsApiAxiosParamCreator = function (configuration?: Config }; }, /** - * Writes an opaque binary blob and returns its content-addressed blob identifier. + * Writes an opaque binary blob and returns its content-addressed blob hash. * @summary Write Run Blob * @param {string} id Unique run identifier (ULID). * @param {File} body @@ -1179,15 +1179,15 @@ export const RunInternalsApiFp = function(configuration?: Configuration) { return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }, /** - * Reads a previously stored blob by identifier. + * Reads a previously stored blob by hash. * @summary Read Run Blob * @param {string} id Unique run identifier (ULID). - * @param {string} blobId Content-addressed blob identifier. + * @param {string} blobHash Content-addressed blob hash. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async readRunBlob(id: string, blobId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.readRunBlob(id, blobId, options); + async readRunBlob(id: string, blobHash: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.readRunBlob(id, blobHash, options); const localVarOperationServerIndex = configuration?.serverIndex ?? 0; const localVarOperationServerBasePath = operationServerMap['RunInternalsApi.readRunBlob']?.[localVarOperationServerIndex]?.url; return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); @@ -1219,7 +1219,7 @@ export const RunInternalsApiFp = function(configuration?: Configuration) { return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }, /** - * Writes an opaque binary blob and returns its content-addressed blob identifier. + * Writes an opaque binary blob and returns its content-addressed blob hash. * @summary Write Run Blob * @param {string} id Unique run identifier (ULID). * @param {File} body @@ -1417,15 +1417,15 @@ export const RunInternalsApiFactory = function (configuration?: Configuration, b return localVarFp.putStageArtifact(id, stageId, retry, body, filename, options).then((request) => request(axios, basePath)); }, /** - * Reads a previously stored blob by identifier. + * Reads a previously stored blob by hash. * @summary Read Run Blob * @param {string} id Unique run identifier (ULID). - * @param {string} blobId Content-addressed blob identifier. + * @param {string} blobHash Content-addressed blob hash. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - readRunBlob(id: string, blobId: string, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.readRunBlob(id, blobId, options).then((request) => request(axios, basePath)); + readRunBlob(id: string, blobHash: string, options?: RawAxiosRequestConfig): AxiosPromise { + return localVarFp.readRunBlob(id, blobHash, options).then((request) => request(axios, basePath)); }, /** * Returns the latest checkpoint data for a run, or null if no checkpoint has been recorded yet. @@ -1448,7 +1448,7 @@ export const RunInternalsApiFactory = function (configuration?: Configuration, b return localVarFp.retrieveRunSettings(id, options).then((request) => request(axios, basePath)); }, /** - * Writes an opaque binary blob and returns its content-addressed blob identifier. + * Writes an opaque binary blob and returns its content-addressed blob hash. * @summary Write Run Blob * @param {string} id Unique run identifier (ULID). * @param {File} body @@ -1656,15 +1656,15 @@ export class RunInternalsApi extends BaseAPI { } /** - * Reads a previously stored blob by identifier. + * Reads a previously stored blob by hash. * @summary Read Run Blob * @param {string} id Unique run identifier (ULID). - * @param {string} blobId Content-addressed blob identifier. + * @param {string} blobHash Content-addressed blob hash. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - public readRunBlob(id: string, blobId: string, options?: RawAxiosRequestConfig) { - return RunInternalsApiFp(this.configuration).readRunBlob(id, blobId, options).then((request) => request(this.axios, this.basePath)); + public readRunBlob(id: string, blobHash: string, options?: RawAxiosRequestConfig) { + return RunInternalsApiFp(this.configuration).readRunBlob(id, blobHash, options).then((request) => request(this.axios, this.basePath)); } /** @@ -1690,7 +1690,7 @@ export class RunInternalsApi extends BaseAPI { } /** - * Writes an opaque binary blob and returns its content-addressed blob identifier. + * Writes an opaque binary blob and returns its content-addressed blob hash. * @summary Write Run Blob * @param {string} id Unique run identifier (ULID). * @param {File} body diff --git a/lib/packages/fabro-api-client/src/api/run-outputs-api.ts b/lib/packages/fabro-api-client/src/api/run-outputs-api.ts index ca9c328db..65014bf61 100644 --- a/lib/packages/fabro-api-client/src/api/run-outputs-api.ts +++ b/lib/packages/fabro-api-client/src/api/run-outputs-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/runs-api.ts b/lib/packages/fabro-api-client/src/api/runs-api.ts index e3d936afe..f61c0fe8f 100644 --- a/lib/packages/fabro-api-client/src/api/runs-api.ts +++ b/lib/packages/fabro-api-client/src/api/runs-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/sandboxes-api.ts b/lib/packages/fabro-api-client/src/api/sandboxes-api.ts index 87ddcd56a..35dd77d55 100644 --- a/lib/packages/fabro-api-client/src/api/sandboxes-api.ts +++ b/lib/packages/fabro-api-client/src/api/sandboxes-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/secrets-api.ts b/lib/packages/fabro-api-client/src/api/secrets-api.ts index a22887e1a..56df87983 100644 --- a/lib/packages/fabro-api-client/src/api/secrets-api.ts +++ b/lib/packages/fabro-api-client/src/api/secrets-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/sessions-api.ts b/lib/packages/fabro-api-client/src/api/sessions-api.ts index 904647177..8cf90dddc 100644 --- a/lib/packages/fabro-api-client/src/api/sessions-api.ts +++ b/lib/packages/fabro-api-client/src/api/sessions-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/settings-api.ts b/lib/packages/fabro-api-client/src/api/settings-api.ts index 90d83487f..de280fc1a 100644 --- a/lib/packages/fabro-api-client/src/api/settings-api.ts +++ b/lib/packages/fabro-api-client/src/api/settings-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/system-api.ts b/lib/packages/fabro-api-client/src/api/system-api.ts index 4b9efebd8..e6a51a4a1 100644 --- a/lib/packages/fabro-api-client/src/api/system-api.ts +++ b/lib/packages/fabro-api-client/src/api/system-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/variables-api.ts b/lib/packages/fabro-api-client/src/api/variables-api.ts index 0542e1110..319c75436 100644 --- a/lib/packages/fabro-api-client/src/api/variables-api.ts +++ b/lib/packages/fabro-api-client/src/api/variables-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/workflow-versions-api.ts b/lib/packages/fabro-api-client/src/api/workflow-versions-api.ts index edd6a2ccf..4285c1849 100644 --- a/lib/packages/fabro-api-client/src/api/workflow-versions-api.ts +++ b/lib/packages/fabro-api-client/src/api/workflow-versions-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/api/workflows-api.ts b/lib/packages/fabro-api-client/src/api/workflows-api.ts index 2b68507b4..0638ee85a 100644 --- a/lib/packages/fabro-api-client/src/api/workflows-api.ts +++ b/lib/packages/fabro-api-client/src/api/workflows-api.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/base.ts b/lib/packages/fabro-api-client/src/base.ts index f486d5de2..25e65dfe7 100644 --- a/lib/packages/fabro-api-client/src/base.ts +++ b/lib/packages/fabro-api-client/src/base.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/common.ts b/lib/packages/fabro-api-client/src/common.ts index 0a2fab196..2b5be404c 100644 --- a/lib/packages/fabro-api-client/src/common.ts +++ b/lib/packages/fabro-api-client/src/common.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/configuration.ts b/lib/packages/fabro-api-client/src/configuration.ts index b62a5fb52..07b7ae9d0 100644 --- a/lib/packages/fabro-api-client/src/configuration.ts +++ b/lib/packages/fabro-api-client/src/configuration.ts @@ -3,7 +3,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/index.ts b/lib/packages/fabro-api-client/src/index.ts index 64e64478e..c0adbf056 100644 --- a/lib/packages/fabro-api-client/src/index.ts +++ b/lib/packages/fabro-api-client/src/index.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/activated-skill.ts b/lib/packages/fabro-api-client/src/models/activated-skill.ts index 2a8cd0a07..5bc9d5c57 100644 --- a/lib/packages/fabro-api-client/src/models/activated-skill.ts +++ b/lib/packages/fabro-api-client/src/models/activated-skill.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/agent-control-state.ts b/lib/packages/fabro-api-client/src/models/agent-control-state.ts index 821dc97af..91966dbd3 100644 --- a/lib/packages/fabro-api-client/src/models/agent-control-state.ts +++ b/lib/packages/fabro-api-client/src/models/agent-control-state.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/agent-mcp-tool-summary.ts b/lib/packages/fabro-api-client/src/models/agent-mcp-tool-summary.ts index 294ed6e81..e5510ca18 100644 --- a/lib/packages/fabro-api-client/src/models/agent-mcp-tool-summary.ts +++ b/lib/packages/fabro-api-client/src/models/agent-mcp-tool-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/agent-message-props.ts b/lib/packages/fabro-api-client/src/models/agent-message-props.ts index bb98aeeeb..2e93de6e4 100644 --- a/lib/packages/fabro-api-client/src/models/agent-message-props.ts +++ b/lib/packages/fabro-api-client/src/models/agent-message-props.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/agent-session-activated-props.ts b/lib/packages/fabro-api-client/src/models/agent-session-activated-props.ts index 77a3d829f..e187d0f78 100644 --- a/lib/packages/fabro-api-client/src/models/agent-session-activated-props.ts +++ b/lib/packages/fabro-api-client/src/models/agent-session-activated-props.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/agent-skill-activation-source.ts b/lib/packages/fabro-api-client/src/models/agent-skill-activation-source.ts index 334638e4c..99da82a62 100644 --- a/lib/packages/fabro-api-client/src/models/agent-skill-activation-source.ts +++ b/lib/packages/fabro-api-client/src/models/agent-skill-activation-source.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/agent-skill-summary.ts b/lib/packages/fabro-api-client/src/models/agent-skill-summary.ts index c9a3f101c..ff1db8811 100644 --- a/lib/packages/fabro-api-client/src/models/agent-skill-summary.ts +++ b/lib/packages/fabro-api-client/src/models/agent-skill-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/agent-tool-category.ts b/lib/packages/fabro-api-client/src/models/agent-tool-category.ts index 8e1eda4b0..c5cd0f4b3 100644 --- a/lib/packages/fabro-api-client/src/models/agent-tool-category.ts +++ b/lib/packages/fabro-api-client/src/models/agent-tool-category.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/agent-tool-source-mcp.ts b/lib/packages/fabro-api-client/src/models/agent-tool-source-mcp.ts index 3f8089a92..0ca524dd3 100644 --- a/lib/packages/fabro-api-client/src/models/agent-tool-source-mcp.ts +++ b/lib/packages/fabro-api-client/src/models/agent-tool-source-mcp.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/agent-tool-source-native.ts b/lib/packages/fabro-api-client/src/models/agent-tool-source-native.ts index 4ea94bead..6f8c4909f 100644 --- a/lib/packages/fabro-api-client/src/models/agent-tool-source-native.ts +++ b/lib/packages/fabro-api-client/src/models/agent-tool-source-native.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/agent-tool-source-skill.ts b/lib/packages/fabro-api-client/src/models/agent-tool-source-skill.ts index e150e8591..e01673606 100644 --- a/lib/packages/fabro-api-client/src/models/agent-tool-source-skill.ts +++ b/lib/packages/fabro-api-client/src/models/agent-tool-source-skill.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/agent-tool-source.ts b/lib/packages/fabro-api-client/src/models/agent-tool-source.ts index 391f72fd5..0e664b6cf 100644 --- a/lib/packages/fabro-api-client/src/models/agent-tool-source.ts +++ b/lib/packages/fabro-api-client/src/models/agent-tool-source.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/agent-tool-summary.ts b/lib/packages/fabro-api-client/src/models/agent-tool-summary.ts index b52e220c0..9a234f340 100644 --- a/lib/packages/fabro-api-client/src/models/agent-tool-summary.ts +++ b/lib/packages/fabro-api-client/src/models/agent-tool-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/agent-tools-available-props.ts b/lib/packages/fabro-api-client/src/models/agent-tools-available-props.ts index 1231a8aa8..71125a016 100644 --- a/lib/packages/fabro-api-client/src/models/agent-tools-available-props.ts +++ b/lib/packages/fabro-api-client/src/models/agent-tools-available-props.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/aggregate-billing-totals.ts b/lib/packages/fabro-api-client/src/models/aggregate-billing-totals.ts index 505bdf57a..7616b4a60 100644 --- a/lib/packages/fabro-api-client/src/models/aggregate-billing-totals.ts +++ b/lib/packages/fabro-api-client/src/models/aggregate-billing-totals.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/aggregate-billing.ts b/lib/packages/fabro-api-client/src/models/aggregate-billing.ts index 140eed45a..efce18df8 100644 --- a/lib/packages/fabro-api-client/src/models/aggregate-billing.ts +++ b/lib/packages/fabro-api-client/src/models/aggregate-billing.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/api-question.ts b/lib/packages/fabro-api-client/src/models/api-question.ts index 8b0330475..1894720e4 100644 --- a/lib/packages/fabro-api-client/src/models/api-question.ts +++ b/lib/packages/fabro-api-client/src/models/api-question.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/append-event-response.ts b/lib/packages/fabro-api-client/src/models/append-event-response.ts index 66412ef29..dc5f95688 100644 --- a/lib/packages/fabro-api-client/src/models/append-event-response.ts +++ b/lib/packages/fabro-api-client/src/models/append-event-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/approval-mode.ts b/lib/packages/fabro-api-client/src/models/approval-mode.ts index 7684e7600..9d7f3beec 100644 --- a/lib/packages/fabro-api-client/src/models/approval-mode.ts +++ b/lib/packages/fabro-api-client/src/models/approval-mode.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/artifact-batch-upload-entry.ts b/lib/packages/fabro-api-client/src/models/artifact-batch-upload-entry.ts index c4dfe1825..160e12f90 100644 --- a/lib/packages/fabro-api-client/src/models/artifact-batch-upload-entry.ts +++ b/lib/packages/fabro-api-client/src/models/artifact-batch-upload-entry.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -27,7 +27,7 @@ export interface ArtifactBatchUploadEntry { */ 'path': string; /** - * Optional lowercase hex SHA-256 checksum for the file contents. + * Optional SHA-256 checksum for the file contents; hex input is case-insensitive. */ 'sha256'?: string | null; /** diff --git a/lib/packages/fabro-api-client/src/models/artifact-batch-upload-manifest.ts b/lib/packages/fabro-api-client/src/models/artifact-batch-upload-manifest.ts index ad483a824..080a3e575 100644 --- a/lib/packages/fabro-api-client/src/models/artifact-batch-upload-manifest.ts +++ b/lib/packages/fabro-api-client/src/models/artifact-batch-upload-manifest.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/artifact-entry.ts b/lib/packages/fabro-api-client/src/models/artifact-entry.ts index cee73730c..2bec55376 100644 --- a/lib/packages/fabro-api-client/src/models/artifact-entry.ts +++ b/lib/packages/fabro-api-client/src/models/artifact-entry.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/artifact-list-response.ts b/lib/packages/fabro-api-client/src/models/artifact-list-response.ts index a57ba2d10..f30aade3e 100644 --- a/lib/packages/fabro-api-client/src/models/artifact-list-response.ts +++ b/lib/packages/fabro-api-client/src/models/artifact-list-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/artifacts-settings.ts b/lib/packages/fabro-api-client/src/models/artifacts-settings.ts index d9e7798db..9d2ab9b02 100644 --- a/lib/packages/fabro-api-client/src/models/artifacts-settings.ts +++ b/lib/packages/fabro-api-client/src/models/artifacts-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/ask-fabro.ts b/lib/packages/fabro-api-client/src/models/ask-fabro.ts index 8d9c47e76..d99f6e9c8 100644 --- a/lib/packages/fabro-api-client/src/models/ask-fabro.ts +++ b/lib/packages/fabro-api-client/src/models/ask-fabro.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/auth-config-response.ts b/lib/packages/fabro-api-client/src/models/auth-config-response.ts index c6a219185..d28517e9e 100644 --- a/lib/packages/fabro-api-client/src/models/auth-config-response.ts +++ b/lib/packages/fabro-api-client/src/models/auth-config-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/auth-me-response.ts b/lib/packages/fabro-api-client/src/models/auth-me-response.ts index c04b83e4f..e64ec8ba0 100644 --- a/lib/packages/fabro-api-client/src/models/auth-me-response.ts +++ b/lib/packages/fabro-api-client/src/models/auth-me-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/auth-method.ts b/lib/packages/fabro-api-client/src/models/auth-method.ts index 80b643fef..8ba1ecc9b 100644 --- a/lib/packages/fabro-api-client/src/models/auth-method.ts +++ b/lib/packages/fabro-api-client/src/models/auth-method.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/auth-session-user.ts b/lib/packages/fabro-api-client/src/models/auth-session-user.ts index 6afa92a88..065cacfba 100644 --- a/lib/packages/fabro-api-client/src/models/auth-session-user.ts +++ b/lib/packages/fabro-api-client/src/models/auth-session-user.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/auth-session.ts b/lib/packages/fabro-api-client/src/models/auth-session.ts index d57f6df59..088879153 100644 --- a/lib/packages/fabro-api-client/src/models/auth-session.ts +++ b/lib/packages/fabro-api-client/src/models/auth-session.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/auth-sessions-response.ts b/lib/packages/fabro-api-client/src/models/auth-sessions-response.ts index 82c01fb1d..3d0685eef 100644 --- a/lib/packages/fabro-api-client/src/models/auth-sessions-response.ts +++ b/lib/packages/fabro-api-client/src/models/auth-sessions-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/automation-api-trigger.ts b/lib/packages/fabro-api-client/src/models/automation-api-trigger.ts index 12a830945..b0bf14572 100644 --- a/lib/packages/fabro-api-client/src/models/automation-api-trigger.ts +++ b/lib/packages/fabro-api-client/src/models/automation-api-trigger.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/automation-list-meta.ts b/lib/packages/fabro-api-client/src/models/automation-list-meta.ts index 12524dba9..b2a9fb140 100644 --- a/lib/packages/fabro-api-client/src/models/automation-list-meta.ts +++ b/lib/packages/fabro-api-client/src/models/automation-list-meta.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/automation-list-response.ts b/lib/packages/fabro-api-client/src/models/automation-list-response.ts index 58258b67d..b194db4a1 100644 --- a/lib/packages/fabro-api-client/src/models/automation-list-response.ts +++ b/lib/packages/fabro-api-client/src/models/automation-list-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/automation-ref.ts b/lib/packages/fabro-api-client/src/models/automation-ref.ts index d8055703b..a22d99199 100644 --- a/lib/packages/fabro-api-client/src/models/automation-ref.ts +++ b/lib/packages/fabro-api-client/src/models/automation-ref.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/automation-schedule-trigger.ts b/lib/packages/fabro-api-client/src/models/automation-schedule-trigger.ts index 85b9631b2..d44d209d9 100644 --- a/lib/packages/fabro-api-client/src/models/automation-schedule-trigger.ts +++ b/lib/packages/fabro-api-client/src/models/automation-schedule-trigger.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/automation-target.ts b/lib/packages/fabro-api-client/src/models/automation-target.ts index 6eb3daa75..74e94c989 100644 --- a/lib/packages/fabro-api-client/src/models/automation-target.ts +++ b/lib/packages/fabro-api-client/src/models/automation-target.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/automation-trigger.ts b/lib/packages/fabro-api-client/src/models/automation-trigger.ts index 30e73dc81..ed204177b 100644 --- a/lib/packages/fabro-api-client/src/models/automation-trigger.ts +++ b/lib/packages/fabro-api-client/src/models/automation-trigger.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/automation.ts b/lib/packages/fabro-api-client/src/models/automation.ts index 5c1c20bb1..92cf402e2 100644 --- a/lib/packages/fabro-api-client/src/models/automation.ts +++ b/lib/packages/fabro-api-client/src/models/automation.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/batch-delete-runs-request.ts b/lib/packages/fabro-api-client/src/models/batch-delete-runs-request.ts index 039b5ffbc..38fa3b995 100644 --- a/lib/packages/fabro-api-client/src/models/batch-delete-runs-request.ts +++ b/lib/packages/fabro-api-client/src/models/batch-delete-runs-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/batch-delete-runs-response.ts b/lib/packages/fabro-api-client/src/models/batch-delete-runs-response.ts index cdc96e05f..1d9d3173e 100644 --- a/lib/packages/fabro-api-client/src/models/batch-delete-runs-response.ts +++ b/lib/packages/fabro-api-client/src/models/batch-delete-runs-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/batch-delete-runs-result.ts b/lib/packages/fabro-api-client/src/models/batch-delete-runs-result.ts index e55be5fe5..764c19013 100644 --- a/lib/packages/fabro-api-client/src/models/batch-delete-runs-result.ts +++ b/lib/packages/fabro-api-client/src/models/batch-delete-runs-result.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/batch-delete-runs-summary.ts b/lib/packages/fabro-api-client/src/models/batch-delete-runs-summary.ts index a335230b2..849dc7a29 100644 --- a/lib/packages/fabro-api-client/src/models/batch-delete-runs-summary.ts +++ b/lib/packages/fabro-api-client/src/models/batch-delete-runs-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-request.ts b/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-request.ts index d93be0250..86a8b5ac9 100644 --- a/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-request.ts +++ b/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-response.ts b/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-response.ts index 8dc5a80dd..b2bca1f44 100644 --- a/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-response.ts +++ b/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-result.ts b/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-result.ts index d3559109f..851e4e7f3 100644 --- a/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-result.ts +++ b/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-result.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-summary.ts b/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-summary.ts index e01f9815d..f5bf9cd2a 100644 --- a/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-summary.ts +++ b/lib/packages/fabro-api-client/src/models/batch-run-lifecycle-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/billed-token-counts.ts b/lib/packages/fabro-api-client/src/models/billed-token-counts.ts index 1c945f4d3..19413b7c0 100644 --- a/lib/packages/fabro-api-client/src/models/billed-token-counts.ts +++ b/lib/packages/fabro-api-client/src/models/billed-token-counts.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/billing-by-model.ts b/lib/packages/fabro-api-client/src/models/billing-by-model.ts index 0678eae9e..9c2bf6153 100644 --- a/lib/packages/fabro-api-client/src/models/billing-by-model.ts +++ b/lib/packages/fabro-api-client/src/models/billing-by-model.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/billing-model-ref.ts b/lib/packages/fabro-api-client/src/models/billing-model-ref.ts index 5b12fa237..b7f812bb1 100644 --- a/lib/packages/fabro-api-client/src/models/billing-model-ref.ts +++ b/lib/packages/fabro-api-client/src/models/billing-model-ref.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/billing-speed.ts b/lib/packages/fabro-api-client/src/models/billing-speed.ts index 3cad0e643..80e070d52 100644 --- a/lib/packages/fabro-api-client/src/models/billing-speed.ts +++ b/lib/packages/fabro-api-client/src/models/billing-speed.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/billing-stage-ref.ts b/lib/packages/fabro-api-client/src/models/billing-stage-ref.ts index 8db422a67..ca95cb907 100644 --- a/lib/packages/fabro-api-client/src/models/billing-stage-ref.ts +++ b/lib/packages/fabro-api-client/src/models/billing-stage-ref.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/blocked-reason.ts b/lib/packages/fabro-api-client/src/models/blocked-reason.ts index dda10abec..7567ffe5a 100644 --- a/lib/packages/fabro-api-client/src/models/blocked-reason.ts +++ b/lib/packages/fabro-api-client/src/models/blocked-reason.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/board-column.ts b/lib/packages/fabro-api-client/src/models/board-column.ts index 8dcd91a7f..ef67b0119 100644 --- a/lib/packages/fabro-api-client/src/models/board-column.ts +++ b/lib/packages/fabro-api-client/src/models/board-column.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/check-run-status.ts b/lib/packages/fabro-api-client/src/models/check-run-status.ts index c82703c8d..d3fbe1d5e 100644 --- a/lib/packages/fabro-api-client/src/models/check-run-status.ts +++ b/lib/packages/fabro-api-client/src/models/check-run-status.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/check-run.ts b/lib/packages/fabro-api-client/src/models/check-run.ts index b94d2b9e5..f00a1afa3 100644 --- a/lib/packages/fabro-api-client/src/models/check-run.ts +++ b/lib/packages/fabro-api-client/src/models/check-run.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/checkpoint-record.ts b/lib/packages/fabro-api-client/src/models/checkpoint-record.ts index 9177008eb..d3f7f4e34 100644 --- a/lib/packages/fabro-api-client/src/models/checkpoint-record.ts +++ b/lib/packages/fabro-api-client/src/models/checkpoint-record.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/close-run-pull-request-response.ts b/lib/packages/fabro-api-client/src/models/close-run-pull-request-response.ts index ba522a231..521e27156 100644 --- a/lib/packages/fabro-api-client/src/models/close-run-pull-request-response.ts +++ b/lib/packages/fabro-api-client/src/models/close-run-pull-request-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/code-location.ts b/lib/packages/fabro-api-client/src/models/code-location.ts index 42a1a3f82..52e29b6e4 100644 --- a/lib/packages/fabro-api-client/src/models/code-location.ts +++ b/lib/packages/fabro-api-client/src/models/code-location.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/command-log-response.ts b/lib/packages/fabro-api-client/src/models/command-log-response.ts index 6e475131c..b28515f6c 100644 --- a/lib/packages/fabro-api-client/src/models/command-log-response.ts +++ b/lib/packages/fabro-api-client/src/models/command-log-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/command-termination.ts b/lib/packages/fabro-api-client/src/models/command-termination.ts index 11323d767..30eb79b6f 100644 --- a/lib/packages/fabro-api-client/src/models/command-termination.ts +++ b/lib/packages/fabro-api-client/src/models/command-termination.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/completion-content-part.ts b/lib/packages/fabro-api-client/src/models/completion-content-part.ts index def5398f4..0f0d2d7e0 100644 --- a/lib/packages/fabro-api-client/src/models/completion-content-part.ts +++ b/lib/packages/fabro-api-client/src/models/completion-content-part.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/completion-message.ts b/lib/packages/fabro-api-client/src/models/completion-message.ts index da81f2603..60f264761 100644 --- a/lib/packages/fabro-api-client/src/models/completion-message.ts +++ b/lib/packages/fabro-api-client/src/models/completion-message.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/completion-response.ts b/lib/packages/fabro-api-client/src/models/completion-response.ts index 5b3d34e4b..555907f9c 100644 --- a/lib/packages/fabro-api-client/src/models/completion-response.ts +++ b/lib/packages/fabro-api-client/src/models/completion-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/completion-tool-choice.ts b/lib/packages/fabro-api-client/src/models/completion-tool-choice.ts index 97196c2e1..87b4ffdb2 100644 --- a/lib/packages/fabro-api-client/src/models/completion-tool-choice.ts +++ b/lib/packages/fabro-api-client/src/models/completion-tool-choice.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/completion-tool-definition.ts b/lib/packages/fabro-api-client/src/models/completion-tool-definition.ts index ba2b91b38..2cdfa60e7 100644 --- a/lib/packages/fabro-api-client/src/models/completion-tool-definition.ts +++ b/lib/packages/fabro-api-client/src/models/completion-tool-definition.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/completion-usage.ts b/lib/packages/fabro-api-client/src/models/completion-usage.ts index 056007b1b..6d2e8892d 100644 --- a/lib/packages/fabro-api-client/src/models/completion-usage.ts +++ b/lib/packages/fabro-api-client/src/models/completion-usage.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/conclusion.ts b/lib/packages/fabro-api-client/src/models/conclusion.ts index f687ddf24..e7a3c8da4 100644 --- a/lib/packages/fabro-api-client/src/models/conclusion.ts +++ b/lib/packages/fabro-api-client/src/models/conclusion.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/cost-source.ts b/lib/packages/fabro-api-client/src/models/cost-source.ts index 172115254..9e91b3d6f 100644 --- a/lib/packages/fabro-api-client/src/models/cost-source.ts +++ b/lib/packages/fabro-api-client/src/models/cost-source.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/create-automation-request.ts b/lib/packages/fabro-api-client/src/models/create-automation-request.ts index ce99d34db..47669ad5d 100644 --- a/lib/packages/fabro-api-client/src/models/create-automation-request.ts +++ b/lib/packages/fabro-api-client/src/models/create-automation-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/create-completion-request.ts b/lib/packages/fabro-api-client/src/models/create-completion-request.ts index 836e20c0d..c59f7869d 100644 --- a/lib/packages/fabro-api-client/src/models/create-completion-request.ts +++ b/lib/packages/fabro-api-client/src/models/create-completion-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/create-environment-request.ts b/lib/packages/fabro-api-client/src/models/create-environment-request.ts index fd4d48006..8ae7a1dd9 100644 --- a/lib/packages/fabro-api-client/src/models/create-environment-request.ts +++ b/lib/packages/fabro-api-client/src/models/create-environment-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/create-mcp-server-request.ts b/lib/packages/fabro-api-client/src/models/create-mcp-server-request.ts index 058a3f7e3..bf8af246c 100644 --- a/lib/packages/fabro-api-client/src/models/create-mcp-server-request.ts +++ b/lib/packages/fabro-api-client/src/models/create-mcp-server-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/create-playground-chat-request.ts b/lib/packages/fabro-api-client/src/models/create-playground-chat-request.ts index 1d1ddc216..7c17866ec 100644 --- a/lib/packages/fabro-api-client/src/models/create-playground-chat-request.ts +++ b/lib/packages/fabro-api-client/src/models/create-playground-chat-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/create-run-pull-request-request.ts b/lib/packages/fabro-api-client/src/models/create-run-pull-request-request.ts index 7ec1a3020..5c0473b53 100644 --- a/lib/packages/fabro-api-client/src/models/create-run-pull-request-request.ts +++ b/lib/packages/fabro-api-client/src/models/create-run-pull-request-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/create-run-session-request.ts b/lib/packages/fabro-api-client/src/models/create-run-session-request.ts index f079d1b01..2c2d7a939 100644 --- a/lib/packages/fabro-api-client/src/models/create-run-session-request.ts +++ b/lib/packages/fabro-api-client/src/models/create-run-session-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/create-secret-request.ts b/lib/packages/fabro-api-client/src/models/create-secret-request.ts index 5061fd4a7..856e826a3 100644 --- a/lib/packages/fabro-api-client/src/models/create-secret-request.ts +++ b/lib/packages/fabro-api-client/src/models/create-secret-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/create-variable-request.ts b/lib/packages/fabro-api-client/src/models/create-variable-request.ts index f33de18d1..5f5cef14d 100644 --- a/lib/packages/fabro-api-client/src/models/create-variable-request.ts +++ b/lib/packages/fabro-api-client/src/models/create-variable-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/create-workflow-version-response.ts b/lib/packages/fabro-api-client/src/models/create-workflow-version-response.ts index 79ede2d1b..de58626b1 100644 --- a/lib/packages/fabro-api-client/src/models/create-workflow-version-response.ts +++ b/lib/packages/fabro-api-client/src/models/create-workflow-version-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -19,7 +19,7 @@ */ export interface CreateWorkflowVersionResponse { /** - * SHA-256 identity of validated canonical workflow-version bytes. + * SHA-256 identity of validated canonical workflow-version bytes. Hex input is case-insensitive; Fabro emits the canonical lowercase form. */ 'workflow_version_id': string; } diff --git a/lib/packages/fabro-api-client/src/models/delete-run-response.ts b/lib/packages/fabro-api-client/src/models/delete-run-response.ts index 696f161ca..587f58ecf 100644 --- a/lib/packages/fabro-api-client/src/models/delete-run-response.ts +++ b/lib/packages/fabro-api-client/src/models/delete-run-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/delete-run-sandbox.ts b/lib/packages/fabro-api-client/src/models/delete-run-sandbox.ts index 349ce716d..bdcf34a0c 100644 --- a/lib/packages/fabro-api-client/src/models/delete-run-sandbox.ts +++ b/lib/packages/fabro-api-client/src/models/delete-run-sandbox.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/delete-secret-request.ts b/lib/packages/fabro-api-client/src/models/delete-secret-request.ts index 34e00310b..e7282b932 100644 --- a/lib/packages/fabro-api-client/src/models/delete-secret-request.ts +++ b/lib/packages/fabro-api-client/src/models/delete-secret-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/deny-run-request.ts b/lib/packages/fabro-api-client/src/models/deny-run-request.ts index b7ae55fb0..00055cdda 100644 --- a/lib/packages/fabro-api-client/src/models/deny-run-request.ts +++ b/lib/packages/fabro-api-client/src/models/deny-run-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/dev-token-login-request.ts b/lib/packages/fabro-api-client/src/models/dev-token-login-request.ts index 8dd541b95..2ca322d2c 100644 --- a/lib/packages/fabro-api-client/src/models/dev-token-login-request.ts +++ b/lib/packages/fabro-api-client/src/models/dev-token-login-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/dev-token-login-response.ts b/lib/packages/fabro-api-client/src/models/dev-token-login-response.ts index 8492cc69c..7ffa09c89 100644 --- a/lib/packages/fabro-api-client/src/models/dev-token-login-response.ts +++ b/lib/packages/fabro-api-client/src/models/dev-token-login-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/diagnostics-check.ts b/lib/packages/fabro-api-client/src/models/diagnostics-check.ts index efa40dc67..d9887001f 100644 --- a/lib/packages/fabro-api-client/src/models/diagnostics-check.ts +++ b/lib/packages/fabro-api-client/src/models/diagnostics-check.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/diagnostics-detail.ts b/lib/packages/fabro-api-client/src/models/diagnostics-detail.ts index 538f48eb8..6b8812eb4 100644 --- a/lib/packages/fabro-api-client/src/models/diagnostics-detail.ts +++ b/lib/packages/fabro-api-client/src/models/diagnostics-detail.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/diagnostics-report.ts b/lib/packages/fabro-api-client/src/models/diagnostics-report.ts index 55d32af76..36684c310 100644 --- a/lib/packages/fabro-api-client/src/models/diagnostics-report.ts +++ b/lib/packages/fabro-api-client/src/models/diagnostics-report.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/diagnostics-section.ts b/lib/packages/fabro-api-client/src/models/diagnostics-section.ts index d21f0c3ca..a0bba8977 100644 --- a/lib/packages/fabro-api-client/src/models/diagnostics-section.ts +++ b/lib/packages/fabro-api-client/src/models/diagnostics-section.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/diff-file.ts b/lib/packages/fabro-api-client/src/models/diff-file.ts index ca7126713..4bce821f6 100644 --- a/lib/packages/fabro-api-client/src/models/diff-file.ts +++ b/lib/packages/fabro-api-client/src/models/diff-file.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/diff-stats.ts b/lib/packages/fabro-api-client/src/models/diff-stats.ts index b86968c04..3c55280a9 100644 --- a/lib/packages/fabro-api-client/src/models/diff-stats.ts +++ b/lib/packages/fabro-api-client/src/models/diff-stats.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/diff-summary.ts b/lib/packages/fabro-api-client/src/models/diff-summary.ts index f5dbcea5e..fdbf5b6d3 100644 --- a/lib/packages/fabro-api-client/src/models/diff-summary.ts +++ b/lib/packages/fabro-api-client/src/models/diff-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/dirty-status.ts b/lib/packages/fabro-api-client/src/models/dirty-status.ts index 2a89a3c2a..9857b7061 100644 --- a/lib/packages/fabro-api-client/src/models/dirty-status.ts +++ b/lib/packages/fabro-api-client/src/models/dirty-status.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/disk-usage-response.ts b/lib/packages/fabro-api-client/src/models/disk-usage-response.ts index f9573e986..4410fe07c 100644 --- a/lib/packages/fabro-api-client/src/models/disk-usage-response.ts +++ b/lib/packages/fabro-api-client/src/models/disk-usage-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/disk-usage-run-row.ts b/lib/packages/fabro-api-client/src/models/disk-usage-run-row.ts index 13392839f..84697b185 100644 --- a/lib/packages/fabro-api-client/src/models/disk-usage-run-row.ts +++ b/lib/packages/fabro-api-client/src/models/disk-usage-run-row.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/disk-usage-summary-row.ts b/lib/packages/fabro-api-client/src/models/disk-usage-summary-row.ts index 3fe75b0fd..d99cda3c6 100644 --- a/lib/packages/fabro-api-client/src/models/disk-usage-summary-row.ts +++ b/lib/packages/fabro-api-client/src/models/disk-usage-summary-row.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/dockerfile-source-inline.ts b/lib/packages/fabro-api-client/src/models/dockerfile-source-inline.ts index 296eb3d94..7bc18793c 100644 --- a/lib/packages/fabro-api-client/src/models/dockerfile-source-inline.ts +++ b/lib/packages/fabro-api-client/src/models/dockerfile-source-inline.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/dockerfile-source-path.ts b/lib/packages/fabro-api-client/src/models/dockerfile-source-path.ts index 2510b3634..888514e9c 100644 --- a/lib/packages/fabro-api-client/src/models/dockerfile-source-path.ts +++ b/lib/packages/fabro-api-client/src/models/dockerfile-source-path.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/dockerfile-source.ts b/lib/packages/fabro-api-client/src/models/dockerfile-source.ts index dfb2ef280..4a397e53b 100644 --- a/lib/packages/fabro-api-client/src/models/dockerfile-source.ts +++ b/lib/packages/fabro-api-client/src/models/dockerfile-source.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/environment-api-dockerfile-source-inline.ts b/lib/packages/fabro-api-client/src/models/environment-api-dockerfile-source-inline.ts index 35180b10a..83b3a1dbc 100644 --- a/lib/packages/fabro-api-client/src/models/environment-api-dockerfile-source-inline.ts +++ b/lib/packages/fabro-api-client/src/models/environment-api-dockerfile-source-inline.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/environment-api-image-settings.ts b/lib/packages/fabro-api-client/src/models/environment-api-image-settings.ts index 54578b0cd..c41e8d3c0 100644 --- a/lib/packages/fabro-api-client/src/models/environment-api-image-settings.ts +++ b/lib/packages/fabro-api-client/src/models/environment-api-image-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/environment-image-settings.ts b/lib/packages/fabro-api-client/src/models/environment-image-settings.ts index 997f1d64c..e2b4f60e6 100644 --- a/lib/packages/fabro-api-client/src/models/environment-image-settings.ts +++ b/lib/packages/fabro-api-client/src/models/environment-image-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/environment-lifecycle-settings.ts b/lib/packages/fabro-api-client/src/models/environment-lifecycle-settings.ts index f9a2426a9..018fff3ff 100644 --- a/lib/packages/fabro-api-client/src/models/environment-lifecycle-settings.ts +++ b/lib/packages/fabro-api-client/src/models/environment-lifecycle-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/environment-list-meta.ts b/lib/packages/fabro-api-client/src/models/environment-list-meta.ts index aa92bad87..d198d6a46 100644 --- a/lib/packages/fabro-api-client/src/models/environment-list-meta.ts +++ b/lib/packages/fabro-api-client/src/models/environment-list-meta.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/environment-list-response.ts b/lib/packages/fabro-api-client/src/models/environment-list-response.ts index cf25725b1..f4ef942cf 100644 --- a/lib/packages/fabro-api-client/src/models/environment-list-response.ts +++ b/lib/packages/fabro-api-client/src/models/environment-list-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/environment-network-mode.ts b/lib/packages/fabro-api-client/src/models/environment-network-mode.ts index ab4772098..6da5fec7c 100644 --- a/lib/packages/fabro-api-client/src/models/environment-network-mode.ts +++ b/lib/packages/fabro-api-client/src/models/environment-network-mode.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/environment-network-settings.ts b/lib/packages/fabro-api-client/src/models/environment-network-settings.ts index 8bdf99fb6..50eff443d 100644 --- a/lib/packages/fabro-api-client/src/models/environment-network-settings.ts +++ b/lib/packages/fabro-api-client/src/models/environment-network-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/environment-provider.ts b/lib/packages/fabro-api-client/src/models/environment-provider.ts index 0761c4b4c..bee7f45e0 100644 --- a/lib/packages/fabro-api-client/src/models/environment-provider.ts +++ b/lib/packages/fabro-api-client/src/models/environment-provider.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/environment-resources-settings.ts b/lib/packages/fabro-api-client/src/models/environment-resources-settings.ts index c17caaf36..e83fbc46f 100644 --- a/lib/packages/fabro-api-client/src/models/environment-resources-settings.ts +++ b/lib/packages/fabro-api-client/src/models/environment-resources-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/environment-settings.ts b/lib/packages/fabro-api-client/src/models/environment-settings.ts index 7f5f9f007..01e501724 100644 --- a/lib/packages/fabro-api-client/src/models/environment-settings.ts +++ b/lib/packages/fabro-api-client/src/models/environment-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/environment.ts b/lib/packages/fabro-api-client/src/models/environment.ts index 28037d144..38b8847c0 100644 --- a/lib/packages/fabro-api-client/src/models/environment.ts +++ b/lib/packages/fabro-api-client/src/models/environment.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/error-response-entry.ts b/lib/packages/fabro-api-client/src/models/error-response-entry.ts index 8d2095c92..081416711 100644 --- a/lib/packages/fabro-api-client/src/models/error-response-entry.ts +++ b/lib/packages/fabro-api-client/src/models/error-response-entry.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/error-response.ts b/lib/packages/fabro-api-client/src/models/error-response.ts index 95c8ef4d3..d66e866b5 100644 --- a/lib/packages/fabro-api-client/src/models/error-response.ts +++ b/lib/packages/fabro-api-client/src/models/error-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/event-envelope.ts b/lib/packages/fabro-api-client/src/models/event-envelope.ts index 8ed673472..1ff9fe51d 100644 --- a/lib/packages/fabro-api-client/src/models/event-envelope.ts +++ b/lib/packages/fabro-api-client/src/models/event-envelope.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/event-seq.ts b/lib/packages/fabro-api-client/src/models/event-seq.ts index d336fddf6..948345b27 100644 --- a/lib/packages/fabro-api-client/src/models/event-seq.ts +++ b/lib/packages/fabro-api-client/src/models/event-seq.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/exec-output-tail.ts b/lib/packages/fabro-api-client/src/models/exec-output-tail.ts index 1405c08c2..9ea534709 100644 --- a/lib/packages/fabro-api-client/src/models/exec-output-tail.ts +++ b/lib/packages/fabro-api-client/src/models/exec-output-tail.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/execute-query-request.ts b/lib/packages/fabro-api-client/src/models/execute-query-request.ts index f1c8041ec..3b0ceeba8 100644 --- a/lib/packages/fabro-api-client/src/models/execute-query-request.ts +++ b/lib/packages/fabro-api-client/src/models/execute-query-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/execute-query-response-rows-inner-inner.ts b/lib/packages/fabro-api-client/src/models/execute-query-response-rows-inner-inner.ts index 8201a9181..ab3f4b323 100644 --- a/lib/packages/fabro-api-client/src/models/execute-query-response-rows-inner-inner.ts +++ b/lib/packages/fabro-api-client/src/models/execute-query-response-rows-inner-inner.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/execute-query-response.ts b/lib/packages/fabro-api-client/src/models/execute-query-response.ts index d3bb5d984..eaf2aea4f 100644 --- a/lib/packages/fabro-api-client/src/models/execute-query-response.ts +++ b/lib/packages/fabro-api-client/src/models/execute-query-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/failure-category.ts b/lib/packages/fabro-api-client/src/models/failure-category.ts index c9460754e..cedcc3c27 100644 --- a/lib/packages/fabro-api-client/src/models/failure-category.ts +++ b/lib/packages/fabro-api-client/src/models/failure-category.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/failure-detail.ts b/lib/packages/fabro-api-client/src/models/failure-detail.ts index c50c2441a..f8c6beb33 100644 --- a/lib/packages/fabro-api-client/src/models/failure-detail.ts +++ b/lib/packages/fabro-api-client/src/models/failure-detail.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/failure-reason.ts b/lib/packages/fabro-api-client/src/models/failure-reason.ts index 79172e887..1f0e787e1 100644 --- a/lib/packages/fabro-api-client/src/models/failure-reason.ts +++ b/lib/packages/fabro-api-client/src/models/failure-reason.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/file-checkpoint.ts b/lib/packages/fabro-api-client/src/models/file-checkpoint.ts index b1c41271c..4d670d20a 100644 --- a/lib/packages/fabro-api-client/src/models/file-checkpoint.ts +++ b/lib/packages/fabro-api-client/src/models/file-checkpoint.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/file-diff.ts b/lib/packages/fabro-api-client/src/models/file-diff.ts index 1e16e718c..320a22c54 100644 --- a/lib/packages/fabro-api-client/src/models/file-diff.ts +++ b/lib/packages/fabro-api-client/src/models/file-diff.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/fork-request.ts b/lib/packages/fabro-api-client/src/models/fork-request.ts index 6b5e4fce8..4f68ca46f 100644 --- a/lib/packages/fabro-api-client/src/models/fork-request.ts +++ b/lib/packages/fabro-api-client/src/models/fork-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/fork-response.ts b/lib/packages/fabro-api-client/src/models/fork-response.ts index 3099927c0..c3cef2801 100644 --- a/lib/packages/fabro-api-client/src/models/fork-response.ts +++ b/lib/packages/fabro-api-client/src/models/fork-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/fork-source-ref.ts b/lib/packages/fabro-api-client/src/models/fork-source-ref.ts index 8ee8e63f2..7f03a2f3f 100644 --- a/lib/packages/fabro-api-client/src/models/fork-source-ref.ts +++ b/lib/packages/fabro-api-client/src/models/fork-source-ref.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/git-author-settings.ts b/lib/packages/fabro-api-client/src/models/git-author-settings.ts index 619c72dda..55aa32893 100644 --- a/lib/packages/fabro-api-client/src/models/git-author-settings.ts +++ b/lib/packages/fabro-api-client/src/models/git-author-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/git-context.ts b/lib/packages/fabro-api-client/src/models/git-context.ts index 20c205643..61e8a94f2 100644 --- a/lib/packages/fabro-api-client/src/models/git-context.ts +++ b/lib/packages/fabro-api-client/src/models/git-context.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/github-integration-settings.ts b/lib/packages/fabro-api-client/src/models/github-integration-settings.ts index 6289d6143..fa6bdfcac 100644 --- a/lib/packages/fabro-api-client/src/models/github-integration-settings.ts +++ b/lib/packages/fabro-api-client/src/models/github-integration-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/github-integration-strategy.ts b/lib/packages/fabro-api-client/src/models/github-integration-strategy.ts index 9b1e1aa37..37e8d8134 100644 --- a/lib/packages/fabro-api-client/src/models/github-integration-strategy.ts +++ b/lib/packages/fabro-api-client/src/models/github-integration-strategy.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/health-response.ts b/lib/packages/fabro-api-client/src/models/health-response.ts index 8dce26d2c..2dc9014b0 100644 --- a/lib/packages/fabro-api-client/src/models/health-response.ts +++ b/lib/packages/fabro-api-client/src/models/health-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/history-entry.ts b/lib/packages/fabro-api-client/src/models/history-entry.ts index 2c491cc36..fab843c64 100644 --- a/lib/packages/fabro-api-client/src/models/history-entry.ts +++ b/lib/packages/fabro-api-client/src/models/history-entry.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/hook-definition.ts b/lib/packages/fabro-api-client/src/models/hook-definition.ts index a8b2100e8..83a009767 100644 --- a/lib/packages/fabro-api-client/src/models/hook-definition.ts +++ b/lib/packages/fabro-api-client/src/models/hook-definition.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/hook-event.ts b/lib/packages/fabro-api-client/src/models/hook-event.ts index aabc20ecd..ab3196dd4 100644 --- a/lib/packages/fabro-api-client/src/models/hook-event.ts +++ b/lib/packages/fabro-api-client/src/models/hook-event.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/idp-identity.ts b/lib/packages/fabro-api-client/src/models/idp-identity.ts index 6eb4dd167..6aefab89a 100644 --- a/lib/packages/fabro-api-client/src/models/idp-identity.ts +++ b/lib/packages/fabro-api-client/src/models/idp-identity.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-finish-response.ts b/lib/packages/fabro-api-client/src/models/install-finish-response.ts index 32fd470d9..3686a9175 100644 --- a/lib/packages/fabro-api-client/src/models/install-finish-response.ts +++ b/lib/packages/fabro-api-client/src/models/install-finish-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-github-app-manifest-input.ts b/lib/packages/fabro-api-client/src/models/install-github-app-manifest-input.ts index aaeddfb88..75d2d40f6 100644 --- a/lib/packages/fabro-api-client/src/models/install-github-app-manifest-input.ts +++ b/lib/packages/fabro-api-client/src/models/install-github-app-manifest-input.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-github-app-manifest-response.ts b/lib/packages/fabro-api-client/src/models/install-github-app-manifest-response.ts index 12e1b8d64..92de33a62 100644 --- a/lib/packages/fabro-api-client/src/models/install-github-app-manifest-response.ts +++ b/lib/packages/fabro-api-client/src/models/install-github-app-manifest-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-github-app-owner.ts b/lib/packages/fabro-api-client/src/models/install-github-app-owner.ts index 93afa2404..d2b1ab048 100644 --- a/lib/packages/fabro-api-client/src/models/install-github-app-owner.ts +++ b/lib/packages/fabro-api-client/src/models/install-github-app-owner.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-github-summary.ts b/lib/packages/fabro-api-client/src/models/install-github-summary.ts index c9cc30b79..13b5ae416 100644 --- a/lib/packages/fabro-api-client/src/models/install-github-summary.ts +++ b/lib/packages/fabro-api-client/src/models/install-github-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-github-token-input.ts b/lib/packages/fabro-api-client/src/models/install-github-token-input.ts index c1dab44a5..bbc488c60 100644 --- a/lib/packages/fabro-api-client/src/models/install-github-token-input.ts +++ b/lib/packages/fabro-api-client/src/models/install-github-token-input.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-github-token-test-input.ts b/lib/packages/fabro-api-client/src/models/install-github-token-test-input.ts index d147b0f5d..e970fe2c8 100644 --- a/lib/packages/fabro-api-client/src/models/install-github-token-test-input.ts +++ b/lib/packages/fabro-api-client/src/models/install-github-token-test-input.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-github-token-test-response.ts b/lib/packages/fabro-api-client/src/models/install-github-token-test-response.ts index 1d8d74406..9f7b1b86b 100644 --- a/lib/packages/fabro-api-client/src/models/install-github-token-test-response.ts +++ b/lib/packages/fabro-api-client/src/models/install-github-token-test-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-llm-provider-input.ts b/lib/packages/fabro-api-client/src/models/install-llm-provider-input.ts index 3f192e9e6..79bc37e38 100644 --- a/lib/packages/fabro-api-client/src/models/install-llm-provider-input.ts +++ b/lib/packages/fabro-api-client/src/models/install-llm-provider-input.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-llm-providers-input.ts b/lib/packages/fabro-api-client/src/models/install-llm-providers-input.ts index 7e83d5a13..6ea5a58f0 100644 --- a/lib/packages/fabro-api-client/src/models/install-llm-providers-input.ts +++ b/lib/packages/fabro-api-client/src/models/install-llm-providers-input.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-llm-summary-providers-inner.ts b/lib/packages/fabro-api-client/src/models/install-llm-summary-providers-inner.ts index ff4eaffe7..001f84689 100644 --- a/lib/packages/fabro-api-client/src/models/install-llm-summary-providers-inner.ts +++ b/lib/packages/fabro-api-client/src/models/install-llm-summary-providers-inner.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-llm-summary.ts b/lib/packages/fabro-api-client/src/models/install-llm-summary.ts index 04042cd75..cee52f3bb 100644 --- a/lib/packages/fabro-api-client/src/models/install-llm-summary.ts +++ b/lib/packages/fabro-api-client/src/models/install-llm-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-llm-test-input.ts b/lib/packages/fabro-api-client/src/models/install-llm-test-input.ts index 45377472f..b0d33fe73 100644 --- a/lib/packages/fabro-api-client/src/models/install-llm-test-input.ts +++ b/lib/packages/fabro-api-client/src/models/install-llm-test-input.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-llm-validation-response.ts b/lib/packages/fabro-api-client/src/models/install-llm-validation-response.ts index 22e904afd..bd4a4afce 100644 --- a/lib/packages/fabro-api-client/src/models/install-llm-validation-response.ts +++ b/lib/packages/fabro-api-client/src/models/install-llm-validation-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-object-store-input.ts b/lib/packages/fabro-api-client/src/models/install-object-store-input.ts index 8dd8f497d..7b611b8a9 100644 --- a/lib/packages/fabro-api-client/src/models/install-object-store-input.ts +++ b/lib/packages/fabro-api-client/src/models/install-object-store-input.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-object-store-summary.ts b/lib/packages/fabro-api-client/src/models/install-object-store-summary.ts index 47c32b0ba..2dee0735f 100644 --- a/lib/packages/fabro-api-client/src/models/install-object-store-summary.ts +++ b/lib/packages/fabro-api-client/src/models/install-object-store-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-object-store-validation-response.ts b/lib/packages/fabro-api-client/src/models/install-object-store-validation-response.ts index 6785e09b3..d0d83b92f 100644 --- a/lib/packages/fabro-api-client/src/models/install-object-store-validation-response.ts +++ b/lib/packages/fabro-api-client/src/models/install-object-store-validation-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-prefill.ts b/lib/packages/fabro-api-client/src/models/install-prefill.ts index 1c20eb029..6ddc45ff7 100644 --- a/lib/packages/fabro-api-client/src/models/install-prefill.ts +++ b/lib/packages/fabro-api-client/src/models/install-prefill.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-sandbox-input.ts b/lib/packages/fabro-api-client/src/models/install-sandbox-input.ts index b29a427f9..b806a7ac2 100644 --- a/lib/packages/fabro-api-client/src/models/install-sandbox-input.ts +++ b/lib/packages/fabro-api-client/src/models/install-sandbox-input.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-sandbox-summary.ts b/lib/packages/fabro-api-client/src/models/install-sandbox-summary.ts index 6eb3a2422..4ed968718 100644 --- a/lib/packages/fabro-api-client/src/models/install-sandbox-summary.ts +++ b/lib/packages/fabro-api-client/src/models/install-sandbox-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-sandbox-validation-response.ts b/lib/packages/fabro-api-client/src/models/install-sandbox-validation-response.ts index 863e179a3..d8592b1f7 100644 --- a/lib/packages/fabro-api-client/src/models/install-sandbox-validation-response.ts +++ b/lib/packages/fabro-api-client/src/models/install-sandbox-validation-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-server-config-input.ts b/lib/packages/fabro-api-client/src/models/install-server-config-input.ts index 7e9c30a73..1418f78f2 100644 --- a/lib/packages/fabro-api-client/src/models/install-server-config-input.ts +++ b/lib/packages/fabro-api-client/src/models/install-server-config-input.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/install-session-response.ts b/lib/packages/fabro-api-client/src/models/install-session-response.ts index 9eecbb3b0..6ae325b1e 100644 --- a/lib/packages/fabro-api-client/src/models/install-session-response.ts +++ b/lib/packages/fabro-api-client/src/models/install-session-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/integration-connection-kind.ts b/lib/packages/fabro-api-client/src/models/integration-connection-kind.ts index 6d3b6fcfe..7d213d953 100644 --- a/lib/packages/fabro-api-client/src/models/integration-connection-kind.ts +++ b/lib/packages/fabro-api-client/src/models/integration-connection-kind.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/integration-connection-state.ts b/lib/packages/fabro-api-client/src/models/integration-connection-state.ts index ff9696c5e..d88ce1bbc 100644 --- a/lib/packages/fabro-api-client/src/models/integration-connection-state.ts +++ b/lib/packages/fabro-api-client/src/models/integration-connection-state.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/integration-connection-status.ts b/lib/packages/fabro-api-client/src/models/integration-connection-status.ts index 6916f4e79..985f05421 100644 --- a/lib/packages/fabro-api-client/src/models/integration-connection-status.ts +++ b/lib/packages/fabro-api-client/src/models/integration-connection-status.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/integration-provider.ts b/lib/packages/fabro-api-client/src/models/integration-provider.ts index 2c98029ba..ddffa9b53 100644 --- a/lib/packages/fabro-api-client/src/models/integration-provider.ts +++ b/lib/packages/fabro-api-client/src/models/integration-provider.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/integration-status.ts b/lib/packages/fabro-api-client/src/models/integration-status.ts index 680dd34eb..c7687b17b 100644 --- a/lib/packages/fabro-api-client/src/models/integration-status.ts +++ b/lib/packages/fabro-api-client/src/models/integration-status.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/integration-webhooks-settings.ts b/lib/packages/fabro-api-client/src/models/integration-webhooks-settings.ts index 367922a74..41833bf0b 100644 --- a/lib/packages/fabro-api-client/src/models/integration-webhooks-settings.ts +++ b/lib/packages/fabro-api-client/src/models/integration-webhooks-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/interview-option.ts b/lib/packages/fabro-api-client/src/models/interview-option.ts index 16c536f80..40d83144e 100644 --- a/lib/packages/fabro-api-client/src/models/interview-option.ts +++ b/lib/packages/fabro-api-client/src/models/interview-option.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/interview-provider-settings.ts b/lib/packages/fabro-api-client/src/models/interview-provider-settings.ts index 34d8d5c0e..84afb95df 100644 --- a/lib/packages/fabro-api-client/src/models/interview-provider-settings.ts +++ b/lib/packages/fabro-api-client/src/models/interview-provider-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/interview-question-record.ts b/lib/packages/fabro-api-client/src/models/interview-question-record.ts index 2f2ecd2b8..1a7883615 100644 --- a/lib/packages/fabro-api-client/src/models/interview-question-record.ts +++ b/lib/packages/fabro-api-client/src/models/interview-question-record.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/link-run-pull-request-request.ts b/lib/packages/fabro-api-client/src/models/link-run-pull-request-request.ts index ad2f7e508..ff4ec1d89 100644 --- a/lib/packages/fabro-api-client/src/models/link-run-pull-request-request.ts +++ b/lib/packages/fabro-api-client/src/models/link-run-pull-request-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/llm-output-kind.ts b/lib/packages/fabro-api-client/src/models/llm-output-kind.ts index 1c9663257..4dee9f9ff 100644 --- a/lib/packages/fabro-api-client/src/models/llm-output-kind.ts +++ b/lib/packages/fabro-api-client/src/models/llm-output-kind.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/log-destination.ts b/lib/packages/fabro-api-client/src/models/log-destination.ts index 6e7caf66f..22ab4f10d 100644 --- a/lib/packages/fabro-api-client/src/models/log-destination.ts +++ b/lib/packages/fabro-api-client/src/models/log-destination.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/manifest-args.ts b/lib/packages/fabro-api-client/src/models/manifest-args.ts index c0ae3985e..1430fc35c 100644 --- a/lib/packages/fabro-api-client/src/models/manifest-args.ts +++ b/lib/packages/fabro-api-client/src/models/manifest-args.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/manifest-config.ts b/lib/packages/fabro-api-client/src/models/manifest-config.ts index c501c3094..e1493fb49 100644 --- a/lib/packages/fabro-api-client/src/models/manifest-config.ts +++ b/lib/packages/fabro-api-client/src/models/manifest-config.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/manifest-file-entry.ts b/lib/packages/fabro-api-client/src/models/manifest-file-entry.ts index 8f2cfe38f..1a6edae4d 100644 --- a/lib/packages/fabro-api-client/src/models/manifest-file-entry.ts +++ b/lib/packages/fabro-api-client/src/models/manifest-file-entry.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/manifest-file-ref.ts b/lib/packages/fabro-api-client/src/models/manifest-file-ref.ts index e0a476878..5a966f00b 100644 --- a/lib/packages/fabro-api-client/src/models/manifest-file-ref.ts +++ b/lib/packages/fabro-api-client/src/models/manifest-file-ref.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/manifest-goal.ts b/lib/packages/fabro-api-client/src/models/manifest-goal.ts index 377b6e3ac..4b0182f72 100644 --- a/lib/packages/fabro-api-client/src/models/manifest-goal.ts +++ b/lib/packages/fabro-api-client/src/models/manifest-goal.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/manifest-target.ts b/lib/packages/fabro-api-client/src/models/manifest-target.ts index c78249f32..527b51e3b 100644 --- a/lib/packages/fabro-api-client/src/models/manifest-target.ts +++ b/lib/packages/fabro-api-client/src/models/manifest-target.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/manifest-workflow-config.ts b/lib/packages/fabro-api-client/src/models/manifest-workflow-config.ts index 960745f81..9f1e4692b 100644 --- a/lib/packages/fabro-api-client/src/models/manifest-workflow-config.ts +++ b/lib/packages/fabro-api-client/src/models/manifest-workflow-config.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/manifest-workflow.ts b/lib/packages/fabro-api-client/src/models/manifest-workflow.ts index 222092b7a..db9db35bb 100644 --- a/lib/packages/fabro-api-client/src/models/manifest-workflow.ts +++ b/lib/packages/fabro-api-client/src/models/manifest-workflow.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-http-protocol.ts b/lib/packages/fabro-api-client/src/models/mcp-http-protocol.ts index c03287667..b927e2418 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-http-protocol.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-http-protocol.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-server-list-meta.ts b/lib/packages/fabro-api-client/src/models/mcp-server-list-meta.ts index a90b708eb..8d1a82cbd 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-server-list-meta.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-server-list-meta.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-server-list-response.ts b/lib/packages/fabro-api-client/src/models/mcp-server-list-response.ts index f1a6ffe39..85839b509 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-server-list-response.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-server-list-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-server-projection.ts b/lib/packages/fabro-api-client/src/models/mcp-server-projection.ts index 8b9f0e19e..6d6f01393 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-server-projection.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-server-projection.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-server-settings.ts b/lib/packages/fabro-api-client/src/models/mcp-server-settings.ts index b84ea5675..e4f8ed723 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-server-settings.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-server-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-server-status-failed.ts b/lib/packages/fabro-api-client/src/models/mcp-server-status-failed.ts index acee4291f..c644eba1d 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-server-status-failed.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-server-status-failed.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-server-status-ready.ts b/lib/packages/fabro-api-client/src/models/mcp-server-status-ready.ts index ab82276ed..58dbbd421 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-server-status-ready.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-server-status-ready.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-server-status.ts b/lib/packages/fabro-api-client/src/models/mcp-server-status.ts index 50af943f0..eb898822a 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-server-status.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-server-status.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-server.ts b/lib/packages/fabro-api-client/src/models/mcp-server.ts index e791b7feb..163010400 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-server.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-server.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-transport-http.ts b/lib/packages/fabro-api-client/src/models/mcp-transport-http.ts index af9b8991c..61fafcc16 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-transport-http.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-transport-http.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-transport-sandbox.ts b/lib/packages/fabro-api-client/src/models/mcp-transport-sandbox.ts index e534632b9..e8f789f10 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-transport-sandbox.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-transport-sandbox.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-transport-stdio.ts b/lib/packages/fabro-api-client/src/models/mcp-transport-stdio.ts index 27a3d7270..6acdf9dde 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-transport-stdio.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-transport-stdio.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-transport-view-http.ts b/lib/packages/fabro-api-client/src/models/mcp-transport-view-http.ts index 724f99612..77739ba5d 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-transport-view-http.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-transport-view-http.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-transport-view-sandbox.ts b/lib/packages/fabro-api-client/src/models/mcp-transport-view-sandbox.ts index ea01a6cab..d0be5f749 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-transport-view-sandbox.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-transport-view-sandbox.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-transport-view-stdio.ts b/lib/packages/fabro-api-client/src/models/mcp-transport-view-stdio.ts index 03fd5665f..b48fb8e6d 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-transport-view-stdio.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-transport-view-stdio.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-transport-view.ts b/lib/packages/fabro-api-client/src/models/mcp-transport-view.ts index f9761b5a8..30dbd8ad7 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-transport-view.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-transport-view.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/mcp-transport.ts b/lib/packages/fabro-api-client/src/models/mcp-transport.ts index 611215bdd..cea33b117 100644 --- a/lib/packages/fabro-api-client/src/models/mcp-transport.ts +++ b/lib/packages/fabro-api-client/src/models/mcp-transport.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/merge-method.ts b/lib/packages/fabro-api-client/src/models/merge-method.ts index a5f0a71d7..425baf91e 100644 --- a/lib/packages/fabro-api-client/src/models/merge-method.ts +++ b/lib/packages/fabro-api-client/src/models/merge-method.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/merge-run-pull-request-request.ts b/lib/packages/fabro-api-client/src/models/merge-run-pull-request-request.ts index f86dea1ea..ac9f7d148 100644 --- a/lib/packages/fabro-api-client/src/models/merge-run-pull-request-request.ts +++ b/lib/packages/fabro-api-client/src/models/merge-run-pull-request-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/merge-run-pull-request-response.ts b/lib/packages/fabro-api-client/src/models/merge-run-pull-request-response.ts index 9dd748a21..eb473b1df 100644 --- a/lib/packages/fabro-api-client/src/models/merge-run-pull-request-response.ts +++ b/lib/packages/fabro-api-client/src/models/merge-run-pull-request-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/model-controls.ts b/lib/packages/fabro-api-client/src/models/model-controls.ts index 59f22ce2a..55babaee6 100644 --- a/lib/packages/fabro-api-client/src/models/model-controls.ts +++ b/lib/packages/fabro-api-client/src/models/model-controls.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/model-costs.ts b/lib/packages/fabro-api-client/src/models/model-costs.ts index 97ab64e48..511ee967f 100644 --- a/lib/packages/fabro-api-client/src/models/model-costs.ts +++ b/lib/packages/fabro-api-client/src/models/model-costs.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/model-features.ts b/lib/packages/fabro-api-client/src/models/model-features.ts index 5f23381b3..42fcae9d6 100644 --- a/lib/packages/fabro-api-client/src/models/model-features.ts +++ b/lib/packages/fabro-api-client/src/models/model-features.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/model-limits.ts b/lib/packages/fabro-api-client/src/models/model-limits.ts index c915d36b5..ed22b4b40 100644 --- a/lib/packages/fabro-api-client/src/models/model-limits.ts +++ b/lib/packages/fabro-api-client/src/models/model-limits.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/model-reference.ts b/lib/packages/fabro-api-client/src/models/model-reference.ts index a8013e1e9..30a8eed69 100644 --- a/lib/packages/fabro-api-client/src/models/model-reference.ts +++ b/lib/packages/fabro-api-client/src/models/model-reference.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/model-test-mode.ts b/lib/packages/fabro-api-client/src/models/model-test-mode.ts index 2aca92dda..4e83d41dd 100644 --- a/lib/packages/fabro-api-client/src/models/model-test-mode.ts +++ b/lib/packages/fabro-api-client/src/models/model-test-mode.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/model-test-result.ts b/lib/packages/fabro-api-client/src/models/model-test-result.ts index cba04c056..8d6bbe596 100644 --- a/lib/packages/fabro-api-client/src/models/model-test-result.ts +++ b/lib/packages/fabro-api-client/src/models/model-test-result.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/model.ts b/lib/packages/fabro-api-client/src/models/model.ts index 0bf86bee5..0de1f0971 100644 --- a/lib/packages/fabro-api-client/src/models/model.ts +++ b/lib/packages/fabro-api-client/src/models/model.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/notification-provider-settings.ts b/lib/packages/fabro-api-client/src/models/notification-provider-settings.ts index 9149b9342..d430995d7 100644 --- a/lib/packages/fabro-api-client/src/models/notification-provider-settings.ts +++ b/lib/packages/fabro-api-client/src/models/notification-provider-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/notification-route-settings.ts b/lib/packages/fabro-api-client/src/models/notification-route-settings.ts index 3e80ebd8c..1312f85e1 100644 --- a/lib/packages/fabro-api-client/src/models/notification-route-settings.ts +++ b/lib/packages/fabro-api-client/src/models/notification-route-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/object-store-local-settings.ts b/lib/packages/fabro-api-client/src/models/object-store-local-settings.ts index b16c42346..c0f138e6b 100644 --- a/lib/packages/fabro-api-client/src/models/object-store-local-settings.ts +++ b/lib/packages/fabro-api-client/src/models/object-store-local-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/object-store-s3-settings.ts b/lib/packages/fabro-api-client/src/models/object-store-s3-settings.ts index fb0550698..f82da9357 100644 --- a/lib/packages/fabro-api-client/src/models/object-store-s3-settings.ts +++ b/lib/packages/fabro-api-client/src/models/object-store-s3-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/object-store-settings.ts b/lib/packages/fabro-api-client/src/models/object-store-settings.ts index 2099b6752..c33939d8c 100644 --- a/lib/packages/fabro-api-client/src/models/object-store-settings.ts +++ b/lib/packages/fabro-api-client/src/models/object-store-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/paginated-api-question-list.ts b/lib/packages/fabro-api-client/src/models/paginated-api-question-list.ts index 8f5cb1a03..a246b2aa0 100644 --- a/lib/packages/fabro-api-client/src/models/paginated-api-question-list.ts +++ b/lib/packages/fabro-api-client/src/models/paginated-api-question-list.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/paginated-event-list.ts b/lib/packages/fabro-api-client/src/models/paginated-event-list.ts index cf2934f56..1d1dddd14 100644 --- a/lib/packages/fabro-api-client/src/models/paginated-event-list.ts +++ b/lib/packages/fabro-api-client/src/models/paginated-event-list.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/paginated-history-entry-list.ts b/lib/packages/fabro-api-client/src/models/paginated-history-entry-list.ts index c8c2661e7..3e1af07d1 100644 --- a/lib/packages/fabro-api-client/src/models/paginated-history-entry-list.ts +++ b/lib/packages/fabro-api-client/src/models/paginated-history-entry-list.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/paginated-model-list.ts b/lib/packages/fabro-api-client/src/models/paginated-model-list.ts index 2760f8335..abac7b698 100644 --- a/lib/packages/fabro-api-client/src/models/paginated-model-list.ts +++ b/lib/packages/fabro-api-client/src/models/paginated-model-list.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/paginated-run-commit-list.ts b/lib/packages/fabro-api-client/src/models/paginated-run-commit-list.ts index 1290d80d2..2ffb7f6d5 100644 --- a/lib/packages/fabro-api-client/src/models/paginated-run-commit-list.ts +++ b/lib/packages/fabro-api-client/src/models/paginated-run-commit-list.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/paginated-run-file-list.ts b/lib/packages/fabro-api-client/src/models/paginated-run-file-list.ts index 1d84791af..8c27bf6db 100644 --- a/lib/packages/fabro-api-client/src/models/paginated-run-file-list.ts +++ b/lib/packages/fabro-api-client/src/models/paginated-run-file-list.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/paginated-run-list.ts b/lib/packages/fabro-api-client/src/models/paginated-run-list.ts index 5aa510d61..df9965b8d 100644 --- a/lib/packages/fabro-api-client/src/models/paginated-run-list.ts +++ b/lib/packages/fabro-api-client/src/models/paginated-run-list.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/paginated-run-stage-list.ts b/lib/packages/fabro-api-client/src/models/paginated-run-stage-list.ts index 14862230b..4b6d2ff68 100644 --- a/lib/packages/fabro-api-client/src/models/paginated-run-stage-list.ts +++ b/lib/packages/fabro-api-client/src/models/paginated-run-stage-list.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/paginated-saved-query-list.ts b/lib/packages/fabro-api-client/src/models/paginated-saved-query-list.ts index 9af8533df..5d2df675a 100644 --- a/lib/packages/fabro-api-client/src/models/paginated-saved-query-list.ts +++ b/lib/packages/fabro-api-client/src/models/paginated-saved-query-list.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/paginated-session-list.ts b/lib/packages/fabro-api-client/src/models/paginated-session-list.ts index 25dc0cf9a..db90f4e6f 100644 --- a/lib/packages/fabro-api-client/src/models/paginated-session-list.ts +++ b/lib/packages/fabro-api-client/src/models/paginated-session-list.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/paginated-workflow-list-response.ts b/lib/packages/fabro-api-client/src/models/paginated-workflow-list-response.ts index 59e1a99c8..074575a22 100644 --- a/lib/packages/fabro-api-client/src/models/paginated-workflow-list-response.ts +++ b/lib/packages/fabro-api-client/src/models/paginated-workflow-list-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pagination-meta.ts b/lib/packages/fabro-api-client/src/models/pagination-meta.ts index 963f781a4..c91ae9bb2 100644 --- a/lib/packages/fabro-api-client/src/models/pagination-meta.ts +++ b/lib/packages/fabro-api-client/src/models/pagination-meta.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-message-record.ts b/lib/packages/fabro-api-client/src/models/pair-message-record.ts index d8d413209..1754e078f 100644 --- a/lib/packages/fabro-api-client/src/models/pair-message-record.ts +++ b/lib/packages/fabro-api-client/src/models/pair-message-record.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-message-request.ts b/lib/packages/fabro-api-client/src/models/pair-message-request.ts index 2a6607d94..435ec6dbf 100644 --- a/lib/packages/fabro-api-client/src/models/pair-message-request.ts +++ b/lib/packages/fabro-api-client/src/models/pair-message-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-record.ts b/lib/packages/fabro-api-client/src/models/pair-record.ts index 34b029029..aa34088d6 100644 --- a/lib/packages/fabro-api-client/src/models/pair-record.ts +++ b/lib/packages/fabro-api-client/src/models/pair-record.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-start-request.ts b/lib/packages/fabro-api-client/src/models/pair-start-request.ts index 73853b374..d5857d0c6 100644 --- a/lib/packages/fabro-api-client/src/models/pair-start-request.ts +++ b/lib/packages/fabro-api-client/src/models/pair-start-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-status.ts b/lib/packages/fabro-api-client/src/models/pair-status.ts index 8b64c2256..7b41c0481 100644 --- a/lib/packages/fabro-api-client/src/models/pair-status.ts +++ b/lib/packages/fabro-api-client/src/models/pair-status.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-target.ts b/lib/packages/fabro-api-client/src/models/pair-target.ts index 40513b26d..0ed0a7fa7 100644 --- a/lib/packages/fabro-api-client/src/models/pair-target.ts +++ b/lib/packages/fabro-api-client/src/models/pair-target.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-transcript-assistant-message.ts b/lib/packages/fabro-api-client/src/models/pair-transcript-assistant-message.ts index b3d603fa4..ecb97f5b3 100644 --- a/lib/packages/fabro-api-client/src/models/pair-transcript-assistant-message.ts +++ b/lib/packages/fabro-api-client/src/models/pair-transcript-assistant-message.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-transcript-detail-ref.ts b/lib/packages/fabro-api-client/src/models/pair-transcript-detail-ref.ts index 7c168a332..87ce0be57 100644 --- a/lib/packages/fabro-api-client/src/models/pair-transcript-detail-ref.ts +++ b/lib/packages/fabro-api-client/src/models/pair-transcript-detail-ref.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-transcript-entry.ts b/lib/packages/fabro-api-client/src/models/pair-transcript-entry.ts index a6e3b8aa2..9ff0f4cf6 100644 --- a/lib/packages/fabro-api-client/src/models/pair-transcript-entry.ts +++ b/lib/packages/fabro-api-client/src/models/pair-transcript-entry.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-transcript-error.ts b/lib/packages/fabro-api-client/src/models/pair-transcript-error.ts index ccab55770..f89f5f4ee 100644 --- a/lib/packages/fabro-api-client/src/models/pair-transcript-error.ts +++ b/lib/packages/fabro-api-client/src/models/pair-transcript-error.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-transcript-response-meta.ts b/lib/packages/fabro-api-client/src/models/pair-transcript-response-meta.ts index 6638978f6..6669da69d 100644 --- a/lib/packages/fabro-api-client/src/models/pair-transcript-response-meta.ts +++ b/lib/packages/fabro-api-client/src/models/pair-transcript-response-meta.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-transcript-response.ts b/lib/packages/fabro-api-client/src/models/pair-transcript-response.ts index dfd8b6168..b12476ccd 100644 --- a/lib/packages/fabro-api-client/src/models/pair-transcript-response.ts +++ b/lib/packages/fabro-api-client/src/models/pair-transcript-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-transcript-system-message.ts b/lib/packages/fabro-api-client/src/models/pair-transcript-system-message.ts index 674db665a..fa861fedd 100644 --- a/lib/packages/fabro-api-client/src/models/pair-transcript-system-message.ts +++ b/lib/packages/fabro-api-client/src/models/pair-transcript-system-message.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-transcript-tool-call.ts b/lib/packages/fabro-api-client/src/models/pair-transcript-tool-call.ts index 3c37513f1..69eca69f0 100644 --- a/lib/packages/fabro-api-client/src/models/pair-transcript-tool-call.ts +++ b/lib/packages/fabro-api-client/src/models/pair-transcript-tool-call.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-transcript-user-message.ts b/lib/packages/fabro-api-client/src/models/pair-transcript-user-message.ts index 756bd0617..eb1050b5c 100644 --- a/lib/packages/fabro-api-client/src/models/pair-transcript-user-message.ts +++ b/lib/packages/fabro-api-client/src/models/pair-transcript-user-message.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pair-transcript-warning.ts b/lib/packages/fabro-api-client/src/models/pair-transcript-warning.ts index 7c8cfb8b1..a746927f8 100644 --- a/lib/packages/fabro-api-client/src/models/pair-transcript-warning.ts +++ b/lib/packages/fabro-api-client/src/models/pair-transcript-warning.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/parallel-branch-result.ts b/lib/packages/fabro-api-client/src/models/parallel-branch-result.ts index c3177f58a..7ac5e797f 100644 --- a/lib/packages/fabro-api-client/src/models/parallel-branch-result.ts +++ b/lib/packages/fabro-api-client/src/models/parallel-branch-result.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pending-interview-record.ts b/lib/packages/fabro-api-client/src/models/pending-interview-record.ts index 8d98b95b8..91af37120 100644 --- a/lib/packages/fabro-api-client/src/models/pending-interview-record.ts +++ b/lib/packages/fabro-api-client/src/models/pending-interview-record.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pending-reason.ts b/lib/packages/fabro-api-client/src/models/pending-reason.ts index 50fbc7c07..dd973b250 100644 --- a/lib/packages/fabro-api-client/src/models/pending-reason.ts +++ b/lib/packages/fabro-api-client/src/models/pending-reason.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/permission-level.ts b/lib/packages/fabro-api-client/src/models/permission-level.ts index e006d64f8..b42f3f188 100644 --- a/lib/packages/fabro-api-client/src/models/permission-level.ts +++ b/lib/packages/fabro-api-client/src/models/permission-level.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/preflight-check-detail.ts b/lib/packages/fabro-api-client/src/models/preflight-check-detail.ts index 3d829c5f2..f4009ac51 100644 --- a/lib/packages/fabro-api-client/src/models/preflight-check-detail.ts +++ b/lib/packages/fabro-api-client/src/models/preflight-check-detail.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/preflight-check-report.ts b/lib/packages/fabro-api-client/src/models/preflight-check-report.ts index 081285402..bb5183a4e 100644 --- a/lib/packages/fabro-api-client/src/models/preflight-check-report.ts +++ b/lib/packages/fabro-api-client/src/models/preflight-check-report.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/preflight-check-result.ts b/lib/packages/fabro-api-client/src/models/preflight-check-result.ts index a359c849e..2fc996da8 100644 --- a/lib/packages/fabro-api-client/src/models/preflight-check-result.ts +++ b/lib/packages/fabro-api-client/src/models/preflight-check-result.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/preflight-check-section.ts b/lib/packages/fabro-api-client/src/models/preflight-check-section.ts index db144176a..f071fd0de 100644 --- a/lib/packages/fabro-api-client/src/models/preflight-check-section.ts +++ b/lib/packages/fabro-api-client/src/models/preflight-check-section.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/preflight-response.ts b/lib/packages/fabro-api-client/src/models/preflight-response.ts index 2819d5dcd..4a57a488f 100644 --- a/lib/packages/fabro-api-client/src/models/preflight-response.ts +++ b/lib/packages/fabro-api-client/src/models/preflight-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/preflight-workflow-summary.ts b/lib/packages/fabro-api-client/src/models/preflight-workflow-summary.ts index a840541ea..73323eeaf 100644 --- a/lib/packages/fabro-api-client/src/models/preflight-workflow-summary.ts +++ b/lib/packages/fabro-api-client/src/models/preflight-workflow-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/prepared-command-step.ts b/lib/packages/fabro-api-client/src/models/prepared-command-step.ts index a707858dc..7ab394bbb 100644 --- a/lib/packages/fabro-api-client/src/models/prepared-command-step.ts +++ b/lib/packages/fabro-api-client/src/models/prepared-command-step.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/prepared-script-step.ts b/lib/packages/fabro-api-client/src/models/prepared-script-step.ts index 16a88d436..4c20de3be 100644 --- a/lib/packages/fabro-api-client/src/models/prepared-script-step.ts +++ b/lib/packages/fabro-api-client/src/models/prepared-script-step.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/prepared-step.ts b/lib/packages/fabro-api-client/src/models/prepared-step.ts index 21e5c57ec..a6e2b4572 100644 --- a/lib/packages/fabro-api-client/src/models/prepared-step.ts +++ b/lib/packages/fabro-api-client/src/models/prepared-step.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/preview-url-request.ts b/lib/packages/fabro-api-client/src/models/preview-url-request.ts index 1f6f4a934..777822744 100644 --- a/lib/packages/fabro-api-client/src/models/preview-url-request.ts +++ b/lib/packages/fabro-api-client/src/models/preview-url-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/preview-url-response.ts b/lib/packages/fabro-api-client/src/models/preview-url-response.ts index 904f29090..79f4955ed 100644 --- a/lib/packages/fabro-api-client/src/models/preview-url-response.ts +++ b/lib/packages/fabro-api-client/src/models/preview-url-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/principal-agent.ts b/lib/packages/fabro-api-client/src/models/principal-agent.ts index 61264b88d..7798084a1 100644 --- a/lib/packages/fabro-api-client/src/models/principal-agent.ts +++ b/lib/packages/fabro-api-client/src/models/principal-agent.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/principal-slack.ts b/lib/packages/fabro-api-client/src/models/principal-slack.ts index 61ab4c2d3..400111544 100644 --- a/lib/packages/fabro-api-client/src/models/principal-slack.ts +++ b/lib/packages/fabro-api-client/src/models/principal-slack.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/principal-system.ts b/lib/packages/fabro-api-client/src/models/principal-system.ts index ec4e5562d..674d02929 100644 --- a/lib/packages/fabro-api-client/src/models/principal-system.ts +++ b/lib/packages/fabro-api-client/src/models/principal-system.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/principal-user.ts b/lib/packages/fabro-api-client/src/models/principal-user.ts index c92be9530..46f948ea9 100644 --- a/lib/packages/fabro-api-client/src/models/principal-user.ts +++ b/lib/packages/fabro-api-client/src/models/principal-user.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/principal-webhook.ts b/lib/packages/fabro-api-client/src/models/principal-webhook.ts index a2aae6f71..6f4203890 100644 --- a/lib/packages/fabro-api-client/src/models/principal-webhook.ts +++ b/lib/packages/fabro-api-client/src/models/principal-webhook.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/principal-worker.ts b/lib/packages/fabro-api-client/src/models/principal-worker.ts index feece9215..fd00c0792 100644 --- a/lib/packages/fabro-api-client/src/models/principal-worker.ts +++ b/lib/packages/fabro-api-client/src/models/principal-worker.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/principal.ts b/lib/packages/fabro-api-client/src/models/principal.ts index 08b5422df..cb55cb486 100644 --- a/lib/packages/fabro-api-client/src/models/principal.ts +++ b/lib/packages/fabro-api-client/src/models/principal.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/project-namespace.ts b/lib/packages/fabro-api-client/src/models/project-namespace.ts index 80081d94e..cd3de0053 100644 --- a/lib/packages/fabro-api-client/src/models/project-namespace.ts +++ b/lib/packages/fabro-api-client/src/models/project-namespace.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/provider-credential-test-request.ts b/lib/packages/fabro-api-client/src/models/provider-credential-test-request.ts index 390b00848..687a2afd7 100644 --- a/lib/packages/fabro-api-client/src/models/provider-credential-test-request.ts +++ b/lib/packages/fabro-api-client/src/models/provider-credential-test-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/provider-credential-test-response.ts b/lib/packages/fabro-api-client/src/models/provider-credential-test-response.ts index b74a688eb..48973ece1 100644 --- a/lib/packages/fabro-api-client/src/models/provider-credential-test-response.ts +++ b/lib/packages/fabro-api-client/src/models/provider-credential-test-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/provider-list.ts b/lib/packages/fabro-api-client/src/models/provider-list.ts index dd58863c5..335e7dc55 100644 --- a/lib/packages/fabro-api-client/src/models/provider-list.ts +++ b/lib/packages/fabro-api-client/src/models/provider-list.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/provider-test-list.ts b/lib/packages/fabro-api-client/src/models/provider-test-list.ts index 6235bbd5d..257a40ec7 100644 --- a/lib/packages/fabro-api-client/src/models/provider-test-list.ts +++ b/lib/packages/fabro-api-client/src/models/provider-test-list.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/provider-test-result.ts b/lib/packages/fabro-api-client/src/models/provider-test-result.ts index 0a34c894b..afe8b63a8 100644 --- a/lib/packages/fabro-api-client/src/models/provider-test-result.ts +++ b/lib/packages/fabro-api-client/src/models/provider-test-result.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/provider-test-status.ts b/lib/packages/fabro-api-client/src/models/provider-test-status.ts index fce18e021..866c2c509 100644 --- a/lib/packages/fabro-api-client/src/models/provider-test-status.ts +++ b/lib/packages/fabro-api-client/src/models/provider-test-status.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/provider-test-summary.ts b/lib/packages/fabro-api-client/src/models/provider-test-summary.ts index 0c3622fa5..93f635260 100644 --- a/lib/packages/fabro-api-client/src/models/provider-test-summary.ts +++ b/lib/packages/fabro-api-client/src/models/provider-test-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/provider.ts b/lib/packages/fabro-api-client/src/models/provider.ts index 901f1ca37..ae5be76c3 100644 --- a/lib/packages/fabro-api-client/src/models/provider.ts +++ b/lib/packages/fabro-api-client/src/models/provider.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/prune-run-entry.ts b/lib/packages/fabro-api-client/src/models/prune-run-entry.ts index ddcf261b9..c184b6267 100644 --- a/lib/packages/fabro-api-client/src/models/prune-run-entry.ts +++ b/lib/packages/fabro-api-client/src/models/prune-run-entry.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/prune-runs-request.ts b/lib/packages/fabro-api-client/src/models/prune-runs-request.ts index 1d1a8f058..237af45eb 100644 --- a/lib/packages/fabro-api-client/src/models/prune-runs-request.ts +++ b/lib/packages/fabro-api-client/src/models/prune-runs-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/prune-runs-response.ts b/lib/packages/fabro-api-client/src/models/prune-runs-response.ts index ca62198ba..c8c9df486 100644 --- a/lib/packages/fabro-api-client/src/models/prune-runs-response.ts +++ b/lib/packages/fabro-api-client/src/models/prune-runs-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pull-request-creation-status.ts b/lib/packages/fabro-api-client/src/models/pull-request-creation-status.ts index f6e5a3941..3be08ee5e 100644 --- a/lib/packages/fabro-api-client/src/models/pull-request-creation-status.ts +++ b/lib/packages/fabro-api-client/src/models/pull-request-creation-status.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pull-request-creation.ts b/lib/packages/fabro-api-client/src/models/pull-request-creation.ts index fd1db4d0e..f36ddf38d 100644 --- a/lib/packages/fabro-api-client/src/models/pull-request-creation.ts +++ b/lib/packages/fabro-api-client/src/models/pull-request-creation.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pull-request-details-status.ts b/lib/packages/fabro-api-client/src/models/pull-request-details-status.ts index 03f4c1cdc..fc713327e 100644 --- a/lib/packages/fabro-api-client/src/models/pull-request-details-status.ts +++ b/lib/packages/fabro-api-client/src/models/pull-request-details-status.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pull-request-details-timestamps.ts b/lib/packages/fabro-api-client/src/models/pull-request-details-timestamps.ts index 79a699d36..19d6b9329 100644 --- a/lib/packages/fabro-api-client/src/models/pull-request-details-timestamps.ts +++ b/lib/packages/fabro-api-client/src/models/pull-request-details-timestamps.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pull-request-details-unavailable-reason.ts b/lib/packages/fabro-api-client/src/models/pull-request-details-unavailable-reason.ts index 8bb87c59e..166550715 100644 --- a/lib/packages/fabro-api-client/src/models/pull-request-details-unavailable-reason.ts +++ b/lib/packages/fabro-api-client/src/models/pull-request-details-unavailable-reason.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pull-request-details.ts b/lib/packages/fabro-api-client/src/models/pull-request-details.ts index e871d9563..f12541381 100644 --- a/lib/packages/fabro-api-client/src/models/pull-request-details.ts +++ b/lib/packages/fabro-api-client/src/models/pull-request-details.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pull-request-link.ts b/lib/packages/fabro-api-client/src/models/pull-request-link.ts index 8cf17711f..5fa46bcd5 100644 --- a/lib/packages/fabro-api-client/src/models/pull-request-link.ts +++ b/lib/packages/fabro-api-client/src/models/pull-request-link.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pull-request-meta.ts b/lib/packages/fabro-api-client/src/models/pull-request-meta.ts index 84bcf981f..8914d163a 100644 --- a/lib/packages/fabro-api-client/src/models/pull-request-meta.ts +++ b/lib/packages/fabro-api-client/src/models/pull-request-meta.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pull-request-ref.ts b/lib/packages/fabro-api-client/src/models/pull-request-ref.ts index c96b40d42..976abe21f 100644 --- a/lib/packages/fabro-api-client/src/models/pull-request-ref.ts +++ b/lib/packages/fabro-api-client/src/models/pull-request-ref.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pull-request-response.ts b/lib/packages/fabro-api-client/src/models/pull-request-response.ts index 9f6eff305..a710d1070 100644 --- a/lib/packages/fabro-api-client/src/models/pull-request-response.ts +++ b/lib/packages/fabro-api-client/src/models/pull-request-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pull-request-settings.ts b/lib/packages/fabro-api-client/src/models/pull-request-settings.ts index 55a41c8ba..279068caa 100644 --- a/lib/packages/fabro-api-client/src/models/pull-request-settings.ts +++ b/lib/packages/fabro-api-client/src/models/pull-request-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pull-request-user.ts b/lib/packages/fabro-api-client/src/models/pull-request-user.ts index e50e4a631..460a268de 100644 --- a/lib/packages/fabro-api-client/src/models/pull-request-user.ts +++ b/lib/packages/fabro-api-client/src/models/pull-request-user.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/pull-request.ts b/lib/packages/fabro-api-client/src/models/pull-request.ts index a67061450..38dc8f0ad 100644 --- a/lib/packages/fabro-api-client/src/models/pull-request.ts +++ b/lib/packages/fabro-api-client/src/models/pull-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/question-type.ts b/lib/packages/fabro-api-client/src/models/question-type.ts index a40eda259..fc7caeedf 100644 --- a/lib/packages/fabro-api-client/src/models/question-type.ts +++ b/lib/packages/fabro-api-client/src/models/question-type.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/reasoning-effort-feature.ts b/lib/packages/fabro-api-client/src/models/reasoning-effort-feature.ts index 1aa9d6734..f7de9a438 100644 --- a/lib/packages/fabro-api-client/src/models/reasoning-effort-feature.ts +++ b/lib/packages/fabro-api-client/src/models/reasoning-effort-feature.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/reasoning-effort.ts b/lib/packages/fabro-api-client/src/models/reasoning-effort.ts index 66644a073..adb8c1398 100644 --- a/lib/packages/fabro-api-client/src/models/reasoning-effort.ts +++ b/lib/packages/fabro-api-client/src/models/reasoning-effort.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/reasoning-output-trace-only.ts b/lib/packages/fabro-api-client/src/models/reasoning-output-trace-only.ts index 8f757fddf..6199fc17a 100644 --- a/lib/packages/fabro-api-client/src/models/reasoning-output-trace-only.ts +++ b/lib/packages/fabro-api-client/src/models/reasoning-output-trace-only.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/reasoning-output-with-summary.ts b/lib/packages/fabro-api-client/src/models/reasoning-output-with-summary.ts index c93d38405..92f212bdd 100644 --- a/lib/packages/fabro-api-client/src/models/reasoning-output-with-summary.ts +++ b/lib/packages/fabro-api-client/src/models/reasoning-output-with-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/reasoning-output.ts b/lib/packages/fabro-api-client/src/models/reasoning-output.ts index b2c60fb2c..118a66d72 100644 --- a/lib/packages/fabro-api-client/src/models/reasoning-output.ts +++ b/lib/packages/fabro-api-client/src/models/reasoning-output.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/related-workflow-diagnostic.ts b/lib/packages/fabro-api-client/src/models/related-workflow-diagnostic.ts index 5e80bfb6b..dd4e79204 100644 --- a/lib/packages/fabro-api-client/src/models/related-workflow-diagnostic.ts +++ b/lib/packages/fabro-api-client/src/models/related-workflow-diagnostic.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/render-workflow-graph-direction.ts b/lib/packages/fabro-api-client/src/models/render-workflow-graph-direction.ts index 097c833ad..564a8fe17 100644 --- a/lib/packages/fabro-api-client/src/models/render-workflow-graph-direction.ts +++ b/lib/packages/fabro-api-client/src/models/render-workflow-graph-direction.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/render-workflow-graph-format.ts b/lib/packages/fabro-api-client/src/models/render-workflow-graph-format.ts index fffd9ab43..65f98e596 100644 --- a/lib/packages/fabro-api-client/src/models/render-workflow-graph-format.ts +++ b/lib/packages/fabro-api-client/src/models/render-workflow-graph-format.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/render-workflow-graph-request.ts b/lib/packages/fabro-api-client/src/models/render-workflow-graph-request.ts index f2064b906..5f16ac057 100644 --- a/lib/packages/fabro-api-client/src/models/render-workflow-graph-request.ts +++ b/lib/packages/fabro-api-client/src/models/render-workflow-graph-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/replace-automation-request.ts b/lib/packages/fabro-api-client/src/models/replace-automation-request.ts index 49a5533f4..4b3b02555 100644 --- a/lib/packages/fabro-api-client/src/models/replace-automation-request.ts +++ b/lib/packages/fabro-api-client/src/models/replace-automation-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/replace-environment-request.ts b/lib/packages/fabro-api-client/src/models/replace-environment-request.ts index bddac795e..5fb4554b1 100644 --- a/lib/packages/fabro-api-client/src/models/replace-environment-request.ts +++ b/lib/packages/fabro-api-client/src/models/replace-environment-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/replace-mcp-server-request.ts b/lib/packages/fabro-api-client/src/models/replace-mcp-server-request.ts index 3efb9cf8b..fc1b5c2d0 100644 --- a/lib/packages/fabro-api-client/src/models/replace-mcp-server-request.ts +++ b/lib/packages/fabro-api-client/src/models/replace-mcp-server-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/repo-check-response-permissions.ts b/lib/packages/fabro-api-client/src/models/repo-check-response-permissions.ts index 7ef36c796..55e5a8f7b 100644 --- a/lib/packages/fabro-api-client/src/models/repo-check-response-permissions.ts +++ b/lib/packages/fabro-api-client/src/models/repo-check-response-permissions.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/repo-check-response.ts b/lib/packages/fabro-api-client/src/models/repo-check-response.ts index e61d1558f..d36ecfbe2 100644 --- a/lib/packages/fabro-api-client/src/models/repo-check-response.ts +++ b/lib/packages/fabro-api-client/src/models/repo-check-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/repository-ref.ts b/lib/packages/fabro-api-client/src/models/repository-ref.ts index 1c9652e82..68ce062c6 100644 --- a/lib/packages/fabro-api-client/src/models/repository-ref.ts +++ b/lib/packages/fabro-api-client/src/models/repository-ref.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/review-target-kind.ts b/lib/packages/fabro-api-client/src/models/review-target-kind.ts index e50c78a38..37cf9b3e3 100644 --- a/lib/packages/fabro-api-client/src/models/review-target-kind.ts +++ b/lib/packages/fabro-api-client/src/models/review-target-kind.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/review-target.ts b/lib/packages/fabro-api-client/src/models/review-target.ts index 61b476d21..0b4a883ff 100644 --- a/lib/packages/fabro-api-client/src/models/review-target.ts +++ b/lib/packages/fabro-api-client/src/models/review-target.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/rewind-request.ts b/lib/packages/fabro-api-client/src/models/rewind-request.ts index 50e6072f2..ade0f4f4c 100644 --- a/lib/packages/fabro-api-client/src/models/rewind-request.ts +++ b/lib/packages/fabro-api-client/src/models/rewind-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/rewind-response.ts b/lib/packages/fabro-api-client/src/models/rewind-response.ts index 527c0e62f..45a5b7179 100644 --- a/lib/packages/fabro-api-client/src/models/rewind-response.ts +++ b/lib/packages/fabro-api-client/src/models/rewind-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/root-response-urls.ts b/lib/packages/fabro-api-client/src/models/root-response-urls.ts index 7f09efd4d..0caa27dcd 100644 --- a/lib/packages/fabro-api-client/src/models/root-response-urls.ts +++ b/lib/packages/fabro-api-client/src/models/root-response-urls.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/root-response.ts b/lib/packages/fabro-api-client/src/models/root-response.ts index cc29060ab..6ffd8144f 100644 --- a/lib/packages/fabro-api-client/src/models/root-response.ts +++ b/lib/packages/fabro-api-client/src/models/root-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-agent-settings.ts b/lib/packages/fabro-api-client/src/models/run-agent-settings.ts index 044c251c8..be5774084 100644 --- a/lib/packages/fabro-api-client/src/models/run-agent-settings.ts +++ b/lib/packages/fabro-api-client/src/models/run-agent-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-approval-state.ts b/lib/packages/fabro-api-client/src/models/run-approval-state.ts index 4345fa4aa..c13c90e5e 100644 --- a/lib/packages/fabro-api-client/src/models/run-approval-state.ts +++ b/lib/packages/fabro-api-client/src/models/run-approval-state.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-approval.ts b/lib/packages/fabro-api-client/src/models/run-approval.ts index 639d6d4df..45fc161e4 100644 --- a/lib/packages/fabro-api-client/src/models/run-approval.ts +++ b/lib/packages/fabro-api-client/src/models/run-approval.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-artifact-entry.ts b/lib/packages/fabro-api-client/src/models/run-artifact-entry.ts index d88afb21a..f655c5dfc 100644 --- a/lib/packages/fabro-api-client/src/models/run-artifact-entry.ts +++ b/lib/packages/fabro-api-client/src/models/run-artifact-entry.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-artifact-list-response.ts b/lib/packages/fabro-api-client/src/models/run-artifact-list-response.ts index 74ed37164..d8b0c7d01 100644 --- a/lib/packages/fabro-api-client/src/models/run-artifact-list-response.ts +++ b/lib/packages/fabro-api-client/src/models/run-artifact-list-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-billing-stage.ts b/lib/packages/fabro-api-client/src/models/run-billing-stage.ts index 6238e97c8..5db2989dd 100644 --- a/lib/packages/fabro-api-client/src/models/run-billing-stage.ts +++ b/lib/packages/fabro-api-client/src/models/run-billing-stage.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-billing-summary.ts b/lib/packages/fabro-api-client/src/models/run-billing-summary.ts index 4e0cb5ee7..c573d568d 100644 --- a/lib/packages/fabro-api-client/src/models/run-billing-summary.ts +++ b/lib/packages/fabro-api-client/src/models/run-billing-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-billing-totals.ts b/lib/packages/fabro-api-client/src/models/run-billing-totals.ts index 68861f7f8..66e64f64a 100644 --- a/lib/packages/fabro-api-client/src/models/run-billing-totals.ts +++ b/lib/packages/fabro-api-client/src/models/run-billing-totals.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-billing.ts b/lib/packages/fabro-api-client/src/models/run-billing.ts index 7bf377d78..77cab4145 100644 --- a/lib/packages/fabro-api-client/src/models/run-billing.ts +++ b/lib/packages/fabro-api-client/src/models/run-billing.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-branch-settings.ts b/lib/packages/fabro-api-client/src/models/run-branch-settings.ts index 1805c3f2b..b1c62222c 100644 --- a/lib/packages/fabro-api-client/src/models/run-branch-settings.ts +++ b/lib/packages/fabro-api-client/src/models/run-branch-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-checkpoint-settings.ts b/lib/packages/fabro-api-client/src/models/run-checkpoint-settings.ts index 4af156da7..2342ac774 100644 --- a/lib/packages/fabro-api-client/src/models/run-checkpoint-settings.ts +++ b/lib/packages/fabro-api-client/src/models/run-checkpoint-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-checkpoint.ts b/lib/packages/fabro-api-client/src/models/run-checkpoint.ts index 3bc50540b..1d6481b7e 100644 --- a/lib/packages/fabro-api-client/src/models/run-checkpoint.ts +++ b/lib/packages/fabro-api-client/src/models/run-checkpoint.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-client-provenance.ts b/lib/packages/fabro-api-client/src/models/run-client-provenance.ts index f1645f81f..647aec1bf 100644 --- a/lib/packages/fabro-api-client/src/models/run-client-provenance.ts +++ b/lib/packages/fabro-api-client/src/models/run-client-provenance.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-clone-settings.ts b/lib/packages/fabro-api-client/src/models/run-clone-settings.ts index 4c4b6a657..7258d9d8d 100644 --- a/lib/packages/fabro-api-client/src/models/run-clone-settings.ts +++ b/lib/packages/fabro-api-client/src/models/run-clone-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-commit-parent.ts b/lib/packages/fabro-api-client/src/models/run-commit-parent.ts index 1cc1cea61..479b5232f 100644 --- a/lib/packages/fabro-api-client/src/models/run-commit-parent.ts +++ b/lib/packages/fabro-api-client/src/models/run-commit-parent.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-commit-person.ts b/lib/packages/fabro-api-client/src/models/run-commit-person.ts index 6a33f0ce6..1eabb61b6 100644 --- a/lib/packages/fabro-api-client/src/models/run-commit-person.ts +++ b/lib/packages/fabro-api-client/src/models/run-commit-person.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-commit.ts b/lib/packages/fabro-api-client/src/models/run-commit.ts index f0b033ffc..34ad5dad0 100644 --- a/lib/packages/fabro-api-client/src/models/run-commit.ts +++ b/lib/packages/fabro-api-client/src/models/run-commit.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-commits-meta.ts b/lib/packages/fabro-api-client/src/models/run-commits-meta.ts index 06730f348..7ecfcb7a5 100644 --- a/lib/packages/fabro-api-client/src/models/run-commits-meta.ts +++ b/lib/packages/fabro-api-client/src/models/run-commits-meta.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-control-action.ts b/lib/packages/fabro-api-client/src/models/run-control-action.ts index c68e17dec..93434cbe2 100644 --- a/lib/packages/fabro-api-client/src/models/run-control-action.ts +++ b/lib/packages/fabro-api-client/src/models/run-control-action.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-diff.ts b/lib/packages/fabro-api-client/src/models/run-diff.ts index 6b740259f..b625efafa 100644 --- a/lib/packages/fabro-api-client/src/models/run-diff.ts +++ b/lib/packages/fabro-api-client/src/models/run-diff.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-environment-settings.ts b/lib/packages/fabro-api-client/src/models/run-environment-settings.ts index b5eafa3d2..5ee20ffc0 100644 --- a/lib/packages/fabro-api-client/src/models/run-environment-settings.ts +++ b/lib/packages/fabro-api-client/src/models/run-environment-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-error.ts b/lib/packages/fabro-api-client/src/models/run-error.ts index 3367acc39..7f08f6498 100644 --- a/lib/packages/fabro-api-client/src/models/run-error.ts +++ b/lib/packages/fabro-api-client/src/models/run-error.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-event-detail-response-content.ts b/lib/packages/fabro-api-client/src/models/run-event-detail-response-content.ts index 211dcc46e..cdbf7a8a3 100644 --- a/lib/packages/fabro-api-client/src/models/run-event-detail-response-content.ts +++ b/lib/packages/fabro-api-client/src/models/run-event-detail-response-content.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-event-detail-response-event.ts b/lib/packages/fabro-api-client/src/models/run-event-detail-response-event.ts index b5f059e07..0214b752b 100644 --- a/lib/packages/fabro-api-client/src/models/run-event-detail-response-event.ts +++ b/lib/packages/fabro-api-client/src/models/run-event-detail-response-event.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-event-detail-response.ts b/lib/packages/fabro-api-client/src/models/run-event-detail-response.ts index 3d50004b6..800c08039 100644 --- a/lib/packages/fabro-api-client/src/models/run-event-detail-response.ts +++ b/lib/packages/fabro-api-client/src/models/run-event-detail-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-event.ts b/lib/packages/fabro-api-client/src/models/run-event.ts index 073afd03b..a27df1702 100644 --- a/lib/packages/fabro-api-client/src/models/run-event.ts +++ b/lib/packages/fabro-api-client/src/models/run-event.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-execution-settings.ts b/lib/packages/fabro-api-client/src/models/run-execution-settings.ts index 0508d2646..e68d95c32 100644 --- a/lib/packages/fabro-api-client/src/models/run-execution-settings.ts +++ b/lib/packages/fabro-api-client/src/models/run-execution-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-failure.ts b/lib/packages/fabro-api-client/src/models/run-failure.ts index 114e172db..ceb7c8cf3 100644 --- a/lib/packages/fabro-api-client/src/models/run-failure.ts +++ b/lib/packages/fabro-api-client/src/models/run-failure.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-files-meta.ts b/lib/packages/fabro-api-client/src/models/run-files-meta.ts index 2e095d758..83d95b836 100644 --- a/lib/packages/fabro-api-client/src/models/run-files-meta.ts +++ b/lib/packages/fabro-api-client/src/models/run-files-meta.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-git-settings.ts b/lib/packages/fabro-api-client/src/models/run-git-settings.ts index 2d390957b..5007209e3 100644 --- a/lib/packages/fabro-api-client/src/models/run-git-settings.ts +++ b/lib/packages/fabro-api-client/src/models/run-git-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-goal-file.ts b/lib/packages/fabro-api-client/src/models/run-goal-file.ts index a2b0052ef..64dc5c3f2 100644 --- a/lib/packages/fabro-api-client/src/models/run-goal-file.ts +++ b/lib/packages/fabro-api-client/src/models/run-goal-file.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-goal-inline.ts b/lib/packages/fabro-api-client/src/models/run-goal-inline.ts index d0afe3a11..9c2deb82b 100644 --- a/lib/packages/fabro-api-client/src/models/run-goal-inline.ts +++ b/lib/packages/fabro-api-client/src/models/run-goal-inline.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-goal.ts b/lib/packages/fabro-api-client/src/models/run-goal.ts index 560389840..7b28656f1 100644 --- a/lib/packages/fabro-api-client/src/models/run-goal.ts +++ b/lib/packages/fabro-api-client/src/models/run-goal.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-integrations-github-settings.ts b/lib/packages/fabro-api-client/src/models/run-integrations-github-settings.ts index 88df508a5..a28ae5b4b 100644 --- a/lib/packages/fabro-api-client/src/models/run-integrations-github-settings.ts +++ b/lib/packages/fabro-api-client/src/models/run-integrations-github-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-integrations-settings.ts b/lib/packages/fabro-api-client/src/models/run-integrations-settings.ts index 4bf715c94..28c4f5cc8 100644 --- a/lib/packages/fabro-api-client/src/models/run-integrations-settings.ts +++ b/lib/packages/fabro-api-client/src/models/run-integrations-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-interviews-settings.ts b/lib/packages/fabro-api-client/src/models/run-interviews-settings.ts index 5d7108e20..b01a6bbd9 100644 --- a/lib/packages/fabro-api-client/src/models/run-interviews-settings.ts +++ b/lib/packages/fabro-api-client/src/models/run-interviews-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-lifecycle.ts b/lib/packages/fabro-api-client/src/models/run-lifecycle.ts index ca44ba35e..13e2c22b6 100644 --- a/lib/packages/fabro-api-client/src/models/run-lifecycle.ts +++ b/lib/packages/fabro-api-client/src/models/run-lifecycle.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-links.ts b/lib/packages/fabro-api-client/src/models/run-links.ts index ac0336dd7..7c645794b 100644 --- a/lib/packages/fabro-api-client/src/models/run-links.ts +++ b/lib/packages/fabro-api-client/src/models/run-links.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-manifest.ts b/lib/packages/fabro-api-client/src/models/run-manifest.ts index 6c2813065..0ad1ff4d7 100644 --- a/lib/packages/fabro-api-client/src/models/run-manifest.ts +++ b/lib/packages/fabro-api-client/src/models/run-manifest.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-meta-branch-settings.ts b/lib/packages/fabro-api-client/src/models/run-meta-branch-settings.ts index 950734a44..ffb69731a 100644 --- a/lib/packages/fabro-api-client/src/models/run-meta-branch-settings.ts +++ b/lib/packages/fabro-api-client/src/models/run-meta-branch-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-mode.ts b/lib/packages/fabro-api-client/src/models/run-mode.ts index 4a8ab07e2..1a21817ae 100644 --- a/lib/packages/fabro-api-client/src/models/run-mode.ts +++ b/lib/packages/fabro-api-client/src/models/run-mode.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-model-controls.ts b/lib/packages/fabro-api-client/src/models/run-model-controls.ts index 5d60f0fa4..770bb3493 100644 --- a/lib/packages/fabro-api-client/src/models/run-model-controls.ts +++ b/lib/packages/fabro-api-client/src/models/run-model-controls.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-model-settings.ts b/lib/packages/fabro-api-client/src/models/run-model-settings.ts index 599b6a26a..82b7c0798 100644 --- a/lib/packages/fabro-api-client/src/models/run-model-settings.ts +++ b/lib/packages/fabro-api-client/src/models/run-model-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-model.ts b/lib/packages/fabro-api-client/src/models/run-model.ts index 261182e70..518f3bb71 100644 --- a/lib/packages/fabro-api-client/src/models/run-model.ts +++ b/lib/packages/fabro-api-client/src/models/run-model.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-namespace.ts b/lib/packages/fabro-api-client/src/models/run-namespace.ts index cea567a72..19a89a218 100644 --- a/lib/packages/fabro-api-client/src/models/run-namespace.ts +++ b/lib/packages/fabro-api-client/src/models/run-namespace.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-origin.ts b/lib/packages/fabro-api-client/src/models/run-origin.ts index fe4a05773..a03407dd7 100644 --- a/lib/packages/fabro-api-client/src/models/run-origin.ts +++ b/lib/packages/fabro-api-client/src/models/run-origin.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-pair-status-response.ts b/lib/packages/fabro-api-client/src/models/run-pair-status-response.ts index 5bf9a5adc..4d2d987a8 100644 --- a/lib/packages/fabro-api-client/src/models/run-pair-status-response.ts +++ b/lib/packages/fabro-api-client/src/models/run-pair-status-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-prepare-settings.ts b/lib/packages/fabro-api-client/src/models/run-prepare-settings.ts index 48a4b75fa..26900c950 100644 --- a/lib/packages/fabro-api-client/src/models/run-prepare-settings.ts +++ b/lib/packages/fabro-api-client/src/models/run-prepare-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-projection.ts b/lib/packages/fabro-api-client/src/models/run-projection.ts index bd527066f..2f679a012 100644 --- a/lib/packages/fabro-api-client/src/models/run-projection.ts +++ b/lib/packages/fabro-api-client/src/models/run-projection.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-provenance.ts b/lib/packages/fabro-api-client/src/models/run-provenance.ts index 59fa7a063..525391cc5 100644 --- a/lib/packages/fabro-api-client/src/models/run-provenance.ts +++ b/lib/packages/fabro-api-client/src/models/run-provenance.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-question.ts b/lib/packages/fabro-api-client/src/models/run-question.ts index 9ad4b72fd..a4dc008e5 100644 --- a/lib/packages/fabro-api-client/src/models/run-question.ts +++ b/lib/packages/fabro-api-client/src/models/run-question.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-reference.ts b/lib/packages/fabro-api-client/src/models/run-reference.ts index 890d55119..2f1d853df 100644 --- a/lib/packages/fabro-api-client/src/models/run-reference.ts +++ b/lib/packages/fabro-api-client/src/models/run-reference.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-runnable-source.ts b/lib/packages/fabro-api-client/src/models/run-runnable-source.ts index 88d1bd649..35d0db75b 100644 --- a/lib/packages/fabro-api-client/src/models/run-runnable-source.ts +++ b/lib/packages/fabro-api-client/src/models/run-runnable-source.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-sandbox-failure.ts b/lib/packages/fabro-api-client/src/models/run-sandbox-failure.ts index c30582f99..a72e0117d 100644 --- a/lib/packages/fabro-api-client/src/models/run-sandbox-failure.ts +++ b/lib/packages/fabro-api-client/src/models/run-sandbox-failure.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-sandbox-instance.ts b/lib/packages/fabro-api-client/src/models/run-sandbox-instance.ts index 1fd11d41c..9b526b4bd 100644 --- a/lib/packages/fabro-api-client/src/models/run-sandbox-instance.ts +++ b/lib/packages/fabro-api-client/src/models/run-sandbox-instance.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-sandbox-kind.ts b/lib/packages/fabro-api-client/src/models/run-sandbox-kind.ts index 5839dafad..2dbcc46d0 100644 --- a/lib/packages/fabro-api-client/src/models/run-sandbox-kind.ts +++ b/lib/packages/fabro-api-client/src/models/run-sandbox-kind.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-sandbox-plan.ts b/lib/packages/fabro-api-client/src/models/run-sandbox-plan.ts index 6a7e2d032..9ea86deff 100644 --- a/lib/packages/fabro-api-client/src/models/run-sandbox-plan.ts +++ b/lib/packages/fabro-api-client/src/models/run-sandbox-plan.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-sandbox-runtime.ts b/lib/packages/fabro-api-client/src/models/run-sandbox-runtime.ts index 24807703a..003a25cea 100644 --- a/lib/packages/fabro-api-client/src/models/run-sandbox-runtime.ts +++ b/lib/packages/fabro-api-client/src/models/run-sandbox-runtime.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-sandbox.ts b/lib/packages/fabro-api-client/src/models/run-sandbox.ts index 12c15b34f..c6df6dd0f 100644 --- a/lib/packages/fabro-api-client/src/models/run-sandbox.ts +++ b/lib/packages/fabro-api-client/src/models/run-sandbox.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-scm-settings.ts b/lib/packages/fabro-api-client/src/models/run-scm-settings.ts index f0970dcec..65a2a364e 100644 --- a/lib/packages/fabro-api-client/src/models/run-scm-settings.ts +++ b/lib/packages/fabro-api-client/src/models/run-scm-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-server-provenance.ts b/lib/packages/fabro-api-client/src/models/run-server-provenance.ts index 8acad6eb4..df303739c 100644 --- a/lib/packages/fabro-api-client/src/models/run-server-provenance.ts +++ b/lib/packages/fabro-api-client/src/models/run-server-provenance.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-size.ts b/lib/packages/fabro-api-client/src/models/run-size.ts index e1a4b60f2..a1c40398f 100644 --- a/lib/packages/fabro-api-client/src/models/run-size.ts +++ b/lib/packages/fabro-api-client/src/models/run-size.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-spec.ts b/lib/packages/fabro-api-client/src/models/run-spec.ts index 6abad2884..4797dc2ad 100644 --- a/lib/packages/fabro-api-client/src/models/run-spec.ts +++ b/lib/packages/fabro-api-client/src/models/run-spec.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-stage.ts b/lib/packages/fabro-api-client/src/models/run-stage.ts index 442753331..cb976f5c0 100644 --- a/lib/packages/fabro-api-client/src/models/run-stage.ts +++ b/lib/packages/fabro-api-client/src/models/run-stage.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-status-blocked.ts b/lib/packages/fabro-api-client/src/models/run-status-blocked.ts index 659a28a05..e71c51ce8 100644 --- a/lib/packages/fabro-api-client/src/models/run-status-blocked.ts +++ b/lib/packages/fabro-api-client/src/models/run-status-blocked.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-status-dead.ts b/lib/packages/fabro-api-client/src/models/run-status-dead.ts index 422710ef5..a05b36986 100644 --- a/lib/packages/fabro-api-client/src/models/run-status-dead.ts +++ b/lib/packages/fabro-api-client/src/models/run-status-dead.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-status-failed.ts b/lib/packages/fabro-api-client/src/models/run-status-failed.ts index 36b9dbeec..6b7642e3a 100644 --- a/lib/packages/fabro-api-client/src/models/run-status-failed.ts +++ b/lib/packages/fabro-api-client/src/models/run-status-failed.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-status-paused.ts b/lib/packages/fabro-api-client/src/models/run-status-paused.ts index 4ee7870a9..c99d8b558 100644 --- a/lib/packages/fabro-api-client/src/models/run-status-paused.ts +++ b/lib/packages/fabro-api-client/src/models/run-status-paused.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-status-pending.ts b/lib/packages/fabro-api-client/src/models/run-status-pending.ts index f2e1e3f91..b442a13e4 100644 --- a/lib/packages/fabro-api-client/src/models/run-status-pending.ts +++ b/lib/packages/fabro-api-client/src/models/run-status-pending.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-status-removing.ts b/lib/packages/fabro-api-client/src/models/run-status-removing.ts index 94935af9b..bcddd38cc 100644 --- a/lib/packages/fabro-api-client/src/models/run-status-removing.ts +++ b/lib/packages/fabro-api-client/src/models/run-status-removing.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-status-runnable.ts b/lib/packages/fabro-api-client/src/models/run-status-runnable.ts index 08141c460..dfcef94c4 100644 --- a/lib/packages/fabro-api-client/src/models/run-status-runnable.ts +++ b/lib/packages/fabro-api-client/src/models/run-status-runnable.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-status-running.ts b/lib/packages/fabro-api-client/src/models/run-status-running.ts index b9347f7a1..608e9216f 100644 --- a/lib/packages/fabro-api-client/src/models/run-status-running.ts +++ b/lib/packages/fabro-api-client/src/models/run-status-running.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-status-starting.ts b/lib/packages/fabro-api-client/src/models/run-status-starting.ts index 85b5ae96b..a9d38b3ff 100644 --- a/lib/packages/fabro-api-client/src/models/run-status-starting.ts +++ b/lib/packages/fabro-api-client/src/models/run-status-starting.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-status-submitted.ts b/lib/packages/fabro-api-client/src/models/run-status-submitted.ts index fba39f37a..56903e07b 100644 --- a/lib/packages/fabro-api-client/src/models/run-status-submitted.ts +++ b/lib/packages/fabro-api-client/src/models/run-status-submitted.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-status-succeeded.ts b/lib/packages/fabro-api-client/src/models/run-status-succeeded.ts index 6d2c1bced..bca6666af 100644 --- a/lib/packages/fabro-api-client/src/models/run-status-succeeded.ts +++ b/lib/packages/fabro-api-client/src/models/run-status-succeeded.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-status.ts b/lib/packages/fabro-api-client/src/models/run-status.ts index 75c85f149..f04558848 100644 --- a/lib/packages/fabro-api-client/src/models/run-status.ts +++ b/lib/packages/fabro-api-client/src/models/run-status.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-superseded-by-props.ts b/lib/packages/fabro-api-client/src/models/run-superseded-by-props.ts index 49cfa9fa6..f27d4a85f 100644 --- a/lib/packages/fabro-api-client/src/models/run-superseded-by-props.ts +++ b/lib/packages/fabro-api-client/src/models/run-superseded-by-props.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-timestamps.ts b/lib/packages/fabro-api-client/src/models/run-timestamps.ts index abb59f410..c6c0b5759 100644 --- a/lib/packages/fabro-api-client/src/models/run-timestamps.ts +++ b/lib/packages/fabro-api-client/src/models/run-timestamps.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run-timing.ts b/lib/packages/fabro-api-client/src/models/run-timing.ts index f0344e5d3..0608f7c5c 100644 --- a/lib/packages/fabro-api-client/src/models/run-timing.ts +++ b/lib/packages/fabro-api-client/src/models/run-timing.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/run.ts b/lib/packages/fabro-api-client/src/models/run.ts index a4ade38a3..5771f15c2 100644 --- a/lib/packages/fabro-api-client/src/models/run.ts +++ b/lib/packages/fabro-api-client/src/models/run.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-details.ts b/lib/packages/fabro-api-client/src/models/sandbox-details.ts index 016fd2661..63075bcc9 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-details.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-details.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-file-entry.ts b/lib/packages/fabro-api-client/src/models/sandbox-file-entry.ts index ccc44e7e9..6189c5e05 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-file-entry.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-file-entry.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-file-list-response.ts b/lib/packages/fabro-api-client/src/models/sandbox-file-list-response.ts index 21ce28514..5056f949d 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-file-list-response.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-file-list-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-info.ts b/lib/packages/fabro-api-client/src/models/sandbox-info.ts index 9f026d745..6f7a8b71c 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-info.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-info.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-list-meta.ts b/lib/packages/fabro-api-client/src/models/sandbox-list-meta.ts index a8258b994..fbaf87e58 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-list-meta.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-list-meta.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-list-response.ts b/lib/packages/fabro-api-client/src/models/sandbox-list-response.ts index 7ac3f6824..b4c93f957 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-list-response.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-list-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-network-policy-mode.ts b/lib/packages/fabro-api-client/src/models/sandbox-network-policy-mode.ts index 0579ee087..3a208c284 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-network-policy-mode.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-network-policy-mode.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-network-policy.ts b/lib/packages/fabro-api-client/src/models/sandbox-network-policy.ts index da49f0397..b26016a62 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-network-policy.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-network-policy.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-network.ts b/lib/packages/fabro-api-client/src/models/sandbox-network.ts index 91b5d8e1d..e378225e2 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-network.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-network.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-provider-kind.ts b/lib/packages/fabro-api-client/src/models/sandbox-provider-kind.ts index 57f0c222c..f92894dfd 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-provider-kind.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-provider-kind.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-provider-lookup-error.ts b/lib/packages/fabro-api-client/src/models/sandbox-provider-lookup-error.ts index d5fee5806..c7f8b4fe5 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-provider-lookup-error.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-provider-lookup-error.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-resources.ts b/lib/packages/fabro-api-client/src/models/sandbox-resources.ts index 662cdb3de..f23c87f44 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-resources.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-resources.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-service-discovery-source.ts b/lib/packages/fabro-api-client/src/models/sandbox-service-discovery-source.ts index 442f173e0..1c6db31fe 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-service-discovery-source.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-service-discovery-source.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-service-list-meta.ts b/lib/packages/fabro-api-client/src/models/sandbox-service-list-meta.ts index eeba349a3..c24d6c81d 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-service-list-meta.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-service-list-meta.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-service-list-response.ts b/lib/packages/fabro-api-client/src/models/sandbox-service-list-response.ts index 1494ec5b7..a41676b3b 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-service-list-response.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-service-list-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-service.ts b/lib/packages/fabro-api-client/src/models/sandbox-service.ts index fffdbd642..9e89797e7 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-service.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-service.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-state.ts b/lib/packages/fabro-api-client/src/models/sandbox-state.ts index 38f785751..c40419d2f 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-state.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-state.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sandbox-timestamps.ts b/lib/packages/fabro-api-client/src/models/sandbox-timestamps.ts index 83937e370..da431e4cb 100644 --- a/lib/packages/fabro-api-client/src/models/sandbox-timestamps.ts +++ b/lib/packages/fabro-api-client/src/models/sandbox-timestamps.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/save-query-request.ts b/lib/packages/fabro-api-client/src/models/save-query-request.ts index 0b3753cfb..95dc328ca 100644 --- a/lib/packages/fabro-api-client/src/models/save-query-request.ts +++ b/lib/packages/fabro-api-client/src/models/save-query-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/saved-query.ts b/lib/packages/fabro-api-client/src/models/saved-query.ts index 21ae5bf6f..d907feed1 100644 --- a/lib/packages/fabro-api-client/src/models/saved-query.ts +++ b/lib/packages/fabro-api-client/src/models/saved-query.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/secret-list-response.ts b/lib/packages/fabro-api-client/src/models/secret-list-response.ts index f5b8354ac..424684530 100644 --- a/lib/packages/fabro-api-client/src/models/secret-list-response.ts +++ b/lib/packages/fabro-api-client/src/models/secret-list-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/secret-metadata.ts b/lib/packages/fabro-api-client/src/models/secret-metadata.ts index 22cfc4497..7c2501029 100644 --- a/lib/packages/fabro-api-client/src/models/secret-metadata.ts +++ b/lib/packages/fabro-api-client/src/models/secret-metadata.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/secret-type.ts b/lib/packages/fabro-api-client/src/models/secret-type.ts index 1b8fc239c..8ae9c8e08 100644 --- a/lib/packages/fabro-api-client/src/models/secret-type.ts +++ b/lib/packages/fabro-api-client/src/models/secret-type.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-api-settings.ts b/lib/packages/fabro-api-client/src/models/server-api-settings.ts index 3392c3e71..9049d9f1b 100644 --- a/lib/packages/fabro-api-client/src/models/server-api-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-api-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-artifacts-settings.ts b/lib/packages/fabro-api-client/src/models/server-artifacts-settings.ts index 06131fc77..5452c2b94 100644 --- a/lib/packages/fabro-api-client/src/models/server-artifacts-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-artifacts-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-auth-github-settings.ts b/lib/packages/fabro-api-client/src/models/server-auth-github-settings.ts index 0eadd9e5d..eda32135b 100644 --- a/lib/packages/fabro-api-client/src/models/server-auth-github-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-auth-github-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-auth-method.ts b/lib/packages/fabro-api-client/src/models/server-auth-method.ts index 737fe1c2b..8de81bb47 100644 --- a/lib/packages/fabro-api-client/src/models/server-auth-method.ts +++ b/lib/packages/fabro-api-client/src/models/server-auth-method.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-auth-settings.ts b/lib/packages/fabro-api-client/src/models/server-auth-settings.ts index 650eecb9e..d1dbc18ed 100644 --- a/lib/packages/fabro-api-client/src/models/server-auth-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-auth-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-integrations-settings.ts b/lib/packages/fabro-api-client/src/models/server-integrations-settings.ts index b6e9eef93..88b8fdd8d 100644 --- a/lib/packages/fabro-api-client/src/models/server-integrations-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-integrations-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-listen-settings.ts b/lib/packages/fabro-api-client/src/models/server-listen-settings.ts index d3b6586ff..6898ed62d 100644 --- a/lib/packages/fabro-api-client/src/models/server-listen-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-listen-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-listen-tcp-settings.ts b/lib/packages/fabro-api-client/src/models/server-listen-tcp-settings.ts index 87b0bd4e0..ae99043d0 100644 --- a/lib/packages/fabro-api-client/src/models/server-listen-tcp-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-listen-tcp-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-listen-unix-settings.ts b/lib/packages/fabro-api-client/src/models/server-listen-unix-settings.ts index 643f0b727..ccf48d6ce 100644 --- a/lib/packages/fabro-api-client/src/models/server-listen-unix-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-listen-unix-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-logging-settings.ts b/lib/packages/fabro-api-client/src/models/server-logging-settings.ts index 2fef328fd..994118bdc 100644 --- a/lib/packages/fabro-api-client/src/models/server-logging-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-logging-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-namespace.ts b/lib/packages/fabro-api-client/src/models/server-namespace.ts index 153195ed8..5ff18c6d5 100644 --- a/lib/packages/fabro-api-client/src/models/server-namespace.ts +++ b/lib/packages/fabro-api-client/src/models/server-namespace.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-sandbox-provider-settings.ts b/lib/packages/fabro-api-client/src/models/server-sandbox-provider-settings.ts index c50d09f6d..96fa4f679 100644 --- a/lib/packages/fabro-api-client/src/models/server-sandbox-provider-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-sandbox-provider-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-sandbox-providers-settings.ts b/lib/packages/fabro-api-client/src/models/server-sandbox-providers-settings.ts index 9fa9a35a1..ffc563bb0 100644 --- a/lib/packages/fabro-api-client/src/models/server-sandbox-providers-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-sandbox-providers-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-sandbox-settings.ts b/lib/packages/fabro-api-client/src/models/server-sandbox-settings.ts index cb6a3b2d6..7fd2c4625 100644 --- a/lib/packages/fabro-api-client/src/models/server-sandbox-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-sandbox-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-scheduler-settings.ts b/lib/packages/fabro-api-client/src/models/server-scheduler-settings.ts index 32d67b631..ede8c6126 100644 --- a/lib/packages/fabro-api-client/src/models/server-scheduler-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-scheduler-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-settings.ts b/lib/packages/fabro-api-client/src/models/server-settings.ts index e299e4dda..f6291f430 100644 --- a/lib/packages/fabro-api-client/src/models/server-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-slate-db-settings.ts b/lib/packages/fabro-api-client/src/models/server-slate-db-settings.ts index 0b7b8583d..69c684618 100644 --- a/lib/packages/fabro-api-client/src/models/server-slate-db-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-slate-db-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-storage-settings.ts b/lib/packages/fabro-api-client/src/models/server-storage-settings.ts index 34c12ee29..8584ff40a 100644 --- a/lib/packages/fabro-api-client/src/models/server-storage-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-storage-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/server-web-settings.ts b/lib/packages/fabro-api-client/src/models/server-web-settings.ts index dd8ea8e0b..25b7e1d3b 100644 --- a/lib/packages/fabro-api-client/src/models/server-web-settings.ts +++ b/lib/packages/fabro-api-client/src/models/server-web-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/session-detail.ts b/lib/packages/fabro-api-client/src/models/session-detail.ts index e1dce8d26..0a2e726b1 100644 --- a/lib/packages/fabro-api-client/src/models/session-detail.ts +++ b/lib/packages/fabro-api-client/src/models/session-detail.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/session-message.ts b/lib/packages/fabro-api-client/src/models/session-message.ts index 6ac25cf10..5308f3332 100644 --- a/lib/packages/fabro-api-client/src/models/session-message.ts +++ b/lib/packages/fabro-api-client/src/models/session-message.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/session-record.ts b/lib/packages/fabro-api-client/src/models/session-record.ts index 5bb2ee06d..0c2ef4b79 100644 --- a/lib/packages/fabro-api-client/src/models/session-record.ts +++ b/lib/packages/fabro-api-client/src/models/session-record.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/session-status.ts b/lib/packages/fabro-api-client/src/models/session-status.ts index b0c6568ab..701bb97d7 100644 --- a/lib/packages/fabro-api-client/src/models/session-status.ts +++ b/lib/packages/fabro-api-client/src/models/session-status.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/session-summary.ts b/lib/packages/fabro-api-client/src/models/session-summary.ts index 6520d77c7..3aec2b2ff 100644 --- a/lib/packages/fabro-api-client/src/models/session-summary.ts +++ b/lib/packages/fabro-api-client/src/models/session-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/session-turn.ts b/lib/packages/fabro-api-client/src/models/session-turn.ts index 65950d477..ad83c28e2 100644 --- a/lib/packages/fabro-api-client/src/models/session-turn.ts +++ b/lib/packages/fabro-api-client/src/models/session-turn.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/skills-projection.ts b/lib/packages/fabro-api-client/src/models/skills-projection.ts index 897c4b4af..92f77b1a8 100644 --- a/lib/packages/fabro-api-client/src/models/skills-projection.ts +++ b/lib/packages/fabro-api-client/src/models/skills-projection.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/slack-integration-settings.ts b/lib/packages/fabro-api-client/src/models/slack-integration-settings.ts index 4bdbd0687..cfe8a589b 100644 --- a/lib/packages/fabro-api-client/src/models/slack-integration-settings.ts +++ b/lib/packages/fabro-api-client/src/models/slack-integration-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/ssh-access-request.ts b/lib/packages/fabro-api-client/src/models/ssh-access-request.ts index 9f75dc437..4e27da135 100644 --- a/lib/packages/fabro-api-client/src/models/ssh-access-request.ts +++ b/lib/packages/fabro-api-client/src/models/ssh-access-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/ssh-access-response.ts b/lib/packages/fabro-api-client/src/models/ssh-access-response.ts index 4cbe63f52..c59390e87 100644 --- a/lib/packages/fabro-api-client/src/models/ssh-access-response.ts +++ b/lib/packages/fabro-api-client/src/models/ssh-access-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-completion.ts b/lib/packages/fabro-api-client/src/models/stage-completion.ts index 142cf40a6..d6f8abea9 100644 --- a/lib/packages/fabro-api-client/src/models/stage-completion.ts +++ b/lib/packages/fabro-api-client/src/models/stage-completion.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-context-window-breakdown-item.ts b/lib/packages/fabro-api-client/src/models/stage-context-window-breakdown-item.ts index cbcd88a4a..df350dc38 100644 --- a/lib/packages/fabro-api-client/src/models/stage-context-window-breakdown-item.ts +++ b/lib/packages/fabro-api-client/src/models/stage-context-window-breakdown-item.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-context-window-category.ts b/lib/packages/fabro-api-client/src/models/stage-context-window-category.ts index cca48ef46..315fe5f3f 100644 --- a/lib/packages/fabro-api-client/src/models/stage-context-window-category.ts +++ b/lib/packages/fabro-api-client/src/models/stage-context-window-category.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-context-window-count-method.ts b/lib/packages/fabro-api-client/src/models/stage-context-window-count-method.ts index aefb7a767..2b706d8b2 100644 --- a/lib/packages/fabro-api-client/src/models/stage-context-window-count-method.ts +++ b/lib/packages/fabro-api-client/src/models/stage-context-window-count-method.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-context-window-projection.ts b/lib/packages/fabro-api-client/src/models/stage-context-window-projection.ts index 33f02bf19..6cf4d2f8d 100644 --- a/lib/packages/fabro-api-client/src/models/stage-context-window-projection.ts +++ b/lib/packages/fabro-api-client/src/models/stage-context-window-projection.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-context-window-staleness.ts b/lib/packages/fabro-api-client/src/models/stage-context-window-staleness.ts index 60f0b777d..2163e7834 100644 --- a/lib/packages/fabro-api-client/src/models/stage-context-window-staleness.ts +++ b/lib/packages/fabro-api-client/src/models/stage-context-window-staleness.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-context-window-unavailable-reason.ts b/lib/packages/fabro-api-client/src/models/stage-context-window-unavailable-reason.ts index 4420c4dbe..b22bb7392 100644 --- a/lib/packages/fabro-api-client/src/models/stage-context-window-unavailable-reason.ts +++ b/lib/packages/fabro-api-client/src/models/stage-context-window-unavailable-reason.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-context-window-warning.ts b/lib/packages/fabro-api-client/src/models/stage-context-window-warning.ts index f10d15ad7..18c97d0df 100644 --- a/lib/packages/fabro-api-client/src/models/stage-context-window-warning.ts +++ b/lib/packages/fabro-api-client/src/models/stage-context-window-warning.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-context-window.ts b/lib/packages/fabro-api-client/src/models/stage-context-window.ts index ee63a7811..fe78e3f8f 100644 --- a/lib/packages/fabro-api-client/src/models/stage-context-window.ts +++ b/lib/packages/fabro-api-client/src/models/stage-context-window.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-handler.ts b/lib/packages/fabro-api-client/src/models/stage-handler.ts index 1398d3e34..6d8827ce0 100644 --- a/lib/packages/fabro-api-client/src/models/stage-handler.ts +++ b/lib/packages/fabro-api-client/src/models/stage-handler.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-inference-projection.ts b/lib/packages/fabro-api-client/src/models/stage-inference-projection.ts index 13a08869b..5a28adc18 100644 --- a/lib/packages/fabro-api-client/src/models/stage-inference-projection.ts +++ b/lib/packages/fabro-api-client/src/models/stage-inference-projection.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-model-usage.ts b/lib/packages/fabro-api-client/src/models/stage-model-usage.ts index 8ba389a8a..c2f89645c 100644 --- a/lib/packages/fabro-api-client/src/models/stage-model-usage.ts +++ b/lib/packages/fabro-api-client/src/models/stage-model-usage.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-outcome.ts b/lib/packages/fabro-api-client/src/models/stage-outcome.ts index 1295b7ec4..3fa8b5caa 100644 --- a/lib/packages/fabro-api-client/src/models/stage-outcome.ts +++ b/lib/packages/fabro-api-client/src/models/stage-outcome.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-projection.ts b/lib/packages/fabro-api-client/src/models/stage-projection.ts index 56a53f7c0..35cfdc492 100644 --- a/lib/packages/fabro-api-client/src/models/stage-projection.ts +++ b/lib/packages/fabro-api-client/src/models/stage-projection.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-state.ts b/lib/packages/fabro-api-client/src/models/stage-state.ts index 9443fdfad..650829f85 100644 --- a/lib/packages/fabro-api-client/src/models/stage-state.ts +++ b/lib/packages/fabro-api-client/src/models/stage-state.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-summary.ts b/lib/packages/fabro-api-client/src/models/stage-summary.ts index 011fcf555..bfd131b68 100644 --- a/lib/packages/fabro-api-client/src/models/stage-summary.ts +++ b/lib/packages/fabro-api-client/src/models/stage-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-timing.ts b/lib/packages/fabro-api-client/src/models/stage-timing.ts index 4b106816c..dd9d9d9d6 100644 --- a/lib/packages/fabro-api-client/src/models/stage-timing.ts +++ b/lib/packages/fabro-api-client/src/models/stage-timing.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/stage-tool-batch-projection.ts b/lib/packages/fabro-api-client/src/models/stage-tool-batch-projection.ts index 971fa7c59..2432c19d6 100644 --- a/lib/packages/fabro-api-client/src/models/stage-tool-batch-projection.ts +++ b/lib/packages/fabro-api-client/src/models/stage-tool-batch-projection.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/start-record.ts b/lib/packages/fabro-api-client/src/models/start-record.ts index 7882a9789..e361528a1 100644 --- a/lib/packages/fabro-api-client/src/models/start-record.ts +++ b/lib/packages/fabro-api-client/src/models/start-record.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/start-run-request.ts b/lib/packages/fabro-api-client/src/models/start-run-request.ts index baccb9915..d733c6fd8 100644 --- a/lib/packages/fabro-api-client/src/models/start-run-request.ts +++ b/lib/packages/fabro-api-client/src/models/start-run-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/steer-run-request.ts b/lib/packages/fabro-api-client/src/models/steer-run-request.ts index 4169fadc1..daa65e248 100644 --- a/lib/packages/fabro-api-client/src/models/steer-run-request.ts +++ b/lib/packages/fabro-api-client/src/models/steer-run-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sub-agent-projection.ts b/lib/packages/fabro-api-client/src/models/sub-agent-projection.ts index c2576d069..4d1b22a0f 100644 --- a/lib/packages/fabro-api-client/src/models/sub-agent-projection.ts +++ b/lib/packages/fabro-api-client/src/models/sub-agent-projection.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sub-agent-status-closed.ts b/lib/packages/fabro-api-client/src/models/sub-agent-status-closed.ts index d4c7bb5a6..114cb14ca 100644 --- a/lib/packages/fabro-api-client/src/models/sub-agent-status-closed.ts +++ b/lib/packages/fabro-api-client/src/models/sub-agent-status-closed.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sub-agent-status-completed.ts b/lib/packages/fabro-api-client/src/models/sub-agent-status-completed.ts index 2250ee02a..b5c186fb3 100644 --- a/lib/packages/fabro-api-client/src/models/sub-agent-status-completed.ts +++ b/lib/packages/fabro-api-client/src/models/sub-agent-status-completed.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sub-agent-status-failed.ts b/lib/packages/fabro-api-client/src/models/sub-agent-status-failed.ts index a9eed6831..cc08b4a3a 100644 --- a/lib/packages/fabro-api-client/src/models/sub-agent-status-failed.ts +++ b/lib/packages/fabro-api-client/src/models/sub-agent-status-failed.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sub-agent-status-running.ts b/lib/packages/fabro-api-client/src/models/sub-agent-status-running.ts index 79063cbe0..9f47c69d1 100644 --- a/lib/packages/fabro-api-client/src/models/sub-agent-status-running.ts +++ b/lib/packages/fabro-api-client/src/models/sub-agent-status-running.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/sub-agent-status.ts b/lib/packages/fabro-api-client/src/models/sub-agent-status.ts index 630717c08..1d88f804b 100644 --- a/lib/packages/fabro-api-client/src/models/sub-agent-status.ts +++ b/lib/packages/fabro-api-client/src/models/sub-agent-status.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/submit-answer-multi-selected-request.ts b/lib/packages/fabro-api-client/src/models/submit-answer-multi-selected-request.ts index b3458cfce..1786ffd3e 100644 --- a/lib/packages/fabro-api-client/src/models/submit-answer-multi-selected-request.ts +++ b/lib/packages/fabro-api-client/src/models/submit-answer-multi-selected-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/submit-answer-no-request.ts b/lib/packages/fabro-api-client/src/models/submit-answer-no-request.ts index aef539155..f116ebd9b 100644 --- a/lib/packages/fabro-api-client/src/models/submit-answer-no-request.ts +++ b/lib/packages/fabro-api-client/src/models/submit-answer-no-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/submit-answer-request.ts b/lib/packages/fabro-api-client/src/models/submit-answer-request.ts index 04fb93ddb..0390a6a30 100644 --- a/lib/packages/fabro-api-client/src/models/submit-answer-request.ts +++ b/lib/packages/fabro-api-client/src/models/submit-answer-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/submit-answer-selected-request.ts b/lib/packages/fabro-api-client/src/models/submit-answer-selected-request.ts index 3c4c42b95..28ae12a47 100644 --- a/lib/packages/fabro-api-client/src/models/submit-answer-selected-request.ts +++ b/lib/packages/fabro-api-client/src/models/submit-answer-selected-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/submit-answer-text-request.ts b/lib/packages/fabro-api-client/src/models/submit-answer-text-request.ts index a1c419d3b..816571bb2 100644 --- a/lib/packages/fabro-api-client/src/models/submit-answer-text-request.ts +++ b/lib/packages/fabro-api-client/src/models/submit-answer-text-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/submit-answer-yes-request.ts b/lib/packages/fabro-api-client/src/models/submit-answer-yes-request.ts index 5a657bae4..aafdb10af 100644 --- a/lib/packages/fabro-api-client/src/models/submit-answer-yes-request.ts +++ b/lib/packages/fabro-api-client/src/models/submit-answer-yes-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/submit-turn-request.ts b/lib/packages/fabro-api-client/src/models/submit-turn-request.ts index 06375abf8..bac7445ff 100644 --- a/lib/packages/fabro-api-client/src/models/submit-turn-request.ts +++ b/lib/packages/fabro-api-client/src/models/submit-turn-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/success-reason.ts b/lib/packages/fabro-api-client/src/models/success-reason.ts index 011e1ca5e..a863a8a8a 100644 --- a/lib/packages/fabro-api-client/src/models/success-reason.ts +++ b/lib/packages/fabro-api-client/src/models/success-reason.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/system-actor-kind.ts b/lib/packages/fabro-api-client/src/models/system-actor-kind.ts index 9904e8b28..76eec34b9 100644 --- a/lib/packages/fabro-api-client/src/models/system-actor-kind.ts +++ b/lib/packages/fabro-api-client/src/models/system-actor-kind.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/system-cpu-resource-scope.ts b/lib/packages/fabro-api-client/src/models/system-cpu-resource-scope.ts index e4637a6e7..fcbe410d9 100644 --- a/lib/packages/fabro-api-client/src/models/system-cpu-resource-scope.ts +++ b/lib/packages/fabro-api-client/src/models/system-cpu-resource-scope.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/system-cpu-resources.ts b/lib/packages/fabro-api-client/src/models/system-cpu-resources.ts index 48fd764fe..99739fb3c 100644 --- a/lib/packages/fabro-api-client/src/models/system-cpu-resources.ts +++ b/lib/packages/fabro-api-client/src/models/system-cpu-resources.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/system-disk-resource-scope.ts b/lib/packages/fabro-api-client/src/models/system-disk-resource-scope.ts index 79daf2b31..bcbef3ba3 100644 --- a/lib/packages/fabro-api-client/src/models/system-disk-resource-scope.ts +++ b/lib/packages/fabro-api-client/src/models/system-disk-resource-scope.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/system-disk-resources.ts b/lib/packages/fabro-api-client/src/models/system-disk-resources.ts index f44dca9ad..76c6df14b 100644 --- a/lib/packages/fabro-api-client/src/models/system-disk-resources.ts +++ b/lib/packages/fabro-api-client/src/models/system-disk-resources.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/system-info-response.ts b/lib/packages/fabro-api-client/src/models/system-info-response.ts index 6b3f8ebd5..8bf9b08b7 100644 --- a/lib/packages/fabro-api-client/src/models/system-info-response.ts +++ b/lib/packages/fabro-api-client/src/models/system-info-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/system-integration-status.ts b/lib/packages/fabro-api-client/src/models/system-integration-status.ts index 6bc357f56..cb9adf24e 100644 --- a/lib/packages/fabro-api-client/src/models/system-integration-status.ts +++ b/lib/packages/fabro-api-client/src/models/system-integration-status.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/system-integrations-response.ts b/lib/packages/fabro-api-client/src/models/system-integrations-response.ts index b00aa3bf1..b557e6b5c 100644 --- a/lib/packages/fabro-api-client/src/models/system-integrations-response.ts +++ b/lib/packages/fabro-api-client/src/models/system-integrations-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/system-memory-resource-scope.ts b/lib/packages/fabro-api-client/src/models/system-memory-resource-scope.ts index 31340786e..463cee08a 100644 --- a/lib/packages/fabro-api-client/src/models/system-memory-resource-scope.ts +++ b/lib/packages/fabro-api-client/src/models/system-memory-resource-scope.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/system-memory-resources.ts b/lib/packages/fabro-api-client/src/models/system-memory-resources.ts index 75f1b8e53..b90d1d41d 100644 --- a/lib/packages/fabro-api-client/src/models/system-memory-resources.ts +++ b/lib/packages/fabro-api-client/src/models/system-memory-resources.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/system-repair-run-issue.ts b/lib/packages/fabro-api-client/src/models/system-repair-run-issue.ts index dc5cc5abb..0167a6d5c 100644 --- a/lib/packages/fabro-api-client/src/models/system-repair-run-issue.ts +++ b/lib/packages/fabro-api-client/src/models/system-repair-run-issue.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/system-repair-runs-response.ts b/lib/packages/fabro-api-client/src/models/system-repair-runs-response.ts index 9ca571774..fbf50ce8f 100644 --- a/lib/packages/fabro-api-client/src/models/system-repair-runs-response.ts +++ b/lib/packages/fabro-api-client/src/models/system-repair-runs-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/system-resources-response.ts b/lib/packages/fabro-api-client/src/models/system-resources-response.ts index cdffb88e8..d758bc8eb 100644 --- a/lib/packages/fabro-api-client/src/models/system-resources-response.ts +++ b/lib/packages/fabro-api-client/src/models/system-resources-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/system-run-counts.ts b/lib/packages/fabro-api-client/src/models/system-run-counts.ts index 3fe29ae9b..5d77ff2f4 100644 --- a/lib/packages/fabro-api-client/src/models/system-run-counts.ts +++ b/lib/packages/fabro-api-client/src/models/system-run-counts.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/timeline-entry-response.ts b/lib/packages/fabro-api-client/src/models/timeline-entry-response.ts index be3839db8..b78a1b31c 100644 --- a/lib/packages/fabro-api-client/src/models/timeline-entry-response.ts +++ b/lib/packages/fabro-api-client/src/models/timeline-entry-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/tls-mode.ts b/lib/packages/fabro-api-client/src/models/tls-mode.ts index 302a16f11..22a837dbb 100644 --- a/lib/packages/fabro-api-client/src/models/tls-mode.ts +++ b/lib/packages/fabro-api-client/src/models/tls-mode.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/todo-list-kind.ts b/lib/packages/fabro-api-client/src/models/todo-list-kind.ts index 20f1da8ee..37a04a71a 100644 --- a/lib/packages/fabro-api-client/src/models/todo-list-kind.ts +++ b/lib/packages/fabro-api-client/src/models/todo-list-kind.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/todo-list-projection.ts b/lib/packages/fabro-api-client/src/models/todo-list-projection.ts index d74332c47..4b0b64b64 100644 --- a/lib/packages/fabro-api-client/src/models/todo-list-projection.ts +++ b/lib/packages/fabro-api-client/src/models/todo-list-projection.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/todo-projection.ts b/lib/packages/fabro-api-client/src/models/todo-projection.ts index 5200eaf50..7cea92aa4 100644 --- a/lib/packages/fabro-api-client/src/models/todo-projection.ts +++ b/lib/packages/fabro-api-client/src/models/todo-projection.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/todo-status.ts b/lib/packages/fabro-api-client/src/models/todo-status.ts index e5be59ed9..a6a47d697 100644 --- a/lib/packages/fabro-api-client/src/models/todo-status.ts +++ b/lib/packages/fabro-api-client/src/models/todo-status.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/update-run-parent-request.ts b/lib/packages/fabro-api-client/src/models/update-run-parent-request.ts index 43bbe96ce..ab2a52e42 100644 --- a/lib/packages/fabro-api-client/src/models/update-run-parent-request.ts +++ b/lib/packages/fabro-api-client/src/models/update-run-parent-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/update-run-request.ts b/lib/packages/fabro-api-client/src/models/update-run-request.ts index 92697fb26..91a18b756 100644 --- a/lib/packages/fabro-api-client/src/models/update-run-request.ts +++ b/lib/packages/fabro-api-client/src/models/update-run-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/update-variable-request.ts b/lib/packages/fabro-api-client/src/models/update-variable-request.ts index 71d925149..ae94ff897 100644 --- a/lib/packages/fabro-api-client/src/models/update-variable-request.ts +++ b/lib/packages/fabro-api-client/src/models/update-variable-request.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/user-response.ts b/lib/packages/fabro-api-client/src/models/user-response.ts index 1debdf685..f8474b3ff 100644 --- a/lib/packages/fabro-api-client/src/models/user-response.ts +++ b/lib/packages/fabro-api-client/src/models/user-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/validate-response.ts b/lib/packages/fabro-api-client/src/models/validate-response.ts index 302222254..f1f4a0dfd 100644 --- a/lib/packages/fabro-api-client/src/models/validate-response.ts +++ b/lib/packages/fabro-api-client/src/models/validate-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/variable-list-response.ts b/lib/packages/fabro-api-client/src/models/variable-list-response.ts index b4ed0ab0a..4895e68a9 100644 --- a/lib/packages/fabro-api-client/src/models/variable-list-response.ts +++ b/lib/packages/fabro-api-client/src/models/variable-list-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/variable.ts b/lib/packages/fabro-api-client/src/models/variable.ts index a5d39e711..aba83d090 100644 --- a/lib/packages/fabro-api-client/src/models/variable.ts +++ b/lib/packages/fabro-api-client/src/models/variable.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/vnc-preview-response.ts b/lib/packages/fabro-api-client/src/models/vnc-preview-response.ts index aed16f52a..40e1e7bef 100644 --- a/lib/packages/fabro-api-client/src/models/vnc-preview-response.ts +++ b/lib/packages/fabro-api-client/src/models/vnc-preview-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/webhook-strategy.ts b/lib/packages/fabro-api-client/src/models/webhook-strategy.ts index 090689f95..d2f617762 100644 --- a/lib/packages/fabro-api-client/src/models/webhook-strategy.ts +++ b/lib/packages/fabro-api-client/src/models/webhook-strategy.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/workflow-detail-response.ts b/lib/packages/fabro-api-client/src/models/workflow-detail-response.ts index 0f9722566..3d992b1f5 100644 --- a/lib/packages/fabro-api-client/src/models/workflow-detail-response.ts +++ b/lib/packages/fabro-api-client/src/models/workflow-detail-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/workflow-diagnostic.ts b/lib/packages/fabro-api-client/src/models/workflow-diagnostic.ts index 5c5ee9790..e0a9686a1 100644 --- a/lib/packages/fabro-api-client/src/models/workflow-diagnostic.ts +++ b/lib/packages/fabro-api-client/src/models/workflow-diagnostic.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/workflow-last-run-summary.ts b/lib/packages/fabro-api-client/src/models/workflow-last-run-summary.ts index e5c443086..af27a3d15 100644 --- a/lib/packages/fabro-api-client/src/models/workflow-last-run-summary.ts +++ b/lib/packages/fabro-api-client/src/models/workflow-last-run-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/workflow-list-item.ts b/lib/packages/fabro-api-client/src/models/workflow-list-item.ts index 00ae2f734..839503230 100644 --- a/lib/packages/fabro-api-client/src/models/workflow-list-item.ts +++ b/lib/packages/fabro-api-client/src/models/workflow-list-item.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/workflow-namespace.ts b/lib/packages/fabro-api-client/src/models/workflow-namespace.ts index 5501b5b21..7451185ae 100644 --- a/lib/packages/fabro-api-client/src/models/workflow-namespace.ts +++ b/lib/packages/fabro-api-client/src/models/workflow-namespace.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/workflow-ref.ts b/lib/packages/fabro-api-client/src/models/workflow-ref.ts index d98cf2148..6189e8bd7 100644 --- a/lib/packages/fabro-api-client/src/models/workflow-ref.ts +++ b/lib/packages/fabro-api-client/src/models/workflow-ref.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/workflow-reference.ts b/lib/packages/fabro-api-client/src/models/workflow-reference.ts index f4a83080b..d85c64352 100644 --- a/lib/packages/fabro-api-client/src/models/workflow-reference.ts +++ b/lib/packages/fabro-api-client/src/models/workflow-reference.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/workflow-schedule-summary.ts b/lib/packages/fabro-api-client/src/models/workflow-schedule-summary.ts index 3165113d1..fc26a97f1 100644 --- a/lib/packages/fabro-api-client/src/models/workflow-schedule-summary.ts +++ b/lib/packages/fabro-api-client/src/models/workflow-schedule-summary.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/workflow-settings.ts b/lib/packages/fabro-api-client/src/models/workflow-settings.ts index 7f5214295..b3a2b8614 100644 --- a/lib/packages/fabro-api-client/src/models/workflow-settings.ts +++ b/lib/packages/fabro-api-client/src/models/workflow-settings.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/workflow-version.ts b/lib/packages/fabro-api-client/src/models/workflow-version.ts index d54f4064e..b96922261 100644 --- a/lib/packages/fabro-api-client/src/models/workflow-version.ts +++ b/lib/packages/fabro-api-client/src/models/workflow-version.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lib/packages/fabro-api-client/src/models/write-blob-response.ts b/lib/packages/fabro-api-client/src/models/write-blob-response.ts index 295ff9874..d926f8118 100644 --- a/lib/packages/fabro-api-client/src/models/write-blob-response.ts +++ b/lib/packages/fabro-api-client/src/models/write-blob-response.ts @@ -4,7 +4,7 @@ * Fabro Run API * HTTP API for managing Fabro workflow run executions. * - * The version of the OpenAPI document: 0.1.0 + * The version of the OpenAPI document: 0.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -15,11 +15,11 @@ /** - * Content-addressed identifier for a stored blob. + * Content-addressed hash of a stored blob. */ export interface WriteBlobResponse { /** - * Blob identifier. + * Content-addressed SHA-256 hash of a stored blob. Hex input is case-insensitive; Fabro emits the canonical lowercase form. */ - 'id': string; + 'hash': string; }