@boboddy/sdk 0.0.7-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,14 @@
1
+ import { z } from "zod";
2
+ import type { AppContext } from "@boboddy/core/lib/di";
3
+ import { getStepExecutionInputSchema, getStepExecutionResultInputSchema } from "@boboddy/core/pipeline-executions/step-execution/contracts/step-execution-contracts";
4
+ export declare const stepExecutionIdParamsSchema: z.ZodObject<{
5
+ stepExecutionId: z.ZodString & z.ZodType<import("@boboddy/core/common/contracts/uuid-v7").UuidV7, string, z.core.$ZodTypeInternals<import("@boboddy/core/common/contracts/uuid-v7").UuidV7, string>>;
6
+ }, z.core.$strip>;
7
+ export declare const stepExecutionResultIdParamsSchema: z.ZodObject<{
8
+ stepExecutionResultId: z.ZodString & z.ZodType<import("@boboddy/core/common/contracts/uuid-v7").UuidV7, string, z.core.$ZodTypeInternals<import("@boboddy/core/common/contracts/uuid-v7").UuidV7, string>>;
9
+ }, z.core.$strip>;
10
+ export declare const listStepExecutionsQuerySchema: z.ZodObject<{
11
+ projectId: z.ZodString & z.ZodType<import("@boboddy/core/common/contracts/uuid-v7").UuidV7, string, z.core.$ZodTypeInternals<import("@boboddy/core/common/contracts/uuid-v7").UuidV7, string>>;
12
+ }, z.core.$strip>;
13
+ export declare const loadStepExecutionProjectId: (stepExecutionId: z.infer<typeof getStepExecutionInputSchema>, appContext: AppContext) => Promise<import("@boboddy/core/common/contracts/uuid-v7").UuidV7>;
14
+ export declare const loadStepExecutionProjectIdFromResult: (stepExecutionResultId: z.infer<typeof getStepExecutionResultInputSchema>, appContext: AppContext) => Promise<import("@boboddy/core/common/contracts/uuid-v7").UuidV7>;