@codesoul-co/hypha-core / contracts/runtime-recovery-schemas
- Package index:
@codesoul-co/hypha-core - Source:
packages/core/src/contracts/runtime-recovery-schemas.ts - Exports: 36
Using this module
Use the Runtime recovery schemas module for declaring and runtime-validating contracts. It exports 29 constants, 7 functions.
Import from the package entrypoint
import {
runtimeActivityCompensationResultDefinition,
runtimeActivityCompensationResultExample,
runtimeActivityCompensationResultSchema,
runtimeActivityReconciliationResultDefinition,
runtimeActivityReconciliationResultExample,
runtimeActivityReconciliationResultJsonSchema,
runtimeActivityReconciliationResultSchema,
runtimeRecoveryCandidateDefinition,
} from '@codesoul-co/hypha-core';
// The complete export list is documented below.Usage patterns
- The module exposes 7 functions as direct operation entrypoints. Every overload, required/optional parameter, and return type is documented below.
- The 29 constant/enum exports provide stable values, schemas, definitions, or defaults. Reuse these exports instead of copying internal values into an application.
Runtime validation example
import { runtimeActivityCompensationResultSchema } from '@codesoul-co/hypha-core';
declare function loadExternalInput(): unknown;
const input: unknown = loadExternalInput();
const parsed = runtimeActivityCompensationResultSchema.parse(input);Parse untrusted configuration, network, or persisted input with the runtime schema before passing it to functions or classes that expect a validated contract.
Public exports
| Symbol | Kind | Signature | Description |
|---|---|---|---|
runtimeActivityCompensationResultDefinition | constant | const runtimeActivityCompensationResultDefinition: SpecSchemaDefinition<RuntimeActivityCompensationResult> | Runtime Activity Compensation Result Definition constant exported by the contracts/runtime-recovery-schemas module. |
runtimeActivityCompensationResultExample | constant | const runtimeActivityCompensationResultExample: RuntimeActivityCompensationResult | Valid example value for Runtime Activity Compensation Result. |
runtimeActivityCompensationResultSchema | constant | const runtimeActivityCompensationResultSchema: z.ZodEffects<z.ZodObject<{ activityId: z.ZodString; status: z.ZodEnum<["completed", "failed", "requires_review"]>; providerRevision: z.ZodOptional<z.ZodString>; receiptId: z.ZodOptional<z.ZodString>; errorCode: z.ZodOptional<z.ZodString>; }, "strict", z.ZodTypeAny, { status: "failed" | "completed" | "requires_review"; activityId: string; providerRevision?: string | un... | Runtime schema for Runtime Activity Compensation Result. |
runtimeActivityReconciliationResultDefinition | constant | const runtimeActivityReconciliationResultDefinition: SpecSchemaDefinition<RuntimeActivityReconciliationResult> | Runtime Activity Reconciliation Result Definition constant exported by the contracts/runtime-recovery-schemas module. |
runtimeActivityReconciliationResultExample | constant | const runtimeActivityReconciliationResultExample: RuntimeActivityReconciliationResult | Valid example value for Runtime Activity Reconciliation Result. |
runtimeActivityReconciliationResultJsonSchema | constant | const runtimeActivityReconciliationResultJsonSchema: JsonSchema | JSON Schema for Runtime Activity Reconciliation Result. |
runtimeActivityReconciliationResultSchema | constant | const runtimeActivityReconciliationResultSchema: z.ZodEffects<z.ZodObject<{ activityId: z.ZodString; status: z.ZodEnum<["completed", "failed", "waiting", "cancelled", "not_started", "unknown"]>; observation: z.ZodOptional<z.ZodEffects<z.ZodObject<{ activityId: z.ZodString; status: z.ZodEnum<["completed", "failed", "waiting", "cancelled"]>; eventIds: z.ZodArray<z.ZodString, "many">; output: z.ZodOptional<z.ZodType<... | Runtime schema for Runtime Activity Reconciliation Result. |
runtimeRecoveryCandidateDefinition | constant | const runtimeRecoveryCandidateDefinition: SpecSchemaDefinition<RuntimeRecoveryCandidate> | Runtime Recovery Candidate Definition constant exported by the contracts/runtime-recovery-schemas module. |
runtimeRecoveryCandidateExample | constant | const runtimeRecoveryCandidateExample: RuntimeRecoveryCandidate | Valid example value for Runtime Recovery Candidate. |
runtimeRecoveryCandidateJsonSchema | constant | const runtimeRecoveryCandidateJsonSchema: JsonSchema | JSON Schema for Runtime Recovery Candidate. |
runtimeRecoveryCandidateSchema | constant | const runtimeRecoveryCandidateSchema: z.ZodEffects<z.ZodObject<{ candidateId: z.ZodString; scope: z.ZodObject<{ tenantId: z.ZodOptional<z.ZodString>; userId: z.ZodString; runId: z.ZodString; }, "strict", z.ZodTypeAny, { runId: string; userId: string; tenantId?: string | undefined; }, { runId: string; userId: string; tenantId?: string | undefined; }>; reason: z.ZodEnum<["LEASE_EXPIRED", "STATE_CLAIM_EXPIRED", "PROJ... | Runtime schema for Runtime Recovery Candidate. |
runtimeRecoveryCommandDefinition | constant | const runtimeRecoveryCommandDefinition: SpecSchemaDefinition<RuntimeRecoveryCommand> | Runtime Recovery Command Definition constant exported by the contracts/runtime-recovery-schemas module. |
runtimeRecoveryCommandExample | constant | const runtimeRecoveryCommandExample: RuntimeRecoveryCommand | Valid example value for Runtime Recovery Command. |
runtimeRecoveryCommandJsonSchema | constant | const runtimeRecoveryCommandJsonSchema: JsonSchema | JSON Schema for Runtime Recovery Command. |
runtimeRecoveryCommandSchema | constant | const runtimeRecoveryCommandSchema: z.ZodObject<{ candidate: z.ZodEffects<z.ZodObject<{ candidateId: z.ZodString; scope: z.ZodObject<{ tenantId: z.ZodOptional<z.ZodString>; userId: z.ZodString; runId: z.ZodString; }, "strict", z.ZodTypeAny, { runId: string; userId: string; tenantId?: string | undefined; }, { runId: string; userId: string; tenantId?: string | undefined; }>; reason: z.ZodEnum<["LEASE_EXPIRED", "STAT... | Runtime schema for Runtime Recovery Command. |
runtimeRecoveryContractDefinitions | constant | const runtimeRecoveryContractDefinitions: readonly [SpecSchemaDefinition<RuntimeRecoveryCandidate>, SpecSchemaDefinition<RuntimeRecoveryScanRequest>, SpecSchemaDefinition<RuntimeRecoveryScanResult>, SpecSchemaDefinition<RuntimeRecoveryCommand>, SpecSchemaDefinition<RuntimeRecoveryResult>, SpecSchemaDefinition<RuntimeActivityReconciliationResult>, SpecSchemaDefinition<RuntimeActivityCompensationResult>] | Runtime Recovery Contract Definitions constant exported by the contracts/runtime-recovery-schemas module. |
runtimeRecoveryContractJsonSchemas | constant | const runtimeRecoveryContractJsonSchemas: Record<string, JsonSchema> | Runtime Recovery Contract JSON Schemas constant exported by the contracts/runtime-recovery-schemas module. |
runtimeRecoveryResultDefinition | constant | const runtimeRecoveryResultDefinition: SpecSchemaDefinition<RuntimeRecoveryResult> | Runtime Recovery Result Definition constant exported by the contracts/runtime-recovery-schemas module. |
runtimeRecoveryResultExample | constant | const runtimeRecoveryResultExample: RuntimeRecoveryResult | Valid example value for Runtime Recovery Result. |
runtimeRecoveryResultJsonSchema | constant | const runtimeRecoveryResultJsonSchema: JsonSchema | JSON Schema for Runtime Recovery Result. |
runtimeRecoveryResultSchema | constant | const runtimeRecoveryResultSchema: z.ZodObject<{ candidateId: z.ZodString; disposition: z.ZodEnum<["recovered", "reused", "requeued", "compensated", "requires_review", "lease_unavailable", "stale"]>; eventIds: z.ZodArray<z.ZodString, "many">; projection: z.ZodOptional<z.ZodEffects<z.ZodObject<{ runId: z.ZodString; runStatus: z.ZodEnum<[import("./runtime-projection").RuntimeOrchestrationRunStatus, ...import("./runt... | Runtime schema for Runtime Recovery Result. |
runtimeRecoveryScanRequestDefinition | constant | const runtimeRecoveryScanRequestDefinition: SpecSchemaDefinition<RuntimeRecoveryScanRequest> | Runtime Recovery Scan Request Definition constant exported by the contracts/runtime-recovery-schemas module. |
runtimeRecoveryScanRequestExample | constant | const runtimeRecoveryScanRequestExample: RuntimeRecoveryScanRequest | Valid example value for Runtime Recovery Scan Request. |
runtimeRecoveryScanRequestJsonSchema | constant | const runtimeRecoveryScanRequestJsonSchema: JsonSchema | JSON Schema for Runtime Recovery Scan Request. |
runtimeRecoveryScanRequestSchema | constant | const runtimeRecoveryScanRequestSchema: z.ZodObject<{ checkedAt: z.ZodString; limit: z.ZodNumber; cursor: z.ZodOptional<z.ZodString>; }, "strict", z.ZodTypeAny, { limit: number; checkedAt: string; cursor?: string | undefined; }, { limit: number; checkedAt: string; cursor?: string | undefined; }> | Runtime schema for Runtime Recovery Scan Request. |
runtimeRecoveryScanResultDefinition | constant | const runtimeRecoveryScanResultDefinition: SpecSchemaDefinition<RuntimeRecoveryScanResult> | Runtime Recovery Scan Result Definition constant exported by the contracts/runtime-recovery-schemas module. |
runtimeRecoveryScanResultExample | constant | const runtimeRecoveryScanResultExample: RuntimeRecoveryScanResult | Valid example value for Runtime Recovery Scan Result. |
runtimeRecoveryScanResultJsonSchema | constant | const runtimeRecoveryScanResultJsonSchema: JsonSchema | JSON Schema for Runtime Recovery Scan Result. |
runtimeRecoveryScanResultSchema | constant | const runtimeRecoveryScanResultSchema: z.ZodObject<{ candidates: z.ZodArray<z.ZodEffects<z.ZodObject<{ candidateId: z.ZodString; scope: z.ZodObject<{ tenantId: z.ZodOptional<z.ZodString>; userId: z.ZodString; runId: z.ZodString; }, "strict", z.ZodTypeAny, { runId: string; userId: string; tenantId?: string | undefined; }, { runId: string; userId: string; tenantId?: string | undefined; }>; reason: z.ZodEnum<["LEASE_... | Runtime schema for Runtime Recovery Scan Result. |
validateRuntimeActivityCompensationResult | function | validateRuntimeActivityCompensationResult(input: unknown): RuntimeActivityCompensationResult | Validate Runtime Activity Compensation Result function with 1 public call signature; parameters and return types are listed below. |
validateRuntimeActivityReconciliationResult | function | validateRuntimeActivityReconciliationResult(input: unknown): RuntimeActivityReconciliationResult | Validate Runtime Activity Reconciliation Result function with 1 public call signature; parameters and return types are listed below. |
validateRuntimeRecoveryCandidate | function | validateRuntimeRecoveryCandidate(input: unknown): RuntimeRecoveryCandidate | Validate Runtime Recovery Candidate function with 1 public call signature; parameters and return types are listed below. |
validateRuntimeRecoveryCommand | function | validateRuntimeRecoveryCommand(input: unknown): RuntimeRecoveryCommand | Validate Runtime Recovery Command function with 1 public call signature; parameters and return types are listed below. |
validateRuntimeRecoveryResult | function | validateRuntimeRecoveryResult(input: unknown): RuntimeRecoveryResult | Validate Runtime Recovery Result function with 1 public call signature; parameters and return types are listed below. |
validateRuntimeRecoveryScanRequest | function | validateRuntimeRecoveryScanRequest(input: unknown): RuntimeRecoveryScanRequest | Validate Runtime Recovery Scan Request function with 1 public call signature; parameters and return types are listed below. |
validateRuntimeRecoveryScanResult | function | validateRuntimeRecoveryScanResult(input: unknown): RuntimeRecoveryScanResult | Validate Runtime Recovery Scan Result function with 1 public call signature; parameters and return types are listed below. |
runtimeActivityCompensationResultDefinition
Runtime Activity Compensation Result Definition constant exported by the contracts/runtime-recovery-schemas module.
- Kind: constant
- Import:
import { runtimeActivityCompensationResultDefinition } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeActivityCompensationResultDefinition: SpecSchemaDefinition<RuntimeActivityCompensationResult>;runtimeActivityCompensationResultExample
Valid example value for Runtime Activity Compensation Result.
- Kind: constant
- Import:
import { runtimeActivityCompensationResultExample } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeActivityCompensationResultExample: RuntimeActivityCompensationResult;runtimeActivityCompensationResultSchema
Runtime schema for Runtime Activity Compensation Result.
- Kind: constant
- Import:
import { runtimeActivityCompensationResultSchema } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeActivityCompensationResultSchema: z.ZodEffects<z.ZodObject<{ activityId: z.ZodString; status: z.ZodEnum<["completed", "failed", "requires_review"]>; providerRevision: z.ZodOptional<z.ZodString>; receiptId: z.ZodOptional<z.ZodString>; errorCode: z.ZodOptional<z.ZodString>; }, "strict", z.ZodTypeAny, { status: "failed" | "completed" | "requires_review"; activityId: string; providerRevision?: string | undefined; receiptId?: string | undefined; errorCode?: string | undefined; }, { status: "failed" | "completed" | "requires_review"; activityId: string; providerRevision?: string | undefined; receiptId?: string | undefined; errorCode?: string | undefined; }>, { status: "failed" | "completed" | "requires_review"; activityId: string; providerRevision?: string | undefined; receiptId?: string | undefined; errorCode?: string | undefined; }, { status: "failed" | "completed" | "requires_review"; activityId: string; providerRevision?: string | undefined; receiptId?: string | undefined; errorCode?: string | undefined; }>;runtimeActivityReconciliationResultDefinition
Runtime Activity Reconciliation Result Definition constant exported by the contracts/runtime-recovery-schemas module.
- Kind: constant
- Import:
import { runtimeActivityReconciliationResultDefinition } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeActivityReconciliationResultDefinition: SpecSchemaDefinition<RuntimeActivityReconciliationResult>;runtimeActivityReconciliationResultExample
Valid example value for Runtime Activity Reconciliation Result.
- Kind: constant
- Import:
import { runtimeActivityReconciliationResultExample } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeActivityReconciliationResultExample: RuntimeActivityReconciliationResult;runtimeActivityReconciliationResultJsonSchema
JSON Schema for Runtime Activity Reconciliation Result.
- Kind: constant
- Import:
import { runtimeActivityReconciliationResultJsonSchema } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeActivityReconciliationResultJsonSchema: JsonSchema;runtimeActivityReconciliationResultSchema
Runtime schema for Runtime Activity Reconciliation Result.
- Kind: constant
- Import:
import { runtimeActivityReconciliationResultSchema } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
// Exact type resolved from the package entrypoint; see source for the compiler expansion.
export declare const runtimeActivityReconciliationResultSchema: (typeof import('@codesoul-co/hypha-core'))['runtimeActivityReconciliationResultSchema'];This compiler-expanded constant type is compacted. Its public name, top-level type, and source location remain here; use the module’s exported interfaces, types, or runtime schema for input/output fields.
runtimeRecoveryCandidateDefinition
Runtime Recovery Candidate Definition constant exported by the contracts/runtime-recovery-schemas module.
- Kind: constant
- Import:
import { runtimeRecoveryCandidateDefinition } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryCandidateDefinition: SpecSchemaDefinition<RuntimeRecoveryCandidate>;runtimeRecoveryCandidateExample
Valid example value for Runtime Recovery Candidate.
- Kind: constant
- Import:
import { runtimeRecoveryCandidateExample } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryCandidateExample: RuntimeRecoveryCandidate;runtimeRecoveryCandidateJsonSchema
JSON Schema for Runtime Recovery Candidate.
- Kind: constant
- Import:
import { runtimeRecoveryCandidateJsonSchema } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryCandidateJsonSchema: JsonSchema;runtimeRecoveryCandidateSchema
Runtime schema for Runtime Recovery Candidate.
- Kind: constant
- Import:
import { runtimeRecoveryCandidateSchema } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
// Exact type resolved from the package entrypoint; see source for the compiler expansion.
export declare const runtimeRecoveryCandidateSchema: (typeof import('@codesoul-co/hypha-core'))['runtimeRecoveryCandidateSchema'];This compiler-expanded constant type is compacted. Its public name, top-level type, and source location remain here; use the module’s exported interfaces, types, or runtime schema for input/output fields.
runtimeRecoveryCommandDefinition
Runtime Recovery Command Definition constant exported by the contracts/runtime-recovery-schemas module.
- Kind: constant
- Import:
import { runtimeRecoveryCommandDefinition } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryCommandDefinition: SpecSchemaDefinition<RuntimeRecoveryCommand>;runtimeRecoveryCommandExample
Valid example value for Runtime Recovery Command.
- Kind: constant
- Import:
import { runtimeRecoveryCommandExample } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryCommandExample: RuntimeRecoveryCommand;runtimeRecoveryCommandJsonSchema
JSON Schema for Runtime Recovery Command.
- Kind: constant
- Import:
import { runtimeRecoveryCommandJsonSchema } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryCommandJsonSchema: JsonSchema;runtimeRecoveryCommandSchema
Runtime schema for Runtime Recovery Command.
- Kind: constant
- Import:
import { runtimeRecoveryCommandSchema } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
// Exact type resolved from the package entrypoint; see source for the compiler expansion.
export declare const runtimeRecoveryCommandSchema: (typeof import('@codesoul-co/hypha-core'))['runtimeRecoveryCommandSchema'];This compiler-expanded constant type is compacted. Its public name, top-level type, and source location remain here; use the module’s exported interfaces, types, or runtime schema for input/output fields.
runtimeRecoveryContractDefinitions
Runtime Recovery Contract Definitions constant exported by the contracts/runtime-recovery-schemas module.
- Kind: constant
- Import:
import { runtimeRecoveryContractDefinitions } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryContractDefinitions: readonly [SpecSchemaDefinition<RuntimeRecoveryCandidate>, SpecSchemaDefinition<RuntimeRecoveryScanRequest>, SpecSchemaDefinition<RuntimeRecoveryScanResult>, SpecSchemaDefinition<RuntimeRecoveryCommand>, SpecSchemaDefinition<RuntimeRecoveryResult>, SpecSchemaDefinition<RuntimeActivityReconciliationResult>, SpecSchemaDefinition<RuntimeActivityCompensationResult>];runtimeRecoveryContractJsonSchemas
Runtime Recovery Contract JSON Schemas constant exported by the contracts/runtime-recovery-schemas module.
- Kind: constant
- Import:
import { runtimeRecoveryContractJsonSchemas } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryContractJsonSchemas: Record<string, JsonSchema>;runtimeRecoveryResultDefinition
Runtime Recovery Result Definition constant exported by the contracts/runtime-recovery-schemas module.
- Kind: constant
- Import:
import { runtimeRecoveryResultDefinition } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryResultDefinition: SpecSchemaDefinition<RuntimeRecoveryResult>;runtimeRecoveryResultExample
Valid example value for Runtime Recovery Result.
- Kind: constant
- Import:
import { runtimeRecoveryResultExample } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryResultExample: RuntimeRecoveryResult;runtimeRecoveryResultJsonSchema
JSON Schema for Runtime Recovery Result.
- Kind: constant
- Import:
import { runtimeRecoveryResultJsonSchema } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryResultJsonSchema: JsonSchema;runtimeRecoveryResultSchema
Runtime schema for Runtime Recovery Result.
- Kind: constant
- Import:
import { runtimeRecoveryResultSchema } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
// Exact type resolved from the package entrypoint; see source for the compiler expansion.
export declare const runtimeRecoveryResultSchema: (typeof import('@codesoul-co/hypha-core'))['runtimeRecoveryResultSchema'];This compiler-expanded constant type is compacted. Its public name, top-level type, and source location remain here; use the module’s exported interfaces, types, or runtime schema for input/output fields.
runtimeRecoveryScanRequestDefinition
Runtime Recovery Scan Request Definition constant exported by the contracts/runtime-recovery-schemas module.
- Kind: constant
- Import:
import { runtimeRecoveryScanRequestDefinition } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryScanRequestDefinition: SpecSchemaDefinition<RuntimeRecoveryScanRequest>;runtimeRecoveryScanRequestExample
Valid example value for Runtime Recovery Scan Request.
- Kind: constant
- Import:
import { runtimeRecoveryScanRequestExample } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryScanRequestExample: RuntimeRecoveryScanRequest;runtimeRecoveryScanRequestJsonSchema
JSON Schema for Runtime Recovery Scan Request.
- Kind: constant
- Import:
import { runtimeRecoveryScanRequestJsonSchema } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryScanRequestJsonSchema: JsonSchema;runtimeRecoveryScanRequestSchema
Runtime schema for Runtime Recovery Scan Request.
- Kind: constant
- Import:
import { runtimeRecoveryScanRequestSchema } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryScanRequestSchema: z.ZodObject<{ checkedAt: z.ZodString; limit: z.ZodNumber; cursor: z.ZodOptional<z.ZodString>; }, "strict", z.ZodTypeAny, { limit: number; checkedAt: string; cursor?: string | undefined; }, { limit: number; checkedAt: string; cursor?: string | undefined; }>;runtimeRecoveryScanResultDefinition
Runtime Recovery Scan Result Definition constant exported by the contracts/runtime-recovery-schemas module.
- Kind: constant
- Import:
import { runtimeRecoveryScanResultDefinition } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryScanResultDefinition: SpecSchemaDefinition<RuntimeRecoveryScanResult>;runtimeRecoveryScanResultExample
Valid example value for Runtime Recovery Scan Result.
- Kind: constant
- Import:
import { runtimeRecoveryScanResultExample } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryScanResultExample: RuntimeRecoveryScanResult;runtimeRecoveryScanResultJsonSchema
JSON Schema for Runtime Recovery Scan Result.
- Kind: constant
- Import:
import { runtimeRecoveryScanResultJsonSchema } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare const runtimeRecoveryScanResultJsonSchema: JsonSchema;runtimeRecoveryScanResultSchema
Runtime schema for Runtime Recovery Scan Result.
- Kind: constant
- Import:
import { runtimeRecoveryScanResultSchema } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
// Exact type resolved from the package entrypoint; see source for the compiler expansion.
export declare const runtimeRecoveryScanResultSchema: (typeof import('@codesoul-co/hypha-core'))['runtimeRecoveryScanResultSchema'];This compiler-expanded constant type is compacted. Its public name, top-level type, and source location remain here; use the module’s exported interfaces, types, or runtime schema for input/output fields.
validateRuntimeActivityCompensationResult
Validate Runtime Activity Compensation Result function with 1 public call signature; parameters and return types are listed below.
- Kind: function
- Import:
import { validateRuntimeActivityCompensationResult } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare function validateRuntimeActivityCompensationResult(input: unknown): RuntimeActivityCompensationResult;Call signature
validateRuntimeActivityCompensationResult(input: unknown): RuntimeActivityCompensationResultParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
input | unknown | Yes | Required parameter; accepted values are defined by the type column. |
Returns
- Type:
RuntimeActivityCompensationResult - Description: The return contract is defined by the type shown above.
validateRuntimeActivityReconciliationResult
Validate Runtime Activity Reconciliation Result function with 1 public call signature; parameters and return types are listed below.
- Kind: function
- Import:
import { validateRuntimeActivityReconciliationResult } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare function validateRuntimeActivityReconciliationResult(input: unknown): RuntimeActivityReconciliationResult;Call signature
validateRuntimeActivityReconciliationResult(input: unknown): RuntimeActivityReconciliationResultParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
input | unknown | Yes | Required parameter; accepted values are defined by the type column. |
Returns
- Type:
RuntimeActivityReconciliationResult - Description: The return contract is defined by the type shown above.
validateRuntimeRecoveryCandidate
Validate Runtime Recovery Candidate function with 1 public call signature; parameters and return types are listed below.
- Kind: function
- Import:
import { validateRuntimeRecoveryCandidate } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare function validateRuntimeRecoveryCandidate(input: unknown): RuntimeRecoveryCandidate;Call signature
validateRuntimeRecoveryCandidate(input: unknown): RuntimeRecoveryCandidateParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
input | unknown | Yes | Required parameter; accepted values are defined by the type column. |
Returns
- Type:
RuntimeRecoveryCandidate - Description: The return contract is defined by the type shown above.
validateRuntimeRecoveryCommand
Validate Runtime Recovery Command function with 1 public call signature; parameters and return types are listed below.
- Kind: function
- Import:
import { validateRuntimeRecoveryCommand } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare function validateRuntimeRecoveryCommand(input: unknown): RuntimeRecoveryCommand;Call signature
validateRuntimeRecoveryCommand(input: unknown): RuntimeRecoveryCommandParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
input | unknown | Yes | Required parameter; accepted values are defined by the type column. |
Returns
- Type:
RuntimeRecoveryCommand - Description: The return contract is defined by the type shown above.
validateRuntimeRecoveryResult
Validate Runtime Recovery Result function with 1 public call signature; parameters and return types are listed below.
- Kind: function
- Import:
import { validateRuntimeRecoveryResult } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare function validateRuntimeRecoveryResult(input: unknown): RuntimeRecoveryResult;Call signature
validateRuntimeRecoveryResult(input: unknown): RuntimeRecoveryResultParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
input | unknown | Yes | Required parameter; accepted values are defined by the type column. |
Returns
- Type:
RuntimeRecoveryResult - Description: The return contract is defined by the type shown above.
validateRuntimeRecoveryScanRequest
Validate Runtime Recovery Scan Request function with 1 public call signature; parameters and return types are listed below.
- Kind: function
- Import:
import { validateRuntimeRecoveryScanRequest } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare function validateRuntimeRecoveryScanRequest(input: unknown): RuntimeRecoveryScanRequest;Call signature
validateRuntimeRecoveryScanRequest(input: unknown): RuntimeRecoveryScanRequestParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
input | unknown | Yes | Required parameter; accepted values are defined by the type column. |
Returns
- Type:
RuntimeRecoveryScanRequest - Description: The return contract is defined by the type shown above.
validateRuntimeRecoveryScanResult
Validate Runtime Recovery Scan Result function with 1 public call signature; parameters and return types are listed below.
- Kind: function
- Import:
import { validateRuntimeRecoveryScanResult } from '@codesoul-co/hypha-core'; - Source module:
contracts/runtime-recovery-schemas
Declaration
export declare function validateRuntimeRecoveryScanResult(input: unknown): RuntimeRecoveryScanResult;Call signature
validateRuntimeRecoveryScanResult(input: unknown): RuntimeRecoveryScanResultParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
input | unknown | Yes | Required parameter; accepted values are defined by the type column. |
Returns
- Type:
RuntimeRecoveryScanResult - Description: The return contract is defined by the type shown above.
