/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type BulkAssignConfigTargetAppDto = { /** * target app ids */ targetApps: Array; /** * Gate IDs to assign to target app(s) */ gates?: Array | undefined; /** * Dynamic Config IDs to assign to target app(s) */ dynamicConfigs?: Array | undefined; /** * Experiment IDs to assign to target app(s) */ experiments?: Array | undefined; }; /** @internal */ export const BulkAssignConfigTargetAppDto$inboundSchema: z.ZodType< BulkAssignConfigTargetAppDto, z.ZodTypeDef, unknown > = z.object({ targetApps: z.array(z.string()), gates: z.array(z.string()).optional(), dynamicConfigs: z.array(z.string()).optional(), experiments: z.array(z.string()).optional(), }); /** @internal */ export type BulkAssignConfigTargetAppDto$Outbound = { targetApps: Array; gates?: Array | undefined; dynamicConfigs?: Array | undefined; experiments?: Array | undefined; }; /** @internal */ export const BulkAssignConfigTargetAppDto$outboundSchema: z.ZodType< BulkAssignConfigTargetAppDto$Outbound, z.ZodTypeDef, BulkAssignConfigTargetAppDto > = z.object({ targetApps: z.array(z.string()), gates: z.array(z.string()).optional(), dynamicConfigs: z.array(z.string()).optional(), experiments: z.array(z.string()).optional(), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace BulkAssignConfigTargetAppDto$ { /** @deprecated use `BulkAssignConfigTargetAppDto$inboundSchema` instead. */ export const inboundSchema = BulkAssignConfigTargetAppDto$inboundSchema; /** @deprecated use `BulkAssignConfigTargetAppDto$outboundSchema` instead. */ export const outboundSchema = BulkAssignConfigTargetAppDto$outboundSchema; /** @deprecated use `BulkAssignConfigTargetAppDto$Outbound` instead. */ export type Outbound = BulkAssignConfigTargetAppDto$Outbound; }