Skip to content

@codesoul-co/hypha-core / contracts/runtime-checkpoint-schemas

Using this module

Use the Runtime checkpoint schemas module for declaring and runtime-validating contracts. It exports 26 constants, 6 functions.

Import from the package entrypoint

ts
import {
  runtimeCheckpointContractDefinitions,
  runtimeCheckpointContractJsonSchemas,
  runtimeCheckpointCreateCommandDefinition,
  runtimeCheckpointCreateCommandExample,
  runtimeCheckpointCreateCommandJsonSchema,
  runtimeCheckpointCreateCommandSchema,
  runtimeCheckpointCreateResultDefinition,
  runtimeCheckpointCreateResultExample,
} from '@codesoul-co/hypha-core';

// The complete export list is documented below.

Usage patterns

  • The module exposes 6 functions as direct operation entrypoints. Every overload, required/optional parameter, and return type is documented below.
  • The 26 constant/enum exports provide stable values, schemas, definitions, or defaults. Reuse these exports instead of copying internal values into an application.

Runtime validation example

ts
import { runtimeCheckpointCreateCommandSchema } from '@codesoul-co/hypha-core';

declare function loadExternalInput(): unknown;
const input: unknown = loadExternalInput();
const parsed = runtimeCheckpointCreateCommandSchema.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

