/*
 * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
 */

import * as z from "zod/v3";
import { safeParse } from "../lib/schemas.js";
import { Result as SafeParseResult } from "../types/fp.js";
import * as types from "../types/primitives.js";
import {
  GlobalConfigItemValue,
  GlobalConfigItemValue$inboundSchema,
} from "./globalconfigitemvalue.js";
import { SDKValidationError } from "./sdkvalidationerror.js";

/**
 * The Global Config.
 */
export type GlobalConfigItem = {
  key: string;
  value: GlobalConfigItemValue | null;
  description?: string | undefined;
  edgeConfigId: string;
  createdAt: number;
  updatedAt: number;
};

/** @internal */
export const GlobalConfigItem$inboundSchema: z.ZodType<
  GlobalConfigItem,
  z.ZodTypeDef,
  unknown
> = z.object({
  key: types.string(),
  value: types.nullable(GlobalConfigItemValue$inboundSchema),
  description: types.optional(types.string()),
  edgeConfigId: types.string(),
  createdAt: types.number(),
  updatedAt: types.number(),
});

export function globalConfigItemFromJSON(
  jsonString: string,
): SafeParseResult<GlobalConfigItem, SDKValidationError> {
  return safeParse(
    jsonString,
    (x) => GlobalConfigItem$inboundSchema.parse(JSON.parse(x)),
    `Failed to parse 'GlobalConfigItem' from JSON`,
  );
}
