UNPKG

@glowlabs-org/events-sdk

Version:

Typed event SDK for Glow, powered by RabbitMQ and Zod.

26 lines (25 loc) 850 B
import { z } from "zod"; export declare const applicationCreatedV2AlphaPayloadZ: z.ZodObject<{ gcaAddress: z.ZodString; lat: z.ZodNumber; lng: z.ZodNumber; estimatedCostOfPowerPerKWh: z.ZodNumber; estimatedKWhGeneratedPerYear: z.ZodNumber; estimatedProtocolFeeUSDPrice_6Decimals: z.ZodString; }, "strip", z.ZodTypeAny, { gcaAddress: string; lat: number; lng: number; estimatedCostOfPowerPerKWh: number; estimatedKWhGeneratedPerYear: number; estimatedProtocolFeeUSDPrice_6Decimals: string; }, { gcaAddress: string; lat: number; lng: number; estimatedCostOfPowerPerKWh: number; estimatedKWhGeneratedPerYear: number; estimatedProtocolFeeUSDPrice_6Decimals: string; }>; export interface ApplicationCreatedV2AlphaPayload extends z.infer<typeof applicationCreatedV2AlphaPayloadZ> { }