@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,018 lines • 109 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 GetConfigurationProductsRequest = {
/**
* ID of the integration configuration
*/
id: string;
/**
* 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;
};
export declare const GetConfigurationProductsStatus: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
};
export type GetConfigurationProductsStatus = ClosedEnum<typeof GetConfigurationProductsStatus>;
export type GetConfigurationProductsRepl = {
enabled: boolean;
supportsReadOnlyMode: boolean;
welcomeMessage?: string | undefined;
};
export type Storage = {
status: GetConfigurationProductsStatus;
repl?: GetConfigurationProductsRepl | undefined;
};
export declare const GetConfigurationProductsIntegrationsStatus: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
};
export type GetConfigurationProductsIntegrationsStatus = ClosedEnum<typeof GetConfigurationProductsIntegrationsStatus>;
export type GetConfigurationProductsExperimentation = {
status: GetConfigurationProductsIntegrationsStatus;
edgeConfigSyncingSupport?: boolean | undefined;
};
export declare const GetConfigurationProductsIntegrationsResponseStatus: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
};
export type GetConfigurationProductsIntegrationsResponseStatus = ClosedEnum<typeof GetConfigurationProductsIntegrationsResponseStatus>;
export type Ai = {
status: GetConfigurationProductsIntegrationsResponseStatus;
};
export declare const GetConfigurationProductsIntegrationsResponse200Status: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
};
export type GetConfigurationProductsIntegrationsResponse200Status = ClosedEnum<typeof GetConfigurationProductsIntegrationsResponse200Status>;
export type Authentication = {
status: GetConfigurationProductsIntegrationsResponse200Status;
};
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONStatus: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
};
export type GetConfigurationProductsIntegrationsResponse200ApplicationJSONStatus = ClosedEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONStatus>;
export type Observability = {
status: GetConfigurationProductsIntegrationsResponse200ApplicationJSONStatus;
};
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyStatus: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
};
export type GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyStatus = ClosedEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyStatus>;
export type Video = {
status: GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyStatus;
};
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsStatus: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
};
export type GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsStatus = ClosedEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsStatus>;
export type Workflow = {
status: GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsStatus;
};
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsStatus: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
};
export type GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsStatus = ClosedEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsStatus>;
export type GetConfigurationProductsChecks = {
status: GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsStatus;
};
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsLogDrainStatus: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
};
export type GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsLogDrainStatus = ClosedEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsLogDrainStatus>;
export declare const Format: {
readonly Json: "json";
readonly Ndjson: "ndjson";
};
export type Format = ClosedEnum<typeof Format>;
export type LogDrain = {
status: GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsLogDrainStatus;
endpoint: string;
headers?: {
[k: string]: string;
} | undefined;
format: Format;
};
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsTraceDrainStatus: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
};
export type GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsTraceDrainStatus = ClosedEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsTraceDrainStatus>;
export declare const GetConfigurationProductsFormat: {
readonly Json: "json";
readonly Proto: "proto";
};
export type GetConfigurationProductsFormat = ClosedEnum<typeof GetConfigurationProductsFormat>;
export type TraceDrain = {
status: GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsTraceDrainStatus;
endpoint: string;
headers?: {
[k: string]: string;
} | undefined;
format: GetConfigurationProductsFormat;
};
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsMessagingStatus: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
};
export type GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsMessagingStatus = ClosedEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsMessagingStatus>;
export type Messaging = {
status: GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsMessagingStatus;
};
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsOtherStatus: {
readonly Disabled: "disabled";
readonly Enabled: "enabled";
};
export type GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsOtherStatus = ClosedEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsOtherStatus>;
export type Other = {
status: GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsOtherStatus;
};
export type Protocols = {
storage?: Storage | undefined;
experimentation?: GetConfigurationProductsExperimentation | undefined;
ai?: Ai | undefined;
authentication?: Authentication | undefined;
observability?: Observability | undefined;
video?: Video | undefined;
workflow?: Workflow | undefined;
checks?: GetConfigurationProductsChecks | undefined;
logDrain?: LogDrain | undefined;
traceDrain?: TraceDrain | undefined;
messaging?: Messaging | undefined;
other?: Other | undefined;
};
export declare const PrimaryProtocol: {
readonly Ai: "ai";
readonly Authentication: "authentication";
readonly Checks: "checks";
readonly Experimentation: "experimentation";
readonly LogDrain: "logDrain";
readonly Messaging: "messaging";
readonly Observability: "observability";
readonly Other: "other";
readonly Storage: "storage";
readonly TraceDrain: "traceDrain";
readonly Video: "video";
readonly Workflow: "workflow";
};
export type PrimaryProtocol = ClosedEnum<typeof PrimaryProtocol>;
export declare const GetConfigurationProductsType: {
readonly Object: "object";
};
export type GetConfigurationProductsType = ClosedEnum<typeof GetConfigurationProductsType>;
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12Type: {
readonly String: "string";
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12Type = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12Type>;
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiControl: {
readonly GitNamespace: "git-namespace";
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiControl>;
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123 = ClosedEnum<typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123>;
export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiReadOnly = GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123;
export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123 = ClosedEnum<typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123>;
export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiHidden = GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123;
export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123 = ClosedEnum<typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123>;
export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiDisabled = GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121 | boolean | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123;
export type GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties122 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiDescription = GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties122 | string;
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiFormattedValue = {
expr: string;
};
export declare const GitProviders: {
readonly Bitbucket: "bitbucket";
readonly Github: "github";
readonly Gitlab: "gitlab";
};
export type GitProviders = ClosedEnum<typeof GitProviders>;
export type Properties12 = {
type: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12Type;
uiControl: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiControl;
description?: string | undefined;
uiLabel?: string | undefined;
uiReadOnly?: GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123 | undefined;
uiHidden?: GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123 | undefined;
uiDisabled?: GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121 | boolean | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123 | undefined;
uiDescription?: GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties122 | string | undefined;
uiFormattedValue?: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiFormattedValue | undefined;
uiPaidOnly?: boolean | undefined;
uiPlaceholder?: string | undefined;
gitProviders?: Array<GitProviders> | undefined;
};
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11Type: {
readonly String: "string";
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11Type = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11Type>;
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiControl: {
readonly Domain: "domain";
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiControl>;
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113 = ClosedEnum<typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113>;
export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiReadOnly = GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113;
export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113 = ClosedEnum<typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113>;
export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiHidden = GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113;
export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113 = ClosedEnum<typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113>;
export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiDisabled = GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111 | boolean | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113;
export type GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties112 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiDescription = GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties112 | string;
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiFormattedValue = {
expr: string;
};
export type Properties11 = {
type: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11Type;
uiControl: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiControl;
description?: string | undefined;
default?: string | undefined;
enum?: Array<string> | undefined;
maxLength?: number | undefined;
minLength?: number | undefined;
pattern?: string | undefined;
uiLabel?: string | undefined;
uiReadOnly?: GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113 | undefined;
uiHidden?: GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113 | undefined;
uiDisabled?: GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111 | boolean | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113 | undefined;
uiDescription?: GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties112 | string | undefined;
uiFormattedValue?: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiFormattedValue | undefined;
uiPaidOnly?: boolean | undefined;
uiPlaceholder?: string | undefined;
};
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type: {
readonly String: "string";
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type>;
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl: {
readonly VercelCountry: "vercel-country";
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl>;
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3 = ClosedEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3>;
export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1 = {
expr: string;
};
export type GetConfigurationProductsUiOptionsIntegrationsResponse200ApplicationJSONDisabled = GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3;
export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3 = ClosedEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3>;
export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1 = {
expr: string;
};
export type GetConfigurationProductsUiOptionsIntegrationsResponse200ApplicationJSONHidden = GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3;
export type GetConfigurationProductsUiOptionsIntegrations3 = {
value: string;
description?: string | undefined;
disabled?: GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3 | undefined;
hidden?: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3 | undefined;
};
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3 = ClosedEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts1 = {
expr: string;
};
export type GetConfigurationProductsUiOptionsIntegrationsResponse200Disabled = GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts1 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3;
export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3 = ClosedEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts1 = {
expr: string;
};
export type GetConfigurationProductsUiOptionsIntegrationsResponse200Hidden = GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts1 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3;
export type GetConfigurationProductsUiOptionsIntegrations1 = {
value: string;
label: string;
description?: string | undefined;
disabled?: GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts1 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3 | undefined;
hidden?: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts1 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3 | undefined;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200UiOptions = GetConfigurationProductsUiOptionsIntegrations1 | GetConfigurationProductsUiOptionsIntegrations3 | string;
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 = ClosedEnum<typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3>;
export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly = GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3;
export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 = ClosedEnum<typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3>;
export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden = GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3;
export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 = ClosedEnum<typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3>;
export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled = GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1 | boolean | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3;
export type GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription = GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 | string;
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue = {
expr: string;
};
export type Properties10 = {
type: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type;
uiControl: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl;
uiOptions: Array<GetConfigurationProductsUiOptionsIntegrations1 | GetConfigurationProductsUiOptionsIntegrations3 | string>;
description?: string | undefined;
default?: string | undefined;
enum?: Array<string> | undefined;
maxLength?: number | undefined;
minLength?: number | undefined;
pattern?: string | undefined;
uiLabel?: string | undefined;
uiReadOnly?: GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 | undefined;
uiHidden?: GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 | undefined;
uiDisabled?: GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1 | boolean | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 | undefined;
uiDescription?: GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 | string | undefined;
uiFormattedValue?: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue | undefined;
uiPaidOnly?: boolean | undefined;
uiPlaceholder?: string | undefined;
};
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType: {
readonly Array: "array";
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType>;
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9Type: {
readonly String: "string";
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9Type = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9Type>;
export type GetConfigurationProductsPropertiesIntegrationsItems = {
type: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9Type;
description?: string | undefined;
minLength?: number | undefined;
maxLength?: number | undefined;
pattern?: string | undefined;
default?: string | undefined;
enum?: Array<string> | undefined;
};
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl: {
readonly MultiVercelRegion: "multi-vercel-region";
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl>;
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3 = ClosedEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3>;
export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody1 = {
expr: string;
};
export type GetConfigurationProductsUiOptionsIntegrationsResponseDisabled = GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody1 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3;
export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3 = ClosedEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3>;
export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody1 = {
expr: string;
};
export type GetConfigurationProductsUiOptionsIntegrationsResponseHidden = GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody1 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3;
export type GetConfigurationProductsUiOptions3 = {
value: string;
description?: string | undefined;
disabled?: GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody1 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3 | undefined;
hidden?: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody1 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3 | undefined;
};
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3 = ClosedEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3>;
export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson1 = {
expr: string;
};
export type GetConfigurationProductsUiOptionsIntegrationsDisabled = GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson1 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3;
export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3 = ClosedEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3>;
export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson1 = {
expr: string;
};
export type GetConfigurationProductsUiOptionsIntegrationsHidden = GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson1 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3;
export type GetConfigurationProductsUiOptions1 = {
value: string;
label: string;
description?: string | undefined;
disabled?: GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson1 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3 | undefined;
hidden?: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson1 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3 | undefined;
};
export type GetConfigurationProductsPropertiesIntegrationsResponseUiOptions = GetConfigurationProductsUiOptions1 | GetConfigurationProductsUiOptions3 | string;
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3 = ClosedEnum<typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3>;
export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly = GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3;
export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3 = ClosedEnum<typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3>;
export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden = GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3;
export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3 = ClosedEnum<typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3>;
export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDisabled = GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1 | boolean | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3;
export type GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDescription = GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2 | string;
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiFormattedValue = {
expr: string;
};
export type Properties9 = {
type: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType;
items: GetConfigurationProductsPropertiesIntegrationsItems;
uiControl: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl;
uiOptions: Array<GetConfigurationProductsUiOptions1 | GetConfigurationProductsUiOptions3 | string>;
description?: string | undefined;
maxItems?: number | undefined;
minItems?: number | undefined;
uiLabel?: string | undefined;
uiReadOnly?: GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3 | undefined;
uiHidden?: GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3 | undefined;
uiDisabled?: GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1 | boolean | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3 | undefined;
uiDescription?: GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2 | string | undefined;
uiFormattedValue?: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiFormattedValue | undefined;
uiPaidOnly?: boolean | undefined;
uiPlaceholder?: string | undefined;
default?: Array<string> | undefined;
example?: Array<string> | undefined;
};
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType: {
readonly String: "string";
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType>;
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl: {
readonly VercelRegion: "vercel-region";
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl>;
export declare const GetConfigurationProductsDisabledIntegrationsResponse2003: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsDisabledIntegrationsResponse2003 = ClosedEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse2003>;
export type GetConfigurationProductsDisabledIntegrationsResponse2001 = {
expr: string;
};
export type GetConfigurationProductsUiOptionsDisabled = GetConfigurationProductsDisabledIntegrationsResponse2001 | boolean | GetConfigurationProductsDisabledIntegrationsResponse2003;
export declare const GetConfigurationProductsHiddenIntegrationsResponse2003: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsHiddenIntegrationsResponse2003 = ClosedEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse2003>;
export type GetConfigurationProductsHiddenIntegrationsResponse2001 = {
expr: string;
};
export type GetConfigurationProductsUiOptionsHidden = GetConfigurationProductsHiddenIntegrationsResponse2001 | boolean | GetConfigurationProductsHiddenIntegrationsResponse2003;
export type UiOptions3 = {
value: string;
description?: string | undefined;
disabled?: GetConfigurationProductsDisabledIntegrationsResponse2001 | boolean | GetConfigurationProductsDisabledIntegrationsResponse2003 | undefined;
hidden?: GetConfigurationProductsHiddenIntegrationsResponse2001 | boolean | GetConfigurationProductsHiddenIntegrationsResponse2003 | undefined;
};
export declare const GetConfigurationProductsDisabledIntegrationsResponse3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsDisabledIntegrationsResponse3 = ClosedEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse3>;
export type GetConfigurationProductsDisabledIntegrationsResponse1 = {
expr: string;
};
export type UiOptionsDisabled = GetConfigurationProductsDisabledIntegrationsResponse1 | boolean | GetConfigurationProductsDisabledIntegrationsResponse3;
export declare const GetConfigurationProductsHiddenIntegrationsResponse3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsHiddenIntegrationsResponse3 = ClosedEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse3>;
export type GetConfigurationProductsHiddenIntegrationsResponse1 = {
expr: string;
};
export type UiOptionsHidden = GetConfigurationProductsHiddenIntegrationsResponse1 | boolean | GetConfigurationProductsHiddenIntegrationsResponse3;
export type UiOptions1 = {
value: string;
label: string;
description?: string | undefined;
disabled?: GetConfigurationProductsDisabledIntegrationsResponse1 | boolean | GetConfigurationProductsDisabledIntegrationsResponse3 | undefined;
hidden?: GetConfigurationProductsHiddenIntegrationsResponse1 | boolean | GetConfigurationProductsHiddenIntegrationsResponse3 | undefined;
};
export type GetConfigurationProductsPropertiesIntegrationsUiOptions = UiOptions1 | UiOptions3 | string;
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts3 = ClosedEnum<typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts1 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiReadOnly = GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts1 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts3;
export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3 = ClosedEnum<typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts1 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiHidden = GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts1 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3;
export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3: {
readonly Create: "create";
readonly Update: "update";
};
export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3 = ClosedEnum<typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts1 = {
expr: string;
};
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDisabled = GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts1 | boolean | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3;
/** @internal */
export type GetConfigurationProductsRequest$Outbound = {
id: string;
teamId?: string | undefined;
slug?: string | undefined;
};
/** @internal */
export declare const GetConfigurationProductsRequest$outboundSchema: z.ZodType<GetConfigurationProductsRequest$Outbound, z.ZodTypeDef, GetConfigurationProductsRequest>;
export declare function getConfigurationProductsRequestToJSON(getConfigurationProductsRequest: GetConfigurationProductsRequest): string;
/** @internal */
export declare const GetConfigurationProductsStatus$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsStatus>;
/** @internal */
export declare const GetConfigurationProductsRepl$inboundSchema: z.ZodType<GetConfigurationProductsRepl, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsReplFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsRepl, SDKValidationError>;
/** @internal */
export declare const Storage$inboundSchema: z.ZodType<Storage, z.ZodTypeDef, unknown>;
export declare function storageFromJSON(jsonString: string): SafeParseResult<Storage, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsIntegrationsStatus$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsIntegrationsStatus>;
/** @internal */
export declare const GetConfigurationProductsExperimentation$inboundSchema: z.ZodType<GetConfigurationProductsExperimentation, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsExperimentationFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsExperimentation, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsIntegrationsResponseStatus$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsIntegrationsResponseStatus>;
/** @internal */
export declare const Ai$inboundSchema: z.ZodType<Ai, z.ZodTypeDef, unknown>;
export declare function aiFromJSON(jsonString: string): SafeParseResult<Ai, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsIntegrationsResponse200Status$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsIntegrationsResponse200Status>;
/** @internal */
export declare const Authentication$inboundSchema: z.ZodType<Authentication, z.ZodTypeDef, unknown>;
export declare function authenticationFromJSON(jsonString: string): SafeParseResult<Authentication, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONStatus$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONStatus>;
/** @internal */
export declare const Observability$inboundSchema: z.ZodType<Observability, z.ZodTypeDef, unknown>;
export declare function observabilityFromJSON(jsonString: string): SafeParseResult<Observability, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyStatus$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyStatus>;
/** @internal */
export declare const Video$inboundSchema: z.ZodType<Video, z.ZodTypeDef, unknown>;
export declare function videoFromJSON(jsonString: string): SafeParseResult<Video, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsStatus$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsStatus>;
/** @internal */
export declare const Workflow$inboundSchema: z.ZodType<Workflow, z.ZodTypeDef, unknown>;
export declare function workflowFromJSON(jsonString: string): SafeParseResult<Workflow, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsStatus$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsStatus>;
/** @internal */
export declare const GetConfigurationProductsChecks$inboundSchema: z.ZodType<GetConfigurationProductsChecks, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsChecksFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsChecks, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsLogDrainStatus$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsLogDrainStatus>;
/** @internal */
export declare const Format$inboundSchema: z.ZodNativeEnum<typeof Format>;
/** @internal */
export declare const LogDrain$inboundSchema: z.ZodType<LogDrain, z.ZodTypeDef, unknown>;
export declare function logDrainFromJSON(jsonString: string): SafeParseResult<LogDrain, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsTraceDrainStatus$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsTraceDrainStatus>;
/** @internal */
export declare const GetConfigurationProductsFormat$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsFormat>;
/** @internal */
export declare const TraceDrain$inboundSchema: z.ZodType<TraceDrain, z.ZodTypeDef, unknown>;
export declare function traceDrainFromJSON(jsonString: string): SafeParseResult<TraceDrain, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsMessagingStatus$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsMessagingStatus>;
/** @internal */
export declare const Messaging$inboundSchema: z.ZodType<Messaging, z.ZodTypeDef, unknown>;
export declare function messagingFromJSON(jsonString: string): SafeParseResult<Messaging, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsOtherStatus$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsOtherStatus>;
/** @internal */
export declare const Other$inboundSchema: z.ZodType<Other, z.ZodTypeDef, unknown>;
export declare function otherFromJSON(jsonString: string): SafeParseResult<Other, SDKValidationError>;
/** @internal */
export declare const Protocols$inboundSchema: z.ZodType<Protocols, z.ZodTypeDef, unknown>;
export declare function protocolsFromJSON(jsonString: string): SafeParseResult<Protocols, SDKValidationError>;
/** @internal */
export declare const PrimaryProtocol$inboundSchema: z.ZodNativeEnum<typeof PrimaryProtocol>;
/** @internal */
export declare const GetConfigurationProductsType$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsType>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12Type$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12Type>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiControl$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiControl>;
/** @internal */
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123>;
/** @internal */
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121$inboundSchema: z.ZodType<GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiReadOnly$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiReadOnly, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiReadOnlyFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiReadOnly, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123>;
/** @internal */
export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121$inboundSchema: z.ZodType<GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiHidden$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiHidden, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiHiddenFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiHidden, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties123>;
/** @internal */
export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121$inboundSchema: z.ZodType<GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties121, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiDisabled$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiDisabled, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiDisabledFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiDisabled, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties122$inboundSchema: z.ZodType<GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties122, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties122FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties122, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiDescription$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiDescription, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiDescriptionFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiDescription, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiFormattedValue$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiFormattedValue, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiFormattedValueFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema12UiFormattedValue, SDKValidationError>;
/** @internal */
export declare const GitProviders$inboundSchema: z.ZodNativeEnum<typeof GitProviders>;
/** @internal */
export declare const Properties12$inboundSchema: z.ZodType<Properties12, z.ZodTypeDef, unknown>;
export declare function properties12FromJSON(jsonString: string): SafeParseResult<Properties12, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11Type$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11Type>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiControl$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiControl>;
/** @internal */
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113>;
/** @internal */
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111$inboundSchema: z.ZodType<GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiReadOnly$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiReadOnly, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiReadOnlyFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiReadOnly, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113>;
/** @internal */
export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111$inboundSchema: z.ZodType<GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiHidden$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiHidden, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiHiddenFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiHidden, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties113>;
/** @internal */
export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111$inboundSchema: z.ZodType<GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties111, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiDisabled$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiDisabled, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiDisabledFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiDisabled, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties112$inboundSchema: z.ZodType<GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties112, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties112FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties112, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiDescription$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiDescription, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiDescriptionFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiDescription, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiFormattedValue$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiFormattedValue, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiFormattedValueFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema11UiFormattedValue, SDKValidationError>;
/** @internal */
export declare const Properties11$inboundSchema: z.ZodType<Properties11, z.ZodTypeDef, unknown>;
export declare function properties11FromJSON(jsonString: string): SafeParseResult<Properties11, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl>;
/** @internal */
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3>;
/** @internal */
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1$inboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiOptionsIntegrationsResponse200ApplicationJSONDisabled$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponse200ApplicationJSONDisabled, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiOptionsIntegrationsResponse200ApplicationJSONDisabledFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrationsResponse200ApplicationJSONDisabled, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3>;
/** @internal */
export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1$inboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiOptionsIntegrationsResponse200ApplicationJSONHidden$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponse200ApplicationJSONHidden, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiOptionsIntegrationsResponse200ApplicationJSONHiddenFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrationsResponse200ApplicationJSONHidden, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiOptionsIntegrations3$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrations3, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiOptionsIntegrations3FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrations3, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
/** @internal */
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts1$inboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiOptionsIntegrationsResponse200Disabled$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponse200Disabled, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiOptionsIntegrationsResponse200DisabledFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrationsResponse200Disabled, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
/** @internal */
export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts1$inboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiOptionsIntegrationsResponse200Hidden$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponse200Hidden, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiOptionsIntegrationsResponse200HiddenFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrationsResponse200Hidden, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiOptionsIntegrations1$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrations1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiOptionsIntegrations1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrations1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200UiOptions$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200UiOptions, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200UiOptionsFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200UiOptions, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3>;
/** @internal */
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1$inboundSchema: z.ZodType<GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnlyFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3>;
/** @internal */
export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1$inboundSchema: z.ZodType<GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHiddenFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3>;
/** @internal */
export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1$inboundSchema: z.ZodType<GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabledFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema: z.ZodType<GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescriptionFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValueFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue, SDKValidationError>;
/** @internal */
export declare const Properties10$inboundSchema: z.ZodType<Properties10, z.ZodTypeDef, unknown>;
export declare function properties10FromJSON(jsonString: string): SafeParseResult<Properties10, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9Type$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9Type>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsItems$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsItems, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsItemsFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsItems, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl>;
/** @internal */
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3>;
/** @internal */
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody1$inboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiOptionsIntegrationsResponseDisabled$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponseDisabled, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiOptionsIntegrationsResponseDisabledFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrationsResponseDisabled, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3>;
/** @internal */
export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody1$inboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiOptionsIntegrationsResponseHidden$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponseHidden, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiOptionsIntegrationsResponseHiddenFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrationsResponseHidden, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiOptions3$inboundSchema: z.ZodType<GetConfigurationProductsUiOptions3, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiOptions3FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptions3, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3>;
/** @internal */
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson1$inboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSON1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiOptionsIntegrationsDisabled$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsDisabled, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiOptionsIntegrationsDisabledFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrationsDisabled, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3>;
/** @internal */
export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson1$inboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSON1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiOptionsIntegrationsHidden$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsHidden, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiOptionsIntegrationsHiddenFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrationsHidden, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiOptions1$inboundSchema: z.ZodType<GetConfigurationProductsUiOptions1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiOptions1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptions1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponseUiOptions$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseUiOptions, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponseUiOptionsFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponseUiOptions, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3>;
/** @internal */
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1$inboundSchema: z.ZodType<GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnlyFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3>;
/** @internal */
export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1$inboundSchema: z.ZodType<GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHiddenFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3>;
/** @internal */
export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1$inboundSchema: z.ZodType<GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDisabled$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDisabled, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDisabledFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDisabled, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema: z.ZodType<GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDescription$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDescription, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDescriptionFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDescription, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiFormattedValue$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiFormattedValue, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiFormattedValueFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiFormattedValue, SDKValidationError>;
/** @internal */
export declare const Properties9$inboundSchema: z.ZodType<Properties9, z.ZodTypeDef, unknown>;
export declare function properties9FromJSON(jsonString: string): SafeParseResult<Properties9, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl>;
/** @internal */
export declare const GetConfigurationProductsDisabledIntegrationsResponse2003$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse2003>;
/** @internal */
export declare const GetConfigurationProductsDisabledIntegrationsResponse2001$inboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrationsResponse2001, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsDisabledIntegrationsResponse2001FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsDisabledIntegrationsResponse2001, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiOptionsDisabled$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsDisabled, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiOptionsDisabledFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsDisabled, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsHiddenIntegrationsResponse2003$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse2003>;
/** @internal */
export declare const GetConfigurationProductsHiddenIntegrationsResponse2001$inboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrationsResponse2001, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsHiddenIntegrationsResponse2001FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsHiddenIntegrationsResponse2001, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiOptionsHidden$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsHidden, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiOptionsHiddenFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsHidden, SDKValidationError>;
/** @internal */
export declare const UiOptions3$inboundSchema: z.ZodType<UiOptions3, z.ZodTypeDef, unknown>;
export declare function uiOptions3FromJSON(jsonString: string): SafeParseResult<UiOptions3, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsDisabledIntegrationsResponse3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse3>;
/** @internal */
export declare const GetConfigurationProductsDisabledIntegrationsResponse1$inboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrationsResponse1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsDisabledIntegrationsResponse1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsDisabledIntegrationsResponse1, SDKValidationError>;
/** @internal */
export declare const UiOptionsDisabled$inboundSchema: z.ZodType<UiOptionsDisabled, z.ZodTypeDef, unknown>;
export declare function uiOptionsDisabledFromJSON(jsonString: string): SafeParseResult<UiOptionsDisabled, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsHiddenIntegrationsResponse3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse3>;
/** @internal */
export declare const GetConfigurationProductsHiddenIntegrationsResponse1$inboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrationsResponse1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsHiddenIntegrationsResponse1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsHiddenIntegrationsResponse1, SDKValidationError>;
/** @internal */
export declare const UiOptionsHidden$inboundSchema: z.ZodType<UiOptionsHidden, z.ZodTypeDef, unknown>;
export declare function uiOptionsHiddenFromJSON(jsonString: string): SafeParseResult<UiOptionsHidden, SDKValidationError>;
/** @internal */
export declare const UiOptions1$inboundSchema: z.ZodType<UiOptions1, z.ZodTypeDef, unknown>;
export declare function uiOptions1FromJSON(jsonString: string): SafeParseResult<UiOptions1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsUiOptions$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsUiOptions, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsUiOptionsFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsUiOptions, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
/** @internal */
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts1$inboundSchema: z.ZodType<GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiReadOnly$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiReadOnly, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiReadOnlyFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiReadOnly, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
/** @internal */
export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts1$inboundSchema: z.ZodType<GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiHidden$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiHidden, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiHiddenFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiHidden, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
/** @internal */
export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts1$inboundSchema: z.ZodType<GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts1, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts1FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts1, SDKValidationError>;
/** @internal */
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDisabled$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDisabled, z.ZodTypeDef, unknown>;
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDisabledFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDisabled, SDKValidationError>;
//# sourceMappingURL=getconfigurationproductspropertiesintegrationsresponse200applicationjsonresponsebodyuidisabled.d.ts.map