@vercel/sdk
Version:
<p align="center"> <a href="https://vercel.com"> <img src="https://assets.vercel.com/image/upload/v1588805858/repositories/vercel/logo.png" height="96"> <h3 align="center">Vercel</h3> </a> <p align="center">Develop. Preview. Ship.</p> </p>
1,184 lines • 126 kB
TypeScript
import * as z from "zod/v3";
import { ClosedEnum } from "../types/enums.js";
import { Result as SafeParseResult } from "../types/fp.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type CreateIntegrationStoreDirectMetadata = string | number | boolean | Array<string> | Array<number>;
/**
* Source of the store creation request
*/
export declare const CreateIntegrationStoreDirectSource: {
readonly Marketplace: "marketplace";
readonly DeployButton: "deploy-button";
readonly External: "external";
readonly V0: "v0";
readonly ResourceClaims: "resource-claims";
readonly Cli: "cli";
readonly Oauth: "oauth";
readonly Backoffice: "backoffice";
readonly ImportRecommendedIntegrations: "import-recommended-integrations";
readonly Organization: "organization";
};
/**
* Source of the store creation request
*/
export type CreateIntegrationStoreDirectSource = ClosedEnum<typeof CreateIntegrationStoreDirectSource>;
export type CreateIntegrationStoreDirectRequestBody = {
/**
* Human-readable name for the storage resource
*/
name: string;
/**
* ID of your integration configuration. Get this from GET /v1/integrations/configurations
*/
integrationConfigurationId: string;
/**
* ID or slug of the integration product. Get available products from GET /v1/integrations/configuration/{id}/products
*/
integrationProductIdOrSlug?: any | undefined;
/**
* Optional key-value pairs for resource metadata
*/
metadata?: {
[k: string]: string | number | boolean | Array<string> | Array<number>;
} | undefined;
/**
* Optional external identifier for tracking purposes
*/
externalId?: string | undefined;
/**
* Protocol-specific configuration settings
*/
protocolSettings?: {
[k: string]: any;
} | undefined;
/**
* Source of the store creation request
*/
source?: CreateIntegrationStoreDirectSource | undefined;
/**
* ID of the billing plan for paid resources. Get available plans from GET /integrations/integration/{id}/products/{productId}/plans. If not provided, automatically discovers free billing plans.
*/
billingPlanId?: string | undefined;
/**
* Payment method ID for paid resources. Optional - uses default payment method if not provided.
*/
paymentMethodId?: string | undefined;
/**
* Amount in cents for prepayment billing plans. Required only for prepayment plans with variable amounts.
*/
prepaymentAmountCents?: number | undefined;
};
export type CreateIntegrationStoreDirectRequest = {
/**
* The Team identifier to perform the request on behalf of.
*/
teamId?: string | undefined;
/**
* The Team slug to perform the request on behalf of.
*/
slug?: string | undefined;
requestBody?: CreateIntegrationStoreDirectRequestBody | undefined;
};
export declare const CreateIntegrationStoreDirectFramework: {
readonly ActixWeb: "actix-web";
readonly Angular: "angular";
readonly Ash: "ash";
readonly Astro: "astro";
readonly Axum: "axum";
readonly Blitzjs: "blitzjs";
readonly Brunch: "brunch";
readonly Bun: "bun";
readonly Container: "container";
readonly CreateReactApp: "create-react-app";
readonly Django: "django";
readonly Docusaurus: "docusaurus";
readonly Docusaurus2: "docusaurus-2";
readonly Dojo: "dojo";
readonly Eleventy: "eleventy";
readonly Elysia: "elysia";
readonly Ember: "ember";
readonly Eve: "eve";
readonly Express: "express";
readonly FactoryEve: "factory-eve";
readonly Fastapi: "fastapi";
readonly Fasthtml: "fasthtml";
readonly Fastify: "fastify";
readonly Flask: "flask";
readonly Gatsby: "gatsby";
readonly Go: "go";
readonly Gridsome: "gridsome";
readonly H3: "h3";
readonly Hexo: "hexo";
readonly Hono: "hono";
readonly Hugo: "hugo";
readonly Hydrogen: "hydrogen";
readonly IonicAngular: "ionic-angular";
readonly IonicReact: "ionic-react";
readonly Jekyll: "jekyll";
readonly Koa: "koa";
readonly Mastra: "mastra";
readonly Middleman: "middleman";
readonly Nestjs: "nestjs";
readonly Nextjs: "nextjs";
readonly Nitro: "nitro";
readonly Node: "node";
readonly Nuxtjs: "nuxtjs";
readonly Parcel: "parcel";
readonly Polymer: "polymer";
readonly Preact: "preact";
readonly Python: "python";
readonly ReactRouter: "react-router";
readonly Redwoodjs: "redwoodjs";
readonly Remix: "remix";
readonly Ruby: "ruby";
readonly Rust: "rust";
readonly Saber: "saber";
readonly Sanity: "sanity";
readonly SanityV2: "sanity-v2";
readonly Sapper: "sapper";
readonly Scully: "scully";
readonly Services: "services";
readonly Solidstart: "solidstart";
readonly Solidstart1: "solidstart-1";
readonly Stencil: "stencil";
readonly Storybook: "storybook";
readonly Svelte: "svelte";
readonly Sveltekit: "sveltekit";
readonly Sveltekit1: "sveltekit-1";
readonly TanstackStart: "tanstack-start";
readonly TanstackStartLovable: "tanstack-start-lovable";
readonly Umijs: "umijs";
readonly Vite: "vite";
readonly Vitepress: "vitepress";
readonly Vue: "vue";
readonly Vuepress: "vuepress";
readonly Xmcp: "xmcp";
readonly Zola: "zola";
};
export type CreateIntegrationStoreDirectFramework = ClosedEnum<typeof CreateIntegrationStoreDirectFramework>;
export type CreateIntegrationStoreDirectActions = {
slug: string;
environments: Array<string>;
};
export type CreateIntegrationStoreDirectDeployments = {
required: boolean;
actions: Array<CreateIntegrationStoreDirectActions>;
};
export type CreateIntegrationStoreDirectProjectsMetadata = {
id: string;
projectId: string;
name: string;
framework?: CreateIntegrationStoreDirectFramework | null | undefined;
latestDeployment?: string | undefined;
environments: Array<string>;
envVarPrefix: string | null;
environmentVariables: Array<string>;
deployments?: CreateIntegrationStoreDirectDeployments | undefined;
makeEnvVarsSensitive?: boolean | undefined;
};
export declare const CreateIntegrationStoreDirectProviders2: {
readonly Wildcard: "*";
};
export type CreateIntegrationStoreDirectProviders2 = ClosedEnum<typeof CreateIntegrationStoreDirectProviders2>;
export declare const CreateIntegrationStoreDirectProviders1: {
readonly Bitbucket: "bitbucket";
readonly Github: "github";
readonly Gitlab: "gitlab";
};
export type CreateIntegrationStoreDirectProviders1 = ClosedEnum<typeof CreateIntegrationStoreDirectProviders1>;
export type CreateIntegrationStoreDirectProviders = Array<CreateIntegrationStoreDirectProviders1> | CreateIntegrationStoreDirectProviders2;
export type CreateIntegrationStoreDirectGit = {
providers: Array<CreateIntegrationStoreDirectProviders1> | CreateIntegrationStoreDirectProviders2;
owners?: Array<string> | undefined;
repos?: Array<string> | undefined;
};
export type CreateIntegrationStoreDirectProjectFilter = {
git?: CreateIntegrationStoreDirectGit | undefined;
};
export declare const CreateIntegrationStoreDirectStatus: {
readonly Available: "available";
readonly Error: "error";
readonly Initializing: "initializing";
readonly LimitsExceededSuspended: "limits-exceeded-suspended";
readonly LimitsExceededSuspendedStoreCount: "limits-exceeded-suspended-store-count";
readonly Onboarding: "onboarding";
readonly Suspended: "suspended";
readonly Uninstalled: "uninstalled";
};
export type CreateIntegrationStoreDirectStatus = ClosedEnum<typeof CreateIntegrationStoreDirectStatus>;
export declare const CreateIntegrationStoreDirectOwnership: {
readonly Linked: "linked";
readonly Owned: "owned";
readonly Sandbox: "sandbox";
};
export type CreateIntegrationStoreDirectOwnership = ClosedEnum<typeof CreateIntegrationStoreDirectOwnership>;
export type SecretRotation1 = {
maxDelayHours: number;
customRotationWarning?: string | undefined;
};
export type SecretRotation = SecretRotation1 | boolean;
export type Capabilities = {
mcp?: boolean | undefined;
mcpReadonly?: boolean | undefined;
sso?: boolean | undefined;
billable?: boolean | undefined;
transferable?: boolean | undefined;
secretsSync?: boolean | undefined;
secretRotation?: SecretRotation1 | boolean | undefined;
projects?: boolean | undefined;
v0?: boolean | undefined;
autoSensitive?: boolean | undefined;
agentTools?: boolean | undefined;
};
export type CreateIntegrationStoreDirectIntegrationsMetadata = string | number | Array<string> | Array<number> | boolean;
export declare const ExternalResourceStatus: {
readonly Error: "error";
readonly Onboarding: "onboarding";
readonly Pending: "pending";
readonly Ready: "ready";
readonly Resumed: "resumed";
readonly Suspended: "suspended";
readonly Uninstalled: "uninstalled";
};
export type ExternalResourceStatus = ClosedEnum<typeof ExternalResourceStatus>;
export type CreateIntegrationStoreDirectSecretRotation1 = {
maxDelayHours: number;
customRotationWarning?: string | undefined;
};
export type CreateIntegrationStoreDirectSecretRotation = CreateIntegrationStoreDirectSecretRotation1 | boolean;
export type CreateIntegrationStoreDirectCapabilities = {
mcp?: boolean | undefined;
mcpReadonly?: boolean | undefined;
sso?: boolean | undefined;
billable?: boolean | undefined;
transferable?: boolean | undefined;
secretsSync?: boolean | undefined;
secretRotation?: CreateIntegrationStoreDirectSecretRotation1 | boolean | undefined;
sandbox?: boolean | undefined;
linking?: boolean | undefined;
projects?: boolean | undefined;
v0?: boolean | undefined;
importResource?: boolean | undefined;
connectedImportResource?: boolean | undefined;
nativeImportResource?: boolean | undefined;
databaseUI?: boolean | undefined;
v0Flavors?: boolean | undefined;
autoSensitive?: boolean | undefined;
agentTools?: boolean | undefined;
};
export declare const CreateIntegrationStoreDirectIntegrationsType: {
readonly Object: "object";
};
export type CreateIntegrationStoreDirectIntegrationsType = ClosedEnum<typeof CreateIntegrationStoreDirectIntegrationsType>;
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12Type: {
readonly String: "string";
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12Type>;
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiControl: {
readonly GitNamespace: "git-namespace";
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiControl>;
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123 = ClosedEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123>;
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiReadOnly = CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123;
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123 = ClosedEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123>;
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiHidden = CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123;
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123 = ClosedEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123>;
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiDisabled = CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123;
export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties122 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiDescription = CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties122 | string;
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiFormattedValue = {
expr: string;
};
export declare const PropertiesGitProviders: {
readonly Bitbucket: "bitbucket";
readonly Github: "github";
readonly Gitlab: "gitlab";
};
export type PropertiesGitProviders = ClosedEnum<typeof PropertiesGitProviders>;
export type CreateIntegrationStoreDirectProperties12 = {
type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12Type;
uiControl: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiControl;
description?: string | undefined;
uiLabel?: string | undefined;
uiReadOnly?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123 | undefined;
uiHidden?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123 | undefined;
uiDisabled?: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123 | undefined;
uiDescription?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties122 | string | undefined;
uiFormattedValue?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiFormattedValue | undefined;
uiPaidOnly?: boolean | undefined;
uiPlaceholder?: string | undefined;
gitProviders?: Array<PropertiesGitProviders> | undefined;
};
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11Type: {
readonly String: "string";
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11Type>;
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiControl: {
readonly Domain: "domain";
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiControl>;
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113 = ClosedEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113>;
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiReadOnly = CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113;
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113 = ClosedEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113>;
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiHidden = CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113;
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113 = ClosedEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113>;
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiDisabled = CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113;
export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties112 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiDescription = CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties112 | string;
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiFormattedValue = {
expr: string;
};
export type CreateIntegrationStoreDirectProperties11 = {
type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11Type;
uiControl: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiControl;
default?: string | undefined;
enum?: Array<string> | undefined;
maxLength?: number | undefined;
minLength?: number | undefined;
pattern?: string | undefined;
description?: string | undefined;
uiLabel?: string | undefined;
uiReadOnly?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113 | undefined;
uiHidden?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113 | undefined;
uiDisabled?: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113 | undefined;
uiDescription?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties112 | string | undefined;
uiFormattedValue?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiFormattedValue | undefined;
uiPaidOnly?: boolean | undefined;
uiPlaceholder?: string | undefined;
};
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type: {
readonly String: "string";
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type>;
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl: {
readonly VercelCountry: "vercel-country";
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl>;
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1 = {
expr: string;
};
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONResponseBodyDisabled = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3;
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 = ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1 = {
expr: string;
};
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONResponseBodyHidden = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3;
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse3 = {
value: string;
description?: string | undefined;
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 | undefined;
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 | undefined;
};
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3>;
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1 = {
expr: string;
};
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONDisabled = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3;
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 = ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3>;
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1 = {
expr: string;
};
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONHidden = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3;
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse1 = {
value: string;
label: string;
description?: string | undefined;
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 | undefined;
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 | undefined;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiOptions = CreateIntegrationStoreDirectUiOptionsIntegrationsResponse1 | CreateIntegrationStoreDirectUiOptionsIntegrationsResponse3 | string;
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly = CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3;
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden = CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3;
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled = CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3;
export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription = CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | string;
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue = {
expr: string;
};
export type CreateIntegrationStoreDirectProperties10 = {
type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type;
uiControl: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl;
uiOptions: Array<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse1 | CreateIntegrationStoreDirectUiOptionsIntegrationsResponse3 | string>;
default?: string | undefined;
enum?: Array<string> | undefined;
maxLength?: number | undefined;
minLength?: number | undefined;
pattern?: string | undefined;
description?: string | undefined;
uiLabel?: string | undefined;
uiReadOnly?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 | undefined;
uiHidden?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 | undefined;
uiDisabled?: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 | undefined;
uiDescription?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | string | undefined;
uiFormattedValue?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue | undefined;
uiPaidOnly?: boolean | undefined;
uiPlaceholder?: string | undefined;
};
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType: {
readonly Array: "array";
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType>;
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9Type: {
readonly String: "string";
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9Type>;
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems = {
type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9Type;
default?: string | undefined;
enum?: Array<string> | undefined;
maxLength?: number | undefined;
minLength?: number | undefined;
pattern?: string | undefined;
description?: string | undefined;
};
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl: {
readonly MultiVercelRegion: "multi-vercel-region";
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl>;
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore3>;
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore1 = {
expr: string;
};
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore1 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore3;
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3 = ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3>;
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore1 = {
expr: string;
};
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore1 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3;
export type CreateIntegrationStoreDirectUiOptionsIntegrations3 = {
value: string;
description?: string | undefined;
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore1 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore3 | undefined;
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore1 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3 | undefined;
};
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3>;
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody1 = {
expr: string;
};
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody1 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3;
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3 = ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3>;
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody1 = {
expr: string;
};
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody1 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3;
export type CreateIntegrationStoreDirectUiOptionsIntegrations1 = {
value: string;
label: string;
description?: string | undefined;
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody1 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3 | undefined;
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody1 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3 | undefined;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiOptions = CreateIntegrationStoreDirectUiOptionsIntegrations1 | CreateIntegrationStoreDirectUiOptionsIntegrations3 | string;
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly = CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3;
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden = CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3;
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled = CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3;
export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription = CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | string;
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue = {
expr: string;
};
export type CreateIntegrationStoreDirectProperties9 = {
type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType;
items: CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems;
uiControl: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl;
uiOptions: Array<CreateIntegrationStoreDirectUiOptionsIntegrations1 | CreateIntegrationStoreDirectUiOptionsIntegrations3 | string>;
default?: Array<string> | undefined;
maxItems?: number | undefined;
minItems?: number | undefined;
description?: string | undefined;
uiLabel?: string | undefined;
uiReadOnly?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 | undefined;
uiHidden?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 | undefined;
uiDisabled?: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 | undefined;
uiDescription?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | string | undefined;
uiFormattedValue?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue | undefined;
uiPaidOnly?: boolean | undefined;
uiPlaceholder?: string | undefined;
example?: Array<string> | undefined;
};
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType: {
readonly String: "string";
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType>;
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl: {
readonly VercelRegion: "vercel-region";
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl>;
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3>;
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson1 = {
expr: string;
};
export type CreateIntegrationStoreDirectUiOptionsIntegrationsDisabled = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson1 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3;
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3 = ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3>;
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson1 = {
expr: string;
};
export type CreateIntegrationStoreDirectUiOptionsIntegrationsHidden = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson1 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3;
export type CreateIntegrationStoreDirectUiOptions3 = {
value: string;
description?: string | undefined;
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson1 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3 | undefined;
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson1 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3 | undefined;
};
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse2003: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse2003>;
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2001 = {
expr: string;
};
export type CreateIntegrationStoreDirectUiOptionsDisabled = CreateIntegrationStoreDirectDisabledIntegrationsResponse2001 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse2003;
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse2003: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2003 = ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse2003>;
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2001 = {
expr: string;
};
export type CreateIntegrationStoreDirectUiOptionsHidden = CreateIntegrationStoreDirectHiddenIntegrationsResponse2001 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse2003;
export type CreateIntegrationStoreDirectUiOptions1 = {
value: string;
label: string;
description?: string | undefined;
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2001 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 | undefined;
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2001 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse2003 | undefined;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions = CreateIntegrationStoreDirectUiOptions1 | CreateIntegrationStoreDirectUiOptions3 | string;
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3>;
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiReadOnly = CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3;
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3>;
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiHidden = CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3;
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3: {
readonly Create: "create";
readonly Update: "update";
};
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3>;
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDisabled = CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3;
export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 = {
expr: string;
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDescription = CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 | string;
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue = {
expr: string;
};
export type CreateIntegrationStoreDirectProperties8 = {
type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType;
uiControl: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl;
uiOptions: Array<CreateIntegrationStoreDirectUiOptions1 | CreateIntegrationStoreDirectUiOptions3 | string>;
default?: string | undefined;
enum?: Array<string> | undefined;
maxLength?: number | undefined;
minLength?: number | undefined;
pattern?: string | undefined;
description?: string | undefined;
uiLabel?: string | undefined;
uiReadOnly?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 | undefined;
uiHidden?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 | undefined;
uiDisabled?: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 | undefined;
uiDescription?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 | string | undefined;
uiFormattedValue?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue | undefined;
uiPaidOnly?: boolean | undefined;
uiPlaceholder?: string | undefined;
};
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType: {
readonly Array: "array";
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType>;
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema7Type: {
readonly String: "string";
};
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema7Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema7Type>;
export type CreateIntegrationStoreDirectPropertiesIntegrationsItems = {
type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema7Type;
default?: string | undefined;
enum?: Array<string> | undefined;
maxLength?: number | undefined;
minLength?: number | undefined;
pattern?: string | undefined;
description?: string | undefined;
};
/** @internal */
export type CreateIntegrationStoreDirectMetadata$Outbound = string | number | boolean | Array<string> | Array<number>;
/** @internal */
export declare const CreateIntegrationStoreDirectMetadata$outboundSchema: z.ZodType<CreateIntegrationStoreDirectMetadata$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectMetadata>;
export declare function createIntegrationStoreDirectMetadataToJSON(createIntegrationStoreDirectMetadata: CreateIntegrationStoreDirectMetadata): string;
/** @internal */
export declare const CreateIntegrationStoreDirectSource$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectSource>;
/** @internal */
export type CreateIntegrationStoreDirectRequestBody$Outbound = {
name: string;
integrationConfigurationId: string;
integrationProductIdOrSlug?: any | undefined;
metadata?: {
[k: string]: string | number | boolean | Array<string> | Array<number>;
} | undefined;
externalId?: string | undefined;
protocolSettings?: {
[k: string]: any;
} | undefined;
source: string;
billingPlanId?: string | undefined;
paymentMethodId?: string | undefined;
prepaymentAmountCents?: number | undefined;
};
/** @internal */
export declare const CreateIntegrationStoreDirectRequestBody$outboundSchema: z.ZodType<CreateIntegrationStoreDirectRequestBody$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectRequestBody>;
export declare function createIntegrationStoreDirectRequestBodyToJSON(createIntegrationStoreDirectRequestBody: CreateIntegrationStoreDirectRequestBody): string;
/** @internal */
export type CreateIntegrationStoreDirectRequest$Outbound = {
teamId?: string | undefined;
slug?: string | undefined;
RequestBody?: CreateIntegrationStoreDirectRequestBody$Outbound | undefined;
};
/** @internal */
export declare const CreateIntegrationStoreDirectRequest$outboundSchema: z.ZodType<CreateIntegrationStoreDirectRequest$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectRequest>;
export declare function createIntegrationStoreDirectRequestToJSON(createIntegrationStoreDirectRequest: CreateIntegrationStoreDirectRequest): string;
/** @internal */
export declare const CreateIntegrationStoreDirectFramework$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectFramework>;
/** @internal */
export declare const CreateIntegrationStoreDirectActions$inboundSchema: z.ZodType<CreateIntegrationStoreDirectActions, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectActionsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectActions, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectDeployments$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDeployments, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectDeploymentsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDeployments, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectProjectsMetadata$inboundSchema: z.ZodType<CreateIntegrationStoreDirectProjectsMetadata, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectProjectsMetadataFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectProjectsMetadata, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectProviders2$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectProviders2>;
/** @internal */
export declare const CreateIntegrationStoreDirectProviders1$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectProviders1>;
/** @internal */
export declare const CreateIntegrationStoreDirectProviders$inboundSchema: z.ZodType<CreateIntegrationStoreDirectProviders, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectProvidersFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectProviders, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectGit$inboundSchema: z.ZodType<CreateIntegrationStoreDirectGit, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectGitFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectGit, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectProjectFilter$inboundSchema: z.ZodType<CreateIntegrationStoreDirectProjectFilter, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectProjectFilterFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectProjectFilter, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectStatus$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectStatus>;
/** @internal */
export declare const CreateIntegrationStoreDirectOwnership$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectOwnership>;
/** @internal */
export declare const SecretRotation1$inboundSchema: z.ZodType<SecretRotation1, z.ZodTypeDef, unknown>;
export declare function secretRotation1FromJSON(jsonString: string): SafeParseResult<SecretRotation1, SDKValidationError>;
/** @internal */
export declare const SecretRotation$inboundSchema: z.ZodType<SecretRotation, z.ZodTypeDef, unknown>;
export declare function secretRotationFromJSON(jsonString: string): SafeParseResult<SecretRotation, SDKValidationError>;
/** @internal */
export declare const Capabilities$inboundSchema: z.ZodType<Capabilities, z.ZodTypeDef, unknown>;
export declare function capabilitiesFromJSON(jsonString: string): SafeParseResult<Capabilities, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectIntegrationsMetadata$inboundSchema: z.ZodType<CreateIntegrationStoreDirectIntegrationsMetadata, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectIntegrationsMetadataFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectIntegrationsMetadata, SDKValidationError>;
/** @internal */
export declare const ExternalResourceStatus$inboundSchema: z.ZodNativeEnum<typeof ExternalResourceStatus>;
/** @internal */
export declare const CreateIntegrationStoreDirectSecretRotation1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectSecretRotation1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectSecretRotation1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectSecretRotation1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectSecretRotation$inboundSchema: z.ZodType<CreateIntegrationStoreDirectSecretRotation, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectSecretRotationFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectSecretRotation, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectCapabilities$inboundSchema: z.ZodType<CreateIntegrationStoreDirectCapabilities, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectCapabilitiesFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectCapabilities, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectIntegrationsType$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectIntegrationsType>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12Type$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12Type>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiControl$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiControl>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiReadOnly$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiReadOnly, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiReadOnlyFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiReadOnly, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiHidden, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiHidden, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties123>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties121, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiDisabled, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiDisabled, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties122$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties122, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties122FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties122, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiDescription$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiDescription, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiDescriptionFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiDescription, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiFormattedValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiFormattedValue, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiFormattedValueFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema12UiFormattedValue, SDKValidationError>;
/** @internal */
export declare const PropertiesGitProviders$inboundSchema: z.ZodNativeEnum<typeof PropertiesGitProviders>;
/** @internal */
export declare const CreateIntegrationStoreDirectProperties12$inboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties12, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectProperties12FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectProperties12, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11Type$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11Type>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiControl$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiControl>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiReadOnly$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiReadOnly, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiReadOnlyFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiReadOnly, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiHidden, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiHidden, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties113>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties111, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiDisabled, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiDisabled, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties112$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties112, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties112FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties112, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiDescription$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiDescription, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiDescriptionFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiDescription, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiFormattedValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiFormattedValue, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiFormattedValueFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema11UiFormattedValue, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectProperties11$inboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties11, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectProperties11FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectProperties11, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl>;
/** @internal */
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
/** @internal */
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONResponseBodyDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONResponseBodyDisabled, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONResponseBodyDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONResponseBodyDisabled, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
/** @internal */
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONResponseBodyHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONResponseBodyHidden, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONResponseBodyHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONResponseBodyHidden, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse3$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse3, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse3FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse3, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3>;
/** @internal */
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONDisabled, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONDisabled, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3>;
/** @internal */
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONHidden, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200ApplicationJSONHidden, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiOptions$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiOptions, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiOptionsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiOptions, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnlyFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescriptionFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValueFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectProperties10$inboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties10, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectProperties10FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectProperties10, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9Type$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9Type>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseItemsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl>;
/** @internal */
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore3>;
/** @internal */
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse200DisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3>;
/** @internal */
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse200HiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsIntegrations3$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrations3, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsIntegrations3FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrations3, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3>;
/** @internal */
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponseDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3>;
/** @internal */
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponseHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsIntegrations1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrations1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsIntegrations1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrations1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiOptions$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiOptions, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiOptionsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiOptions, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnlyFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescriptionFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValueFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectProperties9$inboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties9, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectProperties9FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectProperties9, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl>;
/** @internal */
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3>;
/** @internal */
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSON1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsDisabled, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsIntegrationsDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsDisabled, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3>;
/** @internal */
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSON1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsHidden, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsIntegrationsHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsHidden, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptions3$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptions3, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptions3FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptions3, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse2003$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse2003>;
/** @internal */
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse2001$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse2001, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectDisabledIntegrationsResponse2001FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabledIntegrationsResponse2001, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsDisabled, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsDisabled, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse2003$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse2003>;
/** @internal */
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse2001$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse2001, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectHiddenIntegrationsResponse2001FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHiddenIntegrationsResponse2001, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptionsHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsHidden, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptionsHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsHidden, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiOptions1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptions1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiOptions1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptions1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptionsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiReadOnly$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiReadOnly, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiReadOnlyFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiReadOnly, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiHidden, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiHidden, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct1, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDisabled, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDisabled, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDescription$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDescription, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDescriptionFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDescription, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValueFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectProperties8$inboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties8, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectProperties8FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectProperties8, SDKValidationError>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema7Type$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema7Type>;
/** @internal */
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsItems$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsItems, z.ZodTypeDef, unknown>;
export declare function createIntegrationStoreDirectPropertiesIntegrationsItemsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsItems, SDKValidationError>;
//# sourceMappingURL=createintegrationstoredirectpropertiesintegrationsitems.d.ts.map