SymbolKindSignatureDescription
runtimeCheckpointContractDefinitionsconstantconst runtimeCheckpointContractDefinitions: readonly [SpecSchemaDefinition<RuntimeCheckpointPolicySpec>, SpecSchemaDefinition<RuntimeCheckpointRecord>, SpecSchemaDefinition<RuntimeCheckpointCreateCommand>, SpecSchemaDefinition<RuntimeCheckpointCreateResult>, SpecSchemaDefinition<RuntimeCheckpointLoadRequest>, SpecSchemaDefinition<RuntimeCheckpointLoadResult>]Runtime Checkpoint Contract Definitions constant exported by the contracts/runtime-checkpoint-schemas module.
runtimeCheckpointContractJsonSchemasconstantconst runtimeCheckpointContractJsonSchemas: Record<string, JsonSchema>Runtime Checkpoint Contract JSON Schemas constant exported by the contracts/runtime-checkpoint-schemas module.
runtimeCheckpointCreateCommandDefinitionconstantconst runtimeCheckpointCreateCommandDefinition: SpecSchemaDefinition<RuntimeCheckpointCreateCommand>Runtime Checkpoint Create Command Definition constant exported by the contracts/runtime-checkpoint-schemas module.
runtimeCheckpointCreateCommandExampleconstantconst runtimeCheckpointCreateCommandExample: RuntimeCheckpointCreateCommandValid example value for Runtime Checkpoint Create Command.
runtimeCheckpointCreateCommandJsonSchemaconstantconst runtimeCheckpointCreateCommandJsonSchema: JsonSchemaJSON Schema for Runtime Checkpoint Create Command.
runtimeCheckpointCreateCommandSchemaconstantconst runtimeCheckpointCreateCommandSchema: z.ZodObject<{ checkpointId: z.ZodString; scope: z.ZodObject<{ tenantId: z.ZodOptional<z.ZodString>; userId: z.ZodString; workspaceId: z.ZodOptional<z.ZodString>; sessionId: z.ZodString; runId: z.ZodString; agentId: z.ZodOptional<z.ZodString>; }, "strict", z.ZodTypeAny, { sessionId: string; runId: string; userId: string; workspaceId?: string | undefined; agentId?: string ...Runtime schema for Runtime Checkpoint Create Command.
runtimeCheckpointCreateResultDefinitionconstantconst runtimeCheckpointCreateResultDefinition: SpecSchemaDefinition<RuntimeCheckpointCreateResult>Runtime Checkpoint Create Result Definition constant exported by the contracts/runtime-checkpoint-schemas module.
runtimeCheckpointCreateResultExampleconstantconst runtimeCheckpointCreateResultExample: RuntimeCheckpointCreateResultValid example value for Runtime Checkpoint Create Result.
runtimeCheckpointCreateResultJsonSchemaconstantconst runtimeCheckpointCreateResultJsonSchema: JsonSchemaJSON Schema for Runtime Checkpoint Create Result.
runtimeCheckpointCreateResultSchemaconstantconst runtimeCheckpointCreateResultSchema: z.ZodObject<{ checkpointId: z.ZodString; disposition: z.ZodEnum<["applied", "reused", "lease_unavailable"]>; eventIds: z.ZodArray<z.ZodString, "many">; record: z.ZodOptional<z.ZodEffects<z.ZodObject<{ id: z.ZodString; scope: z.ZodObject<{ tenantId: z.ZodOptional<z.ZodString>; userId: z.ZodString; workspaceId: z.ZodOptional<z.ZodString>; sessionId: z.ZodString; runId: z.Zo...Runtime schema for Runtime Checkpoint Create Result.
runtimeCheckpointLoadRequestDefinitionconstantconst runtimeCheckpointLoadRequestDefinition: SpecSchemaDefinition<RuntimeCheckpointLoadRequest>Runtime Checkpoint Load Request Definition constant exported by the contracts/runtime-checkpoint-schemas module.
runtimeCheckpointLoadRequestExampleconstantconst runtimeCheckpointLoadRequestExample: RuntimeCheckpointLoadRequestValid example value for Runtime Checkpoint Load Request.
runtimeCheckpointLoadRequestJsonSchemaconstantconst runtimeCheckpointLoadRequestJsonSchema: JsonSchemaJSON Schema for Runtime Checkpoint Load Request.
runtimeCheckpointLoadRequestSchemaconstantconst runtimeCheckpointLoadRequestSchema: z.ZodObject<{ scope: z.ZodObject<{ tenantId: z.ZodOptional<z.ZodString>; userId: z.ZodString; workspaceId: z.ZodOptional<z.ZodString>; sessionId: z.ZodString; runId: z.ZodString; agentId: z.ZodOptional<z.ZodString>; }, "strict", z.ZodTypeAny, { sessionId: string; runId: string; userId: string; workspaceId?: string | undefined; agentId?: string | undefined; tenantId?: strin...Runtime schema for Runtime Checkpoint Load Request.
runtimeCheckpointLoadResultDefinitionconstantconst runtimeCheckpointLoadResultDefinition: SpecSchemaDefinition<RuntimeCheckpointLoadResult>Runtime Checkpoint Load Result Definition constant exported by the contracts/runtime-checkpoint-schemas module.
runtimeCheckpointLoadResultExampleconstantconst runtimeCheckpointLoadResultExample: RuntimeCheckpointLoadResultValid example value for Runtime Checkpoint Load Result.
runtimeCheckpointLoadResultJsonSchemaconstantconst runtimeCheckpointLoadResultJsonSchema: JsonSchemaJSON Schema for Runtime Checkpoint Load Result.
runtimeCheckpointLoadResultSchemaconstantconst runtimeCheckpointLoadResultSchema: z.ZodEffects<z.ZodObject<{ record: z.ZodEffects<z.ZodObject<{ id: z.ZodString; scope: z.ZodObject<{ tenantId: z.ZodOptional<z.ZodString>; userId: z.ZodString; workspaceId: z.ZodOptional<z.ZodString>; sessionId: z.ZodString; runId: z.ZodString; agentId: z.ZodOptional<z.ZodString>; }, "strict", z.ZodTypeAny, { sessionId: string; runId: string; userId: string; workspaceId?: st...Runtime schema for Runtime Checkpoint Load Result.
runtimeCheckpointPolicySpecDefinitionconstantconst runtimeCheckpointPolicySpecDefinition: SpecSchemaDefinition<RuntimeCheckpointPolicySpec>Runtime validation entrypoint for the Runtime Checkpoint Policy spec, combining its parser, example and JSON Schema.
runtimeCheckpointPolicySpecExampleconstantconst runtimeCheckpointPolicySpecExample: RuntimeCheckpointPolicySpecValid example value for Runtime Checkpoint Policy Spec.
runtimeCheckpointPolicySpecJsonSchemaconstantconst runtimeCheckpointPolicySpecJsonSchema: JsonSchemaJSON Schema for Runtime Checkpoint Policy Spec.
runtimeCheckpointPolicySpecSchemaconstantconst runtimeCheckpointPolicySpecSchema: z.ZodEffects<z.ZodObject<{ mode: z.ZodEnum<["none", "state_boundary", "every_n_events", "wait_boundary", "custom"]>; everyNEvents: z.ZodOptional<z.ZodNumber>; retainLast: z.ZodOptional<z.ZodNumber>; persistWorkspaceSnapshot: z.ZodOptional<z.ZodBoolean>; persistContextRefs: z.ZodOptional<z.ZodBoolean>; compression: z.ZodOptional<z.ZodEnum<["none", "gzip", "zstd"]>>; }, "stri...Runtime schema for Runtime Checkpoint Policy Spec.
runtimeCheckpointRecordDefinitionconstantconst runtimeCheckpointRecordDefinition: SpecSchemaDefinition<RuntimeCheckpointRecord>Runtime Checkpoint Record Definition constant exported by the contracts/runtime-checkpoint-schemas module.
runtimeCheckpointRecordExampleconstantconst runtimeCheckpointRecordExample: RuntimeCheckpointRecordValid example value for Runtime Checkpoint Record.
runtimeCheckpointRecordJsonSchemaconstantconst runtimeCheckpointRecordJsonSchema: JsonSchemaJSON Schema for Runtime Checkpoint Record.
runtimeCheckpointRecordSchemaconstantconst runtimeCheckpointRecordSchema: z.ZodEffects<z.ZodObject<{ id: z.ZodString; scope: z.ZodObject<{ tenantId: z.ZodOptional<z.ZodString>; userId: z.ZodString; workspaceId: z.ZodOptional<z.ZodString>; sessionId: z.ZodString; runId: z.ZodString; agentId: z.ZodOptional<z.ZodString>; }, "strict", z.ZodTypeAny, { sessionId: string; runId: string; userId: string; workspaceId?: string | undefined; agentId?: string | un...Runtime schema for Runtime Checkpoint Record.
validateRuntimeCheckpointCreateCommandfunctionvalidateRuntimeCheckpointCreateCommand(input: unknown): RuntimeCheckpointCreateCommandValidate Runtime Checkpoint Create Command function with 1 public call signature; parameters and return types are listed below.
validateRuntimeCheckpointCreateResultfunctionvalidateRuntimeCheckpointCreateResult(input: unknown): RuntimeCheckpointCreateResultValidate Runtime Checkpoint Create Result function with 1 public call signature; parameters and return types are listed below.
validateRuntimeCheckpointLoadRequestfunctionvalidateRuntimeCheckpointLoadRequest(input: unknown): RuntimeCheckpointLoadRequestValidate Runtime Checkpoint Load Request function with 1 public call signature; parameters and return types are listed below.
validateRuntimeCheckpointLoadResultfunctionvalidateRuntimeCheckpointLoadResult(input: unknown): RuntimeCheckpointLoadResultValidate Runtime Checkpoint Load Result function with 1 public call signature; parameters and return types are listed below.
validateRuntimeCheckpointPolicySpecfunctionvalidateRuntimeCheckpointPolicySpec(input: unknown): RuntimeCheckpointPolicySpecValidate Runtime Checkpoint Policy Spec function with 1 public call signature; parameters and return types are listed below.
validateRuntimeCheckpointRecordfunctionvalidateRuntimeCheckpointRecord(input: unknown): RuntimeCheckpointRecordValidate Runtime Checkpoint Record function with 1 public call signature; parameters and return types are listed below.

runtimeCheckpointContractDefinitions

Runtime Checkpoint Contract Definitions constant exported by the contracts/runtime-checkpoint-schemas module.

Declaration

text
export declare const runtimeCheckpointContractDefinitions: readonly [SpecSchemaDefinition<RuntimeCheckpointPolicySpec>, SpecSchemaDefinition<RuntimeCheckpointRecord>, SpecSchemaDefinition<RuntimeCheckpointCreateCommand>, SpecSchemaDefinition<RuntimeCheckpointCreateResult>, SpecSchemaDefinition<RuntimeCheckpointLoadRequest>, SpecSchemaDefinition<RuntimeCheckpointLoadResult>];

runtimeCheckpointContractJsonSchemas

Runtime Checkpoint Contract JSON Schemas constant exported by the contracts/runtime-checkpoint-schemas module.

Declaration

text
export declare const runtimeCheckpointContractJsonSchemas: Record<string, JsonSchema>;

runtimeCheckpointCreateCommandDefinition

Runtime Checkpoint Create Command Definition constant exported by the contracts/runtime-checkpoint-schemas module.

Declaration

text
export declare const runtimeCheckpointCreateCommandDefinition: SpecSchemaDefinition<RuntimeCheckpointCreateCommand>;

runtimeCheckpointCreateCommandExample

Valid example value for Runtime Checkpoint Create Command.

Declaration

text
export declare const runtimeCheckpointCreateCommandExample: RuntimeCheckpointCreateCommand;

runtimeCheckpointCreateCommandJsonSchema

JSON Schema for Runtime Checkpoint Create Command.

Declaration

text
export declare const runtimeCheckpointCreateCommandJsonSchema: JsonSchema;

runtimeCheckpointCreateCommandSchema

Runtime schema for Runtime Checkpoint Create Command.

Declaration

text
export declare const runtimeCheckpointCreateCommandSchema: z.ZodObject<{ checkpointId: z.ZodString; scope: z.ZodObject<{ tenantId: z.ZodOptional<z.ZodString>; userId: z.ZodString; workspaceId: z.ZodOptional<z.ZodString>; sessionId: z.ZodString; runId: z.ZodString; agentId: z.ZodOptional<z.ZodString>; }, "strict", z.ZodTypeAny, { sessionId: string; runId: string; userId: string; workspaceId?: string | undefined; agentId?: string | undefined; tenantId?: string | undefined; }, { sessionId: string; runId: string; userId: string; workspaceId?: string | undefined; agentId?: string | undefined; tenantId?: string | undefined; }>; ownerId: z.ZodString; leaseTtlMs: z.ZodNumber; workflowRevision: z.ZodString; processHash: z.ZodString; variablesHash: z.ZodString; dependencySnapshotRef: z.ZodString; toolContractSnapshotRef: z.ZodOptional<z.ZodString>; workspaceSnapshotRef: z.ZodOptional<z.ZodString>; contextSnapshotRefs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; reason: z.ZodEnum<["state_boundary", "human_wait", "signal_wait", "timer_wait", "manual", "failure"]>; createdAt: z.ZodString; idempotencyKey: z.ZodOptional<z.ZodString>; metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<RuntimeJsonValue, z.ZodTypeDef, RuntimeJsonValue>>>; }, "strict", z.ZodTypeAny, { reason: "manual" | "state_boundary" | "human_wait" | "signal_wait" | "timer_wait" | "failure"; scope: { sessionId: string; runId: string; userId: string; workspaceId?: string | undefined; agentId?: string | undefined; tenantId?: string | undefined; }; createdAt: string; checkpointId: string; workflowRevision: string; processHash: string; variablesHash: string; dependencySnapshotRef: string; ownerId: string; leaseTtlMs: number; metadata?: Record<string, RuntimeJsonValue> | undefined; idempotencyKey?: string | undefined; toolContractSnapshotRef?: string | undefined; workspaceSnapshotRef?: string | undefined; contextSnapshotRefs?: string[] | undefined; }, { reason: "manual" | "state_boundary" | "human_wait" | "signal_wait" | "timer_wait" | "failure"; scope: { sessionId: string; runId: string; userId: string; workspaceId?: string | undefined; agentId?: string | undefined; tenantId?: string | undefined; }; createdAt: string; checkpointId: string; workflowRevision: string; processHash: string; variablesHash: string; dependencySnapshotRef: string; ownerId: string; leaseTtlMs: number; metadata?: Record<string, RuntimeJsonValue> | undefined; idempotencyKey?: string | undefined; toolContractSnapshotRef?: string | undefined; workspaceSnapshotRef?: string | undefined; contextSnapshotRefs?: string[] | undefined; }>;

runtimeCheckpointCreateResultDefinition

Runtime Checkpoint Create Result Definition constant exported by the contracts/runtime-checkpoint-schemas module.

Declaration

text
export declare const runtimeCheckpointCreateResultDefinition: SpecSchemaDefinition<RuntimeCheckpointCreateResult>;

runtimeCheckpointCreateResultExample

Valid example value for Runtime Checkpoint Create Result.

Declaration

text
export declare const runtimeCheckpointCreateResultExample: RuntimeCheckpointCreateResult;

runtimeCheckpointCreateResultJsonSchema

JSON Schema for Runtime Checkpoint Create Result.

Declaration

text
export declare const runtimeCheckpointCreateResultJsonSchema: JsonSchema;

runtimeCheckpointCreateResultSchema

Runtime schema for Runtime Checkpoint Create Result.

Declaration

text
// Exact type resolved from the package entrypoint; see source for the compiler expansion.
export declare const runtimeCheckpointCreateResultSchema: (typeof import('@codesoul-co/hypha-core'))['runtimeCheckpointCreateResultSchema'];

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.

runtimeCheckpointLoadRequestDefinition

Runtime Checkpoint Load Request Definition constant exported by the contracts/runtime-checkpoint-schemas module.

Declaration

text
export declare const runtimeCheckpointLoadRequestDefinition: SpecSchemaDefinition<RuntimeCheckpointLoadRequest>;

runtimeCheckpointLoadRequestExample

Valid example value for Runtime Checkpoint Load Request.

Declaration

text
export declare const runtimeCheckpointLoadRequestExample: RuntimeCheckpointLoadRequest;

runtimeCheckpointLoadRequestJsonSchema

JSON Schema for Runtime Checkpoint Load Request.

Declaration

text
export declare const runtimeCheckpointLoadRequestJsonSchema: JsonSchema;

runtimeCheckpointLoadRequestSchema

Runtime schema for Runtime Checkpoint Load Request.

Declaration

text
export declare const runtimeCheckpointLoadRequestSchema: z.ZodObject<{ scope: z.ZodObject<{ tenantId: z.ZodOptional<z.ZodString>; userId: z.ZodString; workspaceId: z.ZodOptional<z.ZodString>; sessionId: z.ZodString; runId: z.ZodString; agentId: z.ZodOptional<z.ZodString>; }, "strict", z.ZodTypeAny, { sessionId: string; runId: string; userId: string; workspaceId?: string | undefined; agentId?: string | undefined; tenantId?: string | undefined; }, { sessionId: string; runId: string; userId: string; workspaceId?: string | undefined; agentId?: string | undefined; tenantId?: string | undefined; }>; checkpointId: z.ZodOptional<z.ZodString>; checkedAt: z.ZodString; }, "strict", z.ZodTypeAny, { scope: { sessionId: string; runId: string; userId: string; workspaceId?: string | undefined; agentId?: string | undefined; tenantId?: string | undefined; }; checkedAt: string; checkpointId?: string | undefined; }, { scope: { sessionId: string; runId: string; userId: string; workspaceId?: string | undefined; agentId?: string | undefined; tenantId?: string | undefined; }; checkedAt: string; checkpointId?: string | undefined; }>;

runtimeCheckpointLoadResultDefinition

Runtime Checkpoint Load Result Definition constant exported by the contracts/runtime-checkpoint-schemas module.

Declaration

text
export declare const runtimeCheckpointLoadResultDefinition: SpecSchemaDefinition<RuntimeCheckpointLoadResult>;

runtimeCheckpointLoadResultExample

Valid example value for Runtime Checkpoint Load Result.

Declaration

text
export declare const runtimeCheckpointLoadResultExample: RuntimeCheckpointLoadResult;

runtimeCheckpointLoadResultJsonSchema

JSON Schema for Runtime Checkpoint Load Result.

Declaration

text
export declare const runtimeCheckpointLoadResultJsonSchema: JsonSchema;

runtimeCheckpointLoadResultSchema

Runtime schema for Runtime Checkpoint Load Result.

Declaration

text
// Exact type resolved from the package entrypoint; see source for the compiler expansion.
export declare const runtimeCheckpointLoadResultSchema: (typeof import('@codesoul-co/hypha-core'))['runtimeCheckpointLoadResultSchema'];

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.

runtimeCheckpointPolicySpecDefinition

Runtime validation entrypoint for the Runtime Checkpoint Policy spec, combining its parser, example and JSON Schema.

Declaration

text
export declare const runtimeCheckpointPolicySpecDefinition: SpecSchemaDefinition<RuntimeCheckpointPolicySpec>;

runtimeCheckpointPolicySpecExample

Valid example value for Runtime Checkpoint Policy Spec.

Declaration

text
export declare const runtimeCheckpointPolicySpecExample: RuntimeCheckpointPolicySpec;

runtimeCheckpointPolicySpecJsonSchema

JSON Schema for Runtime Checkpoint Policy Spec.

Declaration

text
export declare const runtimeCheckpointPolicySpecJsonSchema: JsonSchema;

runtimeCheckpointPolicySpecSchema

Runtime schema for Runtime Checkpoint Policy Spec.

Declaration

text
export declare const runtimeCheckpointPolicySpecSchema: z.ZodEffects<z.ZodObject<{ mode: z.ZodEnum<["none", "state_boundary", "every_n_events", "wait_boundary", "custom"]>; everyNEvents: z.ZodOptional<z.ZodNumber>; retainLast: z.ZodOptional<z.ZodNumber>; persistWorkspaceSnapshot: z.ZodOptional<z.ZodBoolean>; persistContextRefs: z.ZodOptional<z.ZodBoolean>; compression: z.ZodOptional<z.ZodEnum<["none", "gzip", "zstd"]>>; }, "strict", z.ZodTypeAny, { mode: "custom" | "state_boundary" | "none" | "every_n_events" | "wait_boundary"; everyNEvents?: number | undefined; retainLast?: number | undefined; persistWorkspaceSnapshot?: boolean | undefined; persistContextRefs?: boolean | undefined; compression?: "none" | "gzip" | "zstd" | undefined; }, { mode: "custom" | "state_boundary" | "none" | "every_n_events" | "wait_boundary"; everyNEvents?: number | undefined; retainLast?: number | undefined; persistWorkspaceSnapshot?: boolean | undefined; persistContextRefs?: boolean | undefined; compression?: "none" | "gzip" | "zstd" | undefined; }>, { mode: "custom" | "state_boundary" | "none" | "every_n_events" | "wait_boundary"; everyNEvents?: number | undefined; retainLast?: number | undefined; persistWorkspaceSnapshot?: boolean | undefined; persistContextRefs?: boolean | undefined; compression?: "none" | "gzip" | "zstd" | undefined; }, { mode: "custom" | "state_boundary" | "none" | "every_n_events" | "wait_boundary"; everyNEvents?: number | undefined; retainLast?: number | undefined; persistWorkspaceSnapshot?: boolean | undefined; persistContextRefs?: boolean | undefined; compression?: "none" | "gzip" | "zstd" | undefined; }>;

runtimeCheckpointRecordDefinition

Runtime Checkpoint Record Definition constant exported by the contracts/runtime-checkpoint-schemas module.

Declaration

text
export declare const runtimeCheckpointRecordDefinition: SpecSchemaDefinition<RuntimeCheckpointRecord>;

runtimeCheckpointRecordExample

Valid example value for Runtime Checkpoint Record.

Declaration

text
export declare const runtimeCheckpointRecordExample: RuntimeCheckpointRecord;

runtimeCheckpointRecordJsonSchema

JSON Schema for Runtime Checkpoint Record.

Declaration

text
export declare const runtimeCheckpointRecordJsonSchema: JsonSchema;

runtimeCheckpointRecordSchema

Runtime schema for Runtime Checkpoint Record.

Declaration

text
// Exact type resolved from the package entrypoint; see source for the compiler expansion.
export declare const runtimeCheckpointRecordSchema: (typeof import('@codesoul-co/hypha-core'))['runtimeCheckpointRecordSchema'];

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.

validateRuntimeCheckpointCreateCommand

Validate Runtime Checkpoint Create Command function with 1 public call signature; parameters and return types are listed below.

Declaration

text
export declare function validateRuntimeCheckpointCreateCommand(input: unknown): RuntimeCheckpointCreateCommand;

Call signature

text
validateRuntimeCheckpointCreateCommand(input: unknown): RuntimeCheckpointCreateCommand

Parameters

ParameterTypeRequiredDescription
inputunknownYesRequired parameter; accepted values are defined by the type column.

Returns

  • Type: RuntimeCheckpointCreateCommand
  • Description: The return contract is defined by the type shown above.

validateRuntimeCheckpointCreateResult

Validate Runtime Checkpoint Create Result function with 1 public call signature; parameters and return types are listed below.

Declaration

text
export declare function validateRuntimeCheckpointCreateResult(input: unknown): RuntimeCheckpointCreateResult;

Call signature

text
validateRuntimeCheckpointCreateResult(input: unknown): RuntimeCheckpointCreateResult

Parameters

ParameterTypeRequiredDescription
inputunknownYesRequired parameter; accepted values are defined by the type column.

Returns

  • Type: RuntimeCheckpointCreateResult
  • Description: The return contract is defined by the type shown above.

validateRuntimeCheckpointLoadRequest

Validate Runtime Checkpoint Load Request function with 1 public call signature; parameters and return types are listed below.

Declaration

text
export declare function validateRuntimeCheckpointLoadRequest(input: unknown): RuntimeCheckpointLoadRequest;

Call signature

text
validateRuntimeCheckpointLoadRequest(input: unknown): RuntimeCheckpointLoadRequest

Parameters

ParameterTypeRequiredDescription
inputunknownYesRequired parameter; accepted values are defined by the type column.

Returns

  • Type: RuntimeCheckpointLoadRequest
  • Description: The return contract is defined by the type shown above.

validateRuntimeCheckpointLoadResult

Validate Runtime Checkpoint Load Result function with 1 public call signature; parameters and return types are listed below.

Declaration

text
export declare function validateRuntimeCheckpointLoadResult(input: unknown): RuntimeCheckpointLoadResult;

Call signature

text
validateRuntimeCheckpointLoadResult(input: unknown): RuntimeCheckpointLoadResult

Parameters

ParameterTypeRequiredDescription
inputunknownYesRequired parameter; accepted values are defined by the type column.

Returns

  • Type: RuntimeCheckpointLoadResult
  • Description: The return contract is defined by the type shown above.

validateRuntimeCheckpointPolicySpec

Validate Runtime Checkpoint Policy Spec function with 1 public call signature; parameters and return types are listed below.

Declaration

text
export declare function validateRuntimeCheckpointPolicySpec(input: unknown): RuntimeCheckpointPolicySpec;

Call signature

text
validateRuntimeCheckpointPolicySpec(input: unknown): RuntimeCheckpointPolicySpec

Parameters

ParameterTypeRequiredDescription
inputunknownYesRequired parameter; accepted values are defined by the type column.

Returns

  • Type: RuntimeCheckpointPolicySpec
  • Description: The return contract is defined by the type shown above.

validateRuntimeCheckpointRecord

Validate Runtime Checkpoint Record function with 1 public call signature; parameters and return types are listed below.

Declaration

text
export declare function validateRuntimeCheckpointRecord(input: unknown): RuntimeCheckpointRecord;

Call signature

text
validateRuntimeCheckpointRecord(input: unknown): RuntimeCheckpointRecord

Parameters

ParameterTypeRequiredDescription
inputunknownYesRequired parameter; accepted values are defined by the type column.

Returns

  • Type: RuntimeCheckpointRecord
  • Description: The return contract is defined by the type shown above